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.73 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * ## Example Usage */ export declare function getWebhooksHttpServers(args?: GetWebhooksHttpServersArgs, opts?: pulumi.InvokeOptions): Promise<GetWebhooksHttpServersResult>; /** * A collection of arguments for invoking getWebhooksHttpServers. */ export interface GetWebhooksHttpServersArgs { /** * httpServerId path parameter. Http server ID */ httpServerId?: string; /** * networkId path parameter. Network ID */ networkId?: string; } /** * A collection of values returned by getWebhooksHttpServers. */ export interface GetWebhooksHttpServersResult { /** * httpServerId path parameter. Http server ID */ readonly httpServerId?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly item: outputs.networks.GetWebhooksHttpServersItem; /** * Array of ResponseNetworksGetNetworkWebhooksHttpServers */ readonly items: outputs.networks.GetWebhooksHttpServersItem[]; /** * networkId path parameter. Network ID */ readonly networkId?: string; } /** * ## Example Usage */ export declare function getWebhooksHttpServersOutput(args?: GetWebhooksHttpServersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetWebhooksHttpServersResult>; /** * A collection of arguments for invoking getWebhooksHttpServers. */ export interface GetWebhooksHttpServersOutputArgs { /** * httpServerId path parameter. Http server ID */ httpServerId?: pulumi.Input<string>; /** * networkId path parameter. Network ID */ networkId?: pulumi.Input<string>; }