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.3 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.getWebhooksWebhookTests({ * networkId: "string", * webhookTestId: "string", * }); * export const merakiNetworksWebhooksWebhookTestsExample = example.then(example => example.item); * ``` */ export declare function getWebhooksWebhookTests(args: GetWebhooksWebhookTestsArgs, opts?: pulumi.InvokeOptions): Promise<GetWebhooksWebhookTestsResult>; /** * A collection of arguments for invoking getWebhooksWebhookTests. */ export interface GetWebhooksWebhookTestsArgs { /** * networkId path parameter. Network ID */ networkId: string; /** * webhookTestId path parameter. Webhook test ID */ webhookTestId: string; } /** * A collection of values returned by getWebhooksWebhookTests. */ export interface GetWebhooksWebhookTestsResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly item: outputs.networks.GetWebhooksWebhookTestsItem; /** * networkId path parameter. Network ID */ readonly networkId: string; /** * webhookTestId path parameter. Webhook test ID */ readonly webhookTestId: string; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as meraki from "@pulumi/meraki"; * * const example = meraki.networks.getWebhooksWebhookTests({ * networkId: "string", * webhookTestId: "string", * }); * export const merakiNetworksWebhooksWebhookTestsExample = example.then(example => example.item); * ``` */ export declare function getWebhooksWebhookTestsOutput(args: GetWebhooksWebhookTestsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetWebhooksWebhookTestsResult>; /** * A collection of arguments for invoking getWebhooksWebhookTests. */ export interface GetWebhooksWebhookTestsOutputArgs { /** * networkId path parameter. Network ID */ networkId: pulumi.Input<string>; /** * webhookTestId path parameter. Webhook test ID */ webhookTestId: pulumi.Input<string>; }