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 (76 loc) 2.05 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.networks.getVlanProfiles({ * iname: "string", * networkId: "string", * }); * export const merakiNetworksVlanProfilesExample = example.then(example => example.item); * ``` */ export declare function getVlanProfiles(args: GetVlanProfilesArgs, opts?: pulumi.InvokeOptions): Promise<GetVlanProfilesResult>; /** * A collection of arguments for invoking getVlanProfiles. */ export interface GetVlanProfilesArgs { /** * iname path parameter. */ iname: string; /** * networkId path parameter. Network ID */ networkId: string; } /** * A collection of values returned by getVlanProfiles. */ export interface GetVlanProfilesResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * iname path parameter. */ readonly iname: string; readonly item: outputs.networks.GetVlanProfilesItem; /** * networkId path parameter. Network ID */ readonly networkId: string; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as meraki from "@pulumi/meraki"; * * const example = meraki.networks.getVlanProfiles({ * iname: "string", * networkId: "string", * }); * export const merakiNetworksVlanProfilesExample = example.then(example => example.item); * ``` */ export declare function getVlanProfilesOutput(args: GetVlanProfilesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetVlanProfilesResult>; /** * A collection of arguments for invoking getVlanProfiles. */ export interface GetVlanProfilesOutputArgs { /** * iname path parameter. */ iname: pulumi.Input<string>; /** * networkId path parameter. Network ID */ networkId: pulumi.Input<string>; }