Cisco Meraki v0.4.1 published on Saturday, Mar 15, 2025 by Pulumi
meraki.organizations.getDevicesStatuses
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as meraki from "@pulumi/meraki";
const example = meraki.organizations.getDevicesStatuses({
    endingBefore: "string",
    models: ["string"],
    networkIds: ["string"],
    organizationId: "string",
    perPage: 1,
    productTypes: ["string"],
    serials: ["string"],
    startingAfter: "string",
    statuses: ["string"],
    tags: ["string"],
    tagsFilterType: "string",
});
export const merakiOrganizationsDevicesStatusesExample = example.then(example => example.items);
import pulumi
import pulumi_meraki as meraki
example = meraki.organizations.get_devices_statuses(ending_before="string",
    models=["string"],
    network_ids=["string"],
    organization_id="string",
    per_page=1,
    product_types=["string"],
    serials=["string"],
    starting_after="string",
    statuses=["string"],
    tags=["string"],
    tags_filter_type="string")
pulumi.export("merakiOrganizationsDevicesStatusesExample", 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.GetDevicesStatuses(ctx, &organizations.GetDevicesStatusesArgs{
			EndingBefore: pulumi.StringRef("string"),
			Models: []string{
				"string",
			},
			NetworkIds: []string{
				"string",
			},
			OrganizationId: "string",
			PerPage:        pulumi.IntRef(1),
			ProductTypes: []string{
				"string",
			},
			Serials: []string{
				"string",
			},
			StartingAfter: pulumi.StringRef("string"),
			Statuses: []string{
				"string",
			},
			Tags: []string{
				"string",
			},
			TagsFilterType: pulumi.StringRef("string"),
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("merakiOrganizationsDevicesStatusesExample", 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.GetDevicesStatuses.Invoke(new()
    {
        EndingBefore = "string",
        Models = new[]
        {
            "string",
        },
        NetworkIds = new[]
        {
            "string",
        },
        OrganizationId = "string",
        PerPage = 1,
        ProductTypes = new[]
        {
            "string",
        },
        Serials = new[]
        {
            "string",
        },
        StartingAfter = "string",
        Statuses = new[]
        {
            "string",
        },
        Tags = new[]
        {
            "string",
        },
        TagsFilterType = "string",
    });
    return new Dictionary<string, object?>
    {
        ["merakiOrganizationsDevicesStatusesExample"] = example.Apply(getDevicesStatusesResult => getDevicesStatusesResult.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.GetDevicesStatusesArgs;
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.getDevicesStatuses(GetDevicesStatusesArgs.builder()
            .endingBefore("string")
            .models("string")
            .networkIds("string")
            .organizationId("string")
            .perPage(1)
            .productTypes("string")
            .serials("string")
            .startingAfter("string")
            .statuses("string")
            .tags("string")
            .tagsFilterType("string")
            .build());
        ctx.export("merakiOrganizationsDevicesStatusesExample", example.applyValue(getDevicesStatusesResult -> getDevicesStatusesResult.items()));
    }
}
variables:
  example:
    fn::invoke:
      function: meraki:organizations:getDevicesStatuses
      arguments:
        endingBefore: string
        models:
          - string
        networkIds:
          - string
        organizationId: string
        perPage: 1
        productTypes:
          - string
        serials:
          - string
        startingAfter: string
        statuses:
          - string
        tags:
          - string
        tagsFilterType: string
outputs:
  merakiOrganizationsDevicesStatusesExample: ${example.items}
Using getDevicesStatuses
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 getDevicesStatuses(args: GetDevicesStatusesArgs, opts?: InvokeOptions): Promise<GetDevicesStatusesResult>
function getDevicesStatusesOutput(args: GetDevicesStatusesOutputArgs, opts?: InvokeOptions): Output<GetDevicesStatusesResult>def get_devices_statuses(ending_before: Optional[str] = None,
                         models: Optional[Sequence[str]] = None,
                         network_ids: Optional[Sequence[str]] = None,
                         organization_id: Optional[str] = None,
                         per_page: Optional[int] = None,
                         product_types: Optional[Sequence[str]] = None,
                         serials: Optional[Sequence[str]] = None,
                         starting_after: Optional[str] = None,
                         statuses: Optional[Sequence[str]] = None,
                         tags: Optional[Sequence[str]] = None,
                         tags_filter_type: Optional[str] = None,
                         opts: Optional[InvokeOptions] = None) -> GetDevicesStatusesResult
def get_devices_statuses_output(ending_before: Optional[pulumi.Input[str]] = None,
                         models: 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,
                         product_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                         serials: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                         starting_after: Optional[pulumi.Input[str]] = None,
                         statuses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                         tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                         tags_filter_type: Optional[pulumi.Input[str]] = None,
                         opts: Optional[InvokeOptions] = None) -> Output[GetDevicesStatusesResult]func GetDevicesStatuses(ctx *Context, args *GetDevicesStatusesArgs, opts ...InvokeOption) (*GetDevicesStatusesResult, error)
func GetDevicesStatusesOutput(ctx *Context, args *GetDevicesStatusesOutputArgs, opts ...InvokeOption) GetDevicesStatusesResultOutput> Note: This function is named GetDevicesStatuses in the Go SDK.
public static class GetDevicesStatuses 
{
    public static Task<GetDevicesStatusesResult> InvokeAsync(GetDevicesStatusesArgs args, InvokeOptions? opts = null)
    public static Output<GetDevicesStatusesResult> Invoke(GetDevicesStatusesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetDevicesStatusesResult> getDevicesStatuses(GetDevicesStatusesArgs args, InvokeOptions options)
public static Output<GetDevicesStatusesResult> getDevicesStatuses(GetDevicesStatusesArgs args, InvokeOptions options)
fn::invoke:
  function: meraki:organizations/getDevicesStatuses:getDevicesStatuses
  arguments:
    # arguments dictionaryThe 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.
- Models List<string>
- models query parameter. Optional parameter to filter devices by models.
- NetworkIds List<string>
- networkIds query parameter. Optional parameter to filter devices by network ids.
- PerPage int
- perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- ProductTypes List<string>
- productTypes query parameter. An optional parameter to filter device statuses by product type. Valid types are wireless, appliance, switch, systemsManager, camera, cellularGateway, and sensor.
- Serials List<string>
- serials query parameter. Optional parameter to filter devices by serials.
- 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.
- Statuses List<string>
- statuses query parameter. Optional parameter to filter devices by statuses. Valid statuses are ["online", "alerting", "offline", "dormant"].
- List<string>
- tags query parameter. An optional parameter to filter devices by tags. The filtering is case-sensitive. If tags are included, 'tagsFilterType' should also be included (see below).
- string
- tagsFilterType query parameter. An optional parameter of value 'withAnyTags' or 'withAllTags' to indicate whether to return devices which contain ANY or ALL of the included tags. If no type is included, 'withAnyTags' will be selected.
- 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.
- Models []string
- models query parameter. Optional parameter to filter devices by models.
- NetworkIds []string
- networkIds query parameter. Optional parameter to filter devices by network ids.
- PerPage int
- perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- ProductTypes []string
- productTypes query parameter. An optional parameter to filter device statuses by product type. Valid types are wireless, appliance, switch, systemsManager, camera, cellularGateway, and sensor.
- Serials []string
- serials query parameter. Optional parameter to filter devices by serials.
- 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.
- Statuses []string
- statuses query parameter. Optional parameter to filter devices by statuses. Valid statuses are ["online", "alerting", "offline", "dormant"].
- []string
- tags query parameter. An optional parameter to filter devices by tags. The filtering is case-sensitive. If tags are included, 'tagsFilterType' should also be included (see below).
- string
- tagsFilterType query parameter. An optional parameter of value 'withAnyTags' or 'withAllTags' to indicate whether to return devices which contain ANY or ALL of the included tags. If no type is included, 'withAnyTags' will be selected.
- 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.
- models List<String>
- models query parameter. Optional parameter to filter devices by models.
- networkIds List<String>
- networkIds query parameter. Optional parameter to filter devices by network ids.
- perPage Integer
- perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- productTypes List<String>
- productTypes query parameter. An optional parameter to filter device statuses by product type. Valid types are wireless, appliance, switch, systemsManager, camera, cellularGateway, and sensor.
- serials List<String>
- serials query parameter. Optional parameter to filter devices by serials.
- 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.
- statuses List<String>
- statuses query parameter. Optional parameter to filter devices by statuses. Valid statuses are ["online", "alerting", "offline", "dormant"].
- List<String>
- tags query parameter. An optional parameter to filter devices by tags. The filtering is case-sensitive. If tags are included, 'tagsFilterType' should also be included (see below).
- String
- tagsFilterType query parameter. An optional parameter of value 'withAnyTags' or 'withAllTags' to indicate whether to return devices which contain ANY or ALL of the included tags. If no type is included, 'withAnyTags' will be selected.
- 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.
- models string[]
- models query parameter. Optional parameter to filter devices by models.
- networkIds string[]
- networkIds query parameter. Optional parameter to filter devices by network ids.
- perPage number
- perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- productTypes string[]
- productTypes query parameter. An optional parameter to filter device statuses by product type. Valid types are wireless, appliance, switch, systemsManager, camera, cellularGateway, and sensor.
- serials string[]
- serials query parameter. Optional parameter to filter devices by serials.
- 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.
- statuses string[]
- statuses query parameter. Optional parameter to filter devices by statuses. Valid statuses are ["online", "alerting", "offline", "dormant"].
- string[]
- tags query parameter. An optional parameter to filter devices by tags. The filtering is case-sensitive. If tags are included, 'tagsFilterType' should also be included (see below).
- string
- tagsFilterType query parameter. An optional parameter of value 'withAnyTags' or 'withAllTags' to indicate whether to return devices which contain ANY or ALL of the included tags. If no type is included, 'withAnyTags' will be selected.
- 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.
- models Sequence[str]
- models query parameter. Optional parameter to filter devices by models.
- network_ids Sequence[str]
- networkIds query parameter. Optional parameter to filter devices by network ids.
- per_page int
- perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- product_types Sequence[str]
- productTypes query parameter. An optional parameter to filter device statuses by product type. Valid types are wireless, appliance, switch, systemsManager, camera, cellularGateway, and sensor.
- serials Sequence[str]
- serials query parameter. Optional parameter to filter devices by serials.
- 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.
- statuses Sequence[str]
- statuses query parameter. Optional parameter to filter devices by statuses. Valid statuses are ["online", "alerting", "offline", "dormant"].
- Sequence[str]
- tags query parameter. An optional parameter to filter devices by tags. The filtering is case-sensitive. If tags are included, 'tagsFilterType' should also be included (see below).
- str
- tagsFilterType query parameter. An optional parameter of value 'withAnyTags' or 'withAllTags' to indicate whether to return devices which contain ANY or ALL of the included tags. If no type is included, 'withAnyTags' will be selected.
- 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.
- models List<String>
- models query parameter. Optional parameter to filter devices by models.
- networkIds List<String>
- networkIds query parameter. Optional parameter to filter devices by network ids.
- perPage Number
- perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- productTypes List<String>
- productTypes query parameter. An optional parameter to filter device statuses by product type. Valid types are wireless, appliance, switch, systemsManager, camera, cellularGateway, and sensor.
- serials List<String>
- serials query parameter. Optional parameter to filter devices by serials.
- 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.
- statuses List<String>
- statuses query parameter. Optional parameter to filter devices by statuses. Valid statuses are ["online", "alerting", "offline", "dormant"].
- List<String>
- tags query parameter. An optional parameter to filter devices by tags. The filtering is case-sensitive. If tags are included, 'tagsFilterType' should also be included (see below).
- String
- tagsFilterType query parameter. An optional parameter of value 'withAnyTags' or 'withAllTags' to indicate whether to return devices which contain ANY or ALL of the included tags. If no type is included, 'withAnyTags' will be selected.
getDevicesStatuses Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
List<GetDevices Statuses Item> 
- Array of ResponseOrganizationsGetOrganizationDevicesStatuses
- 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.
- Models List<string>
- models query parameter. Optional parameter to filter devices by models.
- NetworkIds List<string>
- networkIds query parameter. Optional parameter to filter devices by network ids.
- PerPage int
- perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- ProductTypes List<string>
- productTypes query parameter. An optional parameter to filter device statuses by product type. Valid types are wireless, appliance, switch, systemsManager, camera, cellularGateway, and sensor.
- Serials List<string>
- serials query parameter. Optional parameter to filter devices by serials.
- 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.
- Statuses List<string>
- statuses query parameter. Optional parameter to filter devices by statuses. Valid statuses are ["online", "alerting", "offline", "dormant"].
- List<string>
- tags query parameter. An optional parameter to filter devices by tags. The filtering is case-sensitive. If tags are included, 'tagsFilterType' should also be included (see below).
- string
- tagsFilterType query parameter. An optional parameter of value 'withAnyTags' or 'withAllTags' to indicate whether to return devices which contain ANY or ALL of the included tags. If no type is included, 'withAnyTags' will be selected.
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
[]GetDevices Statuses Item 
- Array of ResponseOrganizationsGetOrganizationDevicesStatuses
- 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.
- Models []string
- models query parameter. Optional parameter to filter devices by models.
- NetworkIds []string
- networkIds query parameter. Optional parameter to filter devices by network ids.
- PerPage int
- perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- ProductTypes []string
- productTypes query parameter. An optional parameter to filter device statuses by product type. Valid types are wireless, appliance, switch, systemsManager, camera, cellularGateway, and sensor.
- Serials []string
- serials query parameter. Optional parameter to filter devices by serials.
- 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.
- Statuses []string
- statuses query parameter. Optional parameter to filter devices by statuses. Valid statuses are ["online", "alerting", "offline", "dormant"].
- []string
- tags query parameter. An optional parameter to filter devices by tags. The filtering is case-sensitive. If tags are included, 'tagsFilterType' should also be included (see below).
- string
- tagsFilterType query parameter. An optional parameter of value 'withAnyTags' or 'withAllTags' to indicate whether to return devices which contain ANY or ALL of the included tags. If no type is included, 'withAnyTags' will be selected.
- id String
- The provider-assigned unique ID for this managed resource.
- items
List<GetDevices Statuses Item> 
- Array of ResponseOrganizationsGetOrganizationDevicesStatuses
- 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.
- models List<String>
- models query parameter. Optional parameter to filter devices by models.
- networkIds List<String>
- networkIds query parameter. Optional parameter to filter devices by network ids.
- perPage Integer
- perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- productTypes List<String>
- productTypes query parameter. An optional parameter to filter device statuses by product type. Valid types are wireless, appliance, switch, systemsManager, camera, cellularGateway, and sensor.
- serials List<String>
- serials query parameter. Optional parameter to filter devices by serials.
- 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.
- statuses List<String>
- statuses query parameter. Optional parameter to filter devices by statuses. Valid statuses are ["online", "alerting", "offline", "dormant"].
- List<String>
- tags query parameter. An optional parameter to filter devices by tags. The filtering is case-sensitive. If tags are included, 'tagsFilterType' should also be included (see below).
- String
- tagsFilterType query parameter. An optional parameter of value 'withAnyTags' or 'withAllTags' to indicate whether to return devices which contain ANY or ALL of the included tags. If no type is included, 'withAnyTags' will be selected.
- id string
- The provider-assigned unique ID for this managed resource.
- items
GetDevices Statuses Item[] 
- Array of ResponseOrganizationsGetOrganizationDevicesStatuses
- 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.
- models string[]
- models query parameter. Optional parameter to filter devices by models.
- networkIds string[]
- networkIds query parameter. Optional parameter to filter devices by network ids.
- perPage number
- perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- productTypes string[]
- productTypes query parameter. An optional parameter to filter device statuses by product type. Valid types are wireless, appliance, switch, systemsManager, camera, cellularGateway, and sensor.
- serials string[]
- serials query parameter. Optional parameter to filter devices by serials.
- 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.
- statuses string[]
- statuses query parameter. Optional parameter to filter devices by statuses. Valid statuses are ["online", "alerting", "offline", "dormant"].
- string[]
- tags query parameter. An optional parameter to filter devices by tags. The filtering is case-sensitive. If tags are included, 'tagsFilterType' should also be included (see below).
- string
- tagsFilterType query parameter. An optional parameter of value 'withAnyTags' or 'withAllTags' to indicate whether to return devices which contain ANY or ALL of the included tags. If no type is included, 'withAnyTags' will be selected.
- id str
- The provider-assigned unique ID for this managed resource.
- items
Sequence[GetDevices Statuses Item] 
- Array of ResponseOrganizationsGetOrganizationDevicesStatuses
- 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.
- models Sequence[str]
- models query parameter. Optional parameter to filter devices by models.
- network_ids Sequence[str]
- networkIds query parameter. Optional parameter to filter devices by network ids.
- per_page int
- perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- product_types Sequence[str]
- productTypes query parameter. An optional parameter to filter device statuses by product type. Valid types are wireless, appliance, switch, systemsManager, camera, cellularGateway, and sensor.
- serials Sequence[str]
- serials query parameter. Optional parameter to filter devices by serials.
- 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.
- statuses Sequence[str]
- statuses query parameter. Optional parameter to filter devices by statuses. Valid statuses are ["online", "alerting", "offline", "dormant"].
- Sequence[str]
- tags query parameter. An optional parameter to filter devices by tags. The filtering is case-sensitive. If tags are included, 'tagsFilterType' should also be included (see below).
- str
- tagsFilterType query parameter. An optional parameter of value 'withAnyTags' or 'withAllTags' to indicate whether to return devices which contain ANY or ALL of the included tags. If no type is included, 'withAnyTags' will be selected.
- id String
- The provider-assigned unique ID for this managed resource.
- items List<Property Map>
- Array of ResponseOrganizationsGetOrganizationDevicesStatuses
- 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.
- models List<String>
- models query parameter. Optional parameter to filter devices by models.
- networkIds List<String>
- networkIds query parameter. Optional parameter to filter devices by network ids.
- perPage Number
- perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- productTypes List<String>
- productTypes query parameter. An optional parameter to filter device statuses by product type. Valid types are wireless, appliance, switch, systemsManager, camera, cellularGateway, and sensor.
- serials List<String>
- serials query parameter. Optional parameter to filter devices by serials.
- 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.
- statuses List<String>
- statuses query parameter. Optional parameter to filter devices by statuses. Valid statuses are ["online", "alerting", "offline", "dormant"].
- List<String>
- tags query parameter. An optional parameter to filter devices by tags. The filtering is case-sensitive. If tags are included, 'tagsFilterType' should also be included (see below).
- String
- tagsFilterType query parameter. An optional parameter of value 'withAnyTags' or 'withAllTags' to indicate whether to return devices which contain ANY or ALL of the included tags. If no type is included, 'withAnyTags' will be selected.
Supporting Types
GetDevicesStatusesItem   
- Components
GetDevices Statuses Item Components 
- Components
- Gateway string
- IP Gateway
- IpType string
- IP Type
- LanIp string
- LAN IP Address
- LastReported stringAt 
- Device Last Reported Location
- Mac string
- MAC Address
- Model string
- Model
- Name string
- Device Name
- NetworkId string
- Network ID
- PrimaryDns string
- Primary DNS
- ProductType string
- Product Type
- PublicIp string
- Public IP Address
- SecondaryDns string
- Secondary DNS
- Serial string
- Device Serial Number
- Status string
- Device Status
- List<string>
- Tags
- Components
GetDevices Statuses Item Components 
- Components
- Gateway string
- IP Gateway
- IpType string
- IP Type
- LanIp string
- LAN IP Address
- LastReported stringAt 
- Device Last Reported Location
- Mac string
- MAC Address
- Model string
- Model
- Name string
- Device Name
- NetworkId string
- Network ID
- PrimaryDns string
- Primary DNS
- ProductType string
- Product Type
- PublicIp string
- Public IP Address
- SecondaryDns string
- Secondary DNS
- Serial string
- Device Serial Number
- Status string
- Device Status
- []string
- Tags
- components
GetDevices Statuses Item Components 
- Components
- gateway String
- IP Gateway
- ipType String
- IP Type
- lanIp String
- LAN IP Address
- lastReported StringAt 
- Device Last Reported Location
- mac String
- MAC Address
- model String
- Model
- name String
- Device Name
- networkId String
- Network ID
- primaryDns String
- Primary DNS
- productType String
- Product Type
- publicIp String
- Public IP Address
- secondaryDns String
- Secondary DNS
- serial String
- Device Serial Number
- status String
- Device Status
- List<String>
- Tags
- components
GetDevices Statuses Item Components 
- Components
- gateway string
- IP Gateway
- ipType string
- IP Type
- lanIp string
- LAN IP Address
- lastReported stringAt 
- Device Last Reported Location
- mac string
- MAC Address
- model string
- Model
- name string
- Device Name
- networkId string
- Network ID
- primaryDns string
- Primary DNS
- productType string
- Product Type
- publicIp string
- Public IP Address
- secondaryDns string
- Secondary DNS
- serial string
- Device Serial Number
- status string
- Device Status
- string[]
- Tags
- components
GetDevices Statuses Item Components 
- Components
- gateway str
- IP Gateway
- ip_type str
- IP Type
- lan_ip str
- LAN IP Address
- last_reported_ strat 
- Device Last Reported Location
- mac str
- MAC Address
- model str
- Model
- name str
- Device Name
- network_id str
- Network ID
- primary_dns str
- Primary DNS
- product_type str
- Product Type
- public_ip str
- Public IP Address
- secondary_dns str
- Secondary DNS
- serial str
- Device Serial Number
- status str
- Device Status
- Sequence[str]
- Tags
- components Property Map
- Components
- gateway String
- IP Gateway
- ipType String
- IP Type
- lanIp String
- LAN IP Address
- lastReported StringAt 
- Device Last Reported Location
- mac String
- MAC Address
- model String
- Model
- name String
- Device Name
- networkId String
- Network ID
- primaryDns String
- Primary DNS
- productType String
- Product Type
- publicIp String
- Public IP Address
- secondaryDns String
- Secondary DNS
- serial String
- Device Serial Number
- status String
- Device Status
- List<String>
- Tags
GetDevicesStatusesItemComponents    
- PowerSupplies []GetDevices Statuses Item Components Power Supply 
- Power Supplies
- powerSupplies GetDevices Statuses Item Components Power Supply[] 
- Power Supplies
- powerSupplies List<Property Map>
- Power Supplies
GetDevicesStatusesItemComponentsPowerSupply      
GetDevicesStatusesItemComponentsPowerSupplyPoe       
Package Details
- Repository
- meraki pulumi/pulumi-meraki
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the merakiTerraform Provider.
