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.31 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.getSmUsersDeviceProfiles({ * networkId: "string", * userId: "string", * }); * export const merakiNetworksSmUsersDeviceProfilesExample = example.then(example => example.items); * ``` */ export declare function getSmUsersDeviceProfiles(args: GetSmUsersDeviceProfilesArgs, opts?: pulumi.InvokeOptions): Promise<GetSmUsersDeviceProfilesResult>; /** * A collection of arguments for invoking getSmUsersDeviceProfiles. */ export interface GetSmUsersDeviceProfilesArgs { /** * networkId path parameter. Network ID */ networkId: string; /** * userId path parameter. User ID */ userId: string; } /** * A collection of values returned by getSmUsersDeviceProfiles. */ export interface GetSmUsersDeviceProfilesResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Array of ResponseSmGetNetworkSmUserDeviceProfiles */ readonly items: outputs.networks.GetSmUsersDeviceProfilesItem[]; /** * networkId path parameter. Network ID */ readonly networkId: string; /** * userId path parameter. User ID */ readonly userId: string; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as meraki from "@pulumi/meraki"; * * const example = meraki.networks.getSmUsersDeviceProfiles({ * networkId: "string", * userId: "string", * }); * export const merakiNetworksSmUsersDeviceProfilesExample = example.then(example => example.items); * ``` */ export declare function getSmUsersDeviceProfilesOutput(args: GetSmUsersDeviceProfilesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSmUsersDeviceProfilesResult>; /** * A collection of arguments for invoking getSmUsersDeviceProfiles. */ export interface GetSmUsersDeviceProfilesOutputArgs { /** * networkId path parameter. Network ID */ networkId: pulumi.Input<string>; /** * userId path parameter. User ID */ userId: pulumi.Input<string>; }