@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.37 kB
TypeScript
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.getPiiSmOwnersForKey({
* bluetoothMac: "string",
* email: "string",
* imei: "string",
* mac: "string",
* networkId: "string",
* serial: "string",
* username: "string",
* });
* export const merakiNetworksPiiSmOwnersForKeyExample = example.then(example => example.item);
* ```
*/
export declare function getPiiSmOwnersForKey(args: GetPiiSmOwnersForKeyArgs, opts?: pulumi.InvokeOptions): Promise<GetPiiSmOwnersForKeyResult>;
/**
* A collection of arguments for invoking getPiiSmOwnersForKey.
*/
export interface GetPiiSmOwnersForKeyArgs {
/**
* 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 getPiiSmOwnersForKey.
*/
export interface GetPiiSmOwnersForKeyResult {
/**
* 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.GetPiiSmOwnersForKeyItem;
/**
* 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.getPiiSmOwnersForKey({
* bluetoothMac: "string",
* email: "string",
* imei: "string",
* mac: "string",
* networkId: "string",
* serial: "string",
* username: "string",
* });
* export const merakiNetworksPiiSmOwnersForKeyExample = example.then(example => example.item);
* ```
*/
export declare function getPiiSmOwnersForKeyOutput(args: GetPiiSmOwnersForKeyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPiiSmOwnersForKeyResult>;
/**
* A collection of arguments for invoking getPiiSmOwnersForKey.
*/
export interface GetPiiSmOwnersForKeyOutputArgs {
/**
* 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>;
}