Cisco Meraki v0.4.1 published on Saturday, Mar 15, 2025 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)
public static Output<GetInventoryOnboardingCloudMonitoringNetworksResult> getInventoryOnboardingCloudMonitoringNetworks(GetInventoryOnboardingCloudMonitoringNetworksArgs args, InvokeOptions options)
fn::invoke:
  function: meraki:organizations/getInventoryOnboardingCloudMonitoringNetworks:getInventoryOnboardingCloudMonitoringNetworks
  arguments:
    # arguments dictionaryThe following arguments are supported:
- DeviceType string
- deviceType query parameter. Device Type switch or wireless controller
- 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.
- PerPage 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
- 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.
- DeviceType string
- deviceType query parameter. Device Type switch or wireless controller
- 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.
- PerPage 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
- 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.
- deviceType String
- deviceType query parameter. Device Type switch or wireless controller
- 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.
- perPage 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
- 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.
- deviceType string
- deviceType query parameter. Device Type switch or wireless controller
- 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.
- perPage 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
- 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.
- 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.
- deviceType String
- deviceType query parameter. Device Type switch or wireless controller
- 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.
- perPage 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
- 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.
getInventoryOnboardingCloudMonitoringNetworks Result
The following output properties are available:
- DeviceType string
- deviceType query parameter. Device Type switch or wireless controller
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
List<GetInventory Onboarding Cloud Monitoring Networks Item> 
- Array of ResponseOrganizationsGetOrganizationInventoryOnboardingCloudMonitoringNetworks
- 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.
- PerPage 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
- 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.
- DeviceType string
- deviceType query parameter. Device Type switch or wireless controller
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
[]GetInventory Onboarding Cloud Monitoring Networks Item 
- Array of ResponseOrganizationsGetOrganizationInventoryOnboardingCloudMonitoringNetworks
- 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.
- PerPage 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
- 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.
- deviceType String
- deviceType query parameter. Device Type switch or wireless controller
- id String
- The provider-assigned unique ID for this managed resource.
- items
List<GetInventory Onboarding Cloud Monitoring Networks Item> 
- Array of ResponseOrganizationsGetOrganizationInventoryOnboardingCloudMonitoringNetworks
- 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.
- perPage 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
- 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.
- deviceType string
- deviceType query parameter. Device Type switch or wireless controller
- id string
- The provider-assigned unique ID for this managed resource.
- items
GetInventory Onboarding Cloud Monitoring Networks Item[] 
- Array of ResponseOrganizationsGetOrganizationInventoryOnboardingCloudMonitoringNetworks
- 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.
- perPage 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
- 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.
- 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[GetInventory 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.
- deviceType 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
- 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.
- perPage 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
- 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.
Supporting Types
GetInventoryOnboardingCloudMonitoringNetworksItem      
- EnrollmentString string
- Enrollment string for the network
- Id string
- Network ID
- IsBound boolTo Config Template 
- If the network is bound to a config template
- Name string
- Network name
- Notes string
- Notes for the network
- OrganizationId string
- Organization ID
- ProductTypes List<string>
- List of the product types that the network supports
- List<string>
- Network tags
- TimeZone string
- Timezone of the network
- Url string
- URL to the network Dashboard UI
- EnrollmentString string
- Enrollment string for the network
- Id string
- Network ID
- IsBound boolTo Config Template 
- If the network is bound to a config template
- Name string
- Network name
- Notes string
- Notes for the network
- OrganizationId string
- Organization ID
- ProductTypes []string
- List of the product types that the network supports
- []string
- Network tags
- TimeZone string
- Timezone of the network
- Url string
- URL to the network Dashboard UI
- enrollmentString String
- Enrollment string for the network
- id String
- Network ID
- isBound BooleanTo Config Template 
- If the network is bound to a config template
- name String
- Network name
- notes String
- Notes for the network
- organizationId String
- Organization ID
- productTypes List<String>
- List of the product types that the network supports
- List<String>
- Network tags
- timeZone String
- Timezone of the network
- url String
- URL to the network Dashboard UI
- enrollmentString string
- Enrollment string for the network
- id string
- Network ID
- isBound booleanTo Config Template 
- If the network is bound to a config template
- name string
- Network name
- notes string
- Notes for the network
- organizationId string
- Organization ID
- productTypes string[]
- List of the product types that the network supports
- string[]
- Network tags
- timeZone 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
- enrollmentString String
- Enrollment string for the network
- id String
- Network ID
- isBound BooleanTo Config Template 
- If the network is bound to a config template
- name String
- Network name
- notes String
- Notes for the network
- organizationId String
- Organization ID
- productTypes List<String>
- List of the product types that the network supports
- List<String>
- Network tags
- timeZone 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 merakiTerraform Provider.
