1. Packages
  2. Flexibleengine Provider
  3. API Docs
  4. AsGroupV1
flexibleengine 1.46.0 published on Monday, Apr 14, 2025 by flexibleenginecloud

flexibleengine.AsGroupV1

Explore with Pulumi AI

flexibleengine logo
flexibleengine 1.46.0 published on Monday, Apr 14, 2025 by flexibleenginecloud

    Create AsGroupV1 Resource

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

    Constructor syntax

    new AsGroupV1(name: string, args: AsGroupV1Args, opts?: CustomResourceOptions);
    @overload
    def AsGroupV1(resource_name: str,
                  args: AsGroupV1Args,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def AsGroupV1(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  networks: Optional[Sequence[AsGroupV1NetworkArgs]] = None,
                  vpc_id: Optional[str] = None,
                  security_groups: Optional[Sequence[AsGroupV1SecurityGroupArgs]] = None,
                  scaling_group_name: Optional[str] = None,
                  lb_listener_id: Optional[str] = None,
                  min_instance_number: Optional[float] = None,
                  force_delete: Optional[bool] = None,
                  health_periodic_audit_method: Optional[str] = None,
                  health_periodic_audit_time: Optional[float] = None,
                  instance_terminate_policy: Optional[str] = None,
                  as_group_v1_id: Optional[str] = None,
                  lbaas_listeners: Optional[Sequence[AsGroupV1LbaasListenerArgs]] = None,
                  max_instance_number: Optional[float] = None,
                  desire_instance_number: Optional[float] = None,
                  delete_publicip: Optional[bool] = None,
                  notifications: Optional[Sequence[str]] = None,
                  region: Optional[str] = None,
                  scaling_configuration_id: Optional[str] = None,
                  delete_instances: Optional[str] = None,
                  cool_down_time: Optional[float] = None,
                  tags: Optional[Mapping[str, str]] = None,
                  timeouts: Optional[AsGroupV1TimeoutsArgs] = None,
                  available_zones: Optional[Sequence[str]] = None)
    func NewAsGroupV1(ctx *Context, name string, args AsGroupV1Args, opts ...ResourceOption) (*AsGroupV1, error)
    public AsGroupV1(string name, AsGroupV1Args args, CustomResourceOptions? opts = null)
    public AsGroupV1(String name, AsGroupV1Args args)
    public AsGroupV1(String name, AsGroupV1Args args, CustomResourceOptions options)
    
    type: flexibleengine:AsGroupV1
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

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

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var asGroupV1Resource = new Flexibleengine.AsGroupV1("asGroupV1Resource", new()
    {
        Networks = new[]
        {
            new Flexibleengine.Inputs.AsGroupV1NetworkArgs
            {
                Id = "string",
            },
        },
        VpcId = "string",
        SecurityGroups = new[]
        {
            new Flexibleengine.Inputs.AsGroupV1SecurityGroupArgs
            {
                Id = "string",
            },
        },
        ScalingGroupName = "string",
        LbListenerId = "string",
        MinInstanceNumber = 0,
        ForceDelete = false,
        HealthPeriodicAuditMethod = "string",
        HealthPeriodicAuditTime = 0,
        InstanceTerminatePolicy = "string",
        AsGroupV1Id = "string",
        LbaasListeners = new[]
        {
            new Flexibleengine.Inputs.AsGroupV1LbaasListenerArgs
            {
                PoolId = "string",
                ProtocolPort = 0,
                Weight = 0,
            },
        },
        MaxInstanceNumber = 0,
        DesireInstanceNumber = 0,
        DeletePublicip = false,
        Notifications = new[]
        {
            "string",
        },
        Region = "string",
        ScalingConfigurationId = "string",
        DeleteInstances = "string",
        CoolDownTime = 0,
        Tags = 
        {
            { "string", "string" },
        },
        Timeouts = new Flexibleengine.Inputs.AsGroupV1TimeoutsArgs
        {
            Create = "string",
            Delete = "string",
        },
        AvailableZones = new[]
        {
            "string",
        },
    });
    
    example, err := flexibleengine.NewAsGroupV1(ctx, "asGroupV1Resource", &flexibleengine.AsGroupV1Args{
    	Networks: flexibleengine.AsGroupV1NetworkArray{
    		&flexibleengine.AsGroupV1NetworkArgs{
    			Id: pulumi.String("string"),
    		},
    	},
    	VpcId: pulumi.String("string"),
    	SecurityGroups: flexibleengine.AsGroupV1SecurityGroupArray{
    		&flexibleengine.AsGroupV1SecurityGroupArgs{
    			Id: pulumi.String("string"),
    		},
    	},
    	ScalingGroupName:          pulumi.String("string"),
    	LbListenerId:              pulumi.String("string"),
    	MinInstanceNumber:         pulumi.Float64(0),
    	ForceDelete:               pulumi.Bool(false),
    	HealthPeriodicAuditMethod: pulumi.String("string"),
    	HealthPeriodicAuditTime:   pulumi.Float64(0),
    	InstanceTerminatePolicy:   pulumi.String("string"),
    	AsGroupV1Id:               pulumi.String("string"),
    	LbaasListeners: flexibleengine.AsGroupV1LbaasListenerArray{
    		&flexibleengine.AsGroupV1LbaasListenerArgs{
    			PoolId:       pulumi.String("string"),
    			ProtocolPort: pulumi.Float64(0),
    			Weight:       pulumi.Float64(0),
    		},
    	},
    	MaxInstanceNumber:    pulumi.Float64(0),
    	DesireInstanceNumber: pulumi.Float64(0),
    	DeletePublicip:       pulumi.Bool(false),
    	Notifications: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Region:                 pulumi.String("string"),
    	ScalingConfigurationId: pulumi.String("string"),
    	DeleteInstances:        pulumi.String("string"),
    	CoolDownTime:           pulumi.Float64(0),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Timeouts: &flexibleengine.AsGroupV1TimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    	},
    	AvailableZones: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var asGroupV1Resource = new AsGroupV1("asGroupV1Resource", AsGroupV1Args.builder()
        .networks(AsGroupV1NetworkArgs.builder()
            .id("string")
            .build())
        .vpcId("string")
        .securityGroups(AsGroupV1SecurityGroupArgs.builder()
            .id("string")
            .build())
        .scalingGroupName("string")
        .lbListenerId("string")
        .minInstanceNumber(0)
        .forceDelete(false)
        .healthPeriodicAuditMethod("string")
        .healthPeriodicAuditTime(0)
        .instanceTerminatePolicy("string")
        .asGroupV1Id("string")
        .lbaasListeners(AsGroupV1LbaasListenerArgs.builder()
            .poolId("string")
            .protocolPort(0)
            .weight(0)
            .build())
        .maxInstanceNumber(0)
        .desireInstanceNumber(0)
        .deletePublicip(false)
        .notifications("string")
        .region("string")
        .scalingConfigurationId("string")
        .deleteInstances("string")
        .coolDownTime(0)
        .tags(Map.of("string", "string"))
        .timeouts(AsGroupV1TimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .build())
        .availableZones("string")
        .build());
    
    as_group_v1_resource = flexibleengine.AsGroupV1("asGroupV1Resource",
        networks=[{
            "id": "string",
        }],
        vpc_id="string",
        security_groups=[{
            "id": "string",
        }],
        scaling_group_name="string",
        lb_listener_id="string",
        min_instance_number=0,
        force_delete=False,
        health_periodic_audit_method="string",
        health_periodic_audit_time=0,
        instance_terminate_policy="string",
        as_group_v1_id="string",
        lbaas_listeners=[{
            "pool_id": "string",
            "protocol_port": 0,
            "weight": 0,
        }],
        max_instance_number=0,
        desire_instance_number=0,
        delete_publicip=False,
        notifications=["string"],
        region="string",
        scaling_configuration_id="string",
        delete_instances="string",
        cool_down_time=0,
        tags={
            "string": "string",
        },
        timeouts={
            "create": "string",
            "delete": "string",
        },
        available_zones=["string"])
    
    const asGroupV1Resource = new flexibleengine.AsGroupV1("asGroupV1Resource", {
        networks: [{
            id: "string",
        }],
        vpcId: "string",
        securityGroups: [{
            id: "string",
        }],
        scalingGroupName: "string",
        lbListenerId: "string",
        minInstanceNumber: 0,
        forceDelete: false,
        healthPeriodicAuditMethod: "string",
        healthPeriodicAuditTime: 0,
        instanceTerminatePolicy: "string",
        asGroupV1Id: "string",
        lbaasListeners: [{
            poolId: "string",
            protocolPort: 0,
            weight: 0,
        }],
        maxInstanceNumber: 0,
        desireInstanceNumber: 0,
        deletePublicip: false,
        notifications: ["string"],
        region: "string",
        scalingConfigurationId: "string",
        deleteInstances: "string",
        coolDownTime: 0,
        tags: {
            string: "string",
        },
        timeouts: {
            create: "string",
            "delete": "string",
        },
        availableZones: ["string"],
    });
    
    type: flexibleengine:AsGroupV1
    properties:
        asGroupV1Id: string
        availableZones:
            - string
        coolDownTime: 0
        deleteInstances: string
        deletePublicip: false
        desireInstanceNumber: 0
        forceDelete: false
        healthPeriodicAuditMethod: string
        healthPeriodicAuditTime: 0
        instanceTerminatePolicy: string
        lbListenerId: string
        lbaasListeners:
            - poolId: string
              protocolPort: 0
              weight: 0
        maxInstanceNumber: 0
        minInstanceNumber: 0
        networks:
            - id: string
        notifications:
            - string
        region: string
        scalingConfigurationId: string
        scalingGroupName: string
        securityGroups:
            - id: string
        tags:
            string: string
        timeouts:
            create: string
            delete: string
        vpcId: string
    

    AsGroupV1 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 AsGroupV1 resource accepts the following input properties:

    Networks List<AsGroupV1Network>
    ScalingGroupName string
    SecurityGroups List<AsGroupV1SecurityGroup>
    VpcId string
    AsGroupV1Id string
    AvailableZones List<string>
    CoolDownTime double
    The cooling duration, in seconds.
    DeleteInstances string
    Whether to delete instances when they are removed from the AS group.
    DeletePublicip bool
    DesireInstanceNumber double
    ForceDelete bool
    HealthPeriodicAuditMethod string
    HealthPeriodicAuditTime double
    The health check period for instances, in minutes.
    InstanceTerminatePolicy string
    LbListenerId string
    The system supports the binding of up to six ELB listeners, the IDs of which are separated using a comma.
    LbaasListeners List<AsGroupV1LbaasListener>
    MaxInstanceNumber double
    MinInstanceNumber double
    Notifications List<string>
    Region string
    ScalingConfigurationId string
    Tags Dictionary<string, string>
    Timeouts AsGroupV1Timeouts
    Networks []AsGroupV1NetworkArgs
    ScalingGroupName string
    SecurityGroups []AsGroupV1SecurityGroupArgs
    VpcId string
    AsGroupV1Id string
    AvailableZones []string
    CoolDownTime float64
    The cooling duration, in seconds.
    DeleteInstances string
    Whether to delete instances when they are removed from the AS group.
    DeletePublicip bool
    DesireInstanceNumber float64
    ForceDelete bool
    HealthPeriodicAuditMethod string
    HealthPeriodicAuditTime float64
    The health check period for instances, in minutes.
    InstanceTerminatePolicy string
    LbListenerId string
    The system supports the binding of up to six ELB listeners, the IDs of which are separated using a comma.
    LbaasListeners []AsGroupV1LbaasListenerArgs
    MaxInstanceNumber float64
    MinInstanceNumber float64
    Notifications []string
    Region string
    ScalingConfigurationId string
    Tags map[string]string
    Timeouts AsGroupV1TimeoutsArgs
    networks List<AsGroupV1Network>
    scalingGroupName String
    securityGroups List<AsGroupV1SecurityGroup>
    vpcId String
    asGroupV1Id String
    availableZones List<String>
    coolDownTime Double
    The cooling duration, in seconds.
    deleteInstances String
    Whether to delete instances when they are removed from the AS group.
    deletePublicip Boolean
    desireInstanceNumber Double
    forceDelete Boolean
    healthPeriodicAuditMethod String
    healthPeriodicAuditTime Double
    The health check period for instances, in minutes.
    instanceTerminatePolicy String
    lbListenerId String
    The system supports the binding of up to six ELB listeners, the IDs of which are separated using a comma.
    lbaasListeners List<AsGroupV1LbaasListener>
    maxInstanceNumber Double
    minInstanceNumber Double
    notifications List<String>
    region String
    scalingConfigurationId String
    tags Map<String,String>
    timeouts AsGroupV1Timeouts
    networks AsGroupV1Network[]
    scalingGroupName string
    securityGroups AsGroupV1SecurityGroup[]
    vpcId string
    asGroupV1Id string
    availableZones string[]
    coolDownTime number
    The cooling duration, in seconds.
    deleteInstances string
    Whether to delete instances when they are removed from the AS group.
    deletePublicip boolean
    desireInstanceNumber number
    forceDelete boolean
    healthPeriodicAuditMethod string
    healthPeriodicAuditTime number
    The health check period for instances, in minutes.
    instanceTerminatePolicy string
    lbListenerId string
    The system supports the binding of up to six ELB listeners, the IDs of which are separated using a comma.
    lbaasListeners AsGroupV1LbaasListener[]
    maxInstanceNumber number
    minInstanceNumber number
    notifications string[]
    region string
    scalingConfigurationId string
    tags {[key: string]: string}
    timeouts AsGroupV1Timeouts
    networks Sequence[AsGroupV1NetworkArgs]
    scaling_group_name str
    security_groups Sequence[AsGroupV1SecurityGroupArgs]
    vpc_id str
    as_group_v1_id str
    available_zones Sequence[str]
    cool_down_time float
    The cooling duration, in seconds.
    delete_instances str
    Whether to delete instances when they are removed from the AS group.
    delete_publicip bool
    desire_instance_number float
    force_delete bool
    health_periodic_audit_method str
    health_periodic_audit_time float
    The health check period for instances, in minutes.
    instance_terminate_policy str
    lb_listener_id str
    The system supports the binding of up to six ELB listeners, the IDs of which are separated using a comma.
    lbaas_listeners Sequence[AsGroupV1LbaasListenerArgs]
    max_instance_number float
    min_instance_number float
    notifications Sequence[str]
    region str
    scaling_configuration_id str
    tags Mapping[str, str]
    timeouts AsGroupV1TimeoutsArgs
    networks List<Property Map>
    scalingGroupName String
    securityGroups List<Property Map>
    vpcId String
    asGroupV1Id String
    availableZones List<String>
    coolDownTime Number
    The cooling duration, in seconds.
    deleteInstances String
    Whether to delete instances when they are removed from the AS group.
    deletePublicip Boolean
    desireInstanceNumber Number
    forceDelete Boolean
    healthPeriodicAuditMethod String
    healthPeriodicAuditTime Number
    The health check period for instances, in minutes.
    instanceTerminatePolicy String
    lbListenerId String
    The system supports the binding of up to six ELB listeners, the IDs of which are separated using a comma.
    lbaasListeners List<Property Map>
    maxInstanceNumber Number
    minInstanceNumber Number
    notifications List<String>
    region String
    scalingConfigurationId String
    tags Map<String>
    timeouts Property Map

    Outputs

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

    CurrentInstanceNumber double
    Id string
    The provider-assigned unique ID for this managed resource.
    Instances List<string>
    The instances id list in the as group.
    Status string
    CurrentInstanceNumber float64
    Id string
    The provider-assigned unique ID for this managed resource.
    Instances []string
    The instances id list in the as group.
    Status string
    currentInstanceNumber Double
    id String
    The provider-assigned unique ID for this managed resource.
    instances List<String>
    The instances id list in the as group.
    status String
    currentInstanceNumber number
    id string
    The provider-assigned unique ID for this managed resource.
    instances string[]
    The instances id list in the as group.
    status string
    current_instance_number float
    id str
    The provider-assigned unique ID for this managed resource.
    instances Sequence[str]
    The instances id list in the as group.
    status str
    currentInstanceNumber Number
    id String
    The provider-assigned unique ID for this managed resource.
    instances List<String>
    The instances id list in the as group.
    status String

    Look up Existing AsGroupV1 Resource

    Get an existing AsGroupV1 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?: AsGroupV1State, opts?: CustomResourceOptions): AsGroupV1
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            as_group_v1_id: Optional[str] = None,
            available_zones: Optional[Sequence[str]] = None,
            cool_down_time: Optional[float] = None,
            current_instance_number: Optional[float] = None,
            delete_instances: Optional[str] = None,
            delete_publicip: Optional[bool] = None,
            desire_instance_number: Optional[float] = None,
            force_delete: Optional[bool] = None,
            health_periodic_audit_method: Optional[str] = None,
            health_periodic_audit_time: Optional[float] = None,
            instance_terminate_policy: Optional[str] = None,
            instances: Optional[Sequence[str]] = None,
            lb_listener_id: Optional[str] = None,
            lbaas_listeners: Optional[Sequence[AsGroupV1LbaasListenerArgs]] = None,
            max_instance_number: Optional[float] = None,
            min_instance_number: Optional[float] = None,
            networks: Optional[Sequence[AsGroupV1NetworkArgs]] = None,
            notifications: Optional[Sequence[str]] = None,
            region: Optional[str] = None,
            scaling_configuration_id: Optional[str] = None,
            scaling_group_name: Optional[str] = None,
            security_groups: Optional[Sequence[AsGroupV1SecurityGroupArgs]] = None,
            status: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            timeouts: Optional[AsGroupV1TimeoutsArgs] = None,
            vpc_id: Optional[str] = None) -> AsGroupV1
    func GetAsGroupV1(ctx *Context, name string, id IDInput, state *AsGroupV1State, opts ...ResourceOption) (*AsGroupV1, error)
    public static AsGroupV1 Get(string name, Input<string> id, AsGroupV1State? state, CustomResourceOptions? opts = null)
    public static AsGroupV1 get(String name, Output<String> id, AsGroupV1State state, CustomResourceOptions options)
    resources:  _:    type: flexibleengine:AsGroupV1    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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:
    AsGroupV1Id string
    AvailableZones List<string>
    CoolDownTime double
    The cooling duration, in seconds.
    CurrentInstanceNumber double
    DeleteInstances string
    Whether to delete instances when they are removed from the AS group.
    DeletePublicip bool
    DesireInstanceNumber double
    ForceDelete bool
    HealthPeriodicAuditMethod string
    HealthPeriodicAuditTime double
    The health check period for instances, in minutes.
    InstanceTerminatePolicy string
    Instances List<string>
    The instances id list in the as group.
    LbListenerId string
    The system supports the binding of up to six ELB listeners, the IDs of which are separated using a comma.
    LbaasListeners List<AsGroupV1LbaasListener>
    MaxInstanceNumber double
    MinInstanceNumber double
    Networks List<AsGroupV1Network>
    Notifications List<string>
    Region string
    ScalingConfigurationId string
    ScalingGroupName string
    SecurityGroups List<AsGroupV1SecurityGroup>
    Status string
    Tags Dictionary<string, string>
    Timeouts AsGroupV1Timeouts
    VpcId string
    AsGroupV1Id string
    AvailableZones []string
    CoolDownTime float64
    The cooling duration, in seconds.
    CurrentInstanceNumber float64
    DeleteInstances string
    Whether to delete instances when they are removed from the AS group.
    DeletePublicip bool
    DesireInstanceNumber float64
    ForceDelete bool
    HealthPeriodicAuditMethod string
    HealthPeriodicAuditTime float64
    The health check period for instances, in minutes.
    InstanceTerminatePolicy string
    Instances []string
    The instances id list in the as group.
    LbListenerId string
    The system supports the binding of up to six ELB listeners, the IDs of which are separated using a comma.
    LbaasListeners []AsGroupV1LbaasListenerArgs
    MaxInstanceNumber float64
    MinInstanceNumber float64
    Networks []AsGroupV1NetworkArgs
    Notifications []string
    Region string
    ScalingConfigurationId string
    ScalingGroupName string
    SecurityGroups []AsGroupV1SecurityGroupArgs
    Status string
    Tags map[string]string
    Timeouts AsGroupV1TimeoutsArgs
    VpcId string
    asGroupV1Id String
    availableZones List<String>
    coolDownTime Double
    The cooling duration, in seconds.
    currentInstanceNumber Double
    deleteInstances String
    Whether to delete instances when they are removed from the AS group.
    deletePublicip Boolean
    desireInstanceNumber Double
    forceDelete Boolean
    healthPeriodicAuditMethod String
    healthPeriodicAuditTime Double
    The health check period for instances, in minutes.
    instanceTerminatePolicy String
    instances List<String>
    The instances id list in the as group.
    lbListenerId String
    The system supports the binding of up to six ELB listeners, the IDs of which are separated using a comma.
    lbaasListeners List<AsGroupV1LbaasListener>
    maxInstanceNumber Double
    minInstanceNumber Double
    networks List<AsGroupV1Network>
    notifications List<String>
    region String
    scalingConfigurationId String
    scalingGroupName String
    securityGroups List<AsGroupV1SecurityGroup>
    status String
    tags Map<String,String>
    timeouts AsGroupV1Timeouts
    vpcId String
    asGroupV1Id string
    availableZones string[]
    coolDownTime number
    The cooling duration, in seconds.
    currentInstanceNumber number
    deleteInstances string
    Whether to delete instances when they are removed from the AS group.
    deletePublicip boolean
    desireInstanceNumber number
    forceDelete boolean
    healthPeriodicAuditMethod string
    healthPeriodicAuditTime number
    The health check period for instances, in minutes.
    instanceTerminatePolicy string
    instances string[]
    The instances id list in the as group.
    lbListenerId string
    The system supports the binding of up to six ELB listeners, the IDs of which are separated using a comma.
    lbaasListeners AsGroupV1LbaasListener[]
    maxInstanceNumber number
    minInstanceNumber number
    networks AsGroupV1Network[]
    notifications string[]
    region string
    scalingConfigurationId string
    scalingGroupName string
    securityGroups AsGroupV1SecurityGroup[]
    status string
    tags {[key: string]: string}
    timeouts AsGroupV1Timeouts
    vpcId string
    as_group_v1_id str
    available_zones Sequence[str]
    cool_down_time float
    The cooling duration, in seconds.
    current_instance_number float
    delete_instances str
    Whether to delete instances when they are removed from the AS group.
    delete_publicip bool
    desire_instance_number float
    force_delete bool
    health_periodic_audit_method str
    health_periodic_audit_time float
    The health check period for instances, in minutes.
    instance_terminate_policy str
    instances Sequence[str]
    The instances id list in the as group.
    lb_listener_id str
    The system supports the binding of up to six ELB listeners, the IDs of which are separated using a comma.
    lbaas_listeners Sequence[AsGroupV1LbaasListenerArgs]
    max_instance_number float
    min_instance_number float
    networks Sequence[AsGroupV1NetworkArgs]
    notifications Sequence[str]
    region str
    scaling_configuration_id str
    scaling_group_name str
    security_groups Sequence[AsGroupV1SecurityGroupArgs]
    status str
    tags Mapping[str, str]
    timeouts AsGroupV1TimeoutsArgs
    vpc_id str
    asGroupV1Id String
    availableZones List<String>
    coolDownTime Number
    The cooling duration, in seconds.
    currentInstanceNumber Number
    deleteInstances String
    Whether to delete instances when they are removed from the AS group.
    deletePublicip Boolean
    desireInstanceNumber Number
    forceDelete Boolean
    healthPeriodicAuditMethod String
    healthPeriodicAuditTime Number
    The health check period for instances, in minutes.
    instanceTerminatePolicy String
    instances List<String>
    The instances id list in the as group.
    lbListenerId String
    The system supports the binding of up to six ELB listeners, the IDs of which are separated using a comma.
    lbaasListeners List<Property Map>
    maxInstanceNumber Number
    minInstanceNumber Number
    networks List<Property Map>
    notifications List<String>
    region String
    scalingConfigurationId String
    scalingGroupName String
    securityGroups List<Property Map>
    status String
    tags Map<String>
    timeouts Property Map
    vpcId String

    Supporting Types

    AsGroupV1LbaasListener, AsGroupV1LbaasListenerArgs

    PoolId string
    ProtocolPort double
    Weight double
    PoolId string
    ProtocolPort float64
    Weight float64
    poolId String
    protocolPort Double
    weight Double
    poolId string
    protocolPort number
    weight number
    poolId String
    protocolPort Number
    weight Number

    AsGroupV1Network, AsGroupV1NetworkArgs

    Id string
    Id string
    id String
    id string
    id str
    id String

    AsGroupV1SecurityGroup, AsGroupV1SecurityGroupArgs

    Id string
    Id string
    id String
    id string
    id str
    id String

    AsGroupV1Timeouts, AsGroupV1TimeoutsArgs

    Create string
    Delete string
    Create string
    Delete string
    create String
    delete String
    create string
    delete string
    create str
    delete str
    create String
    delete String

    Package Details

    Repository
    flexibleengine flexibleenginecloud/terraform-provider-flexibleengine
    License
    Notes
    This Pulumi package is based on the flexibleengine Terraform Provider.
    flexibleengine logo
    flexibleengine 1.46.0 published on Monday, Apr 14, 2025 by flexibleenginecloud