UNPKG

@pulumi/meraki

Version:

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

59 lines (58 loc) 1.58 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * ## Example Usage */ export declare function getPiiRequests(args?: GetPiiRequestsArgs, opts?: pulumi.InvokeOptions): Promise<GetPiiRequestsResult>; /** * A collection of arguments for invoking getPiiRequests. */ export interface GetPiiRequestsArgs { /** * networkId path parameter. Network ID */ networkId?: string; /** * requestId path parameter. Request ID */ requestId?: string; } /** * A collection of values returned by getPiiRequests. */ export interface GetPiiRequestsResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly item: outputs.networks.GetPiiRequestsItem; /** * Array of ResponseNetworksGetNetworkPiiRequests */ readonly items: outputs.networks.GetPiiRequestsItem[]; /** * networkId path parameter. Network ID */ readonly networkId?: string; /** * requestId path parameter. Request ID */ readonly requestId?: string; } /** * ## Example Usage */ export declare function getPiiRequestsOutput(args?: GetPiiRequestsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPiiRequestsResult>; /** * A collection of arguments for invoking getPiiRequests. */ export interface GetPiiRequestsOutputArgs { /** * networkId path parameter. Network ID */ networkId?: pulumi.Input<string>; /** * requestId path parameter. Request ID */ requestId?: pulumi.Input<string>; }