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

meraki.organizations.getDevicesPowerModulesStatusesByDevice

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.getDevicesPowerModulesStatusesByDevice({
        endingBefore: "string",
        networkIds: ["string"],
        organizationId: "string",
        perPage: 1,
        productTypes: ["string"],
        serials: ["string"],
        startingAfter: "string",
        tags: ["string"],
        tagsFilterType: "string",
    });
    export const merakiOrganizationsDevicesPowerModulesStatusesByDeviceExample = example.then(example => example.items);
    
    import pulumi
    import pulumi_meraki as meraki
    
    example = meraki.organizations.get_devices_power_modules_statuses_by_device(ending_before="string",
        network_ids=["string"],
        organization_id="string",
        per_page=1,
        product_types=["string"],
        serials=["string"],
        starting_after="string",
        tags=["string"],
        tags_filter_type="string")
    pulumi.export("merakiOrganizationsDevicesPowerModulesStatusesByDeviceExample", 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.GetDevicesPowerModulesStatusesByDevice(ctx, &organizations.GetDevicesPowerModulesStatusesByDeviceArgs{
    			EndingBefore: pulumi.StringRef("string"),
    			NetworkIds: []string{
    				"string",
    			},
    			OrganizationId: "string",
    			PerPage:        pulumi.IntRef(1),
    			ProductTypes: []string{
    				"string",
    			},
    			Serials: []string{
    				"string",
    			},
    			StartingAfter: pulumi.StringRef("string"),
    			Tags: []string{
    				"string",
    			},
    			TagsFilterType: pulumi.StringRef("string"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("merakiOrganizationsDevicesPowerModulesStatusesByDeviceExample", 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.GetDevicesPowerModulesStatusesByDevice.Invoke(new()
        {
            EndingBefore = "string",
            NetworkIds = new[]
            {
                "string",
            },
            OrganizationId = "string",
            PerPage = 1,
            ProductTypes = new[]
            {
                "string",
            },
            Serials = new[]
            {
                "string",
            },
            StartingAfter = "string",
            Tags = new[]
            {
                "string",
            },
            TagsFilterType = "string",
        });
    
        return new Dictionary<string, object?>
        {
            ["merakiOrganizationsDevicesPowerModulesStatusesByDeviceExample"] = example.Apply(getDevicesPowerModulesStatusesByDeviceResult => getDevicesPowerModulesStatusesByDeviceResult.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.GetDevicesPowerModulesStatusesByDeviceArgs;
    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.getDevicesPowerModulesStatusesByDevice(GetDevicesPowerModulesStatusesByDeviceArgs.builder()
                .endingBefore("string")
                .networkIds("string")
                .organizationId("string")
                .perPage(1)
                .productTypes("string")
                .serials("string")
                .startingAfter("string")
                .tags("string")
                .tagsFilterType("string")
                .build());
    
            ctx.export("merakiOrganizationsDevicesPowerModulesStatusesByDeviceExample", example.applyValue(getDevicesPowerModulesStatusesByDeviceResult -> getDevicesPowerModulesStatusesByDeviceResult.items()));
        }
    }
    
    variables:
      example:
        fn::invoke:
          Function: meraki:organizations:getDevicesPowerModulesStatusesByDevice
          Arguments:
            endingBefore: string
            networkIds:
              - string
            organizationId: string
            perPage: 1
            productTypes:
              - string
            serials:
              - string
            startingAfter: string
            tags:
              - string
            tagsFilterType: string
    outputs:
      merakiOrganizationsDevicesPowerModulesStatusesByDeviceExample: ${example.items}
    

    Using getDevicesPowerModulesStatusesByDevice

    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 getDevicesPowerModulesStatusesByDevice(args: GetDevicesPowerModulesStatusesByDeviceArgs, opts?: InvokeOptions): Promise<GetDevicesPowerModulesStatusesByDeviceResult>
    function getDevicesPowerModulesStatusesByDeviceOutput(args: GetDevicesPowerModulesStatusesByDeviceOutputArgs, opts?: InvokeOptions): Output<GetDevicesPowerModulesStatusesByDeviceResult>
    def get_devices_power_modules_statuses_by_device(ending_before: Optional[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,
                                                     tags: Optional[Sequence[str]] = None,
                                                     tags_filter_type: Optional[str] = None,
                                                     opts: Optional[InvokeOptions] = None) -> GetDevicesPowerModulesStatusesByDeviceResult
    def get_devices_power_modules_statuses_by_device_output(ending_before: Optional[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,
                                                     tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                                     tags_filter_type: Optional[pulumi.Input[str]] = None,
                                                     opts: Optional[InvokeOptions] = None) -> Output[GetDevicesPowerModulesStatusesByDeviceResult]
    func GetDevicesPowerModulesStatusesByDevice(ctx *Context, args *GetDevicesPowerModulesStatusesByDeviceArgs, opts ...InvokeOption) (*GetDevicesPowerModulesStatusesByDeviceResult, error)
    func GetDevicesPowerModulesStatusesByDeviceOutput(ctx *Context, args *GetDevicesPowerModulesStatusesByDeviceOutputArgs, opts ...InvokeOption) GetDevicesPowerModulesStatusesByDeviceResultOutput

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

    public static class GetDevicesPowerModulesStatusesByDevice 
    {
        public static Task<GetDevicesPowerModulesStatusesByDeviceResult> InvokeAsync(GetDevicesPowerModulesStatusesByDeviceArgs args, InvokeOptions? opts = null)
        public static Output<GetDevicesPowerModulesStatusesByDeviceResult> Invoke(GetDevicesPowerModulesStatusesByDeviceInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetDevicesPowerModulesStatusesByDeviceResult> getDevicesPowerModulesStatusesByDevice(GetDevicesPowerModulesStatusesByDeviceArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: meraki:organizations/getDevicesPowerModulesStatusesByDevice:getDevicesPowerModulesStatusesByDevice
      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.
    NetworkIds List<string>
    networkIds query parameter. Optional parameter to filter device availabilities by network ID. This filter uses multiple exact matches.
    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. Optional parameter to filter device availabilities by device product types. This filter uses multiple exact matches.
    Serials List<string>
    serials query parameter. Optional parameter to filter device availabilities by device serial numbers. This filter uses multiple exact matches.
    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.
    Tags 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). This filter uses multiple exact matches.
    TagsFilterType 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.
    NetworkIds []string
    networkIds query parameter. Optional parameter to filter device availabilities by network ID. This filter uses multiple exact matches.
    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. Optional parameter to filter device availabilities by device product types. This filter uses multiple exact matches.
    Serials []string
    serials query parameter. Optional parameter to filter device availabilities by device serial numbers. This filter uses multiple exact matches.
    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.
    Tags []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). This filter uses multiple exact matches.
    TagsFilterType 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.
    networkIds List<String>
    networkIds query parameter. Optional parameter to filter device availabilities by network ID. This filter uses multiple exact matches.
    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. Optional parameter to filter device availabilities by device product types. This filter uses multiple exact matches.
    serials List<String>
    serials query parameter. Optional parameter to filter device availabilities by device serial numbers. This filter uses multiple exact matches.
    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.
    tags 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). This filter uses multiple exact matches.
    tagsFilterType 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.
    networkIds string[]
    networkIds query parameter. Optional parameter to filter device availabilities by network ID. This filter uses multiple exact matches.
    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. Optional parameter to filter device availabilities by device product types. This filter uses multiple exact matches.
    serials string[]
    serials query parameter. Optional parameter to filter device availabilities by device serial numbers. This filter uses multiple exact matches.
    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.
    tags 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). This filter uses multiple exact matches.
    tagsFilterType 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.
    network_ids Sequence[str]
    networkIds query parameter. Optional parameter to filter device availabilities by network ID. This filter uses multiple exact matches.
    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. Optional parameter to filter device availabilities by device product types. This filter uses multiple exact matches.
    serials Sequence[str]
    serials query parameter. Optional parameter to filter device availabilities by device serial numbers. This filter uses multiple exact matches.
    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.
    tags 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). This filter uses multiple exact matches.
    tags_filter_type 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.
    networkIds List<String>
    networkIds query parameter. Optional parameter to filter device availabilities by network ID. This filter uses multiple exact matches.
    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. Optional parameter to filter device availabilities by device product types. This filter uses multiple exact matches.
    serials List<String>
    serials query parameter. Optional parameter to filter device availabilities by device serial numbers. This filter uses multiple exact matches.
    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.
    tags 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). This filter uses multiple exact matches.
    tagsFilterType 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.

    getDevicesPowerModulesStatusesByDevice Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Items List<GetDevicesPowerModulesStatusesByDeviceItem>
    Array of ResponseOrganizationsGetOrganizationDevicesPowerModulesStatusesByDevice
    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.
    NetworkIds List<string>
    networkIds query parameter. Optional parameter to filter device availabilities by network ID. This filter uses multiple exact matches.
    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. Optional parameter to filter device availabilities by device product types. This filter uses multiple exact matches.
    Serials List<string>
    serials query parameter. Optional parameter to filter device availabilities by device serial numbers. This filter uses multiple exact matches.
    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.
    Tags 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). This filter uses multiple exact matches.
    TagsFilterType 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 []GetDevicesPowerModulesStatusesByDeviceItem
    Array of ResponseOrganizationsGetOrganizationDevicesPowerModulesStatusesByDevice
    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.
    NetworkIds []string
    networkIds query parameter. Optional parameter to filter device availabilities by network ID. This filter uses multiple exact matches.
    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. Optional parameter to filter device availabilities by device product types. This filter uses multiple exact matches.
    Serials []string
    serials query parameter. Optional parameter to filter device availabilities by device serial numbers. This filter uses multiple exact matches.
    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.
    Tags []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). This filter uses multiple exact matches.
    TagsFilterType 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<GetDevicesPowerModulesStatusesByDeviceItem>
    Array of ResponseOrganizationsGetOrganizationDevicesPowerModulesStatusesByDevice
    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.
    networkIds List<String>
    networkIds query parameter. Optional parameter to filter device availabilities by network ID. This filter uses multiple exact matches.
    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. Optional parameter to filter device availabilities by device product types. This filter uses multiple exact matches.
    serials List<String>
    serials query parameter. Optional parameter to filter device availabilities by device serial numbers. This filter uses multiple exact matches.
    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.
    tags 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). This filter uses multiple exact matches.
    tagsFilterType 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 GetDevicesPowerModulesStatusesByDeviceItem[]
    Array of ResponseOrganizationsGetOrganizationDevicesPowerModulesStatusesByDevice
    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.
    networkIds string[]
    networkIds query parameter. Optional parameter to filter device availabilities by network ID. This filter uses multiple exact matches.
    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. Optional parameter to filter device availabilities by device product types. This filter uses multiple exact matches.
    serials string[]
    serials query parameter. Optional parameter to filter device availabilities by device serial numbers. This filter uses multiple exact matches.
    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.
    tags 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). This filter uses multiple exact matches.
    tagsFilterType 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[GetDevicesPowerModulesStatusesByDeviceItem]
    Array of ResponseOrganizationsGetOrganizationDevicesPowerModulesStatusesByDevice
    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.
    network_ids Sequence[str]
    networkIds query parameter. Optional parameter to filter device availabilities by network ID. This filter uses multiple exact matches.
    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. Optional parameter to filter device availabilities by device product types. This filter uses multiple exact matches.
    serials Sequence[str]
    serials query parameter. Optional parameter to filter device availabilities by device serial numbers. This filter uses multiple exact matches.
    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.
    tags 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). This filter uses multiple exact matches.
    tags_filter_type 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 ResponseOrganizationsGetOrganizationDevicesPowerModulesStatusesByDevice
    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.
    networkIds List<String>
    networkIds query parameter. Optional parameter to filter device availabilities by network ID. This filter uses multiple exact matches.
    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. Optional parameter to filter device availabilities by device product types. This filter uses multiple exact matches.
    serials List<String>
    serials query parameter. Optional parameter to filter device availabilities by device serial numbers. This filter uses multiple exact matches.
    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.
    tags 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). This filter uses multiple exact matches.
    tagsFilterType 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

    GetDevicesPowerModulesStatusesByDeviceItem

    Mac string
    The device MAC address.
    Name string
    The device name.
    Network GetDevicesPowerModulesStatusesByDeviceItemNetwork
    Network info.
    ProductType string
    Device product type.
    Serial string
    The device serial number.
    Slots List<GetDevicesPowerModulesStatusesByDeviceItemSlot>
    Information for the device's AC power supplies.
    Tags List<string>
    List of custom tags for the device.
    Mac string
    The device MAC address.
    Name string
    The device name.
    Network GetDevicesPowerModulesStatusesByDeviceItemNetwork
    Network info.
    ProductType string
    Device product type.
    Serial string
    The device serial number.
    Slots []GetDevicesPowerModulesStatusesByDeviceItemSlot
    Information for the device's AC power supplies.
    Tags []string
    List of custom tags for the device.
    mac String
    The device MAC address.
    name String
    The device name.
    network GetDevicesPowerModulesStatusesByDeviceItemNetwork
    Network info.
    productType String
    Device product type.
    serial String
    The device serial number.
    slots List<GetDevicesPowerModulesStatusesByDeviceItemSlot>
    Information for the device's AC power supplies.
    tags List<String>
    List of custom tags for the device.
    mac string
    The device MAC address.
    name string
    The device name.
    network GetDevicesPowerModulesStatusesByDeviceItemNetwork
    Network info.
    productType string
    Device product type.
    serial string
    The device serial number.
    slots GetDevicesPowerModulesStatusesByDeviceItemSlot[]
    Information for the device's AC power supplies.
    tags string[]
    List of custom tags for the device.
    mac str
    The device MAC address.
    name str
    The device name.
    network GetDevicesPowerModulesStatusesByDeviceItemNetwork
    Network info.
    product_type str
    Device product type.
    serial str
    The device serial number.
    slots Sequence[GetDevicesPowerModulesStatusesByDeviceItemSlot]
    Information for the device's AC power supplies.
    tags Sequence[str]
    List of custom tags for the device.
    mac String
    The device MAC address.
    name String
    The device name.
    network Property Map
    Network info.
    productType String
    Device product type.
    serial String
    The device serial number.
    slots List<Property Map>
    Information for the device's AC power supplies.
    tags List<String>
    List of custom tags for the device.

    GetDevicesPowerModulesStatusesByDeviceItemNetwork

    Id string
    ID for the network that the device is associated with.
    Id string
    ID for the network that the device is associated with.
    id String
    ID for the network that the device is associated with.
    id string
    ID for the network that the device is associated with.
    id str
    ID for the network that the device is associated with.
    id String
    ID for the network that the device is associated with.

    GetDevicesPowerModulesStatusesByDeviceItemSlot

    Model string
    The power supply unit model.
    Number int
    Which slot the AC power supply occupies. Possible values are: 0, 1, 2.
    Serial string
    The power supply unit serial number.
    Status string
    Status of the power supply unit. Possible values are: connected, not connected, powering.
    Model string
    The power supply unit model.
    Number int
    Which slot the AC power supply occupies. Possible values are: 0, 1, 2.
    Serial string
    The power supply unit serial number.
    Status string
    Status of the power supply unit. Possible values are: connected, not connected, powering.
    model String
    The power supply unit model.
    number Integer
    Which slot the AC power supply occupies. Possible values are: 0, 1, 2.
    serial String
    The power supply unit serial number.
    status String
    Status of the power supply unit. Possible values are: connected, not connected, powering.
    model string
    The power supply unit model.
    number number
    Which slot the AC power supply occupies. Possible values are: 0, 1, 2.
    serial string
    The power supply unit serial number.
    status string
    Status of the power supply unit. Possible values are: connected, not connected, powering.
    model str
    The power supply unit model.
    number int
    Which slot the AC power supply occupies. Possible values are: 0, 1, 2.
    serial str
    The power supply unit serial number.
    status str
    Status of the power supply unit. Possible values are: connected, not connected, powering.
    model String
    The power supply unit model.
    number Number
    Which slot the AC power supply occupies. Possible values are: 0, 1, 2.
    serial String
    The power supply unit serial number.
    status String
    Status of the power supply unit. Possible values are: connected, not connected, powering.

    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