alicloud.gwlb.ServerGroup
Explore with Pulumi AI
Provides a GWLB Server Group resource.
For information about GWLB Server Group and how to use it, see What is Server Group.
NOTE: Available since v1.234.0.
Create ServerGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServerGroup(name: string, args: ServerGroupArgs, opts?: CustomResourceOptions);
@overload
def ServerGroup(resource_name: str,
args: ServerGroupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ServerGroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
vpc_id: Optional[str] = None,
connection_drain_config: Optional[ServerGroupConnectionDrainConfigArgs] = None,
dry_run: Optional[bool] = None,
health_check_config: Optional[ServerGroupHealthCheckConfigArgs] = None,
protocol: Optional[str] = None,
resource_group_id: Optional[str] = None,
scheduler: Optional[str] = None,
server_group_name: Optional[str] = None,
server_group_type: Optional[str] = None,
servers: Optional[Sequence[ServerGroupServerArgs]] = None,
tags: Optional[Mapping[str, str]] = None)
func NewServerGroup(ctx *Context, name string, args ServerGroupArgs, opts ...ResourceOption) (*ServerGroup, error)
public ServerGroup(string name, ServerGroupArgs args, CustomResourceOptions? opts = null)
public ServerGroup(String name, ServerGroupArgs args)
public ServerGroup(String name, ServerGroupArgs args, CustomResourceOptions options)
type: alicloud:gwlb:ServerGroup
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 ServerGroupArgs
- 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 ServerGroupArgs
- 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 ServerGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServerGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServerGroupArgs
- 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 alicloudServerGroupResource = new AliCloud.Gwlb.ServerGroup("alicloudServerGroupResource", new()
{
VpcId = "string",
ConnectionDrainConfig = new AliCloud.Gwlb.Inputs.ServerGroupConnectionDrainConfigArgs
{
ConnectionDrainEnabled = false,
ConnectionDrainTimeout = 0,
},
DryRun = false,
HealthCheckConfig = new AliCloud.Gwlb.Inputs.ServerGroupHealthCheckConfigArgs
{
HealthCheckConnectPort = 0,
HealthCheckConnectTimeout = 0,
HealthCheckDomain = "string",
HealthCheckEnabled = false,
HealthCheckHttpCodes = new[]
{
"string",
},
HealthCheckInterval = 0,
HealthCheckPath = "string",
HealthCheckProtocol = "string",
HealthyThreshold = 0,
UnhealthyThreshold = 0,
},
Protocol = "string",
ResourceGroupId = "string",
Scheduler = "string",
ServerGroupName = "string",
ServerGroupType = "string",
Servers = new[]
{
new AliCloud.Gwlb.Inputs.ServerGroupServerArgs
{
ServerId = "string",
ServerType = "string",
Port = 0,
ServerGroupId = "string",
ServerIp = "string",
Status = "string",
},
},
Tags =
{
{ "string", "string" },
},
});
example, err := gwlb.NewServerGroup(ctx, "alicloudServerGroupResource", &gwlb.ServerGroupArgs{
VpcId: pulumi.String("string"),
ConnectionDrainConfig: &gwlb.ServerGroupConnectionDrainConfigArgs{
ConnectionDrainEnabled: pulumi.Bool(false),
ConnectionDrainTimeout: pulumi.Int(0),
},
DryRun: pulumi.Bool(false),
HealthCheckConfig: &gwlb.ServerGroupHealthCheckConfigArgs{
HealthCheckConnectPort: pulumi.Int(0),
HealthCheckConnectTimeout: pulumi.Int(0),
HealthCheckDomain: pulumi.String("string"),
HealthCheckEnabled: pulumi.Bool(false),
HealthCheckHttpCodes: pulumi.StringArray{
pulumi.String("string"),
},
HealthCheckInterval: pulumi.Int(0),
HealthCheckPath: pulumi.String("string"),
HealthCheckProtocol: pulumi.String("string"),
HealthyThreshold: pulumi.Int(0),
UnhealthyThreshold: pulumi.Int(0),
},
Protocol: pulumi.String("string"),
ResourceGroupId: pulumi.String("string"),
Scheduler: pulumi.String("string"),
ServerGroupName: pulumi.String("string"),
ServerGroupType: pulumi.String("string"),
Servers: gwlb.ServerGroupServerArray{
&gwlb.ServerGroupServerArgs{
ServerId: pulumi.String("string"),
ServerType: pulumi.String("string"),
Port: pulumi.Int(0),
ServerGroupId: pulumi.String("string"),
ServerIp: pulumi.String("string"),
Status: pulumi.String("string"),
},
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var alicloudServerGroupResource = new ServerGroup("alicloudServerGroupResource", ServerGroupArgs.builder()
.vpcId("string")
.connectionDrainConfig(ServerGroupConnectionDrainConfigArgs.builder()
.connectionDrainEnabled(false)
.connectionDrainTimeout(0)
.build())
.dryRun(false)
.healthCheckConfig(ServerGroupHealthCheckConfigArgs.builder()
.healthCheckConnectPort(0)
.healthCheckConnectTimeout(0)
.healthCheckDomain("string")
.healthCheckEnabled(false)
.healthCheckHttpCodes("string")
.healthCheckInterval(0)
.healthCheckPath("string")
.healthCheckProtocol("string")
.healthyThreshold(0)
.unhealthyThreshold(0)
.build())
.protocol("string")
.resourceGroupId("string")
.scheduler("string")
.serverGroupName("string")
.serverGroupType("string")
.servers(ServerGroupServerArgs.builder()
.serverId("string")
.serverType("string")
.port(0)
.serverGroupId("string")
.serverIp("string")
.status("string")
.build())
.tags(Map.of("string", "string"))
.build());
alicloud_server_group_resource = alicloud.gwlb.ServerGroup("alicloudServerGroupResource",
vpc_id="string",
connection_drain_config={
"connection_drain_enabled": False,
"connection_drain_timeout": 0,
},
dry_run=False,
health_check_config={
"health_check_connect_port": 0,
"health_check_connect_timeout": 0,
"health_check_domain": "string",
"health_check_enabled": False,
"health_check_http_codes": ["string"],
"health_check_interval": 0,
"health_check_path": "string",
"health_check_protocol": "string",
"healthy_threshold": 0,
"unhealthy_threshold": 0,
},
protocol="string",
resource_group_id="string",
scheduler="string",
server_group_name="string",
server_group_type="string",
servers=[{
"server_id": "string",
"server_type": "string",
"port": 0,
"server_group_id": "string",
"server_ip": "string",
"status": "string",
}],
tags={
"string": "string",
})
const alicloudServerGroupResource = new alicloud.gwlb.ServerGroup("alicloudServerGroupResource", {
vpcId: "string",
connectionDrainConfig: {
connectionDrainEnabled: false,
connectionDrainTimeout: 0,
},
dryRun: false,
healthCheckConfig: {
healthCheckConnectPort: 0,
healthCheckConnectTimeout: 0,
healthCheckDomain: "string",
healthCheckEnabled: false,
healthCheckHttpCodes: ["string"],
healthCheckInterval: 0,
healthCheckPath: "string",
healthCheckProtocol: "string",
healthyThreshold: 0,
unhealthyThreshold: 0,
},
protocol: "string",
resourceGroupId: "string",
scheduler: "string",
serverGroupName: "string",
serverGroupType: "string",
servers: [{
serverId: "string",
serverType: "string",
port: 0,
serverGroupId: "string",
serverIp: "string",
status: "string",
}],
tags: {
string: "string",
},
});
type: alicloud:gwlb:ServerGroup
properties:
connectionDrainConfig:
connectionDrainEnabled: false
connectionDrainTimeout: 0
dryRun: false
healthCheckConfig:
healthCheckConnectPort: 0
healthCheckConnectTimeout: 0
healthCheckDomain: string
healthCheckEnabled: false
healthCheckHttpCodes:
- string
healthCheckInterval: 0
healthCheckPath: string
healthCheckProtocol: string
healthyThreshold: 0
unhealthyThreshold: 0
protocol: string
resourceGroupId: string
scheduler: string
serverGroupName: string
serverGroupType: string
servers:
- port: 0
serverGroupId: string
serverId: string
serverIp: string
serverType: string
status: string
tags:
string: string
vpcId: string
ServerGroup 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 ServerGroup resource accepts the following input properties:
- Vpc
Id string The VPC ID.
NOTE: If
ServerGroupType
is set toInstance
, only servers in the specified VPC can be added to the server group.- Connection
Drain Pulumi.Config Ali Cloud. Gwlb. Inputs. Server Group Connection Drain Config - Connected graceful interrupt configuration. See
connection_drain_config
below. - Dry
Run bool - Specifies whether to perform only a dry run, without performing the actual request. Valid values:
- Health
Check Pulumi.Config Ali Cloud. Gwlb. Inputs. Server Group Health Check Config - Health check configurations. See
health_check_config
below. - Protocol string
- The backend protocol. Valid values:
GENEVE
(default)
- Resource
Group stringId - The ID of the resource group.
- Scheduler string
- The scheduling algorithm. Valid values:
5TCH
(default): specifies consistent hashing that is based on the following factors: source IP address, destination IP address, source port, protocol, and destination port. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.3TCH
: specifies consistent hashing that is based on the following factors: source IP address, destination IP address, and protocol. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.2TCH
: specifies consistent hashing that is based on the following factors: source IP address and destination IP address. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
- Server
Group stringName The server group name.
The name must be 2 to 128 characters in length, and can contain digits, periods (.), underscores (_), and hyphens (-). It must start with a letter.
- Server
Group stringType - The type of server group. Valid values:
Instance
(default): allows you to specify servers of theEcs
,Eni
, orEci
type.Ip
: allows you to add servers of by specifying IP addresses.
- Servers
List<Pulumi.
Ali Cloud. Gwlb. Inputs. Server Group Server> The backend servers that you want to remove.
NOTE: You can remove at most 200 backend servers in each call. See
servers
below.- Dictionary<string, string>
The tag keys.
You can specify at most 20 tags in each call.
- Vpc
Id string The VPC ID.
NOTE: If
ServerGroupType
is set toInstance
, only servers in the specified VPC can be added to the server group.- Connection
Drain ServerConfig Group Connection Drain Config Args - Connected graceful interrupt configuration. See
connection_drain_config
below. - Dry
Run bool - Specifies whether to perform only a dry run, without performing the actual request. Valid values:
- Health
Check ServerConfig Group Health Check Config Args - Health check configurations. See
health_check_config
below. - Protocol string
- The backend protocol. Valid values:
GENEVE
(default)
- Resource
Group stringId - The ID of the resource group.
- Scheduler string
- The scheduling algorithm. Valid values:
5TCH
(default): specifies consistent hashing that is based on the following factors: source IP address, destination IP address, source port, protocol, and destination port. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.3TCH
: specifies consistent hashing that is based on the following factors: source IP address, destination IP address, and protocol. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.2TCH
: specifies consistent hashing that is based on the following factors: source IP address and destination IP address. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
- Server
Group stringName The server group name.
The name must be 2 to 128 characters in length, and can contain digits, periods (.), underscores (_), and hyphens (-). It must start with a letter.
- Server
Group stringType - The type of server group. Valid values:
Instance
(default): allows you to specify servers of theEcs
,Eni
, orEci
type.Ip
: allows you to add servers of by specifying IP addresses.
- Servers
[]Server
Group Server Args The backend servers that you want to remove.
NOTE: You can remove at most 200 backend servers in each call. See
servers
below.- map[string]string
The tag keys.
You can specify at most 20 tags in each call.
- vpc
Id String The VPC ID.
NOTE: If
ServerGroupType
is set toInstance
, only servers in the specified VPC can be added to the server group.- connection
Drain ServerConfig Group Connection Drain Config - Connected graceful interrupt configuration. See
connection_drain_config
below. - dry
Run Boolean - Specifies whether to perform only a dry run, without performing the actual request. Valid values:
- health
Check ServerConfig Group Health Check Config - Health check configurations. See
health_check_config
below. - protocol String
- The backend protocol. Valid values:
GENEVE
(default)
- resource
Group StringId - The ID of the resource group.
- scheduler String
- The scheduling algorithm. Valid values:
5TCH
(default): specifies consistent hashing that is based on the following factors: source IP address, destination IP address, source port, protocol, and destination port. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.3TCH
: specifies consistent hashing that is based on the following factors: source IP address, destination IP address, and protocol. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.2TCH
: specifies consistent hashing that is based on the following factors: source IP address and destination IP address. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
- server
Group StringName The server group name.
The name must be 2 to 128 characters in length, and can contain digits, periods (.), underscores (_), and hyphens (-). It must start with a letter.
- server
Group StringType - The type of server group. Valid values:
Instance
(default): allows you to specify servers of theEcs
,Eni
, orEci
type.Ip
: allows you to add servers of by specifying IP addresses.
- servers
List<Server
Group Server> The backend servers that you want to remove.
NOTE: You can remove at most 200 backend servers in each call. See
servers
below.- Map<String,String>
The tag keys.
You can specify at most 20 tags in each call.
- vpc
Id string The VPC ID.
NOTE: If
ServerGroupType
is set toInstance
, only servers in the specified VPC can be added to the server group.- connection
Drain ServerConfig Group Connection Drain Config - Connected graceful interrupt configuration. See
connection_drain_config
below. - dry
Run boolean - Specifies whether to perform only a dry run, without performing the actual request. Valid values:
- health
Check ServerConfig Group Health Check Config - Health check configurations. See
health_check_config
below. - protocol string
- The backend protocol. Valid values:
GENEVE
(default)
- resource
Group stringId - The ID of the resource group.
- scheduler string
- The scheduling algorithm. Valid values:
5TCH
(default): specifies consistent hashing that is based on the following factors: source IP address, destination IP address, source port, protocol, and destination port. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.3TCH
: specifies consistent hashing that is based on the following factors: source IP address, destination IP address, and protocol. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.2TCH
: specifies consistent hashing that is based on the following factors: source IP address and destination IP address. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
- server
Group stringName The server group name.
The name must be 2 to 128 characters in length, and can contain digits, periods (.), underscores (_), and hyphens (-). It must start with a letter.
- server
Group stringType - The type of server group. Valid values:
Instance
(default): allows you to specify servers of theEcs
,Eni
, orEci
type.Ip
: allows you to add servers of by specifying IP addresses.
- servers
Server
Group Server[] The backend servers that you want to remove.
NOTE: You can remove at most 200 backend servers in each call. See
servers
below.- {[key: string]: string}
The tag keys.
You can specify at most 20 tags in each call.
- vpc_
id str The VPC ID.
NOTE: If
ServerGroupType
is set toInstance
, only servers in the specified VPC can be added to the server group.- connection_
drain_ Serverconfig Group Connection Drain Config Args - Connected graceful interrupt configuration. See
connection_drain_config
below. - dry_
run bool - Specifies whether to perform only a dry run, without performing the actual request. Valid values:
- health_
check_ Serverconfig Group Health Check Config Args - Health check configurations. See
health_check_config
below. - protocol str
- The backend protocol. Valid values:
GENEVE
(default)
- resource_
group_ strid - The ID of the resource group.
- scheduler str
- The scheduling algorithm. Valid values:
5TCH
(default): specifies consistent hashing that is based on the following factors: source IP address, destination IP address, source port, protocol, and destination port. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.3TCH
: specifies consistent hashing that is based on the following factors: source IP address, destination IP address, and protocol. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.2TCH
: specifies consistent hashing that is based on the following factors: source IP address and destination IP address. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
- server_
group_ strname The server group name.
The name must be 2 to 128 characters in length, and can contain digits, periods (.), underscores (_), and hyphens (-). It must start with a letter.
- server_
group_ strtype - The type of server group. Valid values:
Instance
(default): allows you to specify servers of theEcs
,Eni
, orEci
type.Ip
: allows you to add servers of by specifying IP addresses.
- servers
Sequence[Server
Group Server Args] The backend servers that you want to remove.
NOTE: You can remove at most 200 backend servers in each call. See
servers
below.- Mapping[str, str]
The tag keys.
You can specify at most 20 tags in each call.
- vpc
Id String The VPC ID.
NOTE: If
ServerGroupType
is set toInstance
, only servers in the specified VPC can be added to the server group.- connection
Drain Property MapConfig - Connected graceful interrupt configuration. See
connection_drain_config
below. - dry
Run Boolean - Specifies whether to perform only a dry run, without performing the actual request. Valid values:
- health
Check Property MapConfig - Health check configurations. See
health_check_config
below. - protocol String
- The backend protocol. Valid values:
GENEVE
(default)
- resource
Group StringId - The ID of the resource group.
- scheduler String
- The scheduling algorithm. Valid values:
5TCH
(default): specifies consistent hashing that is based on the following factors: source IP address, destination IP address, source port, protocol, and destination port. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.3TCH
: specifies consistent hashing that is based on the following factors: source IP address, destination IP address, and protocol. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.2TCH
: specifies consistent hashing that is based on the following factors: source IP address and destination IP address. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
- server
Group StringName The server group name.
The name must be 2 to 128 characters in length, and can contain digits, periods (.), underscores (_), and hyphens (-). It must start with a letter.
- server
Group StringType - The type of server group. Valid values:
Instance
(default): allows you to specify servers of theEcs
,Eni
, orEci
type.Ip
: allows you to add servers of by specifying IP addresses.
- servers List<Property Map>
The backend servers that you want to remove.
NOTE: You can remove at most 200 backend servers in each call. See
servers
below.- Map<String>
The tag keys.
You can specify at most 20 tags in each call.
Outputs
All input properties are implicitly available as output properties. Additionally, the ServerGroup resource produces the following output properties:
- Create
Time string - The time when the resource was created. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
- Id string
- The provider-assigned unique ID for this managed resource.
- Status string
- Indicates the status of the backend server.
- Create
Time string - The time when the resource was created. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
- Id string
- The provider-assigned unique ID for this managed resource.
- Status string
- Indicates the status of the backend server.
- create
Time String - The time when the resource was created. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
- id String
- The provider-assigned unique ID for this managed resource.
- status String
- Indicates the status of the backend server.
- create
Time string - The time when the resource was created. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
- id string
- The provider-assigned unique ID for this managed resource.
- status string
- Indicates the status of the backend server.
- create_
time str - The time when the resource was created. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
- id str
- The provider-assigned unique ID for this managed resource.
- status str
- Indicates the status of the backend server.
- create
Time String - The time when the resource was created. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
- id String
- The provider-assigned unique ID for this managed resource.
- status String
- Indicates the status of the backend server.
Look up Existing ServerGroup Resource
Get an existing ServerGroup 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?: ServerGroupState, opts?: CustomResourceOptions): ServerGroup
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
connection_drain_config: Optional[ServerGroupConnectionDrainConfigArgs] = None,
create_time: Optional[str] = None,
dry_run: Optional[bool] = None,
health_check_config: Optional[ServerGroupHealthCheckConfigArgs] = None,
protocol: Optional[str] = None,
resource_group_id: Optional[str] = None,
scheduler: Optional[str] = None,
server_group_name: Optional[str] = None,
server_group_type: Optional[str] = None,
servers: Optional[Sequence[ServerGroupServerArgs]] = None,
status: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
vpc_id: Optional[str] = None) -> ServerGroup
func GetServerGroup(ctx *Context, name string, id IDInput, state *ServerGroupState, opts ...ResourceOption) (*ServerGroup, error)
public static ServerGroup Get(string name, Input<string> id, ServerGroupState? state, CustomResourceOptions? opts = null)
public static ServerGroup get(String name, Output<String> id, ServerGroupState state, CustomResourceOptions options)
resources: _: type: alicloud:gwlb:ServerGroup 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.
- Connection
Drain Pulumi.Config Ali Cloud. Gwlb. Inputs. Server Group Connection Drain Config - Connected graceful interrupt configuration. See
connection_drain_config
below. - Create
Time string - The time when the resource was created. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
- Dry
Run bool - Specifies whether to perform only a dry run, without performing the actual request. Valid values:
- Health
Check Pulumi.Config Ali Cloud. Gwlb. Inputs. Server Group Health Check Config - Health check configurations. See
health_check_config
below. - Protocol string
- The backend protocol. Valid values:
GENEVE
(default)
- Resource
Group stringId - The ID of the resource group.
- Scheduler string
- The scheduling algorithm. Valid values:
5TCH
(default): specifies consistent hashing that is based on the following factors: source IP address, destination IP address, source port, protocol, and destination port. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.3TCH
: specifies consistent hashing that is based on the following factors: source IP address, destination IP address, and protocol. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.2TCH
: specifies consistent hashing that is based on the following factors: source IP address and destination IP address. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
- Server
Group stringName The server group name.
The name must be 2 to 128 characters in length, and can contain digits, periods (.), underscores (_), and hyphens (-). It must start with a letter.
- Server
Group stringType - The type of server group. Valid values:
Instance
(default): allows you to specify servers of theEcs
,Eni
, orEci
type.Ip
: allows you to add servers of by specifying IP addresses.
- Servers
List<Pulumi.
Ali Cloud. Gwlb. Inputs. Server Group Server> The backend servers that you want to remove.
NOTE: You can remove at most 200 backend servers in each call. See
servers
below.- Status string
- Indicates the status of the backend server.
- Dictionary<string, string>
The tag keys.
You can specify at most 20 tags in each call.
- Vpc
Id string The VPC ID.
NOTE: If
ServerGroupType
is set toInstance
, only servers in the specified VPC can be added to the server group.
- Connection
Drain ServerConfig Group Connection Drain Config Args - Connected graceful interrupt configuration. See
connection_drain_config
below. - Create
Time string - The time when the resource was created. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
- Dry
Run bool - Specifies whether to perform only a dry run, without performing the actual request. Valid values:
- Health
Check ServerConfig Group Health Check Config Args - Health check configurations. See
health_check_config
below. - Protocol string
- The backend protocol. Valid values:
GENEVE
(default)
- Resource
Group stringId - The ID of the resource group.
- Scheduler string
- The scheduling algorithm. Valid values:
5TCH
(default): specifies consistent hashing that is based on the following factors: source IP address, destination IP address, source port, protocol, and destination port. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.3TCH
: specifies consistent hashing that is based on the following factors: source IP address, destination IP address, and protocol. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.2TCH
: specifies consistent hashing that is based on the following factors: source IP address and destination IP address. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
- Server
Group stringName The server group name.
The name must be 2 to 128 characters in length, and can contain digits, periods (.), underscores (_), and hyphens (-). It must start with a letter.
- Server
Group stringType - The type of server group. Valid values:
Instance
(default): allows you to specify servers of theEcs
,Eni
, orEci
type.Ip
: allows you to add servers of by specifying IP addresses.
- Servers
[]Server
Group Server Args The backend servers that you want to remove.
NOTE: You can remove at most 200 backend servers in each call. See
servers
below.- Status string
- Indicates the status of the backend server.
- map[string]string
The tag keys.
You can specify at most 20 tags in each call.
- Vpc
Id string The VPC ID.
NOTE: If
ServerGroupType
is set toInstance
, only servers in the specified VPC can be added to the server group.
- connection
Drain ServerConfig Group Connection Drain Config - Connected graceful interrupt configuration. See
connection_drain_config
below. - create
Time String - The time when the resource was created. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
- dry
Run Boolean - Specifies whether to perform only a dry run, without performing the actual request. Valid values:
- health
Check ServerConfig Group Health Check Config - Health check configurations. See
health_check_config
below. - protocol String
- The backend protocol. Valid values:
GENEVE
(default)
- resource
Group StringId - The ID of the resource group.
- scheduler String
- The scheduling algorithm. Valid values:
5TCH
(default): specifies consistent hashing that is based on the following factors: source IP address, destination IP address, source port, protocol, and destination port. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.3TCH
: specifies consistent hashing that is based on the following factors: source IP address, destination IP address, and protocol. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.2TCH
: specifies consistent hashing that is based on the following factors: source IP address and destination IP address. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
- server
Group StringName The server group name.
The name must be 2 to 128 characters in length, and can contain digits, periods (.), underscores (_), and hyphens (-). It must start with a letter.
- server
Group StringType - The type of server group. Valid values:
Instance
(default): allows you to specify servers of theEcs
,Eni
, orEci
type.Ip
: allows you to add servers of by specifying IP addresses.
- servers
List<Server
Group Server> The backend servers that you want to remove.
NOTE: You can remove at most 200 backend servers in each call. See
servers
below.- status String
- Indicates the status of the backend server.
- Map<String,String>
The tag keys.
You can specify at most 20 tags in each call.
- vpc
Id String The VPC ID.
NOTE: If
ServerGroupType
is set toInstance
, only servers in the specified VPC can be added to the server group.
- connection
Drain ServerConfig Group Connection Drain Config - Connected graceful interrupt configuration. See
connection_drain_config
below. - create
Time string - The time when the resource was created. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
- dry
Run boolean - Specifies whether to perform only a dry run, without performing the actual request. Valid values:
- health
Check ServerConfig Group Health Check Config - Health check configurations. See
health_check_config
below. - protocol string
- The backend protocol. Valid values:
GENEVE
(default)
- resource
Group stringId - The ID of the resource group.
- scheduler string
- The scheduling algorithm. Valid values:
5TCH
(default): specifies consistent hashing that is based on the following factors: source IP address, destination IP address, source port, protocol, and destination port. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.3TCH
: specifies consistent hashing that is based on the following factors: source IP address, destination IP address, and protocol. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.2TCH
: specifies consistent hashing that is based on the following factors: source IP address and destination IP address. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
- server
Group stringName The server group name.
The name must be 2 to 128 characters in length, and can contain digits, periods (.), underscores (_), and hyphens (-). It must start with a letter.
- server
Group stringType - The type of server group. Valid values:
Instance
(default): allows you to specify servers of theEcs
,Eni
, orEci
type.Ip
: allows you to add servers of by specifying IP addresses.
- servers
Server
Group Server[] The backend servers that you want to remove.
NOTE: You can remove at most 200 backend servers in each call. See
servers
below.- status string
- Indicates the status of the backend server.
- {[key: string]: string}
The tag keys.
You can specify at most 20 tags in each call.
- vpc
Id string The VPC ID.
NOTE: If
ServerGroupType
is set toInstance
, only servers in the specified VPC can be added to the server group.
- connection_
drain_ Serverconfig Group Connection Drain Config Args - Connected graceful interrupt configuration. See
connection_drain_config
below. - create_
time str - The time when the resource was created. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
- dry_
run bool - Specifies whether to perform only a dry run, without performing the actual request. Valid values:
- health_
check_ Serverconfig Group Health Check Config Args - Health check configurations. See
health_check_config
below. - protocol str
- The backend protocol. Valid values:
GENEVE
(default)
- resource_
group_ strid - The ID of the resource group.
- scheduler str
- The scheduling algorithm. Valid values:
5TCH
(default): specifies consistent hashing that is based on the following factors: source IP address, destination IP address, source port, protocol, and destination port. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.3TCH
: specifies consistent hashing that is based on the following factors: source IP address, destination IP address, and protocol. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.2TCH
: specifies consistent hashing that is based on the following factors: source IP address and destination IP address. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
- server_
group_ strname The server group name.
The name must be 2 to 128 characters in length, and can contain digits, periods (.), underscores (_), and hyphens (-). It must start with a letter.
- server_
group_ strtype - The type of server group. Valid values:
Instance
(default): allows you to specify servers of theEcs
,Eni
, orEci
type.Ip
: allows you to add servers of by specifying IP addresses.
- servers
Sequence[Server
Group Server Args] The backend servers that you want to remove.
NOTE: You can remove at most 200 backend servers in each call. See
servers
below.- status str
- Indicates the status of the backend server.
- Mapping[str, str]
The tag keys.
You can specify at most 20 tags in each call.
- vpc_
id str The VPC ID.
NOTE: If
ServerGroupType
is set toInstance
, only servers in the specified VPC can be added to the server group.
- connection
Drain Property MapConfig - Connected graceful interrupt configuration. See
connection_drain_config
below. - create
Time String - The time when the resource was created. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
- dry
Run Boolean - Specifies whether to perform only a dry run, without performing the actual request. Valid values:
- health
Check Property MapConfig - Health check configurations. See
health_check_config
below. - protocol String
- The backend protocol. Valid values:
GENEVE
(default)
- resource
Group StringId - The ID of the resource group.
- scheduler String
- The scheduling algorithm. Valid values:
5TCH
(default): specifies consistent hashing that is based on the following factors: source IP address, destination IP address, source port, protocol, and destination port. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.3TCH
: specifies consistent hashing that is based on the following factors: source IP address, destination IP address, and protocol. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.2TCH
: specifies consistent hashing that is based on the following factors: source IP address and destination IP address. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
- server
Group StringName The server group name.
The name must be 2 to 128 characters in length, and can contain digits, periods (.), underscores (_), and hyphens (-). It must start with a letter.
- server
Group StringType - The type of server group. Valid values:
Instance
(default): allows you to specify servers of theEcs
,Eni
, orEci
type.Ip
: allows you to add servers of by specifying IP addresses.
- servers List<Property Map>
The backend servers that you want to remove.
NOTE: You can remove at most 200 backend servers in each call. See
servers
below.- status String
- Indicates the status of the backend server.
- Map<String>
The tag keys.
You can specify at most 20 tags in each call.
- vpc
Id String The VPC ID.
NOTE: If
ServerGroupType
is set toInstance
, only servers in the specified VPC can be added to the server group.
Supporting Types
ServerGroupConnectionDrainConfig, ServerGroupConnectionDrainConfigArgs
- Connection
Drain boolEnabled - Indicates whether connection draining is enabled. Valid values:
- Connection
Drain intTimeout The timeout period of connection draining.
Unit: seconds
Valid values:
1
to3600
.Default value:
300
.
- Connection
Drain boolEnabled - Indicates whether connection draining is enabled. Valid values:
- Connection
Drain intTimeout The timeout period of connection draining.
Unit: seconds
Valid values:
1
to3600
.Default value:
300
.
- connection
Drain BooleanEnabled - Indicates whether connection draining is enabled. Valid values:
- connection
Drain IntegerTimeout The timeout period of connection draining.
Unit: seconds
Valid values:
1
to3600
.Default value:
300
.
- connection
Drain booleanEnabled - Indicates whether connection draining is enabled. Valid values:
- connection
Drain numberTimeout The timeout period of connection draining.
Unit: seconds
Valid values:
1
to3600
.Default value:
300
.
- connection_
drain_ boolenabled - Indicates whether connection draining is enabled. Valid values:
- connection_
drain_ inttimeout The timeout period of connection draining.
Unit: seconds
Valid values:
1
to3600
.Default value:
300
.
- connection
Drain BooleanEnabled - Indicates whether connection draining is enabled. Valid values:
- connection
Drain NumberTimeout The timeout period of connection draining.
Unit: seconds
Valid values:
1
to3600
.Default value:
300
.
ServerGroupHealthCheckConfig, ServerGroupHealthCheckConfigArgs
- Health
Check intConnect Port The backend server port that is used for health checks.
Valid values:
1
to65535
.Default value:
80
.- Health
Check intConnect Timeout The maximum timeout period of a health check response.
Unit: seconds
Valid values:
1
to300
.Default value:
5
.- Health
Check stringDomain - The domain name that you want to use for health checks. Valid values:
- $SERVER_IP (default): the private IP address of a backend server.
- Health
Check boolEnabled - Specifies whether to enable the health check feature. Valid values:
- Health
Check List<string>Http Codes - The HTTP status codes that the system returns for health checks.
- Health
Check intInterval The interval at which health checks are performed.
Unit: seconds
Valid values:
1
to50
.Default value:
10
.- Health
Check stringPath The URL that is used for health checks.
The URL must be 1 to 80 characters in length, and can contain letters, digits, hyphens (-), forward slashes (/), periods (.), percent signs (%), question marks (?), number signs (#), and ampersands (&). The URL can also contain the following extended characters: _ ; ~ ! ( ) * [ ] @ $ ^ : ' , + =
The URL must start with a forward slash (/).
NOTE: This parameter takes effect only if you set
HealthCheckProtocol
toHTTP
.- Health
Check stringProtocol - The protocol that is used for health checks. Valid values:
TCP
: TCP health checks send TCP SYN packets to a backend server to check whether the port of the backend server is reachable.HTTP
: HTTP health checks simulate a process that uses a web browser to access resources by sending HEAD or GET requests to an instance. These requests are used to check whether the instance is healthy.
- Healthy
Threshold int The number of times that an unhealthy backend server must consecutively pass health checks before it is declared healthy. In this case, the health status changes from
fail
tosuccess
.Valid values:
2
to10
.Default value:
2
.- Unhealthy
Threshold int The number of times that a healthy backend server must consecutively fail health checks before it is declared unhealthy. In this case, the health status changes from
success
tofail
.Valid values:
2
to10
.Default value:
2
.
- Health
Check intConnect Port The backend server port that is used for health checks.
Valid values:
1
to65535
.Default value:
80
.- Health
Check intConnect Timeout The maximum timeout period of a health check response.
Unit: seconds
Valid values:
1
to300
.Default value:
5
.- Health
Check stringDomain - The domain name that you want to use for health checks. Valid values:
- $SERVER_IP (default): the private IP address of a backend server.
- Health
Check boolEnabled - Specifies whether to enable the health check feature. Valid values:
- Health
Check []stringHttp Codes - The HTTP status codes that the system returns for health checks.
- Health
Check intInterval The interval at which health checks are performed.
Unit: seconds
Valid values:
1
to50
.Default value:
10
.- Health
Check stringPath The URL that is used for health checks.
The URL must be 1 to 80 characters in length, and can contain letters, digits, hyphens (-), forward slashes (/), periods (.), percent signs (%), question marks (?), number signs (#), and ampersands (&). The URL can also contain the following extended characters: _ ; ~ ! ( ) * [ ] @ $ ^ : ' , + =
The URL must start with a forward slash (/).
NOTE: This parameter takes effect only if you set
HealthCheckProtocol
toHTTP
.- Health
Check stringProtocol - The protocol that is used for health checks. Valid values:
TCP
: TCP health checks send TCP SYN packets to a backend server to check whether the port of the backend server is reachable.HTTP
: HTTP health checks simulate a process that uses a web browser to access resources by sending HEAD or GET requests to an instance. These requests are used to check whether the instance is healthy.
- Healthy
Threshold int The number of times that an unhealthy backend server must consecutively pass health checks before it is declared healthy. In this case, the health status changes from
fail
tosuccess
.Valid values:
2
to10
.Default value:
2
.- Unhealthy
Threshold int The number of times that a healthy backend server must consecutively fail health checks before it is declared unhealthy. In this case, the health status changes from
success
tofail
.Valid values:
2
to10
.Default value:
2
.
- health
Check IntegerConnect Port The backend server port that is used for health checks.
Valid values:
1
to65535
.Default value:
80
.- health
Check IntegerConnect Timeout The maximum timeout period of a health check response.
Unit: seconds
Valid values:
1
to300
.Default value:
5
.- health
Check StringDomain - The domain name that you want to use for health checks. Valid values:
- $SERVER_IP (default): the private IP address of a backend server.
- health
Check BooleanEnabled - Specifies whether to enable the health check feature. Valid values:
- health
Check List<String>Http Codes - The HTTP status codes that the system returns for health checks.
- health
Check IntegerInterval The interval at which health checks are performed.
Unit: seconds
Valid values:
1
to50
.Default value:
10
.- health
Check StringPath The URL that is used for health checks.
The URL must be 1 to 80 characters in length, and can contain letters, digits, hyphens (-), forward slashes (/), periods (.), percent signs (%), question marks (?), number signs (#), and ampersands (&). The URL can also contain the following extended characters: _ ; ~ ! ( ) * [ ] @ $ ^ : ' , + =
The URL must start with a forward slash (/).
NOTE: This parameter takes effect only if you set
HealthCheckProtocol
toHTTP
.- health
Check StringProtocol - The protocol that is used for health checks. Valid values:
TCP
: TCP health checks send TCP SYN packets to a backend server to check whether the port of the backend server is reachable.HTTP
: HTTP health checks simulate a process that uses a web browser to access resources by sending HEAD or GET requests to an instance. These requests are used to check whether the instance is healthy.
- healthy
Threshold Integer The number of times that an unhealthy backend server must consecutively pass health checks before it is declared healthy. In this case, the health status changes from
fail
tosuccess
.Valid values:
2
to10
.Default value:
2
.- unhealthy
Threshold Integer The number of times that a healthy backend server must consecutively fail health checks before it is declared unhealthy. In this case, the health status changes from
success
tofail
.Valid values:
2
to10
.Default value:
2
.
- health
Check numberConnect Port The backend server port that is used for health checks.
Valid values:
1
to65535
.Default value:
80
.- health
Check numberConnect Timeout The maximum timeout period of a health check response.
Unit: seconds
Valid values:
1
to300
.Default value:
5
.- health
Check stringDomain - The domain name that you want to use for health checks. Valid values:
- $SERVER_IP (default): the private IP address of a backend server.
- health
Check booleanEnabled - Specifies whether to enable the health check feature. Valid values:
- health
Check string[]Http Codes - The HTTP status codes that the system returns for health checks.
- health
Check numberInterval The interval at which health checks are performed.
Unit: seconds
Valid values:
1
to50
.Default value:
10
.- health
Check stringPath The URL that is used for health checks.
The URL must be 1 to 80 characters in length, and can contain letters, digits, hyphens (-), forward slashes (/), periods (.), percent signs (%), question marks (?), number signs (#), and ampersands (&). The URL can also contain the following extended characters: _ ; ~ ! ( ) * [ ] @ $ ^ : ' , + =
The URL must start with a forward slash (/).
NOTE: This parameter takes effect only if you set
HealthCheckProtocol
toHTTP
.- health
Check stringProtocol - The protocol that is used for health checks. Valid values:
TCP
: TCP health checks send TCP SYN packets to a backend server to check whether the port of the backend server is reachable.HTTP
: HTTP health checks simulate a process that uses a web browser to access resources by sending HEAD or GET requests to an instance. These requests are used to check whether the instance is healthy.
- healthy
Threshold number The number of times that an unhealthy backend server must consecutively pass health checks before it is declared healthy. In this case, the health status changes from
fail
tosuccess
.Valid values:
2
to10
.Default value:
2
.- unhealthy
Threshold number The number of times that a healthy backend server must consecutively fail health checks before it is declared unhealthy. In this case, the health status changes from
success
tofail
.Valid values:
2
to10
.Default value:
2
.
- health_
check_ intconnect_ port The backend server port that is used for health checks.
Valid values:
1
to65535
.Default value:
80
.- health_
check_ intconnect_ timeout The maximum timeout period of a health check response.
Unit: seconds
Valid values:
1
to300
.Default value:
5
.- health_
check_ strdomain - The domain name that you want to use for health checks. Valid values:
- $SERVER_IP (default): the private IP address of a backend server.
- health_
check_ boolenabled - Specifies whether to enable the health check feature. Valid values:
- health_
check_ Sequence[str]http_ codes - The HTTP status codes that the system returns for health checks.
- health_
check_ intinterval The interval at which health checks are performed.
Unit: seconds
Valid values:
1
to50
.Default value:
10
.- health_
check_ strpath The URL that is used for health checks.
The URL must be 1 to 80 characters in length, and can contain letters, digits, hyphens (-), forward slashes (/), periods (.), percent signs (%), question marks (?), number signs (#), and ampersands (&). The URL can also contain the following extended characters: _ ; ~ ! ( ) * [ ] @ $ ^ : ' , + =
The URL must start with a forward slash (/).
NOTE: This parameter takes effect only if you set
HealthCheckProtocol
toHTTP
.- health_
check_ strprotocol - The protocol that is used for health checks. Valid values:
TCP
: TCP health checks send TCP SYN packets to a backend server to check whether the port of the backend server is reachable.HTTP
: HTTP health checks simulate a process that uses a web browser to access resources by sending HEAD or GET requests to an instance. These requests are used to check whether the instance is healthy.
- healthy_
threshold int The number of times that an unhealthy backend server must consecutively pass health checks before it is declared healthy. In this case, the health status changes from
fail
tosuccess
.Valid values:
2
to10
.Default value:
2
.- unhealthy_
threshold int The number of times that a healthy backend server must consecutively fail health checks before it is declared unhealthy. In this case, the health status changes from
success
tofail
.Valid values:
2
to10
.Default value:
2
.
- health
Check NumberConnect Port The backend server port that is used for health checks.
Valid values:
1
to65535
.Default value:
80
.- health
Check NumberConnect Timeout The maximum timeout period of a health check response.
Unit: seconds
Valid values:
1
to300
.Default value:
5
.- health
Check StringDomain - The domain name that you want to use for health checks. Valid values:
- $SERVER_IP (default): the private IP address of a backend server.
- health
Check BooleanEnabled - Specifies whether to enable the health check feature. Valid values:
- health
Check List<String>Http Codes - The HTTP status codes that the system returns for health checks.
- health
Check NumberInterval The interval at which health checks are performed.
Unit: seconds
Valid values:
1
to50
.Default value:
10
.- health
Check StringPath The URL that is used for health checks.
The URL must be 1 to 80 characters in length, and can contain letters, digits, hyphens (-), forward slashes (/), periods (.), percent signs (%), question marks (?), number signs (#), and ampersands (&). The URL can also contain the following extended characters: _ ; ~ ! ( ) * [ ] @ $ ^ : ' , + =
The URL must start with a forward slash (/).
NOTE: This parameter takes effect only if you set
HealthCheckProtocol
toHTTP
.- health
Check StringProtocol - The protocol that is used for health checks. Valid values:
TCP
: TCP health checks send TCP SYN packets to a backend server to check whether the port of the backend server is reachable.HTTP
: HTTP health checks simulate a process that uses a web browser to access resources by sending HEAD or GET requests to an instance. These requests are used to check whether the instance is healthy.
- healthy
Threshold Number The number of times that an unhealthy backend server must consecutively pass health checks before it is declared healthy. In this case, the health status changes from
fail
tosuccess
.Valid values:
2
to10
.Default value:
2
.- unhealthy
Threshold Number The number of times that a healthy backend server must consecutively fail health checks before it is declared unhealthy. In this case, the health status changes from
success
tofail
.Valid values:
2
to10
.Default value:
2
.
ServerGroupServer, ServerGroupServerArgs
- Server
Id string - The backend server ID.
- If the server group is of the
Instance
type, set this parameter to the IDs of servers of theEcs
,Eni
, orEci
type. - If the server group is of the
Ip
type, set ServerId to IP addresses.
- If the server group is of the
- Server
Type string - The type of the backend server. Valid values:
Ecs
: Elastic Compute Service (ECS) instanceEni
: elastic network interface (ENI)Eci
: elastic container instanceIp
: IP address
- Port int
- (Optional, Computed, Int) The port that is used by the backend server.
- Server
Group stringId - The server group ID.
- Server
Ip string - The IP address of the backend server.
- Status string
- Indicates the status of the backend server.
- Server
Id string - The backend server ID.
- If the server group is of the
Instance
type, set this parameter to the IDs of servers of theEcs
,Eni
, orEci
type. - If the server group is of the
Ip
type, set ServerId to IP addresses.
- If the server group is of the
- Server
Type string - The type of the backend server. Valid values:
Ecs
: Elastic Compute Service (ECS) instanceEni
: elastic network interface (ENI)Eci
: elastic container instanceIp
: IP address
- Port int
- (Optional, Computed, Int) The port that is used by the backend server.
- Server
Group stringId - The server group ID.
- Server
Ip string - The IP address of the backend server.
- Status string
- Indicates the status of the backend server.
- server
Id String - The backend server ID.
- If the server group is of the
Instance
type, set this parameter to the IDs of servers of theEcs
,Eni
, orEci
type. - If the server group is of the
Ip
type, set ServerId to IP addresses.
- If the server group is of the
- server
Type String - The type of the backend server. Valid values:
Ecs
: Elastic Compute Service (ECS) instanceEni
: elastic network interface (ENI)Eci
: elastic container instanceIp
: IP address
- port Integer
- (Optional, Computed, Int) The port that is used by the backend server.
- server
Group StringId - The server group ID.
- server
Ip String - The IP address of the backend server.
- status String
- Indicates the status of the backend server.
- server
Id string - The backend server ID.
- If the server group is of the
Instance
type, set this parameter to the IDs of servers of theEcs
,Eni
, orEci
type. - If the server group is of the
Ip
type, set ServerId to IP addresses.
- If the server group is of the
- server
Type string - The type of the backend server. Valid values:
Ecs
: Elastic Compute Service (ECS) instanceEni
: elastic network interface (ENI)Eci
: elastic container instanceIp
: IP address
- port number
- (Optional, Computed, Int) The port that is used by the backend server.
- server
Group stringId - The server group ID.
- server
Ip string - The IP address of the backend server.
- status string
- Indicates the status of the backend server.
- server_
id str - The backend server ID.
- If the server group is of the
Instance
type, set this parameter to the IDs of servers of theEcs
,Eni
, orEci
type. - If the server group is of the
Ip
type, set ServerId to IP addresses.
- If the server group is of the
- server_
type str - The type of the backend server. Valid values:
Ecs
: Elastic Compute Service (ECS) instanceEni
: elastic network interface (ENI)Eci
: elastic container instanceIp
: IP address
- port int
- (Optional, Computed, Int) The port that is used by the backend server.
- server_
group_ strid - The server group ID.
- server_
ip str - The IP address of the backend server.
- status str
- Indicates the status of the backend server.
- server
Id String - The backend server ID.
- If the server group is of the
Instance
type, set this parameter to the IDs of servers of theEcs
,Eni
, orEci
type. - If the server group is of the
Ip
type, set ServerId to IP addresses.
- If the server group is of the
- server
Type String - The type of the backend server. Valid values:
Ecs
: Elastic Compute Service (ECS) instanceEni
: elastic network interface (ENI)Eci
: elastic container instanceIp
: IP address
- port Number
- (Optional, Computed, Int) The port that is used by the backend server.
- server
Group StringId - The server group ID.
- server
Ip String - The IP address of the backend server.
- status String
- Indicates the status of the backend server.
Import
GWLB Server Group can be imported using the id, e.g.
$ pulumi import alicloud:gwlb/serverGroup:ServerGroup example <id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.