Cisco Meraki v0.3.2 published on Tuesday, Sep 24, 2024 by Pulumi
meraki.organizations.getDevicesProvisioningStatuses
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as meraki from "@pulumi/meraki";
const example = meraki.organizations.getDevicesProvisioningStatuses({
endingBefore: "string",
networkIds: ["string"],
organizationId: "string",
perPage: 1,
productTypes: ["string"],
serials: ["string"],
startingAfter: "string",
status: "string",
tags: ["string"],
tagsFilterType: "string",
});
export const merakiOrganizationsDevicesProvisioningStatusesExample = example.then(example => example.items);
import pulumi
import pulumi_meraki as meraki
example = meraki.organizations.get_devices_provisioning_statuses(ending_before="string",
network_ids=["string"],
organization_id="string",
per_page=1,
product_types=["string"],
serials=["string"],
starting_after="string",
status="string",
tags=["string"],
tags_filter_type="string")
pulumi.export("merakiOrganizationsDevicesProvisioningStatusesExample", 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.GetDevicesProvisioningStatuses(ctx, &organizations.GetDevicesProvisioningStatusesArgs{
EndingBefore: pulumi.StringRef("string"),
NetworkIds: []string{
"string",
},
OrganizationId: "string",
PerPage: pulumi.IntRef(1),
ProductTypes: []string{
"string",
},
Serials: []string{
"string",
},
StartingAfter: pulumi.StringRef("string"),
Status: pulumi.StringRef("string"),
Tags: []string{
"string",
},
TagsFilterType: pulumi.StringRef("string"),
}, nil)
if err != nil {
return err
}
ctx.Export("merakiOrganizationsDevicesProvisioningStatusesExample", 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.GetDevicesProvisioningStatuses.Invoke(new()
{
EndingBefore = "string",
NetworkIds = new[]
{
"string",
},
OrganizationId = "string",
PerPage = 1,
ProductTypes = new[]
{
"string",
},
Serials = new[]
{
"string",
},
StartingAfter = "string",
Status = "string",
Tags = new[]
{
"string",
},
TagsFilterType = "string",
});
return new Dictionary<string, object?>
{
["merakiOrganizationsDevicesProvisioningStatusesExample"] = example.Apply(getDevicesProvisioningStatusesResult => getDevicesProvisioningStatusesResult.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.GetDevicesProvisioningStatusesArgs;
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.getDevicesProvisioningStatuses(GetDevicesProvisioningStatusesArgs.builder()
.endingBefore("string")
.networkIds("string")
.organizationId("string")
.perPage(1)
.productTypes("string")
.serials("string")
.startingAfter("string")
.status("string")
.tags("string")
.tagsFilterType("string")
.build());
ctx.export("merakiOrganizationsDevicesProvisioningStatusesExample", example.applyValue(getDevicesProvisioningStatusesResult -> getDevicesProvisioningStatusesResult.items()));
}
}
variables:
example:
fn::invoke:
Function: meraki:organizations:getDevicesProvisioningStatuses
Arguments:
endingBefore: string
networkIds:
- string
organizationId: string
perPage: 1
productTypes:
- string
serials:
- string
startingAfter: string
status: string
tags:
- string
tagsFilterType: string
outputs:
merakiOrganizationsDevicesProvisioningStatusesExample: ${example.items}
Using getDevicesProvisioningStatuses
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 getDevicesProvisioningStatuses(args: GetDevicesProvisioningStatusesArgs, opts?: InvokeOptions): Promise<GetDevicesProvisioningStatusesResult>
function getDevicesProvisioningStatusesOutput(args: GetDevicesProvisioningStatusesOutputArgs, opts?: InvokeOptions): Output<GetDevicesProvisioningStatusesResult>
def get_devices_provisioning_statuses(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,
status: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
tags_filter_type: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetDevicesProvisioningStatusesResult
def get_devices_provisioning_statuses_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,
status: 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[GetDevicesProvisioningStatusesResult]
func GetDevicesProvisioningStatuses(ctx *Context, args *GetDevicesProvisioningStatusesArgs, opts ...InvokeOption) (*GetDevicesProvisioningStatusesResult, error)
func GetDevicesProvisioningStatusesOutput(ctx *Context, args *GetDevicesProvisioningStatusesOutputArgs, opts ...InvokeOption) GetDevicesProvisioningStatusesResultOutput
> Note: This function is named GetDevicesProvisioningStatuses
in the Go SDK.
public static class GetDevicesProvisioningStatuses
{
public static Task<GetDevicesProvisioningStatusesResult> InvokeAsync(GetDevicesProvisioningStatusesArgs args, InvokeOptions? opts = null)
public static Output<GetDevicesProvisioningStatusesResult> Invoke(GetDevicesProvisioningStatusesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetDevicesProvisioningStatusesResult> getDevicesProvisioningStatuses(GetDevicesProvisioningStatusesArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: meraki:organizations/getDevicesProvisioningStatuses:getDevicesProvisioningStatuses
arguments:
# arguments dictionary
The following arguments are supported:
- Organization
Id string - organizationId path parameter. Organization ID
- Ending
Before 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.
- Network
Ids List<string> - networkIds query parameter. Optional parameter to filter device 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 List<string> - productTypes query parameter. Optional parameter to filter device by device product types. This filter uses multiple exact matches.
- Serials List<string>
- serials query parameter. Optional parameter to filter device by device serial numbers. This filter uses multiple exact matches.
- Starting
After 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.
- Status string
- status query parameter. An optional parameter to filter devices by the provisioning status. Accepted statuses: unprovisioned, incomplete, complete.
- 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.
- 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 string - organizationId path parameter. Organization ID
- Ending
Before 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.
- Network
Ids []string - networkIds query parameter. Optional parameter to filter device 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 []string - productTypes query parameter. Optional parameter to filter device by device product types. This filter uses multiple exact matches.
- Serials []string
- serials query parameter. Optional parameter to filter device by device serial numbers. This filter uses multiple exact matches.
- Starting
After 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.
- Status string
- status query parameter. An optional parameter to filter devices by the provisioning status. Accepted statuses: unprovisioned, incomplete, complete.
- []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.
- 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 String - organizationId path parameter. Organization ID
- ending
Before 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.
- network
Ids List<String> - networkIds query parameter. Optional parameter to filter device by network ID. This filter uses multiple exact matches.
- per
Page Integer - perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- product
Types List<String> - productTypes query parameter. Optional parameter to filter device by device product types. This filter uses multiple exact matches.
- serials List<String>
- serials query parameter. Optional parameter to filter device by device serial numbers. This filter uses multiple exact matches.
- starting
After 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.
- status String
- status query parameter. An optional parameter to filter devices by the provisioning status. Accepted statuses: unprovisioned, incomplete, complete.
- 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.
- 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 string - organizationId path parameter. Organization ID
- ending
Before 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.
- network
Ids string[] - networkIds query parameter. Optional parameter to filter device by network ID. This filter uses multiple exact matches.
- per
Page number - perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- product
Types string[] - productTypes query parameter. Optional parameter to filter device by device product types. This filter uses multiple exact matches.
- serials string[]
- serials query parameter. Optional parameter to filter device by device serial numbers. This filter uses multiple exact matches.
- starting
After 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.
- status string
- status query parameter. An optional parameter to filter devices by the provisioning status. Accepted statuses: unprovisioned, incomplete, complete.
- 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.
- 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 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 by device product types. This filter uses multiple exact matches.
- serials Sequence[str]
- serials query parameter. Optional parameter to filter device 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.
- status str
- status query parameter. An optional parameter to filter devices by the provisioning status. Accepted statuses: unprovisioned, incomplete, complete.
- 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.
- 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.
- organization
Id String - organizationId path parameter. Organization ID
- ending
Before 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.
- network
Ids List<String> - networkIds query parameter. Optional parameter to filter device by network ID. This filter uses multiple exact matches.
- per
Page Number - perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- product
Types List<String> - productTypes query parameter. Optional parameter to filter device by device product types. This filter uses multiple exact matches.
- serials List<String>
- serials query parameter. Optional parameter to filter device by device serial numbers. This filter uses multiple exact matches.
- starting
After 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.
- status String
- status query parameter. An optional parameter to filter devices by the provisioning status. Accepted statuses: unprovisioned, incomplete, complete.
- 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.
- 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.
getDevicesProvisioningStatuses Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
List<Get
Devices Provisioning Statuses Item> - Array of ResponseOrganizationsGetOrganizationDevicesProvisioningStatuses
- Organization
Id string - organizationId path parameter. Organization ID
- Ending
Before 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.
- Network
Ids List<string> - networkIds query parameter. Optional parameter to filter device 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 List<string> - productTypes query parameter. Optional parameter to filter device by device product types. This filter uses multiple exact matches.
- Serials List<string>
- serials query parameter. Optional parameter to filter device by device serial numbers. This filter uses multiple exact matches.
- Starting
After 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.
- Status string
- status query parameter. An optional parameter to filter devices by the provisioning status. Accepted statuses: unprovisioned, incomplete, complete.
- 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.
- 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
[]Get
Devices Provisioning Statuses Item - Array of ResponseOrganizationsGetOrganizationDevicesProvisioningStatuses
- Organization
Id string - organizationId path parameter. Organization ID
- Ending
Before 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.
- Network
Ids []string - networkIds query parameter. Optional parameter to filter device 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 []string - productTypes query parameter. Optional parameter to filter device by device product types. This filter uses multiple exact matches.
- Serials []string
- serials query parameter. Optional parameter to filter device by device serial numbers. This filter uses multiple exact matches.
- Starting
After 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.
- Status string
- status query parameter. An optional parameter to filter devices by the provisioning status. Accepted statuses: unprovisioned, incomplete, complete.
- []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.
- 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<Get
Devices Provisioning Statuses Item> - Array of ResponseOrganizationsGetOrganizationDevicesProvisioningStatuses
- organization
Id String - organizationId path parameter. Organization ID
- ending
Before 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.
- network
Ids List<String> - networkIds query parameter. Optional parameter to filter device by network ID. This filter uses multiple exact matches.
- per
Page Integer - perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- product
Types List<String> - productTypes query parameter. Optional parameter to filter device by device product types. This filter uses multiple exact matches.
- serials List<String>
- serials query parameter. Optional parameter to filter device by device serial numbers. This filter uses multiple exact matches.
- starting
After 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.
- status String
- status query parameter. An optional parameter to filter devices by the provisioning status. Accepted statuses: unprovisioned, incomplete, complete.
- 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.
- 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
Get
Devices Provisioning Statuses Item[] - Array of ResponseOrganizationsGetOrganizationDevicesProvisioningStatuses
- organization
Id string - organizationId path parameter. Organization ID
- ending
Before 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.
- network
Ids string[] - networkIds query parameter. Optional parameter to filter device by network ID. This filter uses multiple exact matches.
- per
Page number - perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- product
Types string[] - productTypes query parameter. Optional parameter to filter device by device product types. This filter uses multiple exact matches.
- serials string[]
- serials query parameter. Optional parameter to filter device by device serial numbers. This filter uses multiple exact matches.
- starting
After 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.
- status string
- status query parameter. An optional parameter to filter devices by the provisioning status. Accepted statuses: unprovisioned, incomplete, complete.
- 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.
- 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[Get
Devices Provisioning Statuses Item] - Array of ResponseOrganizationsGetOrganizationDevicesProvisioningStatuses
- 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 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 by device product types. This filter uses multiple exact matches.
- serials Sequence[str]
- serials query parameter. Optional parameter to filter device 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.
- status str
- status query parameter. An optional parameter to filter devices by the provisioning status. Accepted statuses: unprovisioned, incomplete, complete.
- 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.
- 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 ResponseOrganizationsGetOrganizationDevicesProvisioningStatuses
- organization
Id String - organizationId path parameter. Organization ID
- ending
Before 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.
- network
Ids List<String> - networkIds query parameter. Optional parameter to filter device by network ID. This filter uses multiple exact matches.
- per
Page Number - perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- product
Types List<String> - productTypes query parameter. Optional parameter to filter device by device product types. This filter uses multiple exact matches.
- serials List<String>
- serials query parameter. Optional parameter to filter device by device serial numbers. This filter uses multiple exact matches.
- starting
After 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.
- status String
- status query parameter. An optional parameter to filter devices by the provisioning status. Accepted statuses: unprovisioned, incomplete, complete.
- 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.
- 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
GetDevicesProvisioningStatusesItem
- Mac string
- The device MAC address.
- Name string
- The device name.
- Network
Get
Devices Provisioning Statuses Item Network - Network info.
- Product
Type string - Device product type.
- Serial string
- The device serial number.
- Status string
- The device provisioning status. Possible statuses: unprovisioned, incomplete, complete.
- List<string>
- List of custom tags for the device.
- Mac string
- The device MAC address.
- Name string
- The device name.
- Network
Get
Devices Provisioning Statuses Item Network - Network info.
- Product
Type string - Device product type.
- Serial string
- The device serial number.
- Status string
- The device provisioning status. Possible statuses: unprovisioned, incomplete, complete.
- []string
- List of custom tags for the device.
- mac String
- The device MAC address.
- name String
- The device name.
- network
Get
Devices Provisioning Statuses Item Network - Network info.
- product
Type String - Device product type.
- serial String
- The device serial number.
- status String
- The device provisioning status. Possible statuses: unprovisioned, incomplete, complete.
- List<String>
- List of custom tags for the device.
- mac string
- The device MAC address.
- name string
- The device name.
- network
Get
Devices Provisioning Statuses Item Network - Network info.
- product
Type string - Device product type.
- serial string
- The device serial number.
- status string
- The device provisioning status. Possible statuses: unprovisioned, incomplete, complete.
- string[]
- List of custom tags for the device.
- mac str
- The device MAC address.
- name str
- The device name.
- network
Get
Devices Provisioning Statuses Item Network - Network info.
- product_
type str - Device product type.
- serial str
- The device serial number.
- status str
- The device provisioning status. Possible statuses: unprovisioned, incomplete, complete.
- 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.
- product
Type String - Device product type.
- serial String
- The device serial number.
- status String
- The device provisioning status. Possible statuses: unprovisioned, incomplete, complete.
- List<String>
- List of custom tags for the device.
GetDevicesProvisioningStatusesItemNetwork
- Id string
- ID for the network containing the device.
- Id string
- ID for the network containing the device.
- id String
- ID for the network containing the device.
- id string
- ID for the network containing the device.
- id str
- ID for the network containing the device.
- id String
- ID for the network containing the device.
Package Details
- Repository
- meraki pulumi/pulumi-meraki
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
meraki
Terraform Provider.