Cisco Meraki v0.3.2 published on Tuesday, Sep 24, 2024 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);
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.applyValue(getDevicesBootsHistoryResult -> getDevicesBootsHistoryResult.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)
// Output-based functions aren't available in Java yet
fn::invoke:
function: meraki:organizations/getDevicesBootsHistory:getDevicesBootsHistory
arguments:
# arguments dictionary
The following arguments are supported:
- Organization
Id string - organizationId path parameter. Organization ID
- Ending
Before string - endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- 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 List<string>
- serials query parameter. Optional parameter to filter device by device serial numbers. This filter uses multiple exact matches.
- Sort
Order string - sortOrder query parameter. Sorted order of entries. Order options are 'ascending' and 'descending'. Default is 'descending'.
- Starting
After string - startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- 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.
- Organization
Id string - organizationId path parameter. Organization ID
- Ending
Before string - endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- 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 []string
- serials query parameter. Optional parameter to filter device by device serial numbers. This filter uses multiple exact matches.
- Sort
Order string - sortOrder query parameter. Sorted order of entries. Order options are 'ascending' and 'descending'. Default is 'descending'.
- Starting
After string - startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- 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.
- organization
Id String - organizationId path parameter. Organization ID
- ending
Before String - endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- most
Recent BooleanPer Device - mostRecentPerDevice query parameter. If true, only the most recent boot for each device is returned.
- per
Page 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.
- sort
Order String - sortOrder query parameter. Sorted order of entries. Order options are 'ascending' and 'descending'. Default is 'descending'.
- starting
After String - startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- 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.
- organization
Id string - organizationId path parameter. Organization ID
- ending
Before string - endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- most
Recent booleanPer Device - mostRecentPerDevice query parameter. If true, only the most recent boot for each device is returned.
- per
Page 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.
- sort
Order string - sortOrder query parameter. Sorted order of entries. Order options are 'ascending' and 'descending'. Default is 'descending'.
- starting
After string - startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- 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.
- organization
Id String - organizationId path parameter. Organization ID
- ending
Before String - endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- most
Recent BooleanPer Device - mostRecentPerDevice query parameter. If true, only the most recent boot for each device is returned.
- per
Page 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.
- sort
Order String - sortOrder query parameter. Sorted order of entries. Order options are 'ascending' and 'descending'. Default is 'descending'.
- starting
After String - startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- 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<Get
Devices Boots History Item> - Array of ResponseOrganizationsGetOrganizationDevicesBootsHistory
- Organization
Id string - organizationId path parameter. Organization ID
- Ending
Before string - endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- 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 List<string>
- serials query parameter. Optional parameter to filter device by device serial numbers. This filter uses multiple exact matches.
- Sort
Order string - sortOrder query parameter. Sorted order of entries. Order options are 'ascending' and 'descending'. Default is 'descending'.
- Starting
After string - startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- 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
[]Get
Devices Boots History Item - Array of ResponseOrganizationsGetOrganizationDevicesBootsHistory
- Organization
Id string - organizationId path parameter. Organization ID
- Ending
Before string - endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- 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 []string
- serials query parameter. Optional parameter to filter device by device serial numbers. This filter uses multiple exact matches.
- Sort
Order string - sortOrder query parameter. Sorted order of entries. Order options are 'ascending' and 'descending'. Default is 'descending'.
- Starting
After string - startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- 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<Get
Devices Boots History Item> - Array of ResponseOrganizationsGetOrganizationDevicesBootsHistory
- organization
Id String - organizationId path parameter. Organization ID
- ending
Before String - endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- most
Recent BooleanPer Device - mostRecentPerDevice query parameter. If true, only the most recent boot for each device is returned.
- per
Page 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.
- sort
Order String - sortOrder query parameter. Sorted order of entries. Order options are 'ascending' and 'descending'. Default is 'descending'.
- starting
After String - startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- 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
Get
Devices Boots History Item[] - Array of ResponseOrganizationsGetOrganizationDevicesBootsHistory
- organization
Id string - organizationId path parameter. Organization ID
- ending
Before string - endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- most
Recent booleanPer Device - mostRecentPerDevice query parameter. If true, only the most recent boot for each device is returned.
- per
Page 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.
- sort
Order string - sortOrder query parameter. Sorted order of entries. Order options are 'ascending' and 'descending'. Default is 'descending'.
- starting
After string - startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- 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[Get
Devices 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
- organization
Id String - organizationId path parameter. Organization ID
- ending
Before String - endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- most
Recent BooleanPer Device - mostRecentPerDevice query parameter. If true, only the most recent boot for each device is returned.
- per
Page 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.
- sort
Order String - sortOrder query parameter. Sorted order of entries. Order options are 'ascending' and 'descending'. Default is 'descending'.
- starting
After String - startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- 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
Get
Devices Boots History Item Network - Device network
- Serial string
- Device serial number
- Start
Get
Devices Boots History Item Start - Device power up
- Network
Get
Devices Boots History Item Network - Device network
- Serial string
- Device serial number
- Start
Get
Devices Boots History Item Start - Device power up
- network
Get
Devices Boots History Item Network - Device network
- serial String
- Device serial number
- start
Get
Devices Boots History Item Start - Device power up
- network
Get
Devices Boots History Item Network - Device network
- serial string
- Device serial number
- start
Get
Devices Boots History Item Start - Device power up
- network
Get
Devices Boots History Item Network - Device network
- serial str
- Device serial number
- start
Get
Devices 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
- Booted
At string - Indicates when the device booted
- Booted
At string - Indicates when the device booted
- booted
At String - Indicates when the device booted
- booted
At string - Indicates when the device booted
- booted_
at str - Indicates when the device booted
- booted
At 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.