pulumi-alicloud 3.60.0a1721884766__py3-none-any.whl → 3.60.0a1721952598__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_alicloud/_utilities.py +2 -0
- pulumi_alicloud/cen/get_transit_router_service.py +2 -2
- pulumi_alicloud/cloudfirewall/control_policy_order.py +60 -44
- pulumi_alicloud/cs/node_pool.py +7 -7
- pulumi_alicloud/dcdn/_inputs.py +23 -27
- pulumi_alicloud/dcdn/domain.py +366 -217
- pulumi_alicloud/dcdn/outputs.py +18 -22
- pulumi_alicloud/directmail/get_domains.py +31 -24
- pulumi_alicloud/directmail/outputs.py +131 -32
- pulumi_alicloud/eci/_inputs.py +8 -0
- pulumi_alicloud/eci/outputs.py +8 -0
- pulumi_alicloud/ecs/_inputs.py +40 -8
- pulumi_alicloud/ecs/ecs_disk.py +7 -0
- pulumi_alicloud/ecs/instance.py +304 -102
- pulumi_alicloud/ecs/outputs.py +37 -9
- pulumi_alicloud/maxcompute/_inputs.py +44 -42
- pulumi_alicloud/maxcompute/outputs.py +44 -42
- pulumi_alicloud/maxcompute/project.py +230 -66
- pulumi_alicloud/polardb/cluster.py +28 -28
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/rdc/organization.py +2 -2
- pulumi_alicloud/slb/_inputs.py +8 -8
- pulumi_alicloud/slb/outputs.py +8 -8
- pulumi_alicloud/slb/server_group.py +140 -84
- pulumi_alicloud/vpc/_inputs.py +18 -12
- pulumi_alicloud/vpc/network.py +332 -134
- pulumi_alicloud/vpc/outputs.py +18 -12
- pulumi_alicloud/vpc/public_ip_address_pool.py +118 -10
- {pulumi_alicloud-3.60.0a1721884766.dist-info → pulumi_alicloud-3.60.0a1721952598.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.60.0a1721884766.dist-info → pulumi_alicloud-3.60.0a1721952598.dist-info}/RECORD +32 -32
- {pulumi_alicloud-3.60.0a1721884766.dist-info → pulumi_alicloud-3.60.0a1721952598.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.60.0a1721884766.dist-info → pulumi_alicloud-3.60.0a1721952598.dist-info}/top_level.txt +0 -0
|
@@ -132,10 +132,10 @@ class ClusterArgs:
|
|
|
132
132
|
> **NOTE:** The latest time must be 30 minutes or more later than the start time. If PlannedStartTime is set but this parameter is not specified, the latest time to execute the target task defaults to the start time+30 minutes. For example, when the PlannedStartTime is set to 2021-01-14T09:00:00Z and this parameter is left blank, the target task will start executing at the latest on 2021-01-14T09:30:00Z.
|
|
133
133
|
:param pulumi.Input[str] planned_start_time: The earliest time to start executing a scheduled (i.e. within the target time period) kernel version upgrade task. The format is YYYY-MM-DDThh: mm: ssZ (UTC).
|
|
134
134
|
> **NOTE:** The starting time range is any time point within the next 24 hours. For example, the current time is 2021-01-14T09:00:00Z, and the allowed start time range for filling in here is 2021-01-14T09:00:00Z~2021-01-15T09:00:00Z. If this parameter is left blank, the kernel version upgrade task will be executed immediately by default.
|
|
135
|
-
:param pulumi.Input[str] proxy_class: The specifications of the Standard Edition PolarProxy. Available parameters can refer to the latest docs [CreateDBCluster](https://www.alibabacloud.com/help/en/polardb/latest/createdbcluster-1)
|
|
136
|
-
> **NOTE:** This parameter is valid only for standard clusters.
|
|
137
|
-
:param pulumi.Input[str] proxy_type: The type of PolarProxy.
|
|
138
|
-
> **NOTE:** This parameter is valid
|
|
135
|
+
:param pulumi.Input[str] proxy_class: The specifications of the Standard Edition PolarProxy. Available parameters can refer to the latest docs [CreateDBCluster](https://www.alibabacloud.com/help/en/polardb/latest/createdbcluster-1)
|
|
136
|
+
> **NOTE:** This parameter is valid only for standard edition clusters.
|
|
137
|
+
:param pulumi.Input[str] proxy_type: The type of PolarProxy. Valid values are `EXCLUSIVE` `GENERAL`.
|
|
138
|
+
> **NOTE:** This parameter is valid for both standard and enterprise clusters.
|
|
139
139
|
:param pulumi.Input[str] renewal_status: Valid values are `AutoRenewal`, `Normal`, `NotRenewal`, Default to `NotRenewal`.
|
|
140
140
|
:param pulumi.Input[str] resource_group_id: The ID of resource group which the PolarDB cluster belongs. If not specified, then it belongs to the default resource group.
|
|
141
141
|
:param pulumi.Input[str] role_arn: The Alibaba Cloud Resource Name (ARN) of the RAM role. A RAM role is a virtual identity that you can create within your Alibaba Cloud account. For more information see [RAM role overview](https://www.alibabacloud.com/help/en/resource-access-management/latest/ram-role-overview).
|
|
@@ -725,8 +725,8 @@ class ClusterArgs:
|
|
|
725
725
|
@pulumi.getter(name="proxyClass")
|
|
726
726
|
def proxy_class(self) -> Optional[pulumi.Input[str]]:
|
|
727
727
|
"""
|
|
728
|
-
The specifications of the Standard Edition PolarProxy. Available parameters can refer to the latest docs [CreateDBCluster](https://www.alibabacloud.com/help/en/polardb/latest/createdbcluster-1)
|
|
729
|
-
> **NOTE:** This parameter is valid only for standard clusters.
|
|
728
|
+
The specifications of the Standard Edition PolarProxy. Available parameters can refer to the latest docs [CreateDBCluster](https://www.alibabacloud.com/help/en/polardb/latest/createdbcluster-1)
|
|
729
|
+
> **NOTE:** This parameter is valid only for standard edition clusters.
|
|
730
730
|
"""
|
|
731
731
|
return pulumi.get(self, "proxy_class")
|
|
732
732
|
|
|
@@ -738,8 +738,8 @@ class ClusterArgs:
|
|
|
738
738
|
@pulumi.getter(name="proxyType")
|
|
739
739
|
def proxy_type(self) -> Optional[pulumi.Input[str]]:
|
|
740
740
|
"""
|
|
741
|
-
The type of PolarProxy.
|
|
742
|
-
> **NOTE:** This parameter is valid
|
|
741
|
+
The type of PolarProxy. Valid values are `EXCLUSIVE` `GENERAL`.
|
|
742
|
+
> **NOTE:** This parameter is valid for both standard and enterprise clusters.
|
|
743
743
|
"""
|
|
744
744
|
return pulumi.get(self, "proxy_type")
|
|
745
745
|
|
|
@@ -1199,10 +1199,10 @@ class _ClusterState:
|
|
|
1199
1199
|
:param pulumi.Input[str] planned_start_time: The earliest time to start executing a scheduled (i.e. within the target time period) kernel version upgrade task. The format is YYYY-MM-DDThh: mm: ssZ (UTC).
|
|
1200
1200
|
> **NOTE:** The starting time range is any time point within the next 24 hours. For example, the current time is 2021-01-14T09:00:00Z, and the allowed start time range for filling in here is 2021-01-14T09:00:00Z~2021-01-15T09:00:00Z. If this parameter is left blank, the kernel version upgrade task will be executed immediately by default.
|
|
1201
1201
|
:param pulumi.Input[str] port: (Available since 1.196.0) PolarDB cluster connection port.
|
|
1202
|
-
:param pulumi.Input[str] proxy_class: The specifications of the Standard Edition PolarProxy. Available parameters can refer to the latest docs [CreateDBCluster](https://www.alibabacloud.com/help/en/polardb/latest/createdbcluster-1)
|
|
1203
|
-
> **NOTE:** This parameter is valid only for standard clusters.
|
|
1204
|
-
:param pulumi.Input[str] proxy_type: The type of PolarProxy.
|
|
1205
|
-
> **NOTE:** This parameter is valid
|
|
1202
|
+
:param pulumi.Input[str] proxy_class: The specifications of the Standard Edition PolarProxy. Available parameters can refer to the latest docs [CreateDBCluster](https://www.alibabacloud.com/help/en/polardb/latest/createdbcluster-1)
|
|
1203
|
+
> **NOTE:** This parameter is valid only for standard edition clusters.
|
|
1204
|
+
:param pulumi.Input[str] proxy_type: The type of PolarProxy. Valid values are `EXCLUSIVE` `GENERAL`.
|
|
1205
|
+
> **NOTE:** This parameter is valid for both standard and enterprise clusters.
|
|
1206
1206
|
:param pulumi.Input[str] renewal_status: Valid values are `AutoRenewal`, `Normal`, `NotRenewal`, Default to `NotRenewal`.
|
|
1207
1207
|
:param pulumi.Input[str] resource_group_id: The ID of resource group which the PolarDB cluster belongs. If not specified, then it belongs to the default resource group.
|
|
1208
1208
|
:param pulumi.Input[str] role_arn: The Alibaba Cloud Resource Name (ARN) of the RAM role. A RAM role is a virtual identity that you can create within your Alibaba Cloud account. For more information see [RAM role overview](https://www.alibabacloud.com/help/en/resource-access-management/latest/ram-role-overview).
|
|
@@ -1859,8 +1859,8 @@ class _ClusterState:
|
|
|
1859
1859
|
@pulumi.getter(name="proxyClass")
|
|
1860
1860
|
def proxy_class(self) -> Optional[pulumi.Input[str]]:
|
|
1861
1861
|
"""
|
|
1862
|
-
The specifications of the Standard Edition PolarProxy. Available parameters can refer to the latest docs [CreateDBCluster](https://www.alibabacloud.com/help/en/polardb/latest/createdbcluster-1)
|
|
1863
|
-
> **NOTE:** This parameter is valid only for standard clusters.
|
|
1862
|
+
The specifications of the Standard Edition PolarProxy. Available parameters can refer to the latest docs [CreateDBCluster](https://www.alibabacloud.com/help/en/polardb/latest/createdbcluster-1)
|
|
1863
|
+
> **NOTE:** This parameter is valid only for standard edition clusters.
|
|
1864
1864
|
"""
|
|
1865
1865
|
return pulumi.get(self, "proxy_class")
|
|
1866
1866
|
|
|
@@ -1872,8 +1872,8 @@ class _ClusterState:
|
|
|
1872
1872
|
@pulumi.getter(name="proxyType")
|
|
1873
1873
|
def proxy_type(self) -> Optional[pulumi.Input[str]]:
|
|
1874
1874
|
"""
|
|
1875
|
-
The type of PolarProxy.
|
|
1876
|
-
> **NOTE:** This parameter is valid
|
|
1875
|
+
The type of PolarProxy. Valid values are `EXCLUSIVE` `GENERAL`.
|
|
1876
|
+
> **NOTE:** This parameter is valid for both standard and enterprise clusters.
|
|
1877
1877
|
"""
|
|
1878
1878
|
return pulumi.get(self, "proxy_type")
|
|
1879
1879
|
|
|
@@ -2361,10 +2361,10 @@ class Cluster(pulumi.CustomResource):
|
|
|
2361
2361
|
> **NOTE:** The latest time must be 30 minutes or more later than the start time. If PlannedStartTime is set but this parameter is not specified, the latest time to execute the target task defaults to the start time+30 minutes. For example, when the PlannedStartTime is set to 2021-01-14T09:00:00Z and this parameter is left blank, the target task will start executing at the latest on 2021-01-14T09:30:00Z.
|
|
2362
2362
|
:param pulumi.Input[str] planned_start_time: The earliest time to start executing a scheduled (i.e. within the target time period) kernel version upgrade task. The format is YYYY-MM-DDThh: mm: ssZ (UTC).
|
|
2363
2363
|
> **NOTE:** The starting time range is any time point within the next 24 hours. For example, the current time is 2021-01-14T09:00:00Z, and the allowed start time range for filling in here is 2021-01-14T09:00:00Z~2021-01-15T09:00:00Z. If this parameter is left blank, the kernel version upgrade task will be executed immediately by default.
|
|
2364
|
-
:param pulumi.Input[str] proxy_class: The specifications of the Standard Edition PolarProxy. Available parameters can refer to the latest docs [CreateDBCluster](https://www.alibabacloud.com/help/en/polardb/latest/createdbcluster-1)
|
|
2365
|
-
> **NOTE:** This parameter is valid only for standard clusters.
|
|
2366
|
-
:param pulumi.Input[str] proxy_type: The type of PolarProxy.
|
|
2367
|
-
> **NOTE:** This parameter is valid
|
|
2364
|
+
:param pulumi.Input[str] proxy_class: The specifications of the Standard Edition PolarProxy. Available parameters can refer to the latest docs [CreateDBCluster](https://www.alibabacloud.com/help/en/polardb/latest/createdbcluster-1)
|
|
2365
|
+
> **NOTE:** This parameter is valid only for standard edition clusters.
|
|
2366
|
+
:param pulumi.Input[str] proxy_type: The type of PolarProxy. Valid values are `EXCLUSIVE` `GENERAL`.
|
|
2367
|
+
> **NOTE:** This parameter is valid for both standard and enterprise clusters.
|
|
2368
2368
|
:param pulumi.Input[str] renewal_status: Valid values are `AutoRenewal`, `Normal`, `NotRenewal`, Default to `NotRenewal`.
|
|
2369
2369
|
:param pulumi.Input[str] resource_group_id: The ID of resource group which the PolarDB cluster belongs. If not specified, then it belongs to the default resource group.
|
|
2370
2370
|
:param pulumi.Input[str] role_arn: The Alibaba Cloud Resource Name (ARN) of the RAM role. A RAM role is a virtual identity that you can create within your Alibaba Cloud account. For more information see [RAM role overview](https://www.alibabacloud.com/help/en/resource-access-management/latest/ram-role-overview).
|
|
@@ -2718,10 +2718,10 @@ class Cluster(pulumi.CustomResource):
|
|
|
2718
2718
|
:param pulumi.Input[str] planned_start_time: The earliest time to start executing a scheduled (i.e. within the target time period) kernel version upgrade task. The format is YYYY-MM-DDThh: mm: ssZ (UTC).
|
|
2719
2719
|
> **NOTE:** The starting time range is any time point within the next 24 hours. For example, the current time is 2021-01-14T09:00:00Z, and the allowed start time range for filling in here is 2021-01-14T09:00:00Z~2021-01-15T09:00:00Z. If this parameter is left blank, the kernel version upgrade task will be executed immediately by default.
|
|
2720
2720
|
:param pulumi.Input[str] port: (Available since 1.196.0) PolarDB cluster connection port.
|
|
2721
|
-
:param pulumi.Input[str] proxy_class: The specifications of the Standard Edition PolarProxy. Available parameters can refer to the latest docs [CreateDBCluster](https://www.alibabacloud.com/help/en/polardb/latest/createdbcluster-1)
|
|
2722
|
-
> **NOTE:** This parameter is valid only for standard clusters.
|
|
2723
|
-
:param pulumi.Input[str] proxy_type: The type of PolarProxy.
|
|
2724
|
-
> **NOTE:** This parameter is valid
|
|
2721
|
+
:param pulumi.Input[str] proxy_class: The specifications of the Standard Edition PolarProxy. Available parameters can refer to the latest docs [CreateDBCluster](https://www.alibabacloud.com/help/en/polardb/latest/createdbcluster-1)
|
|
2722
|
+
> **NOTE:** This parameter is valid only for standard edition clusters.
|
|
2723
|
+
:param pulumi.Input[str] proxy_type: The type of PolarProxy. Valid values are `EXCLUSIVE` `GENERAL`.
|
|
2724
|
+
> **NOTE:** This parameter is valid for both standard and enterprise clusters.
|
|
2725
2725
|
:param pulumi.Input[str] renewal_status: Valid values are `AutoRenewal`, `Normal`, `NotRenewal`, Default to `NotRenewal`.
|
|
2726
2726
|
:param pulumi.Input[str] resource_group_id: The ID of resource group which the PolarDB cluster belongs. If not specified, then it belongs to the default resource group.
|
|
2727
2727
|
:param pulumi.Input[str] role_arn: The Alibaba Cloud Resource Name (ARN) of the RAM role. A RAM role is a virtual identity that you can create within your Alibaba Cloud account. For more information see [RAM role overview](https://www.alibabacloud.com/help/en/resource-access-management/latest/ram-role-overview).
|
|
@@ -3163,8 +3163,8 @@ class Cluster(pulumi.CustomResource):
|
|
|
3163
3163
|
@pulumi.getter(name="proxyClass")
|
|
3164
3164
|
def proxy_class(self) -> pulumi.Output[Optional[str]]:
|
|
3165
3165
|
"""
|
|
3166
|
-
The specifications of the Standard Edition PolarProxy. Available parameters can refer to the latest docs [CreateDBCluster](https://www.alibabacloud.com/help/en/polardb/latest/createdbcluster-1)
|
|
3167
|
-
> **NOTE:** This parameter is valid only for standard clusters.
|
|
3166
|
+
The specifications of the Standard Edition PolarProxy. Available parameters can refer to the latest docs [CreateDBCluster](https://www.alibabacloud.com/help/en/polardb/latest/createdbcluster-1)
|
|
3167
|
+
> **NOTE:** This parameter is valid only for standard edition clusters.
|
|
3168
3168
|
"""
|
|
3169
3169
|
return pulumi.get(self, "proxy_class")
|
|
3170
3170
|
|
|
@@ -3172,8 +3172,8 @@ class Cluster(pulumi.CustomResource):
|
|
|
3172
3172
|
@pulumi.getter(name="proxyType")
|
|
3173
3173
|
def proxy_type(self) -> pulumi.Output[Optional[str]]:
|
|
3174
3174
|
"""
|
|
3175
|
-
The type of PolarProxy.
|
|
3176
|
-
> **NOTE:** This parameter is valid
|
|
3175
|
+
The type of PolarProxy. Valid values are `EXCLUSIVE` `GENERAL`.
|
|
3176
|
+
> **NOTE:** This parameter is valid for both standard and enterprise clusters.
|
|
3177
3177
|
"""
|
|
3178
3178
|
return pulumi.get(self, "proxy_type")
|
|
3179
3179
|
|
|
@@ -166,7 +166,7 @@ class Organization(pulumi.CustomResource):
|
|
|
166
166
|
"""
|
|
167
167
|
Provides a RDC Organization resource.
|
|
168
168
|
|
|
169
|
-
For information about RDC Organization and how to use it, see [What is Organization](https://help.aliyun.com/
|
|
169
|
+
For information about RDC Organization and how to use it, see [What is Organization](https://help.aliyun.com/document_detail/51678.html).
|
|
170
170
|
|
|
171
171
|
> **NOTE:** Available in v1.137.0+.
|
|
172
172
|
|
|
@@ -207,7 +207,7 @@ class Organization(pulumi.CustomResource):
|
|
|
207
207
|
"""
|
|
208
208
|
Provides a RDC Organization resource.
|
|
209
209
|
|
|
210
|
-
For information about RDC Organization and how to use it, see [What is Organization](https://help.aliyun.com/
|
|
210
|
+
For information about RDC Organization and how to use it, see [What is Organization](https://help.aliyun.com/document_detail/51678.html).
|
|
211
211
|
|
|
212
212
|
> **NOTE:** Available in v1.137.0+.
|
|
213
213
|
|
pulumi_alicloud/slb/_inputs.py
CHANGED
|
@@ -251,10 +251,10 @@ class ServerGroupServerArgs:
|
|
|
251
251
|
type: Optional[pulumi.Input[str]] = None,
|
|
252
252
|
weight: Optional[pulumi.Input[int]] = None):
|
|
253
253
|
"""
|
|
254
|
-
:param pulumi.Input[int] port: The port used by the backend server. Valid
|
|
255
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] server_ids:
|
|
256
|
-
:param pulumi.Input[str] type:
|
|
257
|
-
:param pulumi.Input[int] weight: Weight of the backend server.
|
|
254
|
+
:param pulumi.Input[int] port: The port used by the backend server. Valid values: `1` to `65535`.
|
|
255
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] server_ids: The list of Elastic Compute Service (ECS) Ids or Elastic Network Interface (ENI) Ids.
|
|
256
|
+
:param pulumi.Input[str] type: Specify the type of the backend server. Default value: `ecs`. Valid values: `ecs`, `eni`.
|
|
257
|
+
:param pulumi.Input[int] weight: Weight of the backend server. Default value: `100`. Valid values: `0` to `100`.
|
|
258
258
|
"""
|
|
259
259
|
pulumi.set(__self__, "port", port)
|
|
260
260
|
pulumi.set(__self__, "server_ids", server_ids)
|
|
@@ -267,7 +267,7 @@ class ServerGroupServerArgs:
|
|
|
267
267
|
@pulumi.getter
|
|
268
268
|
def port(self) -> pulumi.Input[int]:
|
|
269
269
|
"""
|
|
270
|
-
The port used by the backend server. Valid
|
|
270
|
+
The port used by the backend server. Valid values: `1` to `65535`.
|
|
271
271
|
"""
|
|
272
272
|
return pulumi.get(self, "port")
|
|
273
273
|
|
|
@@ -279,7 +279,7 @@ class ServerGroupServerArgs:
|
|
|
279
279
|
@pulumi.getter(name="serverIds")
|
|
280
280
|
def server_ids(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
|
281
281
|
"""
|
|
282
|
-
|
|
282
|
+
The list of Elastic Compute Service (ECS) Ids or Elastic Network Interface (ENI) Ids.
|
|
283
283
|
"""
|
|
284
284
|
return pulumi.get(self, "server_ids")
|
|
285
285
|
|
|
@@ -291,7 +291,7 @@ class ServerGroupServerArgs:
|
|
|
291
291
|
@pulumi.getter
|
|
292
292
|
def type(self) -> Optional[pulumi.Input[str]]:
|
|
293
293
|
"""
|
|
294
|
-
|
|
294
|
+
Specify the type of the backend server. Default value: `ecs`. Valid values: `ecs`, `eni`.
|
|
295
295
|
"""
|
|
296
296
|
return pulumi.get(self, "type")
|
|
297
297
|
|
|
@@ -303,7 +303,7 @@ class ServerGroupServerArgs:
|
|
|
303
303
|
@pulumi.getter
|
|
304
304
|
def weight(self) -> Optional[pulumi.Input[int]]:
|
|
305
305
|
"""
|
|
306
|
-
Weight of the backend server.
|
|
306
|
+
Weight of the backend server. Default value: `100`. Valid values: `0` to `100`.
|
|
307
307
|
"""
|
|
308
308
|
return pulumi.get(self, "weight")
|
|
309
309
|
|
pulumi_alicloud/slb/outputs.py
CHANGED
|
@@ -296,10 +296,10 @@ class ServerGroupServer(dict):
|
|
|
296
296
|
type: Optional[str] = None,
|
|
297
297
|
weight: Optional[int] = None):
|
|
298
298
|
"""
|
|
299
|
-
:param int port: The port used by the backend server. Valid
|
|
300
|
-
:param Sequence[str] server_ids:
|
|
301
|
-
:param str type:
|
|
302
|
-
:param int weight: Weight of the backend server.
|
|
299
|
+
:param int port: The port used by the backend server. Valid values: `1` to `65535`.
|
|
300
|
+
:param Sequence[str] server_ids: The list of Elastic Compute Service (ECS) Ids or Elastic Network Interface (ENI) Ids.
|
|
301
|
+
:param str type: Specify the type of the backend server. Default value: `ecs`. Valid values: `ecs`, `eni`.
|
|
302
|
+
:param int weight: Weight of the backend server. Default value: `100`. Valid values: `0` to `100`.
|
|
303
303
|
"""
|
|
304
304
|
pulumi.set(__self__, "port", port)
|
|
305
305
|
pulumi.set(__self__, "server_ids", server_ids)
|
|
@@ -312,7 +312,7 @@ class ServerGroupServer(dict):
|
|
|
312
312
|
@pulumi.getter
|
|
313
313
|
def port(self) -> int:
|
|
314
314
|
"""
|
|
315
|
-
The port used by the backend server. Valid
|
|
315
|
+
The port used by the backend server. Valid values: `1` to `65535`.
|
|
316
316
|
"""
|
|
317
317
|
return pulumi.get(self, "port")
|
|
318
318
|
|
|
@@ -320,7 +320,7 @@ class ServerGroupServer(dict):
|
|
|
320
320
|
@pulumi.getter(name="serverIds")
|
|
321
321
|
def server_ids(self) -> Sequence[str]:
|
|
322
322
|
"""
|
|
323
|
-
|
|
323
|
+
The list of Elastic Compute Service (ECS) Ids or Elastic Network Interface (ENI) Ids.
|
|
324
324
|
"""
|
|
325
325
|
return pulumi.get(self, "server_ids")
|
|
326
326
|
|
|
@@ -328,7 +328,7 @@ class ServerGroupServer(dict):
|
|
|
328
328
|
@pulumi.getter
|
|
329
329
|
def type(self) -> Optional[str]:
|
|
330
330
|
"""
|
|
331
|
-
|
|
331
|
+
Specify the type of the backend server. Default value: `ecs`. Valid values: `ecs`, `eni`.
|
|
332
332
|
"""
|
|
333
333
|
return pulumi.get(self, "type")
|
|
334
334
|
|
|
@@ -336,7 +336,7 @@ class ServerGroupServer(dict):
|
|
|
336
336
|
@pulumi.getter
|
|
337
337
|
def weight(self) -> Optional[int]:
|
|
338
338
|
"""
|
|
339
|
-
Weight of the backend server.
|
|
339
|
+
Weight of the backend server. Default value: `100`. Valid values: `0` to `100`.
|
|
340
340
|
"""
|
|
341
341
|
return pulumi.get(self, "weight")
|
|
342
342
|
|