UNPKG

@pulumi/meraki

Version:

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

59 lines (58 loc) 1.82 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * ## Example Usage */ export declare function getCameraWirelessProfiles(args?: GetCameraWirelessProfilesArgs, opts?: pulumi.InvokeOptions): Promise<GetCameraWirelessProfilesResult>; /** * A collection of arguments for invoking getCameraWirelessProfiles. */ export interface GetCameraWirelessProfilesArgs { /** * networkId path parameter. Network ID */ networkId?: string; /** * wirelessProfileId path parameter. Wireless profile ID */ wirelessProfileId?: string; } /** * A collection of values returned by getCameraWirelessProfiles. */ export interface GetCameraWirelessProfilesResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly item: outputs.networks.GetCameraWirelessProfilesItem; /** * Array of ResponseCameraGetNetworkCameraWirelessProfiles */ readonly items: outputs.networks.GetCameraWirelessProfilesItem[]; /** * networkId path parameter. Network ID */ readonly networkId?: string; /** * wirelessProfileId path parameter. Wireless profile ID */ readonly wirelessProfileId?: string; } /** * ## Example Usage */ export declare function getCameraWirelessProfilesOutput(args?: GetCameraWirelessProfilesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCameraWirelessProfilesResult>; /** * A collection of arguments for invoking getCameraWirelessProfiles. */ export interface GetCameraWirelessProfilesOutputArgs { /** * networkId path parameter. Network ID */ networkId?: pulumi.Input<string>; /** * wirelessProfileId path parameter. Wireless profile ID */ wirelessProfileId?: pulumi.Input<string>; }