1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. AsProtectInstances
tencentcloud 1.81.182 published on Monday, Apr 14, 2025 by tencentcloudstack

tencentcloud.AsProtectInstances

Explore with Pulumi AI

Provides a resource to create a as protect_instances

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";

const zones = tencentcloud.getAvailabilityZonesByProduct({
    product: "as",
});
const image = tencentcloud.getImages({
    imageTypes: ["PUBLIC_IMAGE"],
    osName: "TencentOS Server 3.2 (Final)",
});
const instanceTypes = zones.then(zones => tencentcloud.getInstanceTypes({
    filters: [
        {
            name: "zone",
            values: [zones.zones?.[0]?.name],
        },
        {
            name: "instance-family",
            values: ["S5"],
        },
    ],
    cpuCoreCount: 2,
    excludeSoldOut: true,
}));
const vpc = new tencentcloud.Vpc("vpc", {cidrBlock: "10.0.0.0/16"});
const subnet = new tencentcloud.Subnet("subnet", {
    vpcId: vpc.vpcId,
    cidrBlock: "10.0.0.0/16",
    availabilityZone: zones.then(zones => zones.zones?.[0]?.name),
});
const exampleAsScalingConfig = new tencentcloud.AsScalingConfig("exampleAsScalingConfig", {
    configurationName: "tf-example",
    imageId: image.then(image => image.images?.[0]?.imageId),
    instanceTypes: [
        "SA1.SMALL1",
        "SA2.SMALL1",
        "SA2.SMALL2",
        "SA2.SMALL4",
    ],
    instanceNameSettings: {
        instanceName: "test-ins-name",
    },
});
const exampleAsScalingGroup = new tencentcloud.AsScalingGroup("exampleAsScalingGroup", {
    scalingGroupName: "tf-example",
    configurationId: exampleAsScalingConfig.asScalingConfigId,
    maxSize: 1,
    minSize: 0,
    vpcId: vpc.vpcId,
    subnetIds: [subnet.subnetId],
});
const exampleInstance = new tencentcloud.Instance("exampleInstance", {
    instanceName: "tf_example",
    availabilityZone: zones.then(zones => zones.zones?.[0]?.name),
    imageId: image.then(image => image.images?.[0]?.imageId),
    instanceType: instanceTypes.then(instanceTypes => instanceTypes.instanceTypes?.[0]?.instanceType),
    systemDiskType: "CLOUD_PREMIUM",
    systemDiskSize: 50,
    hostname: "user",
    projectId: 0,
    vpcId: vpc.vpcId,
    subnetId: subnet.subnetId,
});
// Attachment Instance
const attachment = new tencentcloud.AsAttachment("attachment", {
    scalingGroupId: exampleAsScalingGroup.asScalingGroupId,
    instanceIds: [exampleInstance.instanceId],
});
// Set protect
const protect = new tencentcloud.AsProtectInstances("protect", {
    autoScalingGroupId: exampleAsScalingGroup.asScalingGroupId,
    instanceIds: attachment.instanceIds,
    protectedFromScaleIn: true,
});
Copy
import pulumi
import pulumi_tencentcloud as tencentcloud

zones = tencentcloud.get_availability_zones_by_product(product="as")
image = tencentcloud.get_images(image_types=["PUBLIC_IMAGE"],
    os_name="TencentOS Server 3.2 (Final)")
instance_types = tencentcloud.get_instance_types(filters=[
        {
            "name": "zone",
            "values": [zones.zones[0].name],
        },
        {
            "name": "instance-family",
            "values": ["S5"],
        },
    ],
    cpu_core_count=2,
    exclude_sold_out=True)
vpc = tencentcloud.Vpc("vpc", cidr_block="10.0.0.0/16")
subnet = tencentcloud.Subnet("subnet",
    vpc_id=vpc.vpc_id,
    cidr_block="10.0.0.0/16",
    availability_zone=zones.zones[0].name)
example_as_scaling_config = tencentcloud.AsScalingConfig("exampleAsScalingConfig",
    configuration_name="tf-example",
    image_id=image.images[0].image_id,
    instance_types=[
        "SA1.SMALL1",
        "SA2.SMALL1",
        "SA2.SMALL2",
        "SA2.SMALL4",
    ],
    instance_name_settings={
        "instance_name": "test-ins-name",
    })
example_as_scaling_group = tencentcloud.AsScalingGroup("exampleAsScalingGroup",
    scaling_group_name="tf-example",
    configuration_id=example_as_scaling_config.as_scaling_config_id,
    max_size=1,
    min_size=0,
    vpc_id=vpc.vpc_id,
    subnet_ids=[subnet.subnet_id])
example_instance = tencentcloud.Instance("exampleInstance",
    instance_name="tf_example",
    availability_zone=zones.zones[0].name,
    image_id=image.images[0].image_id,
    instance_type=instance_types.instance_types[0].instance_type,
    system_disk_type="CLOUD_PREMIUM",
    system_disk_size=50,
    hostname="user",
    project_id=0,
    vpc_id=vpc.vpc_id,
    subnet_id=subnet.subnet_id)
# Attachment Instance
attachment = tencentcloud.AsAttachment("attachment",
    scaling_group_id=example_as_scaling_group.as_scaling_group_id,
    instance_ids=[example_instance.instance_id])
# Set protect
protect = tencentcloud.AsProtectInstances("protect",
    auto_scaling_group_id=example_as_scaling_group.as_scaling_group_id,
    instance_ids=attachment.instance_ids,
    protected_from_scale_in=True)
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
zones, err := tencentcloud.GetAvailabilityZonesByProduct(ctx, &tencentcloud.GetAvailabilityZonesByProductArgs{
Product: "as",
}, nil);
if err != nil {
return err
}
image, err := tencentcloud.GetImages(ctx, &tencentcloud.GetImagesArgs{
ImageTypes: []string{
"PUBLIC_IMAGE",
},
OsName: pulumi.StringRef("TencentOS Server 3.2 (Final)"),
}, nil);
if err != nil {
return err
}
instanceTypes, err := tencentcloud.GetInstanceTypes(ctx, &tencentcloud.GetInstanceTypesArgs{
Filters: []tencentcloud.GetInstanceTypesFilter{
{
Name: "zone",
Values: interface{}{
zones.Zones[0].Name,
},
},
{
Name: "instance-family",
Values: []string{
"S5",
},
},
},
CpuCoreCount: pulumi.Float64Ref(2),
ExcludeSoldOut: pulumi.BoolRef(true),
}, nil);
if err != nil {
return err
}
vpc, err := tencentcloud.NewVpc(ctx, "vpc", &tencentcloud.VpcArgs{
CidrBlock: pulumi.String("10.0.0.0/16"),
})
if err != nil {
return err
}
subnet, err := tencentcloud.NewSubnet(ctx, "subnet", &tencentcloud.SubnetArgs{
VpcId: vpc.VpcId,
CidrBlock: pulumi.String("10.0.0.0/16"),
AvailabilityZone: pulumi.String(zones.Zones[0].Name),
})
if err != nil {
return err
}
exampleAsScalingConfig, err := tencentcloud.NewAsScalingConfig(ctx, "exampleAsScalingConfig", &tencentcloud.AsScalingConfigArgs{
ConfigurationName: pulumi.String("tf-example"),
ImageId: pulumi.String(image.Images[0].ImageId),
InstanceTypes: pulumi.StringArray{
pulumi.String("SA1.SMALL1"),
pulumi.String("SA2.SMALL1"),
pulumi.String("SA2.SMALL2"),
pulumi.String("SA2.SMALL4"),
},
InstanceNameSettings: &tencentcloud.AsScalingConfigInstanceNameSettingsArgs{
InstanceName: pulumi.String("test-ins-name"),
},
})
if err != nil {
return err
}
exampleAsScalingGroup, err := tencentcloud.NewAsScalingGroup(ctx, "exampleAsScalingGroup", &tencentcloud.AsScalingGroupArgs{
ScalingGroupName: pulumi.String("tf-example"),
ConfigurationId: exampleAsScalingConfig.AsScalingConfigId,
MaxSize: pulumi.Float64(1),
MinSize: pulumi.Float64(0),
VpcId: vpc.VpcId,
SubnetIds: pulumi.StringArray{
subnet.SubnetId,
},
})
if err != nil {
return err
}
exampleInstance, err := tencentcloud.NewInstance(ctx, "exampleInstance", &tencentcloud.InstanceArgs{
InstanceName: pulumi.String("tf_example"),
AvailabilityZone: pulumi.String(zones.Zones[0].Name),
ImageId: pulumi.String(image.Images[0].ImageId),
InstanceType: pulumi.String(instanceTypes.InstanceTypes[0].InstanceType),
SystemDiskType: pulumi.String("CLOUD_PREMIUM"),
SystemDiskSize: pulumi.Float64(50),
Hostname: pulumi.String("user"),
ProjectId: pulumi.Float64(0),
VpcId: vpc.VpcId,
SubnetId: subnet.SubnetId,
})
if err != nil {
return err
}
// Attachment Instance
attachment, err := tencentcloud.NewAsAttachment(ctx, "attachment", &tencentcloud.AsAttachmentArgs{
ScalingGroupId: exampleAsScalingGroup.AsScalingGroupId,
InstanceIds: pulumi.StringArray{
exampleInstance.InstanceId,
},
})
if err != nil {
return err
}
// Set protect
_, err = tencentcloud.NewAsProtectInstances(ctx, "protect", &tencentcloud.AsProtectInstancesArgs{
AutoScalingGroupId: exampleAsScalingGroup.AsScalingGroupId,
InstanceIds: attachment.InstanceIds,
ProtectedFromScaleIn: pulumi.Bool(true),
})
if err != nil {
return err
}
return nil
})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;

return await Deployment.RunAsync(() => 
{
    var zones = Tencentcloud.GetAvailabilityZonesByProduct.Invoke(new()
    {
        Product = "as",
    });

    var image = Tencentcloud.GetImages.Invoke(new()
    {
        ImageTypes = new[]
        {
            "PUBLIC_IMAGE",
        },
        OsName = "TencentOS Server 3.2 (Final)",
    });

    var instanceTypes = Tencentcloud.GetInstanceTypes.Invoke(new()
    {
        Filters = new[]
        {
            new Tencentcloud.Inputs.GetInstanceTypesFilterInputArgs
            {
                Name = "zone",
                Values = new[]
                {
                    zones.Apply(getAvailabilityZonesByProductResult => getAvailabilityZonesByProductResult.Zones[0]?.Name),
                },
            },
            new Tencentcloud.Inputs.GetInstanceTypesFilterInputArgs
            {
                Name = "instance-family",
                Values = new[]
                {
                    "S5",
                },
            },
        },
        CpuCoreCount = 2,
        ExcludeSoldOut = true,
    });

    var vpc = new Tencentcloud.Vpc("vpc", new()
    {
        CidrBlock = "10.0.0.0/16",
    });

    var subnet = new Tencentcloud.Subnet("subnet", new()
    {
        VpcId = vpc.VpcId,
        CidrBlock = "10.0.0.0/16",
        AvailabilityZone = zones.Apply(getAvailabilityZonesByProductResult => getAvailabilityZonesByProductResult.Zones[0]?.Name),
    });

    var exampleAsScalingConfig = new Tencentcloud.AsScalingConfig("exampleAsScalingConfig", new()
    {
        ConfigurationName = "tf-example",
        ImageId = image.Apply(getImagesResult => getImagesResult.Images[0]?.ImageId),
        InstanceTypes = new[]
        {
            "SA1.SMALL1",
            "SA2.SMALL1",
            "SA2.SMALL2",
            "SA2.SMALL4",
        },
        InstanceNameSettings = new Tencentcloud.Inputs.AsScalingConfigInstanceNameSettingsArgs
        {
            InstanceName = "test-ins-name",
        },
    });

    var exampleAsScalingGroup = new Tencentcloud.AsScalingGroup("exampleAsScalingGroup", new()
    {
        ScalingGroupName = "tf-example",
        ConfigurationId = exampleAsScalingConfig.AsScalingConfigId,
        MaxSize = 1,
        MinSize = 0,
        VpcId = vpc.VpcId,
        SubnetIds = new[]
        {
            subnet.SubnetId,
        },
    });

    var exampleInstance = new Tencentcloud.Instance("exampleInstance", new()
    {
        InstanceName = "tf_example",
        AvailabilityZone = zones.Apply(getAvailabilityZonesByProductResult => getAvailabilityZonesByProductResult.Zones[0]?.Name),
        ImageId = image.Apply(getImagesResult => getImagesResult.Images[0]?.ImageId),
        InstanceType = instanceTypes.Apply(getInstanceTypesResult => getInstanceTypesResult.InstanceTypes[0]?.InstanceType),
        SystemDiskType = "CLOUD_PREMIUM",
        SystemDiskSize = 50,
        Hostname = "user",
        ProjectId = 0,
        VpcId = vpc.VpcId,
        SubnetId = subnet.SubnetId,
    });

    // Attachment Instance
    var attachment = new Tencentcloud.AsAttachment("attachment", new()
    {
        ScalingGroupId = exampleAsScalingGroup.AsScalingGroupId,
        InstanceIds = new[]
        {
            exampleInstance.InstanceId,
        },
    });

    // Set protect
    var protect = new Tencentcloud.AsProtectInstances("protect", new()
    {
        AutoScalingGroupId = exampleAsScalingGroup.AsScalingGroupId,
        InstanceIds = attachment.InstanceIds,
        ProtectedFromScaleIn = true,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TencentcloudFunctions;
import com.pulumi.tencentcloud.inputs.GetAvailabilityZonesByProductArgs;
import com.pulumi.tencentcloud.inputs.GetImagesArgs;
import com.pulumi.tencentcloud.inputs.GetInstanceTypesArgs;
import com.pulumi.tencentcloud.Vpc;
import com.pulumi.tencentcloud.VpcArgs;
import com.pulumi.tencentcloud.Subnet;
import com.pulumi.tencentcloud.SubnetArgs;
import com.pulumi.tencentcloud.AsScalingConfig;
import com.pulumi.tencentcloud.AsScalingConfigArgs;
import com.pulumi.tencentcloud.inputs.AsScalingConfigInstanceNameSettingsArgs;
import com.pulumi.tencentcloud.AsScalingGroup;
import com.pulumi.tencentcloud.AsScalingGroupArgs;
import com.pulumi.tencentcloud.Instance;
import com.pulumi.tencentcloud.InstanceArgs;
import com.pulumi.tencentcloud.AsAttachment;
import com.pulumi.tencentcloud.AsAttachmentArgs;
import com.pulumi.tencentcloud.AsProtectInstances;
import com.pulumi.tencentcloud.AsProtectInstancesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var zones = TencentcloudFunctions.getAvailabilityZonesByProduct(GetAvailabilityZonesByProductArgs.builder()
            .product("as")
            .build());

        final var image = TencentcloudFunctions.getImages(GetImagesArgs.builder()
            .imageTypes("PUBLIC_IMAGE")
            .osName("TencentOS Server 3.2 (Final)")
            .build());

        final var instanceTypes = TencentcloudFunctions.getInstanceTypes(GetInstanceTypesArgs.builder()
            .filters(            
                GetInstanceTypesFilterArgs.builder()
                    .name("zone")
                    .values(zones.applyValue(getAvailabilityZonesByProductResult -> getAvailabilityZonesByProductResult.zones()[0].name()))
                    .build(),
                GetInstanceTypesFilterArgs.builder()
                    .name("instance-family")
                    .values("S5")
                    .build())
            .cpuCoreCount(2)
            .excludeSoldOut(true)
            .build());

        var vpc = new Vpc("vpc", VpcArgs.builder()
            .cidrBlock("10.0.0.0/16")
            .build());

        var subnet = new Subnet("subnet", SubnetArgs.builder()
            .vpcId(vpc.vpcId())
            .cidrBlock("10.0.0.0/16")
            .availabilityZone(zones.applyValue(getAvailabilityZonesByProductResult -> getAvailabilityZonesByProductResult.zones()[0].name()))
            .build());

        var exampleAsScalingConfig = new AsScalingConfig("exampleAsScalingConfig", AsScalingConfigArgs.builder()
            .configurationName("tf-example")
            .imageId(image.applyValue(getImagesResult -> getImagesResult.images()[0].imageId()))
            .instanceTypes(            
                "SA1.SMALL1",
                "SA2.SMALL1",
                "SA2.SMALL2",
                "SA2.SMALL4")
            .instanceNameSettings(AsScalingConfigInstanceNameSettingsArgs.builder()
                .instanceName("test-ins-name")
                .build())
            .build());

        var exampleAsScalingGroup = new AsScalingGroup("exampleAsScalingGroup", AsScalingGroupArgs.builder()
            .scalingGroupName("tf-example")
            .configurationId(exampleAsScalingConfig.asScalingConfigId())
            .maxSize(1)
            .minSize(0)
            .vpcId(vpc.vpcId())
            .subnetIds(subnet.subnetId())
            .build());

        var exampleInstance = new Instance("exampleInstance", InstanceArgs.builder()
            .instanceName("tf_example")
            .availabilityZone(zones.applyValue(getAvailabilityZonesByProductResult -> getAvailabilityZonesByProductResult.zones()[0].name()))
            .imageId(image.applyValue(getImagesResult -> getImagesResult.images()[0].imageId()))
            .instanceType(instanceTypes.applyValue(getInstanceTypesResult -> getInstanceTypesResult.instanceTypes()[0].instanceType()))
            .systemDiskType("CLOUD_PREMIUM")
            .systemDiskSize(50)
            .hostname("user")
            .projectId(0)
            .vpcId(vpc.vpcId())
            .subnetId(subnet.subnetId())
            .build());

        // Attachment Instance
        var attachment = new AsAttachment("attachment", AsAttachmentArgs.builder()
            .scalingGroupId(exampleAsScalingGroup.asScalingGroupId())
            .instanceIds(exampleInstance.instanceId())
            .build());

        // Set protect
        var protect = new AsProtectInstances("protect", AsProtectInstancesArgs.builder()
            .autoScalingGroupId(exampleAsScalingGroup.asScalingGroupId())
            .instanceIds(attachment.instanceIds())
            .protectedFromScaleIn(true)
            .build());

    }
}
Copy
resources:
  vpc:
    type: tencentcloud:Vpc
    properties:
      cidrBlock: 10.0.0.0/16
  subnet:
    type: tencentcloud:Subnet
    properties:
      vpcId: ${vpc.vpcId}
      cidrBlock: 10.0.0.0/16
      availabilityZone: ${zones.zones[0].name}
  exampleAsScalingConfig:
    type: tencentcloud:AsScalingConfig
    properties:
      configurationName: tf-example
      imageId: ${image.images[0].imageId}
      instanceTypes:
        - SA1.SMALL1
        - SA2.SMALL1
        - SA2.SMALL2
        - SA2.SMALL4
      instanceNameSettings:
        instanceName: test-ins-name
  exampleAsScalingGroup:
    type: tencentcloud:AsScalingGroup
    properties:
      scalingGroupName: tf-example
      configurationId: ${exampleAsScalingConfig.asScalingConfigId}
      maxSize: 1
      minSize: 0
      vpcId: ${vpc.vpcId}
      subnetIds:
        - ${subnet.subnetId}
  exampleInstance:
    type: tencentcloud:Instance
    properties:
      instanceName: tf_example
      availabilityZone: ${zones.zones[0].name}
      imageId: ${image.images[0].imageId}
      instanceType: ${instanceTypes.instanceTypes[0].instanceType}
      systemDiskType: CLOUD_PREMIUM
      systemDiskSize: 50
      hostname: user
      projectId: 0
      vpcId: ${vpc.vpcId}
      subnetId: ${subnet.subnetId}
  # Attachment Instance
  attachment:
    type: tencentcloud:AsAttachment
    properties:
      scalingGroupId: ${exampleAsScalingGroup.asScalingGroupId}
      instanceIds:
        - ${exampleInstance.instanceId}
  # Set protect
  protect:
    type: tencentcloud:AsProtectInstances
    properties:
      autoScalingGroupId: ${exampleAsScalingGroup.asScalingGroupId}
      instanceIds: ${attachment.instanceIds}
      protectedFromScaleIn: true
variables:
  zones:
    fn::invoke:
      function: tencentcloud:getAvailabilityZonesByProduct
      arguments:
        product: as
  image:
    fn::invoke:
      function: tencentcloud:getImages
      arguments:
        imageTypes:
          - PUBLIC_IMAGE
        osName: TencentOS Server 3.2 (Final)
  instanceTypes:
    fn::invoke:
      function: tencentcloud:getInstanceTypes
      arguments:
        filters:
          - name: zone
            values:
              - ${zones.zones[0].name}
          - name: instance-family
            values:
              - S5
        cpuCoreCount: 2
        excludeSoldOut: true
Copy

Or close protect

import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";

const protect = new tencentcloud.AsProtectInstances("protect", {
    autoScalingGroupId: tencentcloud_as_scaling_group.example.id,
    instanceIds: tencentcloud_as_attachment.attachment.instance_ids,
    protectedFromScaleIn: false,
});
Copy
import pulumi
import pulumi_tencentcloud as tencentcloud

protect = tencentcloud.AsProtectInstances("protect",
    auto_scaling_group_id=tencentcloud_as_scaling_group["example"]["id"],
    instance_ids=tencentcloud_as_attachment["attachment"]["instance_ids"],
    protected_from_scale_in=False)
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := tencentcloud.NewAsProtectInstances(ctx, "protect", &tencentcloud.AsProtectInstancesArgs{
			AutoScalingGroupId:   pulumi.Any(tencentcloud_as_scaling_group.Example.Id),
			InstanceIds:          pulumi.Any(tencentcloud_as_attachment.Attachment.Instance_ids),
			ProtectedFromScaleIn: pulumi.Bool(false),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;

return await Deployment.RunAsync(() => 
{
    var protect = new Tencentcloud.AsProtectInstances("protect", new()
    {
        AutoScalingGroupId = tencentcloud_as_scaling_group.Example.Id,
        InstanceIds = tencentcloud_as_attachment.Attachment.Instance_ids,
        ProtectedFromScaleIn = false,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.AsProtectInstances;
import com.pulumi.tencentcloud.AsProtectInstancesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var protect = new AsProtectInstances("protect", AsProtectInstancesArgs.builder()
            .autoScalingGroupId(tencentcloud_as_scaling_group.example().id())
            .instanceIds(tencentcloud_as_attachment.attachment().instance_ids())
            .protectedFromScaleIn(false)
            .build());

    }
}
Copy
resources:
  protect:
    type: tencentcloud:AsProtectInstances
    properties:
      autoScalingGroupId: ${tencentcloud_as_scaling_group.example.id}
      instanceIds: ${tencentcloud_as_attachment.attachment.instance_ids}
      protectedFromScaleIn: false
Copy

Create AsProtectInstances Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new AsProtectInstances(name: string, args: AsProtectInstancesArgs, opts?: CustomResourceOptions);
@overload
def AsProtectInstances(resource_name: str,
                       args: AsProtectInstancesArgs,
                       opts: Optional[ResourceOptions] = None)

@overload
def AsProtectInstances(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       auto_scaling_group_id: Optional[str] = None,
                       instance_ids: Optional[Sequence[str]] = None,
                       protected_from_scale_in: Optional[bool] = None,
                       as_protect_instances_id: Optional[str] = None)
func NewAsProtectInstances(ctx *Context, name string, args AsProtectInstancesArgs, opts ...ResourceOption) (*AsProtectInstances, error)
public AsProtectInstances(string name, AsProtectInstancesArgs args, CustomResourceOptions? opts = null)
public AsProtectInstances(String name, AsProtectInstancesArgs args)
public AsProtectInstances(String name, AsProtectInstancesArgs args, CustomResourceOptions options)
type: tencentcloud:AsProtectInstances
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. AsProtectInstancesArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. AsProtectInstancesArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. AsProtectInstancesArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. AsProtectInstancesArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. AsProtectInstancesArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

AsProtectInstances Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The AsProtectInstances resource accepts the following input properties:

AutoScalingGroupId This property is required. string
Launch configuration ID.
InstanceIds This property is required. List<string>
List of cvm instances to remove.
ProtectedFromScaleIn This property is required. bool
If instances need protect.
AsProtectInstancesId string
ID of the resource.
AutoScalingGroupId This property is required. string
Launch configuration ID.
InstanceIds This property is required. []string
List of cvm instances to remove.
ProtectedFromScaleIn This property is required. bool
If instances need protect.
AsProtectInstancesId string
ID of the resource.
autoScalingGroupId This property is required. String
Launch configuration ID.
instanceIds This property is required. List<String>
List of cvm instances to remove.
protectedFromScaleIn This property is required. Boolean
If instances need protect.
asProtectInstancesId String
ID of the resource.
autoScalingGroupId This property is required. string
Launch configuration ID.
instanceIds This property is required. string[]
List of cvm instances to remove.
protectedFromScaleIn This property is required. boolean
If instances need protect.
asProtectInstancesId string
ID of the resource.
auto_scaling_group_id This property is required. str
Launch configuration ID.
instance_ids This property is required. Sequence[str]
List of cvm instances to remove.
protected_from_scale_in This property is required. bool
If instances need protect.
as_protect_instances_id str
ID of the resource.
autoScalingGroupId This property is required. String
Launch configuration ID.
instanceIds This property is required. List<String>
List of cvm instances to remove.
protectedFromScaleIn This property is required. Boolean
If instances need protect.
asProtectInstancesId String
ID of the resource.

Outputs

All input properties are implicitly available as output properties. Additionally, the AsProtectInstances resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing AsProtectInstances Resource

Get an existing AsProtectInstances resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: AsProtectInstancesState, opts?: CustomResourceOptions): AsProtectInstances
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        as_protect_instances_id: Optional[str] = None,
        auto_scaling_group_id: Optional[str] = None,
        instance_ids: Optional[Sequence[str]] = None,
        protected_from_scale_in: Optional[bool] = None) -> AsProtectInstances
func GetAsProtectInstances(ctx *Context, name string, id IDInput, state *AsProtectInstancesState, opts ...ResourceOption) (*AsProtectInstances, error)
public static AsProtectInstances Get(string name, Input<string> id, AsProtectInstancesState? state, CustomResourceOptions? opts = null)
public static AsProtectInstances get(String name, Output<String> id, AsProtectInstancesState state, CustomResourceOptions options)
resources:  _:    type: tencentcloud:AsProtectInstances    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
AsProtectInstancesId string
ID of the resource.
AutoScalingGroupId string
Launch configuration ID.
InstanceIds List<string>
List of cvm instances to remove.
ProtectedFromScaleIn bool
If instances need protect.
AsProtectInstancesId string
ID of the resource.
AutoScalingGroupId string
Launch configuration ID.
InstanceIds []string
List of cvm instances to remove.
ProtectedFromScaleIn bool
If instances need protect.
asProtectInstancesId String
ID of the resource.
autoScalingGroupId String
Launch configuration ID.
instanceIds List<String>
List of cvm instances to remove.
protectedFromScaleIn Boolean
If instances need protect.
asProtectInstancesId string
ID of the resource.
autoScalingGroupId string
Launch configuration ID.
instanceIds string[]
List of cvm instances to remove.
protectedFromScaleIn boolean
If instances need protect.
as_protect_instances_id str
ID of the resource.
auto_scaling_group_id str
Launch configuration ID.
instance_ids Sequence[str]
List of cvm instances to remove.
protected_from_scale_in bool
If instances need protect.
asProtectInstancesId String
ID of the resource.
autoScalingGroupId String
Launch configuration ID.
instanceIds List<String>
List of cvm instances to remove.
protectedFromScaleIn Boolean
If instances need protect.

Package Details

Repository
tencentcloud tencentcloudstack/terraform-provider-tencentcloud
License
Notes
This Pulumi package is based on the tencentcloud Terraform Provider.