UNPKG

@pulumi/meraki

Version:

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

77 lines 2.17 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.getLicenses({ * licenseId: "string", * organizationId: "string", * }); * export const merakiOrganizationsLicensesExample = example.then(example => example.item); * ``` */ export declare function getLicenses(args: GetLicensesArgs, opts?: pulumi.InvokeOptions): Promise<GetLicensesResult>; /** * A collection of arguments for invoking getLicenses. */ export interface GetLicensesArgs { /** * licenseId path parameter. License ID */ licenseId: string; /** * organizationId path parameter. Organization ID */ organizationId: string; } /** * A collection of values returned by getLicenses. */ export interface GetLicensesResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly item: outputs.organizations.GetLicensesItem; /** * licenseId path parameter. License ID */ readonly licenseId: string; /** * 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.getLicenses({ * licenseId: "string", * organizationId: "string", * }); * export const merakiOrganizationsLicensesExample = example.then(example => example.item); * ``` */ export declare function getLicensesOutput(args: GetLicensesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLicensesResult>; /** * A collection of arguments for invoking getLicenses. */ export interface GetLicensesOutputArgs { /** * licenseId path parameter. License ID */ licenseId: pulumi.Input<string>; /** * organizationId path parameter. Organization ID */ organizationId: pulumi.Input<string>; } //# sourceMappingURL=getLicenses.d.ts.map