UNPKG

@equinix-labs/pulumi-equinix

Version:

A Pulumi package for creating and managing equinix cloud resources.

64 lines 2.7 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.getDevicePlatformOutput = exports.getDevicePlatform = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Use this data source to get Equinix Network Edge device platform configuration details for a given device type. For further details, check supported [Network Edge Vendors and Devices](https://docs.equinix.com/en-us/Content/Interconnection/NE/user-guide/NE-vendors-devices.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as equinix from "@equinix-labs/pulumi-equinix"; * * const csrLarge = equinix.networkedge.getDevicePlatform({ * deviceType: "CSR1000V", * flavor: "large", * packages: ["IPBASE"], * }); * ``` */ function getDevicePlatform(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("equinix:networkedge/getDevicePlatform:getDevicePlatform", { "coreCount": args.coreCount, "deviceType": args.deviceType, "flavor": args.flavor, "licenseOptions": args.licenseOptions, "managementTypes": args.managementTypes, "packages": args.packages, }, opts); } exports.getDevicePlatform = getDevicePlatform; /** * Use this data source to get Equinix Network Edge device platform configuration details for a given device type. For further details, check supported [Network Edge Vendors and Devices](https://docs.equinix.com/en-us/Content/Interconnection/NE/user-guide/NE-vendors-devices.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as equinix from "@equinix-labs/pulumi-equinix"; * * const csrLarge = equinix.networkedge.getDevicePlatform({ * deviceType: "CSR1000V", * flavor: "large", * packages: ["IPBASE"], * }); * ``` */ function getDevicePlatformOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("equinix:networkedge/getDevicePlatform:getDevicePlatform", { "coreCount": args.coreCount, "deviceType": args.deviceType, "flavor": args.flavor, "licenseOptions": args.licenseOptions, "managementTypes": args.managementTypes, "packages": args.packages, }, opts); } exports.getDevicePlatformOutput = getDevicePlatformOutput; //# sourceMappingURL=getDevicePlatform.js.map