1. Packages
  2. Cisco Meraki Provider
  3. API Docs
  4. organizations
  5. getSensorReadingsLatest
Cisco Meraki v0.4.1 published on Saturday, Mar 15, 2025 by Pulumi

meraki.organizations.getSensorReadingsLatest

Explore with Pulumi AI

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as meraki from "@pulumi/meraki";

const example = meraki.organizations.getSensorReadingsLatest({
    endingBefore: "string",
    metrics: ["string"],
    networkIds: ["string"],
    organizationId: "string",
    perPage: 1,
    serials: ["string"],
    startingAfter: "string",
});
export const merakiOrganizationsSensorReadingsLatestExample = example.then(example => example.items);
Copy
import pulumi
import pulumi_meraki as meraki

example = meraki.organizations.get_sensor_readings_latest(ending_before="string",
    metrics=["string"],
    network_ids=["string"],
    organization_id="string",
    per_page=1,
    serials=["string"],
    starting_after="string")
pulumi.export("merakiOrganizationsSensorReadingsLatestExample", example.items)
Copy
package main

import (
	"github.com/pulumi/pulumi-meraki/sdk/go/meraki/organizations"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := organizations.GetSensorReadingsLatest(ctx, &organizations.GetSensorReadingsLatestArgs{
			EndingBefore: pulumi.StringRef("string"),
			Metrics: []string{
				"string",
			},
			NetworkIds: []string{
				"string",
			},
			OrganizationId: "string",
			PerPage:        pulumi.IntRef(1),
			Serials: []string{
				"string",
			},
			StartingAfter: pulumi.StringRef("string"),
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("merakiOrganizationsSensorReadingsLatestExample", example.Items)
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Meraki = Pulumi.Meraki;

return await Deployment.RunAsync(() => 
{
    var example = Meraki.Organizations.GetSensorReadingsLatest.Invoke(new()
    {
        EndingBefore = "string",
        Metrics = new[]
        {
            "string",
        },
        NetworkIds = new[]
        {
            "string",
        },
        OrganizationId = "string",
        PerPage = 1,
        Serials = new[]
        {
            "string",
        },
        StartingAfter = "string",
    });

    return new Dictionary<string, object?>
    {
        ["merakiOrganizationsSensorReadingsLatestExample"] = example.Apply(getSensorReadingsLatestResult => getSensorReadingsLatestResult.Items),
    };
});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.meraki.organizations.OrganizationsFunctions;
import com.pulumi.meraki.organizations.inputs.GetSensorReadingsLatestArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var example = OrganizationsFunctions.getSensorReadingsLatest(GetSensorReadingsLatestArgs.builder()
            .endingBefore("string")
            .metrics("string")
            .networkIds("string")
            .organizationId("string")
            .perPage(1)
            .serials("string")
            .startingAfter("string")
            .build());

        ctx.export("merakiOrganizationsSensorReadingsLatestExample", example.applyValue(getSensorReadingsLatestResult -> getSensorReadingsLatestResult.items()));
    }
}
Copy
variables:
  example:
    fn::invoke:
      function: meraki:organizations:getSensorReadingsLatest
      arguments:
        endingBefore: string
        metrics:
          - string
        networkIds:
          - string
        organizationId: string
        perPage: 1
        serials:
          - string
        startingAfter: string
outputs:
  merakiOrganizationsSensorReadingsLatestExample: ${example.items}
Copy

Using getSensorReadingsLatest

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getSensorReadingsLatest(args: GetSensorReadingsLatestArgs, opts?: InvokeOptions): Promise<GetSensorReadingsLatestResult>
function getSensorReadingsLatestOutput(args: GetSensorReadingsLatestOutputArgs, opts?: InvokeOptions): Output<GetSensorReadingsLatestResult>
Copy
def get_sensor_readings_latest(ending_before: Optional[str] = None,
                               metrics: Optional[Sequence[str]] = None,
                               network_ids: Optional[Sequence[str]] = None,
                               organization_id: Optional[str] = None,
                               per_page: Optional[int] = None,
                               serials: Optional[Sequence[str]] = None,
                               starting_after: Optional[str] = None,
                               opts: Optional[InvokeOptions] = None) -> GetSensorReadingsLatestResult
def get_sensor_readings_latest_output(ending_before: Optional[pulumi.Input[str]] = None,
                               metrics: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                               network_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                               organization_id: Optional[pulumi.Input[str]] = None,
                               per_page: Optional[pulumi.Input[int]] = None,
                               serials: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                               starting_after: Optional[pulumi.Input[str]] = None,
                               opts: Optional[InvokeOptions] = None) -> Output[GetSensorReadingsLatestResult]
Copy
func GetSensorReadingsLatest(ctx *Context, args *GetSensorReadingsLatestArgs, opts ...InvokeOption) (*GetSensorReadingsLatestResult, error)
func GetSensorReadingsLatestOutput(ctx *Context, args *GetSensorReadingsLatestOutputArgs, opts ...InvokeOption) GetSensorReadingsLatestResultOutput
Copy

> Note: This function is named GetSensorReadingsLatest in the Go SDK.

public static class GetSensorReadingsLatest 
{
    public static Task<GetSensorReadingsLatestResult> InvokeAsync(GetSensorReadingsLatestArgs args, InvokeOptions? opts = null)
    public static Output<GetSensorReadingsLatestResult> Invoke(GetSensorReadingsLatestInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetSensorReadingsLatestResult> getSensorReadingsLatest(GetSensorReadingsLatestArgs args, InvokeOptions options)
public static Output<GetSensorReadingsLatestResult> getSensorReadingsLatest(GetSensorReadingsLatestArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: meraki:organizations/getSensorReadingsLatest:getSensorReadingsLatest
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

OrganizationId This property is required. string
organizationId path parameter. Organization ID
EndingBefore string
endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
Metrics List<string>
metrics query parameter. Types of sensor readings to retrieve. If no metrics are supplied, all available types of readings will be retrieved. Allowed values are apparentPower, battery, button, co2, current, door, downstreamPower, frequency, humidity, indoorAirQuality, noise, pm25, powerFactor, realPower, remoteLockoutSwitch, temperature, tvoc, voltage, and water.
NetworkIds List<string>
networkIds query parameter. Optional parameter to filter readings by network.
PerPage int
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
Serials List<string>
serials query parameter. Optional parameter to filter readings by sensor.
StartingAfter string
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
OrganizationId This property is required. string
organizationId path parameter. Organization ID
EndingBefore string
endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
Metrics []string
metrics query parameter. Types of sensor readings to retrieve. If no metrics are supplied, all available types of readings will be retrieved. Allowed values are apparentPower, battery, button, co2, current, door, downstreamPower, frequency, humidity, indoorAirQuality, noise, pm25, powerFactor, realPower, remoteLockoutSwitch, temperature, tvoc, voltage, and water.
NetworkIds []string
networkIds query parameter. Optional parameter to filter readings by network.
PerPage int
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
Serials []string
serials query parameter. Optional parameter to filter readings by sensor.
StartingAfter string
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
organizationId This property is required. String
organizationId path parameter. Organization ID
endingBefore String
endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
metrics List<String>
metrics query parameter. Types of sensor readings to retrieve. If no metrics are supplied, all available types of readings will be retrieved. Allowed values are apparentPower, battery, button, co2, current, door, downstreamPower, frequency, humidity, indoorAirQuality, noise, pm25, powerFactor, realPower, remoteLockoutSwitch, temperature, tvoc, voltage, and water.
networkIds List<String>
networkIds query parameter. Optional parameter to filter readings by network.
perPage Integer
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
serials List<String>
serials query parameter. Optional parameter to filter readings by sensor.
startingAfter String
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
organizationId This property is required. string
organizationId path parameter. Organization ID
endingBefore string
endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
metrics string[]
metrics query parameter. Types of sensor readings to retrieve. If no metrics are supplied, all available types of readings will be retrieved. Allowed values are apparentPower, battery, button, co2, current, door, downstreamPower, frequency, humidity, indoorAirQuality, noise, pm25, powerFactor, realPower, remoteLockoutSwitch, temperature, tvoc, voltage, and water.
networkIds string[]
networkIds query parameter. Optional parameter to filter readings by network.
perPage number
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
serials string[]
serials query parameter. Optional parameter to filter readings by sensor.
startingAfter string
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
organization_id This property is required. str
organizationId path parameter. Organization ID
ending_before str
endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
metrics Sequence[str]
metrics query parameter. Types of sensor readings to retrieve. If no metrics are supplied, all available types of readings will be retrieved. Allowed values are apparentPower, battery, button, co2, current, door, downstreamPower, frequency, humidity, indoorAirQuality, noise, pm25, powerFactor, realPower, remoteLockoutSwitch, temperature, tvoc, voltage, and water.
network_ids Sequence[str]
networkIds query parameter. Optional parameter to filter readings by network.
per_page int
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
serials Sequence[str]
serials query parameter. Optional parameter to filter readings by sensor.
starting_after str
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
organizationId This property is required. String
organizationId path parameter. Organization ID
endingBefore String
endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
metrics List<String>
metrics query parameter. Types of sensor readings to retrieve. If no metrics are supplied, all available types of readings will be retrieved. Allowed values are apparentPower, battery, button, co2, current, door, downstreamPower, frequency, humidity, indoorAirQuality, noise, pm25, powerFactor, realPower, remoteLockoutSwitch, temperature, tvoc, voltage, and water.
networkIds List<String>
networkIds query parameter. Optional parameter to filter readings by network.
perPage Number
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
serials List<String>
serials query parameter. Optional parameter to filter readings by sensor.
startingAfter String
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.

getSensorReadingsLatest Result

The following output properties are available:

Id string
The provider-assigned unique ID for this managed resource.
Items List<GetSensorReadingsLatestItem>
Array of ResponseSensorGetOrganizationSensorReadingsLatest
OrganizationId string
organizationId path parameter. Organization ID
EndingBefore string
endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
Metrics List<string>
metrics query parameter. Types of sensor readings to retrieve. If no metrics are supplied, all available types of readings will be retrieved. Allowed values are apparentPower, battery, button, co2, current, door, downstreamPower, frequency, humidity, indoorAirQuality, noise, pm25, powerFactor, realPower, remoteLockoutSwitch, temperature, tvoc, voltage, and water.
NetworkIds List<string>
networkIds query parameter. Optional parameter to filter readings by network.
PerPage int
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
Serials List<string>
serials query parameter. Optional parameter to filter readings by sensor.
StartingAfter string
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
Id string
The provider-assigned unique ID for this managed resource.
Items []GetSensorReadingsLatestItem
Array of ResponseSensorGetOrganizationSensorReadingsLatest
OrganizationId string
organizationId path parameter. Organization ID
EndingBefore string
endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
Metrics []string
metrics query parameter. Types of sensor readings to retrieve. If no metrics are supplied, all available types of readings will be retrieved. Allowed values are apparentPower, battery, button, co2, current, door, downstreamPower, frequency, humidity, indoorAirQuality, noise, pm25, powerFactor, realPower, remoteLockoutSwitch, temperature, tvoc, voltage, and water.
NetworkIds []string
networkIds query parameter. Optional parameter to filter readings by network.
PerPage int
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
Serials []string
serials query parameter. Optional parameter to filter readings by sensor.
StartingAfter string
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
id String
The provider-assigned unique ID for this managed resource.
items List<GetSensorReadingsLatestItem>
Array of ResponseSensorGetOrganizationSensorReadingsLatest
organizationId String
organizationId path parameter. Organization ID
endingBefore String
endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
metrics List<String>
metrics query parameter. Types of sensor readings to retrieve. If no metrics are supplied, all available types of readings will be retrieved. Allowed values are apparentPower, battery, button, co2, current, door, downstreamPower, frequency, humidity, indoorAirQuality, noise, pm25, powerFactor, realPower, remoteLockoutSwitch, temperature, tvoc, voltage, and water.
networkIds List<String>
networkIds query parameter. Optional parameter to filter readings by network.
perPage Integer
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
serials List<String>
serials query parameter. Optional parameter to filter readings by sensor.
startingAfter String
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
id string
The provider-assigned unique ID for this managed resource.
items GetSensorReadingsLatestItem[]
Array of ResponseSensorGetOrganizationSensorReadingsLatest
organizationId string
organizationId path parameter. Organization ID
endingBefore string
endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
metrics string[]
metrics query parameter. Types of sensor readings to retrieve. If no metrics are supplied, all available types of readings will be retrieved. Allowed values are apparentPower, battery, button, co2, current, door, downstreamPower, frequency, humidity, indoorAirQuality, noise, pm25, powerFactor, realPower, remoteLockoutSwitch, temperature, tvoc, voltage, and water.
networkIds string[]
networkIds query parameter. Optional parameter to filter readings by network.
perPage number
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
serials string[]
serials query parameter. Optional parameter to filter readings by sensor.
startingAfter string
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
id str
The provider-assigned unique ID for this managed resource.
items Sequence[GetSensorReadingsLatestItem]
Array of ResponseSensorGetOrganizationSensorReadingsLatest
organization_id str
organizationId path parameter. Organization ID
ending_before str
endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
metrics Sequence[str]
metrics query parameter. Types of sensor readings to retrieve. If no metrics are supplied, all available types of readings will be retrieved. Allowed values are apparentPower, battery, button, co2, current, door, downstreamPower, frequency, humidity, indoorAirQuality, noise, pm25, powerFactor, realPower, remoteLockoutSwitch, temperature, tvoc, voltage, and water.
network_ids Sequence[str]
networkIds query parameter. Optional parameter to filter readings by network.
per_page int
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
serials Sequence[str]
serials query parameter. Optional parameter to filter readings by sensor.
starting_after str
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
id String
The provider-assigned unique ID for this managed resource.
items List<Property Map>
Array of ResponseSensorGetOrganizationSensorReadingsLatest
organizationId String
organizationId path parameter. Organization ID
endingBefore String
endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
metrics List<String>
metrics query parameter. Types of sensor readings to retrieve. If no metrics are supplied, all available types of readings will be retrieved. Allowed values are apparentPower, battery, button, co2, current, door, downstreamPower, frequency, humidity, indoorAirQuality, noise, pm25, powerFactor, realPower, remoteLockoutSwitch, temperature, tvoc, voltage, and water.
networkIds List<String>
networkIds query parameter. Optional parameter to filter readings by network.
perPage Number
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
serials List<String>
serials query parameter. Optional parameter to filter readings by sensor.
startingAfter String
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.

Supporting Types

GetSensorReadingsLatestItem

Network This property is required. GetSensorReadingsLatestItemNetwork
Network to which the sensor belongs.
Readings This property is required. List<GetSensorReadingsLatestItemReading>
Array of latest readings from the sensor. Each object represents a single reading for a single metric.
Serial This property is required. string
Serial number of the sensor that took the readings.
Network This property is required. GetSensorReadingsLatestItemNetwork
Network to which the sensor belongs.
Readings This property is required. []GetSensorReadingsLatestItemReading
Array of latest readings from the sensor. Each object represents a single reading for a single metric.
Serial This property is required. string
Serial number of the sensor that took the readings.
network This property is required. GetSensorReadingsLatestItemNetwork
Network to which the sensor belongs.
readings This property is required. List<GetSensorReadingsLatestItemReading>
Array of latest readings from the sensor. Each object represents a single reading for a single metric.
serial This property is required. String
Serial number of the sensor that took the readings.
network This property is required. GetSensorReadingsLatestItemNetwork
Network to which the sensor belongs.
readings This property is required. GetSensorReadingsLatestItemReading[]
Array of latest readings from the sensor. Each object represents a single reading for a single metric.
serial This property is required. string
Serial number of the sensor that took the readings.
network This property is required. GetSensorReadingsLatestItemNetwork
Network to which the sensor belongs.
readings This property is required. Sequence[GetSensorReadingsLatestItemReading]
Array of latest readings from the sensor. Each object represents a single reading for a single metric.
serial This property is required. str
Serial number of the sensor that took the readings.
network This property is required. Property Map
Network to which the sensor belongs.
readings This property is required. List<Property Map>
Array of latest readings from the sensor. Each object represents a single reading for a single metric.
serial This property is required. String
Serial number of the sensor that took the readings.

GetSensorReadingsLatestItemNetwork

Id This property is required. string
ID of the network.
Name This property is required. string
Name of the network.
Id This property is required. string
ID of the network.
Name This property is required. string
Name of the network.
id This property is required. String
ID of the network.
name This property is required. String
Name of the network.
id This property is required. string
ID of the network.
name This property is required. string
Name of the network.
id This property is required. str
ID of the network.
name This property is required. str
Name of the network.
id This property is required. String
ID of the network.
name This property is required. String
Name of the network.

GetSensorReadingsLatestItemReading

ApparentPower This property is required. GetSensorReadingsLatestItemReadingApparentPower
Reading for the 'apparentPower' metric. This will only be present if the 'metric' property equals 'apparentPower'.
Battery This property is required. GetSensorReadingsLatestItemReadingBattery
Reading for the 'battery' metric. This will only be present if the 'metric' property equals 'battery'.
Button This property is required. GetSensorReadingsLatestItemReadingButton
Reading for the 'button' metric. This will only be present if the 'metric' property equals 'button'.
Co2 This property is required. GetSensorReadingsLatestItemReadingCo2
Reading for the 'co2' metric. This will only be present if the 'metric' property equals 'co2'.
Current This property is required. GetSensorReadingsLatestItemReadingCurrent
Reading for the 'current' metric. This will only be present if the 'metric' property equals 'current'.
Door This property is required. GetSensorReadingsLatestItemReadingDoor
Reading for the 'door' metric. This will only be present if the 'metric' property equals 'door'.
DownstreamPower This property is required. GetSensorReadingsLatestItemReadingDownstreamPower
Reading for the 'downstreamPower' metric. This will only be present if the 'metric' property equals 'downstreamPower'.
Frequency This property is required. GetSensorReadingsLatestItemReadingFrequency
Reading for the 'frequency' metric. This will only be present if the 'metric' property equals 'frequency'.
Humidity This property is required. GetSensorReadingsLatestItemReadingHumidity
Reading for the 'humidity' metric. This will only be present if the 'metric' property equals 'humidity'.
IndoorAirQuality This property is required. GetSensorReadingsLatestItemReadingIndoorAirQuality
Reading for the 'indoorAirQuality' metric. This will only be present if the 'metric' property equals 'indoorAirQuality'.
Metric This property is required. string
Type of sensor reading.
Noise This property is required. GetSensorReadingsLatestItemReadingNoise
Reading for the 'noise' metric. This will only be present if the 'metric' property equals 'noise'.
Pm25 This property is required. GetSensorReadingsLatestItemReadingPm25
Reading for the 'pm25' metric. This will only be present if the 'metric' property equals 'pm25'.
PowerFactor This property is required. GetSensorReadingsLatestItemReadingPowerFactor
Reading for the 'powerFactor' metric. This will only be present if the 'metric' property equals 'powerFactor'.
RealPower This property is required. GetSensorReadingsLatestItemReadingRealPower
Reading for the 'realPower' metric. This will only be present if the 'metric' property equals 'realPower'.
RemoteLockoutSwitch This property is required. GetSensorReadingsLatestItemReadingRemoteLockoutSwitch
Reading for the 'remoteLockoutSwitch' metric. This will only be present if the 'metric' property equals 'remoteLockoutSwitch'.
Temperature This property is required. GetSensorReadingsLatestItemReadingTemperature
Reading for the 'temperature' metric. This will only be present if the 'metric' property equals 'temperature'.
Ts This property is required. string
Time at which the reading occurred, in ISO8601 format.
Tvoc This property is required. GetSensorReadingsLatestItemReadingTvoc
Reading for the 'tvoc' metric. This will only be present if the 'metric' property equals 'tvoc'.
Voltage This property is required. GetSensorReadingsLatestItemReadingVoltage
Reading for the 'voltage' metric. This will only be present if the 'metric' property equals 'voltage'.
Water This property is required. GetSensorReadingsLatestItemReadingWater
Reading for the 'water' metric. This will only be present if the 'metric' property equals 'water'.
ApparentPower This property is required. GetSensorReadingsLatestItemReadingApparentPower
Reading for the 'apparentPower' metric. This will only be present if the 'metric' property equals 'apparentPower'.
Battery This property is required. GetSensorReadingsLatestItemReadingBattery
Reading for the 'battery' metric. This will only be present if the 'metric' property equals 'battery'.
Button This property is required. GetSensorReadingsLatestItemReadingButton
Reading for the 'button' metric. This will only be present if the 'metric' property equals 'button'.
Co2 This property is required. GetSensorReadingsLatestItemReadingCo2
Reading for the 'co2' metric. This will only be present if the 'metric' property equals 'co2'.
Current This property is required. GetSensorReadingsLatestItemReadingCurrent
Reading for the 'current' metric. This will only be present if the 'metric' property equals 'current'.
Door This property is required. GetSensorReadingsLatestItemReadingDoor
Reading for the 'door' metric. This will only be present if the 'metric' property equals 'door'.
DownstreamPower This property is required. GetSensorReadingsLatestItemReadingDownstreamPower
Reading for the 'downstreamPower' metric. This will only be present if the 'metric' property equals 'downstreamPower'.
Frequency This property is required. GetSensorReadingsLatestItemReadingFrequency
Reading for the 'frequency' metric. This will only be present if the 'metric' property equals 'frequency'.
Humidity This property is required. GetSensorReadingsLatestItemReadingHumidity
Reading for the 'humidity' metric. This will only be present if the 'metric' property equals 'humidity'.
IndoorAirQuality This property is required. GetSensorReadingsLatestItemReadingIndoorAirQuality
Reading for the 'indoorAirQuality' metric. This will only be present if the 'metric' property equals 'indoorAirQuality'.
Metric This property is required. string
Type of sensor reading.
Noise This property is required. GetSensorReadingsLatestItemReadingNoise
Reading for the 'noise' metric. This will only be present if the 'metric' property equals 'noise'.
Pm25 This property is required. GetSensorReadingsLatestItemReadingPm25
Reading for the 'pm25' metric. This will only be present if the 'metric' property equals 'pm25'.
PowerFactor This property is required. GetSensorReadingsLatestItemReadingPowerFactor
Reading for the 'powerFactor' metric. This will only be present if the 'metric' property equals 'powerFactor'.
RealPower This property is required. GetSensorReadingsLatestItemReadingRealPower
Reading for the 'realPower' metric. This will only be present if the 'metric' property equals 'realPower'.
RemoteLockoutSwitch This property is required. GetSensorReadingsLatestItemReadingRemoteLockoutSwitch
Reading for the 'remoteLockoutSwitch' metric. This will only be present if the 'metric' property equals 'remoteLockoutSwitch'.
Temperature This property is required. GetSensorReadingsLatestItemReadingTemperature
Reading for the 'temperature' metric. This will only be present if the 'metric' property equals 'temperature'.
Ts This property is required. string
Time at which the reading occurred, in ISO8601 format.
Tvoc This property is required. GetSensorReadingsLatestItemReadingTvoc
Reading for the 'tvoc' metric. This will only be present if the 'metric' property equals 'tvoc'.
Voltage This property is required. GetSensorReadingsLatestItemReadingVoltage
Reading for the 'voltage' metric. This will only be present if the 'metric' property equals 'voltage'.
Water This property is required. GetSensorReadingsLatestItemReadingWater
Reading for the 'water' metric. This will only be present if the 'metric' property equals 'water'.
apparentPower This property is required. GetSensorReadingsLatestItemReadingApparentPower
Reading for the 'apparentPower' metric. This will only be present if the 'metric' property equals 'apparentPower'.
battery This property is required. GetSensorReadingsLatestItemReadingBattery
Reading for the 'battery' metric. This will only be present if the 'metric' property equals 'battery'.
button This property is required. GetSensorReadingsLatestItemReadingButton
Reading for the 'button' metric. This will only be present if the 'metric' property equals 'button'.
co2 This property is required. GetSensorReadingsLatestItemReadingCo2
Reading for the 'co2' metric. This will only be present if the 'metric' property equals 'co2'.
current This property is required. GetSensorReadingsLatestItemReadingCurrent
Reading for the 'current' metric. This will only be present if the 'metric' property equals 'current'.
door This property is required. GetSensorReadingsLatestItemReadingDoor
Reading for the 'door' metric. This will only be present if the 'metric' property equals 'door'.
downstreamPower This property is required. GetSensorReadingsLatestItemReadingDownstreamPower
Reading for the 'downstreamPower' metric. This will only be present if the 'metric' property equals 'downstreamPower'.
frequency This property is required. GetSensorReadingsLatestItemReadingFrequency
Reading for the 'frequency' metric. This will only be present if the 'metric' property equals 'frequency'.
humidity This property is required. GetSensorReadingsLatestItemReadingHumidity
Reading for the 'humidity' metric. This will only be present if the 'metric' property equals 'humidity'.
indoorAirQuality This property is required. GetSensorReadingsLatestItemReadingIndoorAirQuality
Reading for the 'indoorAirQuality' metric. This will only be present if the 'metric' property equals 'indoorAirQuality'.
metric This property is required. String
Type of sensor reading.
noise This property is required. GetSensorReadingsLatestItemReadingNoise
Reading for the 'noise' metric. This will only be present if the 'metric' property equals 'noise'.
pm25 This property is required. GetSensorReadingsLatestItemReadingPm25
Reading for the 'pm25' metric. This will only be present if the 'metric' property equals 'pm25'.
powerFactor This property is required. GetSensorReadingsLatestItemReadingPowerFactor
Reading for the 'powerFactor' metric. This will only be present if the 'metric' property equals 'powerFactor'.
realPower This property is required. GetSensorReadingsLatestItemReadingRealPower
Reading for the 'realPower' metric. This will only be present if the 'metric' property equals 'realPower'.
remoteLockoutSwitch This property is required. GetSensorReadingsLatestItemReadingRemoteLockoutSwitch
Reading for the 'remoteLockoutSwitch' metric. This will only be present if the 'metric' property equals 'remoteLockoutSwitch'.
temperature This property is required. GetSensorReadingsLatestItemReadingTemperature
Reading for the 'temperature' metric. This will only be present if the 'metric' property equals 'temperature'.
ts This property is required. String
Time at which the reading occurred, in ISO8601 format.
tvoc This property is required. GetSensorReadingsLatestItemReadingTvoc
Reading for the 'tvoc' metric. This will only be present if the 'metric' property equals 'tvoc'.
voltage This property is required. GetSensorReadingsLatestItemReadingVoltage
Reading for the 'voltage' metric. This will only be present if the 'metric' property equals 'voltage'.
water This property is required. GetSensorReadingsLatestItemReadingWater
Reading for the 'water' metric. This will only be present if the 'metric' property equals 'water'.
apparentPower This property is required. GetSensorReadingsLatestItemReadingApparentPower
Reading for the 'apparentPower' metric. This will only be present if the 'metric' property equals 'apparentPower'.
battery This property is required. GetSensorReadingsLatestItemReadingBattery
Reading for the 'battery' metric. This will only be present if the 'metric' property equals 'battery'.
button This property is required. GetSensorReadingsLatestItemReadingButton
Reading for the 'button' metric. This will only be present if the 'metric' property equals 'button'.
co2 This property is required. GetSensorReadingsLatestItemReadingCo2
Reading for the 'co2' metric. This will only be present if the 'metric' property equals 'co2'.
current This property is required. GetSensorReadingsLatestItemReadingCurrent
Reading for the 'current' metric. This will only be present if the 'metric' property equals 'current'.
door This property is required. GetSensorReadingsLatestItemReadingDoor
Reading for the 'door' metric. This will only be present if the 'metric' property equals 'door'.
downstreamPower This property is required. GetSensorReadingsLatestItemReadingDownstreamPower
Reading for the 'downstreamPower' metric. This will only be present if the 'metric' property equals 'downstreamPower'.
frequency This property is required. GetSensorReadingsLatestItemReadingFrequency
Reading for the 'frequency' metric. This will only be present if the 'metric' property equals 'frequency'.
humidity This property is required. GetSensorReadingsLatestItemReadingHumidity
Reading for the 'humidity' metric. This will only be present if the 'metric' property equals 'humidity'.
indoorAirQuality This property is required. GetSensorReadingsLatestItemReadingIndoorAirQuality
Reading for the 'indoorAirQuality' metric. This will only be present if the 'metric' property equals 'indoorAirQuality'.
metric This property is required. string
Type of sensor reading.
noise This property is required. GetSensorReadingsLatestItemReadingNoise
Reading for the 'noise' metric. This will only be present if the 'metric' property equals 'noise'.
pm25 This property is required. GetSensorReadingsLatestItemReadingPm25
Reading for the 'pm25' metric. This will only be present if the 'metric' property equals 'pm25'.
powerFactor This property is required. GetSensorReadingsLatestItemReadingPowerFactor
Reading for the 'powerFactor' metric. This will only be present if the 'metric' property equals 'powerFactor'.
realPower This property is required. GetSensorReadingsLatestItemReadingRealPower
Reading for the 'realPower' metric. This will only be present if the 'metric' property equals 'realPower'.
remoteLockoutSwitch This property is required. GetSensorReadingsLatestItemReadingRemoteLockoutSwitch
Reading for the 'remoteLockoutSwitch' metric. This will only be present if the 'metric' property equals 'remoteLockoutSwitch'.
temperature This property is required. GetSensorReadingsLatestItemReadingTemperature
Reading for the 'temperature' metric. This will only be present if the 'metric' property equals 'temperature'.
ts This property is required. string
Time at which the reading occurred, in ISO8601 format.
tvoc This property is required. GetSensorReadingsLatestItemReadingTvoc
Reading for the 'tvoc' metric. This will only be present if the 'metric' property equals 'tvoc'.
voltage This property is required. GetSensorReadingsLatestItemReadingVoltage
Reading for the 'voltage' metric. This will only be present if the 'metric' property equals 'voltage'.
water This property is required. GetSensorReadingsLatestItemReadingWater
Reading for the 'water' metric. This will only be present if the 'metric' property equals 'water'.
apparent_power This property is required. GetSensorReadingsLatestItemReadingApparentPower
Reading for the 'apparentPower' metric. This will only be present if the 'metric' property equals 'apparentPower'.
battery This property is required. GetSensorReadingsLatestItemReadingBattery
Reading for the 'battery' metric. This will only be present if the 'metric' property equals 'battery'.
button This property is required. GetSensorReadingsLatestItemReadingButton
Reading for the 'button' metric. This will only be present if the 'metric' property equals 'button'.
co2 This property is required. GetSensorReadingsLatestItemReadingCo2
Reading for the 'co2' metric. This will only be present if the 'metric' property equals 'co2'.
current This property is required. GetSensorReadingsLatestItemReadingCurrent
Reading for the 'current' metric. This will only be present if the 'metric' property equals 'current'.
door This property is required. GetSensorReadingsLatestItemReadingDoor
Reading for the 'door' metric. This will only be present if the 'metric' property equals 'door'.
downstream_power This property is required. GetSensorReadingsLatestItemReadingDownstreamPower
Reading for the 'downstreamPower' metric. This will only be present if the 'metric' property equals 'downstreamPower'.
frequency This property is required. GetSensorReadingsLatestItemReadingFrequency
Reading for the 'frequency' metric. This will only be present if the 'metric' property equals 'frequency'.
humidity This property is required. GetSensorReadingsLatestItemReadingHumidity
Reading for the 'humidity' metric. This will only be present if the 'metric' property equals 'humidity'.
indoor_air_quality This property is required. GetSensorReadingsLatestItemReadingIndoorAirQuality
Reading for the 'indoorAirQuality' metric. This will only be present if the 'metric' property equals 'indoorAirQuality'.
metric This property is required. str
Type of sensor reading.
noise This property is required. GetSensorReadingsLatestItemReadingNoise
Reading for the 'noise' metric. This will only be present if the 'metric' property equals 'noise'.
pm25 This property is required. GetSensorReadingsLatestItemReadingPm25
Reading for the 'pm25' metric. This will only be present if the 'metric' property equals 'pm25'.
power_factor This property is required. GetSensorReadingsLatestItemReadingPowerFactor
Reading for the 'powerFactor' metric. This will only be present if the 'metric' property equals 'powerFactor'.
real_power This property is required. GetSensorReadingsLatestItemReadingRealPower
Reading for the 'realPower' metric. This will only be present if the 'metric' property equals 'realPower'.
remote_lockout_switch This property is required. GetSensorReadingsLatestItemReadingRemoteLockoutSwitch
Reading for the 'remoteLockoutSwitch' metric. This will only be present if the 'metric' property equals 'remoteLockoutSwitch'.
temperature This property is required. GetSensorReadingsLatestItemReadingTemperature
Reading for the 'temperature' metric. This will only be present if the 'metric' property equals 'temperature'.
ts This property is required. str
Time at which the reading occurred, in ISO8601 format.
tvoc This property is required. GetSensorReadingsLatestItemReadingTvoc
Reading for the 'tvoc' metric. This will only be present if the 'metric' property equals 'tvoc'.
voltage This property is required. GetSensorReadingsLatestItemReadingVoltage
Reading for the 'voltage' metric. This will only be present if the 'metric' property equals 'voltage'.
water This property is required. GetSensorReadingsLatestItemReadingWater
Reading for the 'water' metric. This will only be present if the 'metric' property equals 'water'.
apparentPower This property is required. Property Map
Reading for the 'apparentPower' metric. This will only be present if the 'metric' property equals 'apparentPower'.
battery This property is required. Property Map
Reading for the 'battery' metric. This will only be present if the 'metric' property equals 'battery'.
button This property is required. Property Map
Reading for the 'button' metric. This will only be present if the 'metric' property equals 'button'.
co2 This property is required. Property Map
Reading for the 'co2' metric. This will only be present if the 'metric' property equals 'co2'.
current This property is required. Property Map
Reading for the 'current' metric. This will only be present if the 'metric' property equals 'current'.
door This property is required. Property Map
Reading for the 'door' metric. This will only be present if the 'metric' property equals 'door'.
downstreamPower This property is required. Property Map
Reading for the 'downstreamPower' metric. This will only be present if the 'metric' property equals 'downstreamPower'.
frequency This property is required. Property Map
Reading for the 'frequency' metric. This will only be present if the 'metric' property equals 'frequency'.
humidity This property is required. Property Map
Reading for the 'humidity' metric. This will only be present if the 'metric' property equals 'humidity'.
indoorAirQuality This property is required. Property Map
Reading for the 'indoorAirQuality' metric. This will only be present if the 'metric' property equals 'indoorAirQuality'.
metric This property is required. String
Type of sensor reading.
noise This property is required. Property Map
Reading for the 'noise' metric. This will only be present if the 'metric' property equals 'noise'.
pm25 This property is required. Property Map
Reading for the 'pm25' metric. This will only be present if the 'metric' property equals 'pm25'.
powerFactor This property is required. Property Map
Reading for the 'powerFactor' metric. This will only be present if the 'metric' property equals 'powerFactor'.
realPower This property is required. Property Map
Reading for the 'realPower' metric. This will only be present if the 'metric' property equals 'realPower'.
remoteLockoutSwitch This property is required. Property Map
Reading for the 'remoteLockoutSwitch' metric. This will only be present if the 'metric' property equals 'remoteLockoutSwitch'.
temperature This property is required. Property Map
Reading for the 'temperature' metric. This will only be present if the 'metric' property equals 'temperature'.
ts This property is required. String
Time at which the reading occurred, in ISO8601 format.
tvoc This property is required. Property Map
Reading for the 'tvoc' metric. This will only be present if the 'metric' property equals 'tvoc'.
voltage This property is required. Property Map
Reading for the 'voltage' metric. This will only be present if the 'metric' property equals 'voltage'.
water This property is required. Property Map
Reading for the 'water' metric. This will only be present if the 'metric' property equals 'water'.

GetSensorReadingsLatestItemReadingApparentPower

Draw This property is required. double
Apparent power reading in volt-amperes.
Draw This property is required. float64
Apparent power reading in volt-amperes.
draw This property is required. Double
Apparent power reading in volt-amperes.
draw This property is required. number
Apparent power reading in volt-amperes.
draw This property is required. float
Apparent power reading in volt-amperes.
draw This property is required. Number
Apparent power reading in volt-amperes.

GetSensorReadingsLatestItemReadingBattery

Percentage This property is required. int
Remaining battery life.
Percentage This property is required. int
Remaining battery life.
percentage This property is required. Integer
Remaining battery life.
percentage This property is required. number
Remaining battery life.
percentage This property is required. int
Remaining battery life.
percentage This property is required. Number
Remaining battery life.

GetSensorReadingsLatestItemReadingButton

PressType This property is required. string
Type of button press that occurred.
PressType This property is required. string
Type of button press that occurred.
pressType This property is required. String
Type of button press that occurred.
pressType This property is required. string
Type of button press that occurred.
press_type This property is required. str
Type of button press that occurred.
pressType This property is required. String
Type of button press that occurred.

GetSensorReadingsLatestItemReadingCo2

Concentration This property is required. int
CO2 reading in parts per million.
Concentration This property is required. int
CO2 reading in parts per million.
concentration This property is required. Integer
CO2 reading in parts per million.
concentration This property is required. number
CO2 reading in parts per million.
concentration This property is required. int
CO2 reading in parts per million.
concentration This property is required. Number
CO2 reading in parts per million.

GetSensorReadingsLatestItemReadingCurrent

Draw This property is required. double
Electrical current reading in amperes.
Draw This property is required. float64
Electrical current reading in amperes.
draw This property is required. Double
Electrical current reading in amperes.
draw This property is required. number
Electrical current reading in amperes.
draw This property is required. float
Electrical current reading in amperes.
draw This property is required. Number
Electrical current reading in amperes.

GetSensorReadingsLatestItemReadingDoor

Open This property is required. bool
True if the door is open.
Open This property is required. bool
True if the door is open.
open This property is required. Boolean
True if the door is open.
open This property is required. boolean
True if the door is open.
open This property is required. bool
True if the door is open.
open This property is required. Boolean
True if the door is open.

GetSensorReadingsLatestItemReadingDownstreamPower

Enabled This property is required. bool
True if power is turned on to the device that is connected downstream of the MT40 power monitor.
Enabled This property is required. bool
True if power is turned on to the device that is connected downstream of the MT40 power monitor.
enabled This property is required. Boolean
True if power is turned on to the device that is connected downstream of the MT40 power monitor.
enabled This property is required. boolean
True if power is turned on to the device that is connected downstream of the MT40 power monitor.
enabled This property is required. bool
True if power is turned on to the device that is connected downstream of the MT40 power monitor.
enabled This property is required. Boolean
True if power is turned on to the device that is connected downstream of the MT40 power monitor.

GetSensorReadingsLatestItemReadingFrequency

Level This property is required. double
Electrical current frequency reading in hertz.
Level This property is required. float64
Electrical current frequency reading in hertz.
level This property is required. Double
Electrical current frequency reading in hertz.
level This property is required. number
Electrical current frequency reading in hertz.
level This property is required. float
Electrical current frequency reading in hertz.
level This property is required. Number
Electrical current frequency reading in hertz.

GetSensorReadingsLatestItemReadingHumidity

RelativePercentage This property is required. int
Humidity reading in %RH.
RelativePercentage This property is required. int
Humidity reading in %RH.
relativePercentage This property is required. Integer
Humidity reading in %RH.
relativePercentage This property is required. number
Humidity reading in %RH.
relative_percentage This property is required. int
Humidity reading in %RH.
relativePercentage This property is required. Number
Humidity reading in %RH.

GetSensorReadingsLatestItemReadingIndoorAirQuality

Score This property is required. int
Indoor air quality score between 0 and 100.
Score This property is required. int
Indoor air quality score between 0 and 100.
score This property is required. Integer
Indoor air quality score between 0 and 100.
score This property is required. number
Indoor air quality score between 0 and 100.
score This property is required. int
Indoor air quality score between 0 and 100.
score This property is required. Number
Indoor air quality score between 0 and 100.

GetSensorReadingsLatestItemReadingNoise

Ambient This property is required. GetSensorReadingsLatestItemReadingNoiseAmbient
Ambient noise reading.
Ambient This property is required. GetSensorReadingsLatestItemReadingNoiseAmbient
Ambient noise reading.
ambient This property is required. GetSensorReadingsLatestItemReadingNoiseAmbient
Ambient noise reading.
ambient This property is required. GetSensorReadingsLatestItemReadingNoiseAmbient
Ambient noise reading.
ambient This property is required. GetSensorReadingsLatestItemReadingNoiseAmbient
Ambient noise reading.
ambient This property is required. Property Map
Ambient noise reading.

GetSensorReadingsLatestItemReadingNoiseAmbient

Level This property is required. int
Ambient noise reading in adjusted decibels.
Level This property is required. int
Ambient noise reading in adjusted decibels.
level This property is required. Integer
Ambient noise reading in adjusted decibels.
level This property is required. number
Ambient noise reading in adjusted decibels.
level This property is required. int
Ambient noise reading in adjusted decibels.
level This property is required. Number
Ambient noise reading in adjusted decibels.

GetSensorReadingsLatestItemReadingPm25

Concentration This property is required. int
PM2.5 reading in micrograms per cubic meter.
Concentration This property is required. int
PM2.5 reading in micrograms per cubic meter.
concentration This property is required. Integer
PM2.5 reading in micrograms per cubic meter.
concentration This property is required. number
PM2.5 reading in micrograms per cubic meter.
concentration This property is required. int
PM2.5 reading in micrograms per cubic meter.
concentration This property is required. Number
PM2.5 reading in micrograms per cubic meter.

GetSensorReadingsLatestItemReadingPowerFactor

Percentage This property is required. int
Power factor reading as a percentage.
Percentage This property is required. int
Power factor reading as a percentage.
percentage This property is required. Integer
Power factor reading as a percentage.
percentage This property is required. number
Power factor reading as a percentage.
percentage This property is required. int
Power factor reading as a percentage.
percentage This property is required. Number
Power factor reading as a percentage.

GetSensorReadingsLatestItemReadingRealPower

Draw This property is required. double
Real power reading in watts.
Draw This property is required. float64
Real power reading in watts.
draw This property is required. Double
Real power reading in watts.
draw This property is required. number
Real power reading in watts.
draw This property is required. float
Real power reading in watts.
draw This property is required. Number
Real power reading in watts.

GetSensorReadingsLatestItemReadingRemoteLockoutSwitch

Locked This property is required. bool
True if power controls are disabled via the MT40's physical remote lockout switch.
Locked This property is required. bool
True if power controls are disabled via the MT40's physical remote lockout switch.
locked This property is required. Boolean
True if power controls are disabled via the MT40's physical remote lockout switch.
locked This property is required. boolean
True if power controls are disabled via the MT40's physical remote lockout switch.
locked This property is required. bool
True if power controls are disabled via the MT40's physical remote lockout switch.
locked This property is required. Boolean
True if power controls are disabled via the MT40's physical remote lockout switch.

GetSensorReadingsLatestItemReadingTemperature

Celsius This property is required. double
Temperature reading in degrees Celsius.
Fahrenheit This property is required. double
Temperature reading in degrees Fahrenheit.
Celsius This property is required. float64
Temperature reading in degrees Celsius.
Fahrenheit This property is required. float64
Temperature reading in degrees Fahrenheit.
celsius This property is required. Double
Temperature reading in degrees Celsius.
fahrenheit This property is required. Double
Temperature reading in degrees Fahrenheit.
celsius This property is required. number
Temperature reading in degrees Celsius.
fahrenheit This property is required. number
Temperature reading in degrees Fahrenheit.
celsius This property is required. float
Temperature reading in degrees Celsius.
fahrenheit This property is required. float
Temperature reading in degrees Fahrenheit.
celsius This property is required. Number
Temperature reading in degrees Celsius.
fahrenheit This property is required. Number
Temperature reading in degrees Fahrenheit.

GetSensorReadingsLatestItemReadingTvoc

Concentration This property is required. int
TVOC reading in micrograms per cubic meter.
Concentration This property is required. int
TVOC reading in micrograms per cubic meter.
concentration This property is required. Integer
TVOC reading in micrograms per cubic meter.
concentration This property is required. number
TVOC reading in micrograms per cubic meter.
concentration This property is required. int
TVOC reading in micrograms per cubic meter.
concentration This property is required. Number
TVOC reading in micrograms per cubic meter.

GetSensorReadingsLatestItemReadingVoltage

Level This property is required. double
Voltage reading in volts.
Level This property is required. float64
Voltage reading in volts.
level This property is required. Double
Voltage reading in volts.
level This property is required. number
Voltage reading in volts.
level This property is required. float
Voltage reading in volts.
level This property is required. Number
Voltage reading in volts.

GetSensorReadingsLatestItemReadingWater

Present This property is required. bool
True if water is detected.
Present This property is required. bool
True if water is detected.
present This property is required. Boolean
True if water is detected.
present This property is required. boolean
True if water is detected.
present This property is required. bool
True if water is detected.
present This property is required. Boolean
True if water is detected.

Package Details

Repository
meraki pulumi/pulumi-meraki
License
Apache-2.0
Notes
This Pulumi package is based on the meraki Terraform Provider.