UNPKG

@pulumi/meraki

Version:

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

63 lines (62 loc) 1.93 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as meraki from "@pulumi/meraki"; * * const example = meraki.organizations.getLicensesOverview({ * organizationId: "string", * }); * export const merakiOrganizationsLicensesOverviewExample = example.then(example => example.item); * ``` */ export declare function getLicensesOverview(args: GetLicensesOverviewArgs, opts?: pulumi.InvokeOptions): Promise<GetLicensesOverviewResult>; /** * A collection of arguments for invoking getLicensesOverview. */ export interface GetLicensesOverviewArgs { /** * organizationId path parameter. Organization ID */ organizationId: string; } /** * A collection of values returned by getLicensesOverview. */ export interface GetLicensesOverviewResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly item: outputs.organizations.GetLicensesOverviewItem; /** * organizationId path parameter. Organization ID */ readonly organizationId: string; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as meraki from "@pulumi/meraki"; * * const example = meraki.organizations.getLicensesOverview({ * organizationId: "string", * }); * export const merakiOrganizationsLicensesOverviewExample = example.then(example => example.item); * ``` */ export declare function getLicensesOverviewOutput(args: GetLicensesOverviewOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLicensesOverviewResult>; /** * A collection of arguments for invoking getLicensesOverview. */ export interface GetLicensesOverviewOutputArgs { /** * organizationId path parameter. Organization ID */ organizationId: pulumi.Input<string>; }