UNPKG

@pulumi/meraki

Version:

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

91 lines (90 loc) 2.87 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.getSwitchStacksRoutingInterfacesDhcp({ * interfaceId: "string", * networkId: "string", * switchStackId: "string", * }); * export const merakiNetworksSwitchStacksRoutingInterfacesDhcpExample = example.then(example => example.item); * ``` */ export declare function getSwitchStacksRoutingInterfacesDhcp(args: GetSwitchStacksRoutingInterfacesDhcpArgs, opts?: pulumi.InvokeOptions): Promise<GetSwitchStacksRoutingInterfacesDhcpResult>; /** * A collection of arguments for invoking getSwitchStacksRoutingInterfacesDhcp. */ export interface GetSwitchStacksRoutingInterfacesDhcpArgs { /** * interfaceId path parameter. Interface ID */ interfaceId: string; /** * networkId path parameter. Network ID */ networkId: string; /** * switchStackId path parameter. Switch stack ID */ switchStackId: string; } /** * A collection of values returned by getSwitchStacksRoutingInterfacesDhcp. */ export interface GetSwitchStacksRoutingInterfacesDhcpResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * interfaceId path parameter. Interface ID */ readonly interfaceId: string; readonly item: outputs.networks.GetSwitchStacksRoutingInterfacesDhcpItem; /** * networkId path parameter. Network ID */ readonly networkId: string; /** * switchStackId path parameter. Switch stack ID */ readonly switchStackId: string; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as meraki from "@pulumi/meraki"; * * const example = meraki.networks.getSwitchStacksRoutingInterfacesDhcp({ * interfaceId: "string", * networkId: "string", * switchStackId: "string", * }); * export const merakiNetworksSwitchStacksRoutingInterfacesDhcpExample = example.then(example => example.item); * ``` */ export declare function getSwitchStacksRoutingInterfacesDhcpOutput(args: GetSwitchStacksRoutingInterfacesDhcpOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSwitchStacksRoutingInterfacesDhcpResult>; /** * A collection of arguments for invoking getSwitchStacksRoutingInterfacesDhcp. */ export interface GetSwitchStacksRoutingInterfacesDhcpOutputArgs { /** * interfaceId path parameter. Interface ID */ interfaceId: pulumi.Input<string>; /** * networkId path parameter. Network ID */ networkId: pulumi.Input<string>; /** * switchStackId path parameter. Switch stack ID */ switchStackId: pulumi.Input<string>; }