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.46 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.getApplianceFirewallFirewalledServices({ * networkId: "string", * service: "string", * }); * export const merakiNetworksApplianceFirewallFirewalledServicesExample = example.then(example => example.item); * ``` */ export declare function getApplianceFirewallFirewalledServices(args: GetApplianceFirewallFirewalledServicesArgs, opts?: pulumi.InvokeOptions): Promise<GetApplianceFirewallFirewalledServicesResult>; /** * A collection of arguments for invoking getApplianceFirewallFirewalledServices. */ export interface GetApplianceFirewallFirewalledServicesArgs { /** * networkId path parameter. Network ID */ networkId: string; /** * service path parameter. */ service: string; } /** * A collection of values returned by getApplianceFirewallFirewalledServices. */ export interface GetApplianceFirewallFirewalledServicesResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly item: outputs.networks.GetApplianceFirewallFirewalledServicesItem; /** * networkId path parameter. Network ID */ readonly networkId: string; /** * service path parameter. */ readonly service: string; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as meraki from "@pulumi/meraki"; * * const example = meraki.networks.getApplianceFirewallFirewalledServices({ * networkId: "string", * service: "string", * }); * export const merakiNetworksApplianceFirewallFirewalledServicesExample = example.then(example => example.item); * ``` */ export declare function getApplianceFirewallFirewalledServicesOutput(args: GetApplianceFirewallFirewalledServicesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetApplianceFirewallFirewalledServicesResult>; /** * A collection of arguments for invoking getApplianceFirewallFirewalledServices. */ export interface GetApplianceFirewallFirewalledServicesOutputArgs { /** * networkId path parameter. Network ID */ networkId: pulumi.Input<string>; /** * service path parameter. */ service: pulumi.Input<string>; }