UNPKG

@pulumi/meraki

Version:

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

63 lines (62 loc) 2.13 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.getApplianceFirewallL7FirewallRules({ * networkId: "string", * }); * export const merakiNetworksApplianceFirewallL7FirewallRulesExample = example.then(example => example.item); * ``` */ export declare function getApplianceFirewallL7FirewallRules(args: GetApplianceFirewallL7FirewallRulesArgs, opts?: pulumi.InvokeOptions): Promise<GetApplianceFirewallL7FirewallRulesResult>; /** * A collection of arguments for invoking getApplianceFirewallL7FirewallRules. */ export interface GetApplianceFirewallL7FirewallRulesArgs { /** * networkId path parameter. Network ID */ networkId: string; } /** * A collection of values returned by getApplianceFirewallL7FirewallRules. */ export interface GetApplianceFirewallL7FirewallRulesResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly item: outputs.networks.GetApplianceFirewallL7FirewallRulesItem; /** * networkId path parameter. Network ID */ readonly networkId: string; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as meraki from "@pulumi/meraki"; * * const example = meraki.networks.getApplianceFirewallL7FirewallRules({ * networkId: "string", * }); * export const merakiNetworksApplianceFirewallL7FirewallRulesExample = example.then(example => example.item); * ``` */ export declare function getApplianceFirewallL7FirewallRulesOutput(args: GetApplianceFirewallL7FirewallRulesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetApplianceFirewallL7FirewallRulesResult>; /** * A collection of arguments for invoking getApplianceFirewallL7FirewallRules. */ export interface GetApplianceFirewallL7FirewallRulesOutputArgs { /** * networkId path parameter. Network ID */ networkId: pulumi.Input<string>; }