UNPKG

@pulumi/meraki

Version:

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

147 lines (146 loc) 4.38 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.getPiiSmDevicesForKey({ * bluetoothMac: "string", * email: "string", * imei: "string", * mac: "string", * networkId: "string", * serial: "string", * username: "string", * }); * export const merakiNetworksPiiSmDevicesForKeyExample = example.then(example => example.item); * ``` */ export declare function getPiiSmDevicesForKey(args: GetPiiSmDevicesForKeyArgs, opts?: pulumi.InvokeOptions): Promise<GetPiiSmDevicesForKeyResult>; /** * A collection of arguments for invoking getPiiSmDevicesForKey. */ export interface GetPiiSmDevicesForKeyArgs { /** * bluetoothMac query parameter. The MAC of a Bluetooth client */ bluetoothMac?: string; /** * email query parameter. The email of a network user account or a Systems Manager device */ email?: string; /** * imei query parameter. The IMEI of a Systems Manager device */ imei?: string; /** * mac query parameter. The MAC of a network client device or a Systems Manager device */ mac?: string; /** * networkId path parameter. Network ID */ networkId: string; /** * serial query parameter. The serial of a Systems Manager device */ serial?: string; /** * username query parameter. The username of a Systems Manager user */ username?: string; } /** * A collection of values returned by getPiiSmDevicesForKey. */ export interface GetPiiSmDevicesForKeyResult { /** * bluetoothMac query parameter. The MAC of a Bluetooth client */ readonly bluetoothMac?: string; /** * email query parameter. The email of a network user account or a Systems Manager device */ readonly email?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * imei query parameter. The IMEI of a Systems Manager device */ readonly imei?: string; readonly item: outputs.networks.GetPiiSmDevicesForKeyItem; /** * mac query parameter. The MAC of a network client device or a Systems Manager device */ readonly mac?: string; /** * networkId path parameter. Network ID */ readonly networkId: string; /** * serial query parameter. The serial of a Systems Manager device */ readonly serial?: string; /** * username query parameter. The username of a Systems Manager user */ readonly username?: string; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as meraki from "@pulumi/meraki"; * * const example = meraki.networks.getPiiSmDevicesForKey({ * bluetoothMac: "string", * email: "string", * imei: "string", * mac: "string", * networkId: "string", * serial: "string", * username: "string", * }); * export const merakiNetworksPiiSmDevicesForKeyExample = example.then(example => example.item); * ``` */ export declare function getPiiSmDevicesForKeyOutput(args: GetPiiSmDevicesForKeyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPiiSmDevicesForKeyResult>; /** * A collection of arguments for invoking getPiiSmDevicesForKey. */ export interface GetPiiSmDevicesForKeyOutputArgs { /** * bluetoothMac query parameter. The MAC of a Bluetooth client */ bluetoothMac?: pulumi.Input<string>; /** * email query parameter. The email of a network user account or a Systems Manager device */ email?: pulumi.Input<string>; /** * imei query parameter. The IMEI of a Systems Manager device */ imei?: pulumi.Input<string>; /** * mac query parameter. The MAC of a network client device or a Systems Manager device */ mac?: pulumi.Input<string>; /** * networkId path parameter. Network ID */ networkId: pulumi.Input<string>; /** * serial query parameter. The serial of a Systems Manager device */ serial?: pulumi.Input<string>; /** * username query parameter. The username of a Systems Manager user */ username?: pulumi.Input<string>; }