UNPKG

@pulumi/meraki

Version:

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

77 lines (76 loc) 2.12 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.getClientsPolicy({ * clientId: "string", * networkId: "string", * }); * export const merakiNetworksClientsPolicyExample = example.then(example => example.item); * ``` */ export declare function getClientsPolicy(args: GetClientsPolicyArgs, opts?: pulumi.InvokeOptions): Promise<GetClientsPolicyResult>; /** * A collection of arguments for invoking getClientsPolicy. */ export interface GetClientsPolicyArgs { /** * clientId path parameter. Client ID */ clientId: string; /** * networkId path parameter. Network ID */ networkId: string; } /** * A collection of values returned by getClientsPolicy. */ export interface GetClientsPolicyResult { /** * clientId path parameter. Client ID */ readonly clientId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly item: outputs.networks.GetClientsPolicyItem; /** * 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.getClientsPolicy({ * clientId: "string", * networkId: "string", * }); * export const merakiNetworksClientsPolicyExample = example.then(example => example.item); * ``` */ export declare function getClientsPolicyOutput(args: GetClientsPolicyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetClientsPolicyResult>; /** * A collection of arguments for invoking getClientsPolicy. */ export interface GetClientsPolicyOutputArgs { /** * clientId path parameter. Client ID */ clientId: pulumi.Input<string>; /** * networkId path parameter. Network ID */ networkId: pulumi.Input<string>; }