UNPKG

@pulumi/meraki

Version:

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

80 lines (79 loc) 2.37 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.getSmDevicesDeviceProfiles({ * deviceId: "string", * networkId: "string", * }); * export const merakiNetworksSmDevicesDeviceProfilesExample = example.then(example => example.items); * ``` */ export declare function getSmDevicesDeviceProfiles(args: GetSmDevicesDeviceProfilesArgs, opts?: pulumi.InvokeOptions): Promise<GetSmDevicesDeviceProfilesResult>; /** * A collection of arguments for invoking getSmDevicesDeviceProfiles. */ export interface GetSmDevicesDeviceProfilesArgs { /** * deviceId path parameter. Device ID */ deviceId: string; /** * networkId path parameter. Network ID */ networkId: string; } /** * A collection of values returned by getSmDevicesDeviceProfiles. */ export interface GetSmDevicesDeviceProfilesResult { /** * deviceId path parameter. Device ID */ readonly deviceId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Array of ResponseSmGetNetworkSmDeviceDeviceProfiles */ readonly items: outputs.networks.GetSmDevicesDeviceProfilesItem[]; /** * 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.getSmDevicesDeviceProfiles({ * deviceId: "string", * networkId: "string", * }); * export const merakiNetworksSmDevicesDeviceProfilesExample = example.then(example => example.items); * ``` */ export declare function getSmDevicesDeviceProfilesOutput(args: GetSmDevicesDeviceProfilesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSmDevicesDeviceProfilesResult>; /** * A collection of arguments for invoking getSmDevicesDeviceProfiles. */ export interface GetSmDevicesDeviceProfilesOutputArgs { /** * deviceId path parameter. Device ID */ deviceId: pulumi.Input<string>; /** * networkId path parameter. Network ID */ networkId: pulumi.Input<string>; }