Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi
meraki.organizations.getInventoryOnboardingCloudMonitoringNetworks
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as meraki from "@pulumi/meraki";
const example = meraki.organizations.getInventoryOnboardingCloudMonitoringNetworks({
deviceType: "string",
endingBefore: "string",
organizationId: "string",
perPage: 1,
search: "string",
startingAfter: "string",
});
export const merakiOrganizationsInventoryOnboardingCloudMonitoringNetworksExample = example.then(example => example.items);
import pulumi
import pulumi_meraki as meraki
example = meraki.organizations.get_inventory_onboarding_cloud_monitoring_networks(device_type="string",
ending_before="string",
organization_id="string",
per_page=1,
search="string",
starting_after="string")
pulumi.export("merakiOrganizationsInventoryOnboardingCloudMonitoringNetworksExample", 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.GetInventoryOnboardingCloudMonitoringNetworks(ctx, &organizations.GetInventoryOnboardingCloudMonitoringNetworksArgs{
DeviceType: "string",
EndingBefore: pulumi.StringRef("string"),
OrganizationId: "string",
PerPage: pulumi.IntRef(1),
Search: pulumi.StringRef("string"),
StartingAfter: pulumi.StringRef("string"),
}, nil)
if err != nil {
return err
}
ctx.Export("merakiOrganizationsInventoryOnboardingCloudMonitoringNetworksExample", 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.GetInventoryOnboardingCloudMonitoringNetworks.Invoke(new()
{
DeviceType = "string",
EndingBefore = "string",
OrganizationId = "string",
PerPage = 1,
Search = "string",
StartingAfter = "string",
});
return new Dictionary<string, object?>
{
["merakiOrganizationsInventoryOnboardingCloudMonitoringNetworksExample"] = example.Apply(getInventoryOnboardingCloudMonitoringNetworksResult => getInventoryOnboardingCloudMonitoringNetworksResult.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.GetInventoryOnboardingCloudMonitoringNetworksArgs;
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.getInventoryOnboardingCloudMonitoringNetworks(GetInventoryOnboardingCloudMonitoringNetworksArgs.builder()
.deviceType("string")
.endingBefore("string")
.organizationId("string")
.perPage(1)
.search("string")
.startingAfter("string")
.build());
ctx.export("merakiOrganizationsInventoryOnboardingCloudMonitoringNetworksExample", example.applyValue(getInventoryOnboardingCloudMonitoringNetworksResult -> getInventoryOnboardingCloudMonitoringNetworksResult.items()));
}
}
variables:
example:
fn::invoke:
Function: meraki:organizations:getInventoryOnboardingCloudMonitoringNetworks
Arguments:
deviceType: string
endingBefore: string
organizationId: string
perPage: 1
search: string
startingAfter: string
outputs:
merakiOrganizationsInventoryOnboardingCloudMonitoringNetworksExample: ${example.items}
Using getInventoryOnboardingCloudMonitoringNetworks
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 getInventoryOnboardingCloudMonitoringNetworks(args: GetInventoryOnboardingCloudMonitoringNetworksArgs, opts?: InvokeOptions): Promise<GetInventoryOnboardingCloudMonitoringNetworksResult>
function getInventoryOnboardingCloudMonitoringNetworksOutput(args: GetInventoryOnboardingCloudMonitoringNetworksOutputArgs, opts?: InvokeOptions): Output<GetInventoryOnboardingCloudMonitoringNetworksResult>
def get_inventory_onboarding_cloud_monitoring_networks(device_type: Optional[str] = None,
ending_before: Optional[str] = None,
organization_id: Optional[str] = None,
per_page: Optional[int] = None,
search: Optional[str] = None,
starting_after: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetInventoryOnboardingCloudMonitoringNetworksResult
def get_inventory_onboarding_cloud_monitoring_networks_output(device_type: Optional[pulumi.Input[str]] = None,
ending_before: Optional[pulumi.Input[str]] = None,
organization_id: Optional[pulumi.Input[str]] = None,
per_page: Optional[pulumi.Input[int]] = None,
search: Optional[pulumi.Input[str]] = None,
starting_after: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetInventoryOnboardingCloudMonitoringNetworksResult]
func GetInventoryOnboardingCloudMonitoringNetworks(ctx *Context, args *GetInventoryOnboardingCloudMonitoringNetworksArgs, opts ...InvokeOption) (*GetInventoryOnboardingCloudMonitoringNetworksResult, error)
func GetInventoryOnboardingCloudMonitoringNetworksOutput(ctx *Context, args *GetInventoryOnboardingCloudMonitoringNetworksOutputArgs, opts ...InvokeOption) GetInventoryOnboardingCloudMonitoringNetworksResultOutput
> Note: This function is named GetInventoryOnboardingCloudMonitoringNetworks
in the Go SDK.
public static class GetInventoryOnboardingCloudMonitoringNetworks
{
public static Task<GetInventoryOnboardingCloudMonitoringNetworksResult> InvokeAsync(GetInventoryOnboardingCloudMonitoringNetworksArgs args, InvokeOptions? opts = null)
public static Output<GetInventoryOnboardingCloudMonitoringNetworksResult> Invoke(GetInventoryOnboardingCloudMonitoringNetworksInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetInventoryOnboardingCloudMonitoringNetworksResult> getInventoryOnboardingCloudMonitoringNetworks(GetInventoryOnboardingCloudMonitoringNetworksArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: meraki:organizations/getInventoryOnboardingCloudMonitoringNetworks:getInventoryOnboardingCloudMonitoringNetworks
arguments:
# arguments dictionary
The following arguments are supported:
- Device
Type string - deviceType query parameter. Device Type switch or wireless controller
- 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.
- Per
Page int - perPage query parameter. The number of entries per page returned. Acceptable range is 3 100000. Default is 1000.
- Search string
- search query parameter. Optional parameter to search on network name
- 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.
- Device
Type string - deviceType query parameter. Device Type switch or wireless controller
- 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.
- Per
Page int - perPage query parameter. The number of entries per page returned. Acceptable range is 3 100000. Default is 1000.
- Search string
- search query parameter. Optional parameter to search on network name
- 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.
- device
Type String - deviceType query parameter. Device Type switch or wireless controller
- 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.
- per
Page Integer - perPage query parameter. The number of entries per page returned. Acceptable range is 3 100000. Default is 1000.
- search String
- search query parameter. Optional parameter to search on network name
- 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.
- device
Type string - deviceType query parameter. Device Type switch or wireless controller
- 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.
- per
Page number - perPage query parameter. The number of entries per page returned. Acceptable range is 3 100000. Default is 1000.
- search string
- search query parameter. Optional parameter to search on network name
- 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.
- device_
type str - deviceType query parameter. Device Type switch or wireless controller
- 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.
- per_
page int - perPage query parameter. The number of entries per page returned. Acceptable range is 3 100000. Default is 1000.
- search str
- search query parameter. Optional parameter to search on network name
- 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.
- device
Type String - deviceType query parameter. Device Type switch or wireless controller
- 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.
- per
Page Number - perPage query parameter. The number of entries per page returned. Acceptable range is 3 100000. Default is 1000.
- search String
- search query parameter. Optional parameter to search on network name
- 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.
getInventoryOnboardingCloudMonitoringNetworks Result
The following output properties are available:
- Device
Type string - deviceType query parameter. Device Type switch or wireless controller
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
List<Get
Inventory Onboarding Cloud Monitoring Networks Item> - Array of ResponseOrganizationsGetOrganizationInventoryOnboardingCloudMonitoringNetworks
- 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.
- Per
Page int - perPage query parameter. The number of entries per page returned. Acceptable range is 3 100000. Default is 1000.
- Search string
- search query parameter. Optional parameter to search on network name
- 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.
- Device
Type string - deviceType query parameter. Device Type switch or wireless controller
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
[]Get
Inventory Onboarding Cloud Monitoring Networks Item - Array of ResponseOrganizationsGetOrganizationInventoryOnboardingCloudMonitoringNetworks
- 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.
- Per
Page int - perPage query parameter. The number of entries per page returned. Acceptable range is 3 100000. Default is 1000.
- Search string
- search query parameter. Optional parameter to search on network name
- 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.
- device
Type String - deviceType query parameter. Device Type switch or wireless controller
- id String
- The provider-assigned unique ID for this managed resource.
- items
List<Get
Inventory Onboarding Cloud Monitoring Networks Item> - Array of ResponseOrganizationsGetOrganizationInventoryOnboardingCloudMonitoringNetworks
- 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.
- per
Page Integer - perPage query parameter. The number of entries per page returned. Acceptable range is 3 100000. Default is 1000.
- search String
- search query parameter. Optional parameter to search on network name
- 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.
- device
Type string - deviceType query parameter. Device Type switch or wireless controller
- id string
- The provider-assigned unique ID for this managed resource.
- items
Get
Inventory Onboarding Cloud Monitoring Networks Item[] - Array of ResponseOrganizationsGetOrganizationInventoryOnboardingCloudMonitoringNetworks
- 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.
- per
Page number - perPage query parameter. The number of entries per page returned. Acceptable range is 3 100000. Default is 1000.
- search string
- search query parameter. Optional parameter to search on network name
- 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.
- device_
type str - deviceType query parameter. Device Type switch or wireless controller
- id str
- The provider-assigned unique ID for this managed resource.
- items
Sequence[Get
Inventory Onboarding Cloud Monitoring Networks Item] - Array of ResponseOrganizationsGetOrganizationInventoryOnboardingCloudMonitoringNetworks
- 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.
- per_
page int - perPage query parameter. The number of entries per page returned. Acceptable range is 3 100000. Default is 1000.
- search str
- search query parameter. Optional parameter to search on network name
- 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.
- device
Type String - deviceType query parameter. Device Type switch or wireless controller
- id String
- The provider-assigned unique ID for this managed resource.
- items List<Property Map>
- Array of ResponseOrganizationsGetOrganizationInventoryOnboardingCloudMonitoringNetworks
- 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.
- per
Page Number - perPage query parameter. The number of entries per page returned. Acceptable range is 3 100000. Default is 1000.
- search String
- search query parameter. Optional parameter to search on network name
- 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.
Supporting Types
GetInventoryOnboardingCloudMonitoringNetworksItem
- Enrollment
String string - Enrollment string for the network
- Id string
- Network ID
- Is
Bound boolTo Config Template - If the network is bound to a config template
- Name string
- Network name
- Notes string
- Notes for the network
- Organization
Id string - Organization ID
- Product
Types List<string> - List of the product types that the network supports
- List<string>
- Network tags
- Time
Zone string - Timezone of the network
- Url string
- URL to the network Dashboard UI
- Enrollment
String string - Enrollment string for the network
- Id string
- Network ID
- Is
Bound boolTo Config Template - If the network is bound to a config template
- Name string
- Network name
- Notes string
- Notes for the network
- Organization
Id string - Organization ID
- Product
Types []string - List of the product types that the network supports
- []string
- Network tags
- Time
Zone string - Timezone of the network
- Url string
- URL to the network Dashboard UI
- enrollment
String String - Enrollment string for the network
- id String
- Network ID
- is
Bound BooleanTo Config Template - If the network is bound to a config template
- name String
- Network name
- notes String
- Notes for the network
- organization
Id String - Organization ID
- product
Types List<String> - List of the product types that the network supports
- List<String>
- Network tags
- time
Zone String - Timezone of the network
- url String
- URL to the network Dashboard UI
- enrollment
String string - Enrollment string for the network
- id string
- Network ID
- is
Bound booleanTo Config Template - If the network is bound to a config template
- name string
- Network name
- notes string
- Notes for the network
- organization
Id string - Organization ID
- product
Types string[] - List of the product types that the network supports
- string[]
- Network tags
- time
Zone string - Timezone of the network
- url string
- URL to the network Dashboard UI
- enrollment_
string str - Enrollment string for the network
- id str
- Network ID
- is_
bound_ boolto_ config_ template - If the network is bound to a config template
- name str
- Network name
- notes str
- Notes for the network
- organization_
id str - Organization ID
- product_
types Sequence[str] - List of the product types that the network supports
- Sequence[str]
- Network tags
- time_
zone str - Timezone of the network
- url str
- URL to the network Dashboard UI
- enrollment
String String - Enrollment string for the network
- id String
- Network ID
- is
Bound BooleanTo Config Template - If the network is bound to a config template
- name String
- Network name
- notes String
- Notes for the network
- organization
Id String - Organization ID
- product
Types List<String> - List of the product types that the network supports
- List<String>
- Network tags
- time
Zone String - Timezone of the network
- url String
- URL to the network Dashboard UI
Package Details
- Repository
- meraki pulumi/pulumi-meraki
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
meraki
Terraform Provider.