@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
162 lines • 7.02 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.ScalingInstanceAttachment = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Provides a resource to manage scaling instance attachment
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
* import * as volcengine from "@volcengine/pulumi";
*
* const fooZones = volcengine.ecs.getZones({});
* const fooVpc = new volcengine.vpc.Vpc("fooVpc", {
* vpcName: "acc-test-vpc",
* cidrBlock: "172.16.0.0/16",
* });
* const fooSubnet = new volcengine.vpc.Subnet("fooSubnet", {
* subnetName: "acc-test-subnet",
* cidrBlock: "172.16.0.0/24",
* zoneId: fooZones.then(fooZones => fooZones.zones?.[0]?.id),
* vpcId: fooVpc.id,
* });
* const fooSecurityGroup = new volcengine.vpc.SecurityGroup("fooSecurityGroup", {
* securityGroupName: "acc-test-security-group",
* vpcId: fooVpc.id,
* });
* const fooImages = volcengine.ecs.getImages({
* osType: "Linux",
* visibility: "public",
* instanceTypeId: "ecs.g1.large",
* });
* const fooKeyPair = new volcengine.ecs.KeyPair("fooKeyPair", {
* description: "acc-test-2",
* keyPairName: "acc-test-key-pair-name",
* });
* const fooLaunchTemplate = new volcengine.ecs.LaunchTemplate("fooLaunchTemplate", {
* description: "acc-test-desc",
* eipBandwidth: 200,
* eipBillingType: "PostPaidByBandwidth",
* eipIsp: "BGP",
* hostName: "acc-hostname",
* imageId: fooImages.then(fooImages => fooImages.images?.[0]?.imageId),
* instanceChargeType: "PostPaid",
* instanceName: "acc-instance-name",
* instanceTypeId: "ecs.g1.large",
* keyPairName: fooKeyPair.keyPairName,
* launchTemplateName: "acc-test-template",
* networkInterfaces: [{
* subnetId: fooSubnet.id,
* securityGroupIds: [fooSecurityGroup.id],
* }],
* volumes: [{
* volumeType: "ESSD_PL0",
* size: 50,
* deleteWithInstance: true,
* }],
* });
* const fooScalingGroup = new volcengine.autoscaling.ScalingGroup("fooScalingGroup", {
* scalingGroupName: "acc-test-scaling-group",
* subnetIds: [fooSubnet.id],
* multiAzPolicy: "BALANCE",
* desireInstanceNumber: -1,
* minInstanceNumber: 0,
* maxInstanceNumber: 1,
* instanceTerminatePolicy: "OldestInstance",
* defaultCooldown: 10,
* launchTemplateId: fooLaunchTemplate.id,
* launchTemplateVersion: "Default",
* });
* const fooScalingGroupEnabler = new volcengine.autoscaling.ScalingGroupEnabler("fooScalingGroupEnabler", {scalingGroupId: fooScalingGroup.id});
* const fooInstance = new volcengine.ecs.Instance("fooInstance", {
* instanceName: "acc-test-ecs",
* description: "acc-test",
* hostName: "tf-acc-test",
* imageId: fooImages.then(fooImages => fooImages.images?.[0]?.imageId),
* instanceType: "ecs.g1.large",
* password: "93f0cb0614Aab12",
* instanceChargeType: "PostPaid",
* systemVolumeType: "ESSD_PL0",
* systemVolumeSize: 40,
* subnetId: fooSubnet.id,
* securityGroupIds: [fooSecurityGroup.id],
* });
* const fooScalingInstanceAttachment = new volcengine.autoscaling.ScalingInstanceAttachment("fooScalingInstanceAttachment", {
* instanceId: fooInstance.id,
* scalingGroupId: fooScalingGroup.id,
* entrusted: true,
* }, {
* dependsOn: [fooScalingGroupEnabler],
* });
* ```
*
* ## Import
*
* Scaling instance attachment can be imported using the scaling_group_id and instance_id, e.g.
* You can choose to remove or detach the instance according to the `delete_type` field.
*
* ```sh
* $ pulumi import volcengine:autoscaling/scalingInstanceAttachment:ScalingInstanceAttachment default scg-mizl7m1kqccg5smt1bdpijuj:i-l8u2ai4j0fauo6mrpgk8
* ```
*/
class ScalingInstanceAttachment extends pulumi.CustomResource {
/**
* Get an existing ScalingInstanceAttachment 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 ScalingInstanceAttachment(name, state, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of ScalingInstanceAttachment. 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'] === ScalingInstanceAttachment.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["deleteType"] = state ? state.deleteType : undefined;
resourceInputs["detachOption"] = state ? state.detachOption : undefined;
resourceInputs["entrusted"] = state ? state.entrusted : undefined;
resourceInputs["instanceId"] = state ? state.instanceId : undefined;
resourceInputs["scalingGroupId"] = state ? state.scalingGroupId : undefined;
}
else {
const args = argsOrState;
if ((!args || args.instanceId === undefined) && !opts.urn) {
throw new Error("Missing required property 'instanceId'");
}
if ((!args || args.scalingGroupId === undefined) && !opts.urn) {
throw new Error("Missing required property 'scalingGroupId'");
}
resourceInputs["deleteType"] = args ? args.deleteType : undefined;
resourceInputs["detachOption"] = args ? args.detachOption : undefined;
resourceInputs["entrusted"] = args ? args.entrusted : undefined;
resourceInputs["instanceId"] = args ? args.instanceId : undefined;
resourceInputs["scalingGroupId"] = args ? args.scalingGroupId : undefined;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(ScalingInstanceAttachment.__pulumiType, name, resourceInputs, opts);
}
}
exports.ScalingInstanceAttachment = ScalingInstanceAttachment;
/** @internal */
ScalingInstanceAttachment.__pulumiType = 'volcengine:autoscaling/scalingInstanceAttachment:ScalingInstanceAttachment';
//# sourceMappingURL=scalingInstanceAttachment.js.map