@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
96 lines • 4 kB
JavaScript
;
// *** 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.EdgeNode = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Provides a resource to manage veecp edge node
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@volcengine/pulumi";
*
* const foo = new volcengine.veecp.EdgeNode("foo", {
* autoCompleteConfig: {
* directAdd: true,
* directAddInstances: [{
* cloudServerIdentity: "cloudserver-wvvflw9qdns2qrk",
* instanceIdentity: "veen91912104432151420041",
* }],
* enable: true,
* },
* clusterId: "ccvmf49t1ndqeechmj8p0",
* nodePoolId: "pcvpkdn7ic26jjcjsa20g",
* });
* ```
*
* ## Import
*
* VeecpNode can be imported using the id, e.g.
*
* ```sh
* $ pulumi import volcengine:veecp/edgeNode:EdgeNode default resource_id
* ```
*/
class EdgeNode extends pulumi.CustomResource {
/**
* Get an existing EdgeNode 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 EdgeNode(name, state, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of EdgeNode. 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'] === EdgeNode.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["autoCompleteConfig"] = state ? state.autoCompleteConfig : undefined;
resourceInputs["clientToken"] = state ? state.clientToken : undefined;
resourceInputs["clusterId"] = state ? state.clusterId : undefined;
resourceInputs["name"] = state ? state.name : undefined;
resourceInputs["nodePoolId"] = state ? state.nodePoolId : undefined;
}
else {
const args = argsOrState;
if ((!args || args.autoCompleteConfig === undefined) && !opts.urn) {
throw new Error("Missing required property 'autoCompleteConfig'");
}
if ((!args || args.clusterId === undefined) && !opts.urn) {
throw new Error("Missing required property 'clusterId'");
}
if ((!args || args.nodePoolId === undefined) && !opts.urn) {
throw new Error("Missing required property 'nodePoolId'");
}
resourceInputs["autoCompleteConfig"] = args ? args.autoCompleteConfig : undefined;
resourceInputs["clientToken"] = args ? args.clientToken : undefined;
resourceInputs["clusterId"] = args ? args.clusterId : undefined;
resourceInputs["name"] = args ? args.name : undefined;
resourceInputs["nodePoolId"] = args ? args.nodePoolId : undefined;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(EdgeNode.__pulumiType, name, resourceInputs, opts);
}
}
exports.EdgeNode = EdgeNode;
/** @internal */
EdgeNode.__pulumiType = 'volcengine:veecp/edgeNode:EdgeNode';
//# sourceMappingURL=edgeNode.js.map