Cisco Meraki v0.4.4 published on Wednesday, Oct 22, 2025 by Pulumi
meraki.organizations.getDevicesBootsHistory
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);
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)
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
	})
}
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),
    };
});
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.items());
    }
}
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}
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>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]func GetDevicesBootsHistory(ctx *Context, args *GetDevicesBootsHistoryArgs, opts ...InvokeOption) (*GetDevicesBootsHistoryResult, error)
func GetDevicesBootsHistoryOutput(ctx *Context, args *GetDevicesBootsHistoryOutputArgs, opts ...InvokeOption) GetDevicesBootsHistoryResultOutput> 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)
}public static CompletableFuture<GetDevicesBootsHistoryResult> getDevicesBootsHistory(GetDevicesBootsHistoryArgs args, InvokeOptions options)
public static Output<GetDevicesBootsHistoryResult> getDevicesBootsHistory(GetDevicesBootsHistoryArgs args, InvokeOptions options)
fn::invoke:
  function: meraki:organizations/getDevicesBootsHistory:getDevicesBootsHistory
  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.
- MostRecent boolPer Device 
- 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 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.
- MostRecent boolPer Device 
- 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 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.
- mostRecent BooleanPer Device 
- 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 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.
- mostRecent booleanPer Device 
- 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 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_ boolper_ device 
- 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 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.
- mostRecent BooleanPer Device 
- 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<GetDevices Boots History Item> 
- 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.
- MostRecent boolPer Device 
- 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
[]GetDevices Boots History Item 
- 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.
- MostRecent boolPer Device 
- 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<GetDevices Boots History Item> 
- 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.
- mostRecent BooleanPer Device 
- 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
GetDevices Boots History Item[] 
- 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.
- mostRecent booleanPer Device 
- 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[GetDevices Boots History Item] 
- 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_ boolper_ device 
- 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.
- mostRecent BooleanPer Device 
- 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
GetDevices Boots History Item Network 
- Device network
- Serial string
- Device serial number
- Start
GetDevices Boots History Item Start 
- Device power up
- Network
GetDevices Boots History Item Network 
- Device network
- Serial string
- Device serial number
- Start
GetDevices Boots History Item Start 
- Device power up
- network
GetDevices Boots History Item Network 
- Device network
- serial String
- Device serial number
- start
GetDevices Boots History Item Start 
- Device power up
- network
GetDevices Boots History Item Network 
- Device network
- serial string
- Device serial number
- start
GetDevices Boots History Item Start 
- Device power up
- network
GetDevices Boots History Item Network 
- Device network
- serial str
- Device serial number
- start
GetDevices Boots History Item Start 
- Device power up
- network Property Map
- Device network
- serial String
- Device serial number
- start Property Map
- Device power up
GetDevicesBootsHistoryItemNetwork     
- Id string
- API-formatted network ID
- Id string
- API-formatted network ID
- id String
- API-formatted network ID
- id string
- API-formatted network ID
- id str
- API-formatted network ID
- id String
- API-formatted network ID
GetDevicesBootsHistoryItemStart     
- BootedAt string
- Indicates when the device booted
- BootedAt string
- Indicates when the device booted
- bootedAt String
- Indicates when the device booted
- bootedAt string
- Indicates when the device booted
- booted_at str
- Indicates when the device booted
- bootedAt 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 merakiTerraform Provider.
 
