UNPKG

@pulumi/meraki

Version:

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

56 lines 2.37 kB
"use strict"; // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.getSwitchStacksRoutingInterfacesDhcpOutput = exports.getSwitchStacksRoutingInterfacesDhcp = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * ## 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); * ``` */ function getSwitchStacksRoutingInterfacesDhcp(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("meraki:networks/getSwitchStacksRoutingInterfacesDhcp:getSwitchStacksRoutingInterfacesDhcp", { "interfaceId": args.interfaceId, "networkId": args.networkId, "switchStackId": args.switchStackId, }, opts); } exports.getSwitchStacksRoutingInterfacesDhcp = getSwitchStacksRoutingInterfacesDhcp; /** * ## 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); * ``` */ function getSwitchStacksRoutingInterfacesDhcpOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("meraki:networks/getSwitchStacksRoutingInterfacesDhcp:getSwitchStacksRoutingInterfacesDhcp", { "interfaceId": args.interfaceId, "networkId": args.networkId, "switchStackId": args.switchStackId, }, opts); } exports.getSwitchStacksRoutingInterfacesDhcpOutput = getSwitchStacksRoutingInterfacesDhcpOutput; //# sourceMappingURL=getSwitchStacksRoutingInterfacesDhcp.js.map