Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi
meraki.organizations.getDevicesAvailabilitiesChangeHistory
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as meraki from "@pulumi/meraki";
const example = meraki.organizations.getDevicesAvailabilitiesChangeHistory({
endingBefore: "string",
networkIds: ["string"],
organizationId: "string",
perPage: 1,
productTypes: ["string"],
serials: ["string"],
startingAfter: "string",
statuses: ["string"],
t0: "string",
t1: "string",
timespan: 1,
});
export const merakiOrganizationsDevicesAvailabilitiesChangeHistoryExample = example.then(example => example.items);
import pulumi
import pulumi_meraki as meraki
example = meraki.organizations.get_devices_availabilities_change_history(ending_before="string",
network_ids=["string"],
organization_id="string",
per_page=1,
product_types=["string"],
serials=["string"],
starting_after="string",
statuses=["string"],
t0="string",
t1="string",
timespan=1)
pulumi.export("merakiOrganizationsDevicesAvailabilitiesChangeHistoryExample", 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.GetDevicesAvailabilitiesChangeHistory(ctx, &organizations.GetDevicesAvailabilitiesChangeHistoryArgs{
EndingBefore: pulumi.StringRef("string"),
NetworkIds: []string{
"string",
},
OrganizationId: "string",
PerPage: pulumi.IntRef(1),
ProductTypes: []string{
"string",
},
Serials: []string{
"string",
},
StartingAfter: pulumi.StringRef("string"),
Statuses: []string{
"string",
},
T0: pulumi.StringRef("string"),
T1: pulumi.StringRef("string"),
Timespan: pulumi.Float64Ref(1),
}, nil)
if err != nil {
return err
}
ctx.Export("merakiOrganizationsDevicesAvailabilitiesChangeHistoryExample", 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.GetDevicesAvailabilitiesChangeHistory.Invoke(new()
{
EndingBefore = "string",
NetworkIds = new[]
{
"string",
},
OrganizationId = "string",
PerPage = 1,
ProductTypes = new[]
{
"string",
},
Serials = new[]
{
"string",
},
StartingAfter = "string",
Statuses = new[]
{
"string",
},
T0 = "string",
T1 = "string",
Timespan = 1,
});
return new Dictionary<string, object?>
{
["merakiOrganizationsDevicesAvailabilitiesChangeHistoryExample"] = example.Apply(getDevicesAvailabilitiesChangeHistoryResult => getDevicesAvailabilitiesChangeHistoryResult.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.GetDevicesAvailabilitiesChangeHistoryArgs;
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.getDevicesAvailabilitiesChangeHistory(GetDevicesAvailabilitiesChangeHistoryArgs.builder()
.endingBefore("string")
.networkIds("string")
.organizationId("string")
.perPage(1)
.productTypes("string")
.serials("string")
.startingAfter("string")
.statuses("string")
.t0("string")
.t1("string")
.timespan(1)
.build());
ctx.export("merakiOrganizationsDevicesAvailabilitiesChangeHistoryExample", example.applyValue(getDevicesAvailabilitiesChangeHistoryResult -> getDevicesAvailabilitiesChangeHistoryResult.items()));
}
}
variables:
example:
fn::invoke:
Function: meraki:organizations:getDevicesAvailabilitiesChangeHistory
Arguments:
endingBefore: string
networkIds:
- string
organizationId: string
perPage: 1
productTypes:
- string
serials:
- string
startingAfter: string
statuses:
- string
t0: string
t1: string
timespan: 1
outputs:
merakiOrganizationsDevicesAvailabilitiesChangeHistoryExample: ${example.items}
Using getDevicesAvailabilitiesChangeHistory
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 getDevicesAvailabilitiesChangeHistory(args: GetDevicesAvailabilitiesChangeHistoryArgs, opts?: InvokeOptions): Promise<GetDevicesAvailabilitiesChangeHistoryResult>
function getDevicesAvailabilitiesChangeHistoryOutput(args: GetDevicesAvailabilitiesChangeHistoryOutputArgs, opts?: InvokeOptions): Output<GetDevicesAvailabilitiesChangeHistoryResult>
def get_devices_availabilities_change_history(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,
statuses: Optional[Sequence[str]] = None,
t0: Optional[str] = None,
t1: Optional[str] = None,
timespan: Optional[float] = None,
opts: Optional[InvokeOptions] = None) -> GetDevicesAvailabilitiesChangeHistoryResult
def get_devices_availabilities_change_history_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,
statuses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
t0: Optional[pulumi.Input[str]] = None,
t1: Optional[pulumi.Input[str]] = None,
timespan: Optional[pulumi.Input[float]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDevicesAvailabilitiesChangeHistoryResult]
func GetDevicesAvailabilitiesChangeHistory(ctx *Context, args *GetDevicesAvailabilitiesChangeHistoryArgs, opts ...InvokeOption) (*GetDevicesAvailabilitiesChangeHistoryResult, error)
func GetDevicesAvailabilitiesChangeHistoryOutput(ctx *Context, args *GetDevicesAvailabilitiesChangeHistoryOutputArgs, opts ...InvokeOption) GetDevicesAvailabilitiesChangeHistoryResultOutput
> Note: This function is named GetDevicesAvailabilitiesChangeHistory
in the Go SDK.
public static class GetDevicesAvailabilitiesChangeHistory
{
public static Task<GetDevicesAvailabilitiesChangeHistoryResult> InvokeAsync(GetDevicesAvailabilitiesChangeHistoryArgs args, InvokeOptions? opts = null)
public static Output<GetDevicesAvailabilitiesChangeHistoryResult> Invoke(GetDevicesAvailabilitiesChangeHistoryInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetDevicesAvailabilitiesChangeHistoryResult> getDevicesAvailabilitiesChangeHistory(GetDevicesAvailabilitiesChangeHistoryArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: meraki:organizations/getDevicesAvailabilitiesChangeHistory:getDevicesAvailabilitiesChangeHistory
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 availabilities history 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 List<string> - productTypes query parameter. Optional parameter to filter device availabilities history by device product types
- Serials List<string>
- serials query parameter. Optional parameter to filter device availabilities history by device serial numbers
- 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.
- Statuses List<string>
- statuses query parameter. Optional parameter to filter device availabilities history by device statuses
- T0 string
- t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
- T1 string
- t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 days after t0.
- Timespan double
- timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
- 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 availabilities history 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 []string - productTypes query parameter. Optional parameter to filter device availabilities history by device product types
- Serials []string
- serials query parameter. Optional parameter to filter device availabilities history by device serial numbers
- 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.
- Statuses []string
- statuses query parameter. Optional parameter to filter device availabilities history by device statuses
- T0 string
- t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
- T1 string
- t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 days after t0.
- Timespan float64
- timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
- 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 availabilities history by network IDs
- 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 availabilities history by device product types
- serials List<String>
- serials query parameter. Optional parameter to filter device availabilities history by device serial numbers
- 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.
- statuses List<String>
- statuses query parameter. Optional parameter to filter device availabilities history by device statuses
- t0 String
- t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
- t1 String
- t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 days after t0.
- timespan Double
- timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
- 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 availabilities history by network IDs
- 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 availabilities history by device product types
- serials string[]
- serials query parameter. Optional parameter to filter device availabilities history by device serial numbers
- 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.
- statuses string[]
- statuses query parameter. Optional parameter to filter device availabilities history by device statuses
- t0 string
- t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
- t1 string
- t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 days after t0.
- timespan number
- timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
- 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 history 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. Optional parameter to filter device availabilities history by device product types
- serials Sequence[str]
- serials query parameter. Optional parameter to filter device availabilities history by device serial numbers
- 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 device availabilities history by device statuses
- t0 str
- t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
- t1 str
- t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 days after t0.
- timespan float
- timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
- 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 availabilities history by network IDs
- 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 availabilities history by device product types
- serials List<String>
- serials query parameter. Optional parameter to filter device availabilities history by device serial numbers
- 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.
- statuses List<String>
- statuses query parameter. Optional parameter to filter device availabilities history by device statuses
- t0 String
- t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
- t1 String
- t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 days after t0.
- timespan Number
- timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
getDevicesAvailabilitiesChangeHistory Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
List<Get
Devices Availabilities Change History Item> - Array of ResponseOrganizationsGetOrganizationDevicesAvailabilitiesChangeHistory
- 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 availabilities history 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 List<string> - productTypes query parameter. Optional parameter to filter device availabilities history by device product types
- Serials List<string>
- serials query parameter. Optional parameter to filter device availabilities history by device serial numbers
- 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.
- Statuses List<string>
- statuses query parameter. Optional parameter to filter device availabilities history by device statuses
- T0 string
- t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
- T1 string
- t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 days after t0.
- Timespan double
- timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
[]Get
Devices Availabilities Change History Item - Array of ResponseOrganizationsGetOrganizationDevicesAvailabilitiesChangeHistory
- 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 availabilities history 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 []string - productTypes query parameter. Optional parameter to filter device availabilities history by device product types
- Serials []string
- serials query parameter. Optional parameter to filter device availabilities history by device serial numbers
- 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.
- Statuses []string
- statuses query parameter. Optional parameter to filter device availabilities history by device statuses
- T0 string
- t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
- T1 string
- t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 days after t0.
- Timespan float64
- timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
- id String
- The provider-assigned unique ID for this managed resource.
- items
List<Get
Devices Availabilities Change History Item> - Array of ResponseOrganizationsGetOrganizationDevicesAvailabilitiesChangeHistory
- 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 availabilities history by network IDs
- 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 availabilities history by device product types
- serials List<String>
- serials query parameter. Optional parameter to filter device availabilities history by device serial numbers
- 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.
- statuses List<String>
- statuses query parameter. Optional parameter to filter device availabilities history by device statuses
- t0 String
- t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
- t1 String
- t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 days after t0.
- timespan Double
- timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
- id string
- The provider-assigned unique ID for this managed resource.
- items
Get
Devices Availabilities Change History Item[] - Array of ResponseOrganizationsGetOrganizationDevicesAvailabilitiesChangeHistory
- 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 availabilities history by network IDs
- 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 availabilities history by device product types
- serials string[]
- serials query parameter. Optional parameter to filter device availabilities history by device serial numbers
- 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.
- statuses string[]
- statuses query parameter. Optional parameter to filter device availabilities history by device statuses
- t0 string
- t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
- t1 string
- t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 days after t0.
- timespan number
- timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
- id str
- The provider-assigned unique ID for this managed resource.
- items
Sequence[Get
Devices Availabilities Change History Item] - Array of ResponseOrganizationsGetOrganizationDevicesAvailabilitiesChangeHistory
- 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 history 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. Optional parameter to filter device availabilities history by device product types
- serials Sequence[str]
- serials query parameter. Optional parameter to filter device availabilities history by device serial numbers
- 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 device availabilities history by device statuses
- t0 str
- t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
- t1 str
- t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 days after t0.
- timespan float
- timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
- id String
- The provider-assigned unique ID for this managed resource.
- items List<Property Map>
- Array of ResponseOrganizationsGetOrganizationDevicesAvailabilitiesChangeHistory
- 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 availabilities history by network IDs
- 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 availabilities history by device product types
- serials List<String>
- serials query parameter. Optional parameter to filter device availabilities history by device serial numbers
- 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.
- statuses List<String>
- statuses query parameter. Optional parameter to filter device availabilities history by device statuses
- t0 String
- t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
- t1 String
- t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 days after t0.
- timespan Number
- timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
Supporting Types
GetDevicesAvailabilitiesChangeHistoryItem
- Details
Get
Devices Availabilities Change History Item Details - Details about the status changes
- Device
Get
Devices Availabilities Change History Item Device - Device information
- Network
Get
Devices Availabilities Change History Item Network - Network information
- Ts string
- Timestamp, in iso8601 format, at which the event happened
- Details
Get
Devices Availabilities Change History Item Details - Details about the status changes
- Device
Get
Devices Availabilities Change History Item Device - Device information
- Network
Get
Devices Availabilities Change History Item Network - Network information
- Ts string
- Timestamp, in iso8601 format, at which the event happened
- details
Get
Devices Availabilities Change History Item Details - Details about the status changes
- device
Get
Devices Availabilities Change History Item Device - Device information
- network
Get
Devices Availabilities Change History Item Network - Network information
- ts String
- Timestamp, in iso8601 format, at which the event happened
- details
Get
Devices Availabilities Change History Item Details - Details about the status changes
- device
Get
Devices Availabilities Change History Item Device - Device information
- network
Get
Devices Availabilities Change History Item Network - Network information
- ts string
- Timestamp, in iso8601 format, at which the event happened
- details
Get
Devices Availabilities Change History Item Details - Details about the status changes
- device
Get
Devices Availabilities Change History Item Device - Device information
- network
Get
Devices Availabilities Change History Item Network - Network information
- ts str
- Timestamp, in iso8601 format, at which the event happened
- details Property Map
- Details about the status changes
- device Property Map
- Device information
- network Property Map
- Network information
- ts String
- Timestamp, in iso8601 format, at which the event happened
GetDevicesAvailabilitiesChangeHistoryItemDetails
- News
List<Get
Devices Availabilities Change History Item Details News> - Details about the new status
- Olds
List<Get
Devices Availabilities Change History Item Details Old> - Details about the old status
- News
[]Get
Devices Availabilities Change History Item Details News - Details about the new status
- Olds
[]Get
Devices Availabilities Change History Item Details Old - Details about the old status
- news
List<Get
Devices Availabilities Change History Item Details News> - Details about the new status
- olds
List<Get
Devices Availabilities Change History Item Details Old> - Details about the old status
- news
Get
Devices Availabilities Change History Item Details News[] - Details about the new status
- olds
Get
Devices Availabilities Change History Item Details Old[] - Details about the old status
- news
Sequence[Get
Devices Availabilities Change History Item Details News] - Details about the new status
- olds
Sequence[Get
Devices Availabilities Change History Item Details Old] - Details about the old status
- news List<Property Map>
- Details about the new status
- olds List<Property Map>
- Details about the old status
GetDevicesAvailabilitiesChangeHistoryItemDetailsNews
GetDevicesAvailabilitiesChangeHistoryItemDetailsOld
GetDevicesAvailabilitiesChangeHistoryItemDevice
- Model string
- Device model
- Name string
- Device name
- Product
Type string - Device product type.
- Serial string
- Device serial number
- Model string
- Device model
- Name string
- Device name
- Product
Type string - Device product type.
- Serial string
- Device serial number
- model String
- Device model
- name String
- Device name
- product
Type String - Device product type.
- serial String
- Device serial number
- model string
- Device model
- name string
- Device name
- product
Type string - Device product type.
- serial string
- Device serial number
- model str
- Device model
- name str
- Device name
- product_
type str - Device product type.
- serial str
- Device serial number
- model String
- Device model
- name String
- Device name
- product
Type String - Device product type.
- serial String
- Device serial number
GetDevicesAvailabilitiesChangeHistoryItemNetwork
Package Details
- Repository
- meraki pulumi/pulumi-meraki
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
meraki
Terraform Provider.