@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.85 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* ## Example Usage
*/
export declare function getWebhooksPayloadTemplates(args?: GetWebhooksPayloadTemplatesArgs, opts?: pulumi.InvokeOptions): Promise<GetWebhooksPayloadTemplatesResult>;
/**
* A collection of arguments for invoking getWebhooksPayloadTemplates.
*/
export interface GetWebhooksPayloadTemplatesArgs {
/**
* networkId path parameter. Network ID
*/
networkId?: string;
/**
* payloadTemplateId path parameter. Payload template ID
*/
payloadTemplateId?: string;
}
/**
* A collection of values returned by getWebhooksPayloadTemplates.
*/
export interface GetWebhooksPayloadTemplatesResult {
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly item: outputs.networks.GetWebhooksPayloadTemplatesItem;
/**
* Array of ResponseNetworksGetNetworkWebhooksPayloadTemplates
*/
readonly items: outputs.networks.GetWebhooksPayloadTemplatesItem[];
/**
* networkId path parameter. Network ID
*/
readonly networkId?: string;
/**
* payloadTemplateId path parameter. Payload template ID
*/
readonly payloadTemplateId?: string;
}
/**
* ## Example Usage
*/
export declare function getWebhooksPayloadTemplatesOutput(args?: GetWebhooksPayloadTemplatesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetWebhooksPayloadTemplatesResult>;
/**
* A collection of arguments for invoking getWebhooksPayloadTemplates.
*/
export interface GetWebhooksPayloadTemplatesOutputArgs {
/**
* networkId path parameter. Network ID
*/
networkId?: pulumi.Input<string>;
/**
* payloadTemplateId path parameter. Payload template ID
*/
payloadTemplateId?: pulumi.Input<string>;
}