1. Packages
  2. Cisco Meraki
  3. API Docs
  4. organizations
  5. getSensorReadingsLatest
Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi

meraki.organizations.getSensorReadingsLatest

Explore with Pulumi AI

meraki logo
Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi

    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);
    
    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)
    
    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
    	})
    }
    
    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),
        };
    });
    
    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()));
        }
    }
    
    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}
    

    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>
    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]
    func GetSensorReadingsLatest(ctx *Context, args *GetSensorReadingsLatestArgs, opts ...InvokeOption) (*GetSensorReadingsLatestResult, error)
    func GetSensorReadingsLatestOutput(ctx *Context, args *GetSensorReadingsLatestOutputArgs, opts ...InvokeOption) GetSensorReadingsLatestResultOutput

    > 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)
    }
    public static CompletableFuture<GetSensorReadingsLatestResult> getSensorReadingsLatest(GetSensorReadingsLatestArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: meraki:organizations/getSensorReadingsLatest:getSensorReadingsLatest
      arguments:
        # arguments dictionary

    The following arguments are supported:

    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.
    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.
    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.
    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.
    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.
    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.

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

    GetSensorReadingsLatestItemNetwork

    Id string
    ID of the network.
    Name string
    Name of the network.
    Id string
    ID of the network.
    Name string
    Name of the network.
    id String
    ID of the network.
    name String
    Name of the network.
    id string
    ID of the network.
    name string
    Name of the network.
    id str
    ID of the network.
    name str
    Name of the network.
    id String
    ID of the network.
    name String
    Name of the network.

    GetSensorReadingsLatestItemReading

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

    GetSensorReadingsLatestItemReadingApparentPower

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

    GetSensorReadingsLatestItemReadingBattery

    Percentage int
    Remaining battery life.
    Percentage int
    Remaining battery life.
    percentage Integer
    Remaining battery life.
    percentage number
    Remaining battery life.
    percentage int
    Remaining battery life.
    percentage Number
    Remaining battery life.

    GetSensorReadingsLatestItemReadingButton

    PressType string
    Type of button press that occurred.
    PressType string
    Type of button press that occurred.
    pressType String
    Type of button press that occurred.
    pressType string
    Type of button press that occurred.
    press_type str
    Type of button press that occurred.
    pressType String
    Type of button press that occurred.

    GetSensorReadingsLatestItemReadingCo2

    Concentration int
    CO2 reading in parts per million.
    Concentration int
    CO2 reading in parts per million.
    concentration Integer
    CO2 reading in parts per million.
    concentration number
    CO2 reading in parts per million.
    concentration int
    CO2 reading in parts per million.
    concentration Number
    CO2 reading in parts per million.

    GetSensorReadingsLatestItemReadingCurrent

    Draw double
    Electrical current reading in amperes.
    Draw float64
    Electrical current reading in amperes.
    draw Double
    Electrical current reading in amperes.
    draw number
    Electrical current reading in amperes.
    draw float
    Electrical current reading in amperes.
    draw Number
    Electrical current reading in amperes.

    GetSensorReadingsLatestItemReadingDoor

    Open bool
    True if the door is open.
    Open bool
    True if the door is open.
    open Boolean
    True if the door is open.
    open boolean
    True if the door is open.
    open bool
    True if the door is open.
    open Boolean
    True if the door is open.

    GetSensorReadingsLatestItemReadingDownstreamPower

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

    GetSensorReadingsLatestItemReadingFrequency

    Level double
    Electrical current frequency reading in hertz.
    Level float64
    Electrical current frequency reading in hertz.
    level Double
    Electrical current frequency reading in hertz.
    level number
    Electrical current frequency reading in hertz.
    level float
    Electrical current frequency reading in hertz.
    level Number
    Electrical current frequency reading in hertz.

    GetSensorReadingsLatestItemReadingHumidity

    RelativePercentage int
    Humidity reading in %RH.
    RelativePercentage int
    Humidity reading in %RH.
    relativePercentage Integer
    Humidity reading in %RH.
    relativePercentage number
    Humidity reading in %RH.
    relative_percentage int
    Humidity reading in %RH.
    relativePercentage Number
    Humidity reading in %RH.

    GetSensorReadingsLatestItemReadingIndoorAirQuality

    Score int
    Indoor air quality score between 0 and 100.
    Score int
    Indoor air quality score between 0 and 100.
    score Integer
    Indoor air quality score between 0 and 100.
    score number
    Indoor air quality score between 0 and 100.
    score int
    Indoor air quality score between 0 and 100.
    score Number
    Indoor air quality score between 0 and 100.

    GetSensorReadingsLatestItemReadingNoise

    ambient Property Map
    Ambient noise reading.

    GetSensorReadingsLatestItemReadingNoiseAmbient

    Level int
    Ambient noise reading in adjusted decibels.
    Level int
    Ambient noise reading in adjusted decibels.
    level Integer
    Ambient noise reading in adjusted decibels.
    level number
    Ambient noise reading in adjusted decibels.
    level int
    Ambient noise reading in adjusted decibels.
    level Number
    Ambient noise reading in adjusted decibels.

    GetSensorReadingsLatestItemReadingPm25

    Concentration int
    PM2.5 reading in micrograms per cubic meter.
    Concentration int
    PM2.5 reading in micrograms per cubic meter.
    concentration Integer
    PM2.5 reading in micrograms per cubic meter.
    concentration number
    PM2.5 reading in micrograms per cubic meter.
    concentration int
    PM2.5 reading in micrograms per cubic meter.
    concentration Number
    PM2.5 reading in micrograms per cubic meter.

    GetSensorReadingsLatestItemReadingPowerFactor

    Percentage int
    Power factor reading as a percentage.
    Percentage int
    Power factor reading as a percentage.
    percentage Integer
    Power factor reading as a percentage.
    percentage number
    Power factor reading as a percentage.
    percentage int
    Power factor reading as a percentage.
    percentage Number
    Power factor reading as a percentage.

    GetSensorReadingsLatestItemReadingRealPower

    Draw double
    Real power reading in watts.
    Draw float64
    Real power reading in watts.
    draw Double
    Real power reading in watts.
    draw number
    Real power reading in watts.
    draw float
    Real power reading in watts.
    draw Number
    Real power reading in watts.

    GetSensorReadingsLatestItemReadingRemoteLockoutSwitch

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

    GetSensorReadingsLatestItemReadingTemperature

    Celsius double
    Temperature reading in degrees Celsius.
    Fahrenheit double
    Temperature reading in degrees Fahrenheit.
    Celsius float64
    Temperature reading in degrees Celsius.
    Fahrenheit float64
    Temperature reading in degrees Fahrenheit.
    celsius Double
    Temperature reading in degrees Celsius.
    fahrenheit Double
    Temperature reading in degrees Fahrenheit.
    celsius number
    Temperature reading in degrees Celsius.
    fahrenheit number
    Temperature reading in degrees Fahrenheit.
    celsius float
    Temperature reading in degrees Celsius.
    fahrenheit float
    Temperature reading in degrees Fahrenheit.
    celsius Number
    Temperature reading in degrees Celsius.
    fahrenheit Number
    Temperature reading in degrees Fahrenheit.

    GetSensorReadingsLatestItemReadingTvoc

    Concentration int
    TVOC reading in micrograms per cubic meter.
    Concentration int
    TVOC reading in micrograms per cubic meter.
    concentration Integer
    TVOC reading in micrograms per cubic meter.
    concentration number
    TVOC reading in micrograms per cubic meter.
    concentration int
    TVOC reading in micrograms per cubic meter.
    concentration Number
    TVOC reading in micrograms per cubic meter.

    GetSensorReadingsLatestItemReadingVoltage

    Level double
    Voltage reading in volts.
    Level float64
    Voltage reading in volts.
    level Double
    Voltage reading in volts.
    level number
    Voltage reading in volts.
    level float
    Voltage reading in volts.
    level Number
    Voltage reading in volts.

    GetSensorReadingsLatestItemReadingWater

    Present bool
    True if water is detected.
    Present bool
    True if water is detected.
    present Boolean
    True if water is detected.
    present boolean
    True if water is detected.
    present bool
    True if water is detected.
    present 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.
    meraki logo
    Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi