UNPKG

@cuemby/equinix

Version:

A Pulumi package for creating and managing equinix cloud resources.

67 lines 2.83 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.NetworkSSHKey = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * Resource `equinix.NetworkSSHKey` allows creation and management of Equinix Network Edge SSH keys. * * ## Import * * This resource can be imported using an existing ID * * ```sh * $ pulumi import equinix:index/networkSSHKey:NetworkSSHKey example {existing_id} * ``` */ class NetworkSSHKey extends pulumi.CustomResource { constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["name"] = state ? state.name : undefined; resourceInputs["publicKey"] = state ? state.publicKey : undefined; resourceInputs["uuid"] = state ? state.uuid : undefined; } else { const args = argsOrState; if ((!args || args.publicKey === undefined) && !opts.urn) { throw new Error("Missing required property 'publicKey'"); } resourceInputs["name"] = args ? args.name : undefined; resourceInputs["publicKey"] = args ? args.publicKey : undefined; resourceInputs["uuid"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(NetworkSSHKey.__pulumiType, name, resourceInputs, opts); } /** * Get an existing NetworkSSHKey resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name, id, state, opts) { return new NetworkSSHKey(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of NetworkSSHKey. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj) { if (obj === undefined || obj === null) { return false; } return obj['__pulumiType'] === NetworkSSHKey.__pulumiType; } } exports.NetworkSSHKey = NetworkSSHKey; /** @internal */ NetworkSSHKey.__pulumiType = 'equinix:index/networkSSHKey:NetworkSSHKey'; //# sourceMappingURL=networkSSHKey.js.map