1. Packages
  2. Cisco Meraki Provider
  3. API Docs
  4. organizations
  5. getDevicesBootsHistory
Cisco Meraki v0.4.1 published on Saturday, Mar 15, 2025 by Pulumi

meraki.organizations.getDevicesBootsHistory

Explore with Pulumi AI

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as meraki from "@pulumi/meraki";

const example = meraki.organizations.getDevicesBootsHistory({
    endingBefore: "string",
    mostRecentPerDevice: false,
    organizationId: "string",
    perPage: 1,
    serials: ["string"],
    sortOrder: "string",
    startingAfter: "string",
    t0: "string",
    t1: "string",
    timespan: 1,
});
export const merakiOrganizationsDevicesBootsHistoryExample = example.then(example => example.items);
Copy
import pulumi
import pulumi_meraki as meraki

example = meraki.organizations.get_devices_boots_history(ending_before="string",
    most_recent_per_device=False,
    organization_id="string",
    per_page=1,
    serials=["string"],
    sort_order="string",
    starting_after="string",
    t0="string",
    t1="string",
    timespan=1)
pulumi.export("merakiOrganizationsDevicesBootsHistoryExample", example.items)
Copy
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.GetDevicesBootsHistory(ctx, &organizations.GetDevicesBootsHistoryArgs{
			EndingBefore:        pulumi.StringRef("string"),
			MostRecentPerDevice: pulumi.BoolRef(false),
			OrganizationId:      "string",
			PerPage:             pulumi.IntRef(1),
			Serials: []string{
				"string",
			},
			SortOrder:     pulumi.StringRef("string"),
			StartingAfter: pulumi.StringRef("string"),
			T0:            pulumi.StringRef("string"),
			T1:            pulumi.StringRef("string"),
			Timespan:      pulumi.Float64Ref(1),
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("merakiOrganizationsDevicesBootsHistoryExample", example.Items)
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Meraki = Pulumi.Meraki;

return await Deployment.RunAsync(() => 
{
    var example = Meraki.Organizations.GetDevicesBootsHistory.Invoke(new()
    {
        EndingBefore = "string",
        MostRecentPerDevice = false,
        OrganizationId = "string",
        PerPage = 1,
        Serials = new[]
        {
            "string",
        },
        SortOrder = "string",
        StartingAfter = "string",
        T0 = "string",
        T1 = "string",
        Timespan = 1,
    });

    return new Dictionary<string, object?>
    {
        ["merakiOrganizationsDevicesBootsHistoryExample"] = example.Apply(getDevicesBootsHistoryResult => getDevicesBootsHistoryResult.Items),
    };
});
Copy
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.GetDevicesBootsHistoryArgs;
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.getDevicesBootsHistory(GetDevicesBootsHistoryArgs.builder()
            .endingBefore("string")
            .mostRecentPerDevice(false)
            .organizationId("string")
            .perPage(1)
            .serials("string")
            .sortOrder("string")
            .startingAfter("string")
            .t0("string")
            .t1("string")
            .timespan(1)
            .build());

        ctx.export("merakiOrganizationsDevicesBootsHistoryExample", example.applyValue(getDevicesBootsHistoryResult -> getDevicesBootsHistoryResult.items()));
    }
}
Copy
variables:
  example:
    fn::invoke:
      function: meraki:organizations:getDevicesBootsHistory
      arguments:
        endingBefore: string
        mostRecentPerDevice: false
        organizationId: string
        perPage: 1
        serials:
          - string
        sortOrder: string
        startingAfter: string
        t0: string
        t1: string
        timespan: 1
outputs:
  merakiOrganizationsDevicesBootsHistoryExample: ${example.items}
Copy

Using getDevicesBootsHistory

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 getDevicesBootsHistory(args: GetDevicesBootsHistoryArgs, opts?: InvokeOptions): Promise<GetDevicesBootsHistoryResult>
function getDevicesBootsHistoryOutput(args: GetDevicesBootsHistoryOutputArgs, opts?: InvokeOptions): Output<GetDevicesBootsHistoryResult>
Copy
def get_devices_boots_history(ending_before: Optional[str] = None,
                              most_recent_per_device: Optional[bool] = None,
                              organization_id: Optional[str] = None,
                              per_page: Optional[int] = None,
                              serials: Optional[Sequence[str]] = None,
                              sort_order: Optional[str] = None,
                              starting_after: Optional[str] = None,
                              t0: Optional[str] = None,
                              t1: Optional[str] = None,
                              timespan: Optional[float] = None,
                              opts: Optional[InvokeOptions] = None) -> GetDevicesBootsHistoryResult
def get_devices_boots_history_output(ending_before: Optional[pulumi.Input[str]] = None,
                              most_recent_per_device: Optional[pulumi.Input[bool]] = None,
                              organization_id: Optional[pulumi.Input[str]] = None,
                              per_page: Optional[pulumi.Input[int]] = None,
                              serials: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                              sort_order: Optional[pulumi.Input[str]] = None,
                              starting_after: Optional[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[GetDevicesBootsHistoryResult]
Copy
func GetDevicesBootsHistory(ctx *Context, args *GetDevicesBootsHistoryArgs, opts ...InvokeOption) (*GetDevicesBootsHistoryResult, error)
func GetDevicesBootsHistoryOutput(ctx *Context, args *GetDevicesBootsHistoryOutputArgs, opts ...InvokeOption) GetDevicesBootsHistoryResultOutput
Copy

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

public static class GetDevicesBootsHistory 
{
    public static Task<GetDevicesBootsHistoryResult> InvokeAsync(GetDevicesBootsHistoryArgs args, InvokeOptions? opts = null)
    public static Output<GetDevicesBootsHistoryResult> Invoke(GetDevicesBootsHistoryInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetDevicesBootsHistoryResult> getDevicesBootsHistory(GetDevicesBootsHistoryArgs args, InvokeOptions options)
public static Output<GetDevicesBootsHistoryResult> getDevicesBootsHistory(GetDevicesBootsHistoryArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: meraki:organizations/getDevicesBootsHistory:getDevicesBootsHistory
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

OrganizationId This property is required. 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.
MostRecentPerDevice bool
mostRecentPerDevice query parameter. If true, only the most recent boot for each device is returned.
PerPage int
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
Serials List<string>
serials query parameter. Optional parameter to filter device by device serial numbers. This filter uses multiple exact matches.
SortOrder string
sortOrder query parameter. Sorted order of entries. Order options are 'ascending' and 'descending'. Default is 'descending'.
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.
T0 string
t0 query parameter. The beginning of the timespan for the data.
T1 string
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 730 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 730 days.
OrganizationId This property is required. 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.
MostRecentPerDevice bool
mostRecentPerDevice query parameter. If true, only the most recent boot for each device is returned.
PerPage int
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
Serials []string
serials query parameter. Optional parameter to filter device by device serial numbers. This filter uses multiple exact matches.
SortOrder string
sortOrder query parameter. Sorted order of entries. Order options are 'ascending' and 'descending'. Default is 'descending'.
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.
T0 string
t0 query parameter. The beginning of the timespan for the data.
T1 string
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 730 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 730 days.
organizationId This property is required. 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.
mostRecentPerDevice Boolean
mostRecentPerDevice query parameter. If true, only the most recent boot for each device is returned.
perPage Integer
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
serials List<String>
serials query parameter. Optional parameter to filter device by device serial numbers. This filter uses multiple exact matches.
sortOrder String
sortOrder query parameter. Sorted order of entries. Order options are 'ascending' and 'descending'. Default is 'descending'.
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.
t0 String
t0 query parameter. The beginning of the timespan for the data.
t1 String
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 730 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 730 days.
organizationId This property is required. 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.
mostRecentPerDevice boolean
mostRecentPerDevice query parameter. If true, only the most recent boot for each device is returned.
perPage number
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
serials string[]
serials query parameter. Optional parameter to filter device by device serial numbers. This filter uses multiple exact matches.
sortOrder string
sortOrder query parameter. Sorted order of entries. Order options are 'ascending' and 'descending'. Default is 'descending'.
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.
t0 string
t0 query parameter. The beginning of the timespan for the data.
t1 string
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 730 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 730 days.
organization_id This property is required. 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.
most_recent_per_device bool
mostRecentPerDevice query parameter. If true, only the most recent boot for each device is returned.
per_page int
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
serials Sequence[str]
serials query parameter. Optional parameter to filter device by device serial numbers. This filter uses multiple exact matches.
sort_order str
sortOrder query parameter. Sorted order of entries. Order options are 'ascending' and 'descending'. Default is 'descending'.
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.
t0 str
t0 query parameter. The beginning of the timespan for the data.
t1 str
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 730 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 730 days.
organizationId This property is required. 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.
mostRecentPerDevice Boolean
mostRecentPerDevice query parameter. If true, only the most recent boot for each device is returned.
perPage Number
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
serials List<String>
serials query parameter. Optional parameter to filter device by device serial numbers. This filter uses multiple exact matches.
sortOrder String
sortOrder query parameter. Sorted order of entries. Order options are 'ascending' and 'descending'. Default is 'descending'.
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.
t0 String
t0 query parameter. The beginning of the timespan for the data.
t1 String
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 730 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 730 days.

getDevicesBootsHistory Result

The following output properties are available:

Id string
The provider-assigned unique ID for this managed resource.
Items List<GetDevicesBootsHistoryItem>
Array of ResponseOrganizationsGetOrganizationDevicesBootsHistory
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.
MostRecentPerDevice bool
mostRecentPerDevice query parameter. If true, only the most recent boot for each device is returned.
PerPage int
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
Serials List<string>
serials query parameter. Optional parameter to filter device by device serial numbers. This filter uses multiple exact matches.
SortOrder string
sortOrder query parameter. Sorted order of entries. Order options are 'ascending' and 'descending'. Default is 'descending'.
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.
T0 string
t0 query parameter. The beginning of the timespan for the data.
T1 string
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 730 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 730 days.
Id string
The provider-assigned unique ID for this managed resource.
Items []GetDevicesBootsHistoryItem
Array of ResponseOrganizationsGetOrganizationDevicesBootsHistory
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.
MostRecentPerDevice bool
mostRecentPerDevice query parameter. If true, only the most recent boot for each device is returned.
PerPage int
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
Serials []string
serials query parameter. Optional parameter to filter device by device serial numbers. This filter uses multiple exact matches.
SortOrder string
sortOrder query parameter. Sorted order of entries. Order options are 'ascending' and 'descending'. Default is 'descending'.
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.
T0 string
t0 query parameter. The beginning of the timespan for the data.
T1 string
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 730 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 730 days.
id String
The provider-assigned unique ID for this managed resource.
items List<GetDevicesBootsHistoryItem>
Array of ResponseOrganizationsGetOrganizationDevicesBootsHistory
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.
mostRecentPerDevice Boolean
mostRecentPerDevice query parameter. If true, only the most recent boot for each device is returned.
perPage Integer
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
serials List<String>
serials query parameter. Optional parameter to filter device by device serial numbers. This filter uses multiple exact matches.
sortOrder String
sortOrder query parameter. Sorted order of entries. Order options are 'ascending' and 'descending'. Default is 'descending'.
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.
t0 String
t0 query parameter. The beginning of the timespan for the data.
t1 String
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 730 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 730 days.
id string
The provider-assigned unique ID for this managed resource.
items GetDevicesBootsHistoryItem[]
Array of ResponseOrganizationsGetOrganizationDevicesBootsHistory
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.
mostRecentPerDevice boolean
mostRecentPerDevice query parameter. If true, only the most recent boot for each device is returned.
perPage number
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
serials string[]
serials query parameter. Optional parameter to filter device by device serial numbers. This filter uses multiple exact matches.
sortOrder string
sortOrder query parameter. Sorted order of entries. Order options are 'ascending' and 'descending'. Default is 'descending'.
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.
t0 string
t0 query parameter. The beginning of the timespan for the data.
t1 string
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 730 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 730 days.
id str
The provider-assigned unique ID for this managed resource.
items Sequence[GetDevicesBootsHistoryItem]
Array of ResponseOrganizationsGetOrganizationDevicesBootsHistory
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.
most_recent_per_device bool
mostRecentPerDevice query parameter. If true, only the most recent boot for each device is returned.
per_page int
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
serials Sequence[str]
serials query parameter. Optional parameter to filter device by device serial numbers. This filter uses multiple exact matches.
sort_order str
sortOrder query parameter. Sorted order of entries. Order options are 'ascending' and 'descending'. Default is 'descending'.
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.
t0 str
t0 query parameter. The beginning of the timespan for the data.
t1 str
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 730 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 730 days.
id String
The provider-assigned unique ID for this managed resource.
items List<Property Map>
Array of ResponseOrganizationsGetOrganizationDevicesBootsHistory
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.
mostRecentPerDevice Boolean
mostRecentPerDevice query parameter. If true, only the most recent boot for each device is returned.
perPage Number
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
serials List<String>
serials query parameter. Optional parameter to filter device by device serial numbers. This filter uses multiple exact matches.
sortOrder String
sortOrder query parameter. Sorted order of entries. Order options are 'ascending' and 'descending'. Default is 'descending'.
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.
t0 String
t0 query parameter. The beginning of the timespan for the data.
t1 String
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 730 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 730 days.

Supporting Types

GetDevicesBootsHistoryItem

Network This property is required. GetDevicesBootsHistoryItemNetwork
Device network
Serial This property is required. string
Device serial number
Start This property is required. GetDevicesBootsHistoryItemStart
Device power up
Network This property is required. GetDevicesBootsHistoryItemNetwork
Device network
Serial This property is required. string
Device serial number
Start This property is required. GetDevicesBootsHistoryItemStart
Device power up
network This property is required. GetDevicesBootsHistoryItemNetwork
Device network
serial This property is required. String
Device serial number
start This property is required. GetDevicesBootsHistoryItemStart
Device power up
network This property is required. GetDevicesBootsHistoryItemNetwork
Device network
serial This property is required. string
Device serial number
start This property is required. GetDevicesBootsHistoryItemStart
Device power up
network This property is required. GetDevicesBootsHistoryItemNetwork
Device network
serial This property is required. str
Device serial number
start This property is required. GetDevicesBootsHistoryItemStart
Device power up
network This property is required. Property Map
Device network
serial This property is required. String
Device serial number
start This property is required. Property Map
Device power up

GetDevicesBootsHistoryItemNetwork

Id This property is required. string
API-formatted network ID
Id This property is required. string
API-formatted network ID
id This property is required. String
API-formatted network ID
id This property is required. string
API-formatted network ID
id This property is required. str
API-formatted network ID
id This property is required. String
API-formatted network ID

GetDevicesBootsHistoryItemStart

BootedAt This property is required. string
Indicates when the device booted
BootedAt This property is required. string
Indicates when the device booted
bootedAt This property is required. String
Indicates when the device booted
bootedAt This property is required. string
Indicates when the device booted
booted_at This property is required. str
Indicates when the device booted
bootedAt This property is required. String
Indicates when the device booted

Package Details

Repository
meraki pulumi/pulumi-meraki
License
Apache-2.0
Notes
This Pulumi package is based on the meraki Terraform Provider.