UNPKG

@pulumi/meraki

Version:

A Pulumi package for creating and managing Cisco Meraki resources. Based on terraform-provider-meraki: version v0.2.0

83 lines 4.16 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * ## Example Usage */ export declare function getOrganizations(args?: GetOrganizationsArgs, opts?: pulumi.InvokeOptions): Promise<GetOrganizationsResult>; /** * A collection of arguments for invoking getOrganizations. */ export interface GetOrganizationsArgs { /** * 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. */ endingBefore?: string; /** * organizationId path parameter. Organization ID */ organizationId?: string; /** * perPage query parameter. The number of entries per page returned. Acceptable range is 3 9000. Default is 9000. */ perPage?: number; /** * 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. */ startingAfter?: string; } /** * A collection of values returned by getOrganizations. */ export interface GetOrganizationsResult { /** * 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. */ readonly endingBefore?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly item: outputs.GetOrganizationsItem; /** * Array of ResponseOrganizationsGetOrganizations */ readonly items: outputs.GetOrganizationsItem[]; /** * organizationId path parameter. Organization ID */ readonly organizationId?: string; /** * perPage query parameter. The number of entries per page returned. Acceptable range is 3 9000. Default is 9000. */ readonly perPage?: number; /** * 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. */ readonly startingAfter?: string; } /** * ## Example Usage */ export declare function getOrganizationsOutput(args?: GetOrganizationsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetOrganizationsResult>; /** * A collection of arguments for invoking getOrganizations. */ export interface GetOrganizationsOutputArgs { /** * 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. */ endingBefore?: pulumi.Input<string | undefined>; /** * organizationId path parameter. Organization ID */ organizationId?: pulumi.Input<string | undefined>; /** * perPage query parameter. The number of entries per page returned. Acceptable range is 3 9000. Default is 9000. */ perPage?: pulumi.Input<number | undefined>; /** * 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. */ startingAfter?: pulumi.Input<string | undefined>; } //# sourceMappingURL=getOrganizations.d.ts.map