Cisco Meraki v0.4.1 published on Saturday, Mar 15, 2025 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)
public static Output<GetDevicesAvailabilitiesChangeHistoryResult> getDevicesAvailabilitiesChangeHistory(GetDevicesAvailabilitiesChangeHistoryArgs args, InvokeOptions options)
fn::invoke:
  function: meraki:organizations/getDevicesAvailabilitiesChangeHistory:getDevicesAvailabilitiesChangeHistory
  arguments:
    # arguments dictionaryThe following arguments are supported:
- OrganizationId string
- organizationId path parameter. Organization ID
- EndingBefore string
- endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- NetworkIds List<string>
- networkIds query parameter. Optional parameter to filter device availabilities history by network IDs
- PerPage int
- perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- ProductTypes List<string>
- productTypes query parameter. 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
- StartingAfter string
- startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- Statuses List<string>
- statuses query parameter. Optional parameter to filter 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.
- 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 history by network IDs
- PerPage int
- perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- ProductTypes []string
- productTypes query parameter. 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
- StartingAfter string
- startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- Statuses []string
- statuses query parameter. Optional parameter to filter 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.
- 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 history by network IDs
- perPage Integer
- perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- productTypes List<String>
- productTypes query parameter. 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
- startingAfter String
- startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- statuses List<String>
- statuses query parameter. Optional parameter to filter 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.
- 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 history by network IDs
- perPage number
- perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- productTypes string[]
- productTypes query parameter. 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
- startingAfter string
- startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- statuses string[]
- statuses query parameter. Optional parameter to filter 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.
- 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 history by network IDs
- perPage Number
- perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- productTypes List<String>
- productTypes query parameter. 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
- startingAfter String
- startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- statuses List<String>
- statuses query parameter. Optional parameter to filter 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<GetDevices Availabilities Change History Item> 
- Array of ResponseOrganizationsGetOrganizationDevicesAvailabilitiesChangeHistory
- 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 history by network IDs
- PerPage int
- perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- ProductTypes List<string>
- productTypes query parameter. 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
- StartingAfter string
- startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- Statuses List<string>
- statuses query parameter. Optional parameter to filter 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
[]GetDevices Availabilities Change History Item 
- Array of ResponseOrganizationsGetOrganizationDevicesAvailabilitiesChangeHistory
- 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 history by network IDs
- PerPage int
- perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- ProductTypes []string
- productTypes query parameter. 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
- StartingAfter string
- startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- Statuses []string
- statuses query parameter. Optional parameter to filter 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<GetDevices Availabilities Change History Item> 
- Array of ResponseOrganizationsGetOrganizationDevicesAvailabilitiesChangeHistory
- 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 history by network IDs
- perPage Integer
- perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- productTypes List<String>
- productTypes query parameter. 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
- startingAfter String
- startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- statuses List<String>
- statuses query parameter. Optional parameter to filter 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
GetDevices Availabilities Change History Item[] 
- Array of ResponseOrganizationsGetOrganizationDevicesAvailabilitiesChangeHistory
- 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 history by network IDs
- perPage number
- perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- productTypes string[]
- productTypes query parameter. 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
- startingAfter string
- startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- statuses string[]
- statuses query parameter. Optional parameter to filter 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[GetDevices 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
- 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 history by network IDs
- perPage Number
- perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- productTypes List<String>
- productTypes query parameter. 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
- startingAfter String
- startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- statuses List<String>
- statuses query parameter. Optional parameter to filter 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
GetDevices Availabilities Change History Item Details 
- Details about the status changes
- Device
GetDevices Availabilities Change History Item Device 
- Device information
- Network
GetDevices Availabilities Change History Item Network 
- Network information
- Ts string
- Timestamp, in iso8601 format, at which the event happened
- Details
GetDevices Availabilities Change History Item Details 
- Details about the status changes
- Device
GetDevices Availabilities Change History Item Device 
- Device information
- Network
GetDevices Availabilities Change History Item Network 
- Network information
- Ts string
- Timestamp, in iso8601 format, at which the event happened
- details
GetDevices Availabilities Change History Item Details 
- Details about the status changes
- device
GetDevices Availabilities Change History Item Device 
- Device information
- network
GetDevices Availabilities Change History Item Network 
- Network information
- ts String
- Timestamp, in iso8601 format, at which the event happened
- details
GetDevices Availabilities Change History Item Details 
- Details about the status changes
- device
GetDevices Availabilities Change History Item Device 
- Device information
- network
GetDevices Availabilities Change History Item Network 
- Network information
- ts string
- Timestamp, in iso8601 format, at which the event happened
- details
GetDevices Availabilities Change History Item Details 
- Details about the status changes
- device
GetDevices Availabilities Change History Item Device 
- Device information
- network
GetDevices 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<GetDevices Availabilities Change History Item Details News> 
- Details about the new status
- Olds
List<GetDevices Availabilities Change History Item Details Old> 
- Details about the old status
- News
[]GetDevices Availabilities Change History Item Details News 
- Details about the new status
- Olds
[]GetDevices Availabilities Change History Item Details Old 
- Details about the old status
- news
List<GetDevices Availabilities Change History Item Details News> 
- Details about the new status
- olds
List<GetDevices Availabilities Change History Item Details Old> 
- Details about the old status
- news
GetDevices Availabilities Change History Item Details News[] 
- Details about the new status
- olds
GetDevices Availabilities Change History Item Details Old[] 
- Details about the old status
- news
Sequence[GetDevices Availabilities Change History Item Details News] 
- Details about the new status
- olds
Sequence[GetDevices 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
- ProductType string
- Device product type.
- Serial string
- Device serial number
- Model string
- Device model
- Name string
- Device name
- ProductType string
- Device product type.
- Serial string
- Device serial number
- model String
- Device model
- name String
- Device name
- productType String
- Device product type.
- serial String
- Device serial number
- model string
- Device model
- name string
- Device name
- productType 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
- productType 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 merakiTerraform Provider.
