UNPKG

@equinix-labs/pulumi-equinix

Version:

A Pulumi package for creating and managing equinix cloud resources.

92 lines 3.81 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.SshUser = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Resource `equinix.networkedge.SshUser` allows creation and management of Equinix Network Edge SSH users. * * ## Example Usage * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as equinix from "@equinix-labs/pulumi-equinix"; * * const john = new equinix.networkedge.SshUser("john", { * username: "john", * password: "secret", * deviceIds: [ * "csr1000v-ha-uuid", * "csr1000v-ha-redundant-uuid", * ], * }); * ``` * * ## Import * * This resource can be imported using an existing ID: * * ```sh * $ pulumi import equinix:networkedge/sshUser:SshUser example {existing_id} * ``` */ class SshUser extends pulumi.CustomResource { /** * Get an existing SshUser 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 SshUser(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of SshUser. 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'] === SshUser.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["deviceIds"] = state ? state.deviceIds : undefined; resourceInputs["password"] = state ? state.password : undefined; resourceInputs["username"] = state ? state.username : undefined; resourceInputs["uuid"] = state ? state.uuid : undefined; } else { const args = argsOrState; if ((!args || args.deviceIds === undefined) && !opts.urn) { throw new Error("Missing required property 'deviceIds'"); } if ((!args || args.password === undefined) && !opts.urn) { throw new Error("Missing required property 'password'"); } if ((!args || args.username === undefined) && !opts.urn) { throw new Error("Missing required property 'username'"); } resourceInputs["deviceIds"] = args ? args.deviceIds : undefined; resourceInputs["password"] = (args === null || args === void 0 ? void 0 : args.password) ? pulumi.secret(args.password) : undefined; resourceInputs["username"] = args ? args.username : undefined; resourceInputs["uuid"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); const secretOpts = { additionalSecretOutputs: ["password"] }; opts = pulumi.mergeOptions(opts, secretOpts); super(SshUser.__pulumiType, name, resourceInputs, opts); } } exports.SshUser = SshUser; /** @internal */ SshUser.__pulumiType = 'equinix:networkedge/sshUser:SshUser'; //# sourceMappingURL=sshUser.js.map