pulumi-alicloud 3.68.0a1732684713__py3-none-any.whl → 3.68.0a1733143327__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.
Potentially problematic release.
This version of pulumi-alicloud might be problematic. Click here for more details.
- pulumi_alicloud/__init__.py +40 -0
- pulumi_alicloud/cdn/_inputs.py +3 -23
- pulumi_alicloud/cdn/domain_new.py +93 -51
- pulumi_alicloud/cdn/outputs.py +2 -16
- pulumi_alicloud/cdn/real_time_log_delivery.py +97 -46
- pulumi_alicloud/cen/get_flowlogs.py +250 -35
- pulumi_alicloud/cen/outputs.py +116 -17
- pulumi_alicloud/cs/node_pool.py +7 -0
- pulumi_alicloud/ecs/_inputs.py +92 -0
- pulumi_alicloud/ecs/auto_snapshot_policy.py +323 -129
- pulumi_alicloud/ecs/outputs.py +88 -0
- pulumi_alicloud/ecs/snapshot_policy.py +154 -1
- pulumi_alicloud/emrv2/_inputs.py +875 -21
- pulumi_alicloud/emrv2/cluster.py +47 -0
- pulumi_alicloud/emrv2/outputs.py +580 -14
- pulumi_alicloud/gwlb/__init__.py +1 -0
- pulumi_alicloud/gwlb/_inputs.py +147 -126
- pulumi_alicloud/gwlb/get_zones.py +173 -0
- pulumi_alicloud/gwlb/listener.py +50 -50
- pulumi_alicloud/gwlb/load_balancer.py +78 -71
- pulumi_alicloud/gwlb/outputs.py +139 -84
- pulumi_alicloud/gwlb/server_group.py +162 -113
- pulumi_alicloud/kvstore/audit_log_config.py +7 -7
- pulumi_alicloud/kvstore/backup_policy.py +9 -9
- pulumi_alicloud/kvstore/get_instance_classes.py +8 -8
- pulumi_alicloud/kvstore/get_instances.py +9 -7
- pulumi_alicloud/kvstore/instance.py +21 -21
- pulumi_alicloud/kvstore/outputs.py +6 -6
- pulumi_alicloud/nas/_inputs.py +148 -0
- pulumi_alicloud/nas/file_system.py +482 -222
- pulumi_alicloud/nas/outputs.py +109 -0
- pulumi_alicloud/pai/__init__.py +7 -0
- pulumi_alicloud/pai/_inputs.py +129 -0
- pulumi_alicloud/pai/outputs.py +83 -0
- pulumi_alicloud/pai/workspace_code_source.py +702 -0
- pulumi_alicloud/pai/workspace_dataset.py +1081 -0
- pulumi_alicloud/pai/workspace_datasetversion.py +818 -0
- pulumi_alicloud/pai/workspace_experiment.py +394 -0
- pulumi_alicloud/pai/workspace_run.py +344 -0
- pulumi_alicloud/pai/workspace_workspace.py +6 -6
- pulumi_alicloud/pulumi-plugin.json +1 -1
- {pulumi_alicloud-3.68.0a1732684713.dist-info → pulumi_alicloud-3.68.0a1733143327.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.68.0a1732684713.dist-info → pulumi_alicloud-3.68.0a1733143327.dist-info}/RECORD +45 -37
- {pulumi_alicloud-3.68.0a1732684713.dist-info → pulumi_alicloud-3.68.0a1733143327.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.68.0a1732684713.dist-info → pulumi_alicloud-3.68.0a1733143327.dist-info}/top_level.txt +0 -0
pulumi_alicloud/gwlb/outputs.py
CHANGED
|
@@ -21,6 +21,7 @@ __all__ = [
|
|
|
21
21
|
'ServerGroupConnectionDrainConfig',
|
|
22
22
|
'ServerGroupHealthCheckConfig',
|
|
23
23
|
'ServerGroupServer',
|
|
24
|
+
'GetZonesZoneResult',
|
|
24
25
|
]
|
|
25
26
|
|
|
26
27
|
@pulumi.output_type
|
|
@@ -51,9 +52,9 @@ class LoadBalancerZoneMapping(dict):
|
|
|
51
52
|
zone_id: str,
|
|
52
53
|
load_balancer_addresses: Optional[Sequence['outputs.LoadBalancerZoneMappingLoadBalancerAddress']] = None):
|
|
53
54
|
"""
|
|
54
|
-
:param str vswitch_id: The ID of the vSwitch
|
|
55
|
-
:param str zone_id: The ID
|
|
56
|
-
:param Sequence['LoadBalancerZoneMappingLoadBalancerAddressArgs'] load_balancer_addresses: The
|
|
55
|
+
:param str vswitch_id: The ID of the vSwitch in the zone. You can specify only one vSwitch (subnet) in each zone of a GWLB instance.
|
|
56
|
+
:param str zone_id: The zone ID. You can call the DescribeZones operation to query the most recent zone list.
|
|
57
|
+
:param Sequence['LoadBalancerZoneMappingLoadBalancerAddressArgs'] load_balancer_addresses: The information about the IP addresses used by the GWLB instance.
|
|
57
58
|
"""
|
|
58
59
|
pulumi.set(__self__, "vswitch_id", vswitch_id)
|
|
59
60
|
pulumi.set(__self__, "zone_id", zone_id)
|
|
@@ -64,7 +65,7 @@ class LoadBalancerZoneMapping(dict):
|
|
|
64
65
|
@pulumi.getter(name="vswitchId")
|
|
65
66
|
def vswitch_id(self) -> str:
|
|
66
67
|
"""
|
|
67
|
-
The ID of the vSwitch
|
|
68
|
+
The ID of the vSwitch in the zone. You can specify only one vSwitch (subnet) in each zone of a GWLB instance.
|
|
68
69
|
"""
|
|
69
70
|
return pulumi.get(self, "vswitch_id")
|
|
70
71
|
|
|
@@ -72,7 +73,7 @@ class LoadBalancerZoneMapping(dict):
|
|
|
72
73
|
@pulumi.getter(name="zoneId")
|
|
73
74
|
def zone_id(self) -> str:
|
|
74
75
|
"""
|
|
75
|
-
The ID
|
|
76
|
+
The zone ID. You can call the DescribeZones operation to query the most recent zone list.
|
|
76
77
|
"""
|
|
77
78
|
return pulumi.get(self, "zone_id")
|
|
78
79
|
|
|
@@ -80,7 +81,7 @@ class LoadBalancerZoneMapping(dict):
|
|
|
80
81
|
@pulumi.getter(name="loadBalancerAddresses")
|
|
81
82
|
def load_balancer_addresses(self) -> Optional[Sequence['outputs.LoadBalancerZoneMappingLoadBalancerAddress']]:
|
|
82
83
|
"""
|
|
83
|
-
The
|
|
84
|
+
The information about the IP addresses used by the GWLB instance.
|
|
84
85
|
"""
|
|
85
86
|
return pulumi.get(self, "load_balancer_addresses")
|
|
86
87
|
|
|
@@ -110,8 +111,8 @@ class LoadBalancerZoneMappingLoadBalancerAddress(dict):
|
|
|
110
111
|
eni_id: Optional[str] = None,
|
|
111
112
|
private_ipv4_address: Optional[str] = None):
|
|
112
113
|
"""
|
|
113
|
-
:param str eni_id: The ID of the ENI.
|
|
114
|
-
:param str private_ipv4_address:
|
|
114
|
+
:param str eni_id: The ID of the elastic network interface (ENI) used by the GWLB instance.
|
|
115
|
+
:param str private_ipv4_address: The private IPv4 address.
|
|
115
116
|
"""
|
|
116
117
|
if eni_id is not None:
|
|
117
118
|
pulumi.set(__self__, "eni_id", eni_id)
|
|
@@ -122,7 +123,7 @@ class LoadBalancerZoneMappingLoadBalancerAddress(dict):
|
|
|
122
123
|
@pulumi.getter(name="eniId")
|
|
123
124
|
def eni_id(self) -> Optional[str]:
|
|
124
125
|
"""
|
|
125
|
-
The ID of the ENI.
|
|
126
|
+
The ID of the elastic network interface (ENI) used by the GWLB instance.
|
|
126
127
|
"""
|
|
127
128
|
return pulumi.get(self, "eni_id")
|
|
128
129
|
|
|
@@ -130,7 +131,7 @@ class LoadBalancerZoneMappingLoadBalancerAddress(dict):
|
|
|
130
131
|
@pulumi.getter(name="privateIpv4Address")
|
|
131
132
|
def private_ipv4_address(self) -> Optional[str]:
|
|
132
133
|
"""
|
|
133
|
-
|
|
134
|
+
The private IPv4 address.
|
|
134
135
|
"""
|
|
135
136
|
return pulumi.get(self, "private_ipv4_address")
|
|
136
137
|
|
|
@@ -160,12 +161,14 @@ class ServerGroupConnectionDrainConfig(dict):
|
|
|
160
161
|
connection_drain_enabled: Optional[bool] = None,
|
|
161
162
|
connection_drain_timeout: Optional[int] = None):
|
|
162
163
|
"""
|
|
163
|
-
:param bool connection_drain_enabled:
|
|
164
|
-
:param int connection_drain_timeout:
|
|
164
|
+
:param bool connection_drain_enabled: Indicates whether connection draining is enabled. Valid values:
|
|
165
|
+
:param int connection_drain_timeout: The timeout period of connection draining.
|
|
165
166
|
|
|
166
|
-
Unit: seconds
|
|
167
|
+
Unit: seconds
|
|
167
168
|
|
|
168
|
-
|
|
169
|
+
Valid values: `1` to `3600`.
|
|
170
|
+
|
|
171
|
+
Default value: `300`.
|
|
169
172
|
"""
|
|
170
173
|
if connection_drain_enabled is not None:
|
|
171
174
|
pulumi.set(__self__, "connection_drain_enabled", connection_drain_enabled)
|
|
@@ -176,7 +179,7 @@ class ServerGroupConnectionDrainConfig(dict):
|
|
|
176
179
|
@pulumi.getter(name="connectionDrainEnabled")
|
|
177
180
|
def connection_drain_enabled(self) -> Optional[bool]:
|
|
178
181
|
"""
|
|
179
|
-
|
|
182
|
+
Indicates whether connection draining is enabled. Valid values:
|
|
180
183
|
"""
|
|
181
184
|
return pulumi.get(self, "connection_drain_enabled")
|
|
182
185
|
|
|
@@ -184,11 +187,13 @@ class ServerGroupConnectionDrainConfig(dict):
|
|
|
184
187
|
@pulumi.getter(name="connectionDrainTimeout")
|
|
185
188
|
def connection_drain_timeout(self) -> Optional[int]:
|
|
186
189
|
"""
|
|
187
|
-
|
|
190
|
+
The timeout period of connection draining.
|
|
191
|
+
|
|
192
|
+
Unit: seconds
|
|
188
193
|
|
|
189
|
-
|
|
194
|
+
Valid values: `1` to `3600`.
|
|
190
195
|
|
|
191
|
-
|
|
196
|
+
Default value: `300`.
|
|
192
197
|
"""
|
|
193
198
|
return pulumi.get(self, "connection_drain_timeout")
|
|
194
199
|
|
|
@@ -242,48 +247,49 @@ class ServerGroupHealthCheckConfig(dict):
|
|
|
242
247
|
healthy_threshold: Optional[int] = None,
|
|
243
248
|
unhealthy_threshold: Optional[int] = None):
|
|
244
249
|
"""
|
|
245
|
-
:param int health_check_connect_port: The
|
|
250
|
+
:param int health_check_connect_port: The backend server port that is used for health checks.
|
|
246
251
|
|
|
247
|
-
|
|
252
|
+
Valid values: `1` to `65535`.
|
|
248
253
|
|
|
249
254
|
Default value: `80`.
|
|
250
|
-
:param int health_check_connect_timeout: The maximum timeout period
|
|
255
|
+
:param int health_check_connect_timeout: The maximum timeout period of a health check response.
|
|
251
256
|
|
|
252
|
-
Unit: seconds
|
|
257
|
+
Unit: seconds
|
|
253
258
|
|
|
254
|
-
|
|
259
|
+
Valid values: `1` to `300`.
|
|
255
260
|
|
|
256
261
|
Default value: `5`.
|
|
257
|
-
:param str health_check_domain: The domain name
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
:param Sequence[str] health_check_http_codes:
|
|
262
|
-
:param int health_check_interval: The
|
|
262
|
+
:param str health_check_domain: The domain name that you want to use for health checks. Valid values:
|
|
263
|
+
|
|
264
|
+
* **$SERVER_IP** (default): the private IP address of a backend server.
|
|
265
|
+
:param bool health_check_enabled: Specifies whether to enable the health check feature. Valid values:
|
|
266
|
+
:param Sequence[str] health_check_http_codes: The HTTP status codes that the system returns for health checks.
|
|
267
|
+
:param int health_check_interval: The interval at which health checks are performed.
|
|
263
268
|
|
|
264
|
-
Unit: seconds
|
|
269
|
+
Unit: seconds
|
|
265
270
|
|
|
266
|
-
|
|
271
|
+
Valid values: `1` to `50`.
|
|
267
272
|
|
|
268
273
|
Default value: `10`.
|
|
269
|
-
:param str health_check_path:
|
|
274
|
+
:param str health_check_path: The URL that is used for health checks.
|
|
270
275
|
|
|
271
|
-
|
|
276
|
+
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: \\_ ; ~ ! ( ) \\* \\[ ] @ $ ^ : ' , + =
|
|
272
277
|
|
|
273
|
-
|
|
278
|
+
The URL must start with a forward slash (/).
|
|
274
279
|
|
|
275
|
-
> **NOTE:** This parameter takes effect only
|
|
276
|
-
:param str health_check_protocol:
|
|
277
|
-
- `TCP` (default): Sends a SYN handshake packet to check whether the server port is alive.
|
|
278
|
-
- `HTTP`: Sends a GET request to simulate the access behavior of the browser to check whether the server application is healthy.
|
|
279
|
-
:param int healthy_threshold: After the number of consecutive successful health checks, the health check status of the backend server is determined as successful from failed.
|
|
280
|
+
> **NOTE:** This parameter takes effect only if you set `HealthCheckProtocol` to `HTTP`.
|
|
281
|
+
:param str health_check_protocol: The protocol that is used for health checks. Valid values:
|
|
280
282
|
|
|
281
|
-
|
|
283
|
+
- `TCP`: TCP health checks send TCP SYN packets to a backend server to check whether the port of the backend server is reachable.
|
|
284
|
+
- `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.
|
|
285
|
+
:param int healthy_threshold: 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` to `success`.
|
|
286
|
+
|
|
287
|
+
Valid values: `2` to `10`.
|
|
282
288
|
|
|
283
289
|
Default value: `2`.
|
|
284
|
-
:param int unhealthy_threshold: The number of
|
|
290
|
+
:param int unhealthy_threshold: 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` to `fail`.
|
|
285
291
|
|
|
286
|
-
|
|
292
|
+
Valid values: `2` to `10`.
|
|
287
293
|
|
|
288
294
|
Default value: `2`.
|
|
289
295
|
"""
|
|
@@ -312,9 +318,9 @@ class ServerGroupHealthCheckConfig(dict):
|
|
|
312
318
|
@pulumi.getter(name="healthCheckConnectPort")
|
|
313
319
|
def health_check_connect_port(self) -> Optional[int]:
|
|
314
320
|
"""
|
|
315
|
-
The
|
|
321
|
+
The backend server port that is used for health checks.
|
|
316
322
|
|
|
317
|
-
|
|
323
|
+
Valid values: `1` to `65535`.
|
|
318
324
|
|
|
319
325
|
Default value: `80`.
|
|
320
326
|
"""
|
|
@@ -324,11 +330,11 @@ class ServerGroupHealthCheckConfig(dict):
|
|
|
324
330
|
@pulumi.getter(name="healthCheckConnectTimeout")
|
|
325
331
|
def health_check_connect_timeout(self) -> Optional[int]:
|
|
326
332
|
"""
|
|
327
|
-
The maximum timeout period
|
|
333
|
+
The maximum timeout period of a health check response.
|
|
328
334
|
|
|
329
|
-
Unit: seconds
|
|
335
|
+
Unit: seconds
|
|
330
336
|
|
|
331
|
-
|
|
337
|
+
Valid values: `1` to `300`.
|
|
332
338
|
|
|
333
339
|
Default value: `5`.
|
|
334
340
|
"""
|
|
@@ -338,8 +344,9 @@ class ServerGroupHealthCheckConfig(dict):
|
|
|
338
344
|
@pulumi.getter(name="healthCheckDomain")
|
|
339
345
|
def health_check_domain(self) -> Optional[str]:
|
|
340
346
|
"""
|
|
341
|
-
The domain name
|
|
342
|
-
|
|
347
|
+
The domain name that you want to use for health checks. Valid values:
|
|
348
|
+
|
|
349
|
+
* **$SERVER_IP** (default): the private IP address of a backend server.
|
|
343
350
|
"""
|
|
344
351
|
return pulumi.get(self, "health_check_domain")
|
|
345
352
|
|
|
@@ -347,8 +354,7 @@ class ServerGroupHealthCheckConfig(dict):
|
|
|
347
354
|
@pulumi.getter(name="healthCheckEnabled")
|
|
348
355
|
def health_check_enabled(self) -> Optional[bool]:
|
|
349
356
|
"""
|
|
350
|
-
|
|
351
|
-
- **true (default)**: enabled.
|
|
357
|
+
Specifies whether to enable the health check feature. Valid values:
|
|
352
358
|
"""
|
|
353
359
|
return pulumi.get(self, "health_check_enabled")
|
|
354
360
|
|
|
@@ -356,7 +362,7 @@ class ServerGroupHealthCheckConfig(dict):
|
|
|
356
362
|
@pulumi.getter(name="healthCheckHttpCodes")
|
|
357
363
|
def health_check_http_codes(self) -> Optional[Sequence[str]]:
|
|
358
364
|
"""
|
|
359
|
-
|
|
365
|
+
The HTTP status codes that the system returns for health checks.
|
|
360
366
|
"""
|
|
361
367
|
return pulumi.get(self, "health_check_http_codes")
|
|
362
368
|
|
|
@@ -364,11 +370,11 @@ class ServerGroupHealthCheckConfig(dict):
|
|
|
364
370
|
@pulumi.getter(name="healthCheckInterval")
|
|
365
371
|
def health_check_interval(self) -> Optional[int]:
|
|
366
372
|
"""
|
|
367
|
-
The
|
|
373
|
+
The interval at which health checks are performed.
|
|
368
374
|
|
|
369
|
-
Unit: seconds
|
|
375
|
+
Unit: seconds
|
|
370
376
|
|
|
371
|
-
|
|
377
|
+
Valid values: `1` to `50`.
|
|
372
378
|
|
|
373
379
|
Default value: `10`.
|
|
374
380
|
"""
|
|
@@ -378,13 +384,13 @@ class ServerGroupHealthCheckConfig(dict):
|
|
|
378
384
|
@pulumi.getter(name="healthCheckPath")
|
|
379
385
|
def health_check_path(self) -> Optional[str]:
|
|
380
386
|
"""
|
|
381
|
-
|
|
387
|
+
The URL that is used for health checks.
|
|
382
388
|
|
|
383
|
-
|
|
389
|
+
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: \\_ ; ~ ! ( ) \\* \\[ ] @ $ ^ : ' , + =
|
|
384
390
|
|
|
385
|
-
|
|
391
|
+
The URL must start with a forward slash (/).
|
|
386
392
|
|
|
387
|
-
> **NOTE:** This parameter takes effect only
|
|
393
|
+
> **NOTE:** This parameter takes effect only if you set `HealthCheckProtocol` to `HTTP`.
|
|
388
394
|
"""
|
|
389
395
|
return pulumi.get(self, "health_check_path")
|
|
390
396
|
|
|
@@ -392,9 +398,10 @@ class ServerGroupHealthCheckConfig(dict):
|
|
|
392
398
|
@pulumi.getter(name="healthCheckProtocol")
|
|
393
399
|
def health_check_protocol(self) -> Optional[str]:
|
|
394
400
|
"""
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
- `
|
|
401
|
+
The protocol that is used for health checks. Valid values:
|
|
402
|
+
|
|
403
|
+
- `TCP`: TCP health checks send TCP SYN packets to a backend server to check whether the port of the backend server is reachable.
|
|
404
|
+
- `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.
|
|
398
405
|
"""
|
|
399
406
|
return pulumi.get(self, "health_check_protocol")
|
|
400
407
|
|
|
@@ -402,9 +409,9 @@ class ServerGroupHealthCheckConfig(dict):
|
|
|
402
409
|
@pulumi.getter(name="healthyThreshold")
|
|
403
410
|
def healthy_threshold(self) -> Optional[int]:
|
|
404
411
|
"""
|
|
405
|
-
|
|
412
|
+
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` to `success`.
|
|
406
413
|
|
|
407
|
-
|
|
414
|
+
Valid values: `2` to `10`.
|
|
408
415
|
|
|
409
416
|
Default value: `2`.
|
|
410
417
|
"""
|
|
@@ -414,9 +421,9 @@ class ServerGroupHealthCheckConfig(dict):
|
|
|
414
421
|
@pulumi.getter(name="unhealthyThreshold")
|
|
415
422
|
def unhealthy_threshold(self) -> Optional[int]:
|
|
416
423
|
"""
|
|
417
|
-
The number of
|
|
424
|
+
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` to `fail`.
|
|
418
425
|
|
|
419
|
-
|
|
426
|
+
Valid values: `2` to `10`.
|
|
420
427
|
|
|
421
428
|
Default value: `2`.
|
|
422
429
|
"""
|
|
@@ -456,16 +463,20 @@ class ServerGroupServer(dict):
|
|
|
456
463
|
server_ip: Optional[str] = None,
|
|
457
464
|
status: Optional[str] = None):
|
|
458
465
|
"""
|
|
459
|
-
:param str server_id: The
|
|
460
|
-
|
|
461
|
-
- `Ecs
|
|
462
|
-
- `
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
+
:param str server_id: The backend server ID.
|
|
467
|
+
|
|
468
|
+
- If the server group is of the `Instance` type, set this parameter to the IDs of servers of the `Ecs`, `Eni`, or `Eci` type.
|
|
469
|
+
- If the server group is of the `Ip` type, set ServerId to IP addresses.
|
|
470
|
+
:param str server_type: The type of the backend server. Valid values:
|
|
471
|
+
|
|
472
|
+
- `Ecs`: Elastic Compute Service (ECS) instance
|
|
473
|
+
- `Eni`: elastic network interface (ENI)
|
|
474
|
+
- `Eci`: elastic container instance
|
|
475
|
+
- `Ip`: IP address
|
|
476
|
+
:param int port: (Optional, Computed, Int) The port that is used by the backend server.
|
|
466
477
|
:param str server_group_id: The server group ID.
|
|
467
|
-
:param str server_ip:
|
|
468
|
-
:param str status:
|
|
478
|
+
:param str server_ip: The IP address of the backend server.
|
|
479
|
+
:param str status: Indicates the status of the backend server.
|
|
469
480
|
"""
|
|
470
481
|
pulumi.set(__self__, "server_id", server_id)
|
|
471
482
|
pulumi.set(__self__, "server_type", server_type)
|
|
@@ -482,7 +493,10 @@ class ServerGroupServer(dict):
|
|
|
482
493
|
@pulumi.getter(name="serverId")
|
|
483
494
|
def server_id(self) -> str:
|
|
484
495
|
"""
|
|
485
|
-
The
|
|
496
|
+
The backend server ID.
|
|
497
|
+
|
|
498
|
+
- If the server group is of the `Instance` type, set this parameter to the IDs of servers of the `Ecs`, `Eni`, or `Eci` type.
|
|
499
|
+
- If the server group is of the `Ip` type, set ServerId to IP addresses.
|
|
486
500
|
"""
|
|
487
501
|
return pulumi.get(self, "server_id")
|
|
488
502
|
|
|
@@ -490,11 +504,12 @@ class ServerGroupServer(dict):
|
|
|
490
504
|
@pulumi.getter(name="serverType")
|
|
491
505
|
def server_type(self) -> str:
|
|
492
506
|
"""
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
- `
|
|
496
|
-
- `
|
|
497
|
-
- `
|
|
507
|
+
The type of the backend server. Valid values:
|
|
508
|
+
|
|
509
|
+
- `Ecs`: Elastic Compute Service (ECS) instance
|
|
510
|
+
- `Eni`: elastic network interface (ENI)
|
|
511
|
+
- `Eci`: elastic container instance
|
|
512
|
+
- `Ip`: IP address
|
|
498
513
|
"""
|
|
499
514
|
return pulumi.get(self, "server_type")
|
|
500
515
|
|
|
@@ -502,7 +517,7 @@ class ServerGroupServer(dict):
|
|
|
502
517
|
@pulumi.getter
|
|
503
518
|
def port(self) -> Optional[int]:
|
|
504
519
|
"""
|
|
505
|
-
The port used by the backend server.
|
|
520
|
+
(Optional, Computed, Int) The port that is used by the backend server.
|
|
506
521
|
"""
|
|
507
522
|
return pulumi.get(self, "port")
|
|
508
523
|
|
|
@@ -518,7 +533,7 @@ class ServerGroupServer(dict):
|
|
|
518
533
|
@pulumi.getter(name="serverIp")
|
|
519
534
|
def server_ip(self) -> Optional[str]:
|
|
520
535
|
"""
|
|
521
|
-
|
|
536
|
+
The IP address of the backend server.
|
|
522
537
|
"""
|
|
523
538
|
return pulumi.get(self, "server_ip")
|
|
524
539
|
|
|
@@ -526,8 +541,48 @@ class ServerGroupServer(dict):
|
|
|
526
541
|
@pulumi.getter
|
|
527
542
|
def status(self) -> Optional[str]:
|
|
528
543
|
"""
|
|
529
|
-
|
|
544
|
+
Indicates the status of the backend server.
|
|
530
545
|
"""
|
|
531
546
|
return pulumi.get(self, "status")
|
|
532
547
|
|
|
533
548
|
|
|
549
|
+
@pulumi.output_type
|
|
550
|
+
class GetZonesZoneResult(dict):
|
|
551
|
+
def __init__(__self__, *,
|
|
552
|
+
id: str,
|
|
553
|
+
local_name: str,
|
|
554
|
+
zone_id: str):
|
|
555
|
+
"""
|
|
556
|
+
:param str id: The zone ID.
|
|
557
|
+
:param str local_name: The zone name.
|
|
558
|
+
:param str zone_id: The zone ID.
|
|
559
|
+
"""
|
|
560
|
+
pulumi.set(__self__, "id", id)
|
|
561
|
+
pulumi.set(__self__, "local_name", local_name)
|
|
562
|
+
pulumi.set(__self__, "zone_id", zone_id)
|
|
563
|
+
|
|
564
|
+
@property
|
|
565
|
+
@pulumi.getter
|
|
566
|
+
def id(self) -> str:
|
|
567
|
+
"""
|
|
568
|
+
The zone ID.
|
|
569
|
+
"""
|
|
570
|
+
return pulumi.get(self, "id")
|
|
571
|
+
|
|
572
|
+
@property
|
|
573
|
+
@pulumi.getter(name="localName")
|
|
574
|
+
def local_name(self) -> str:
|
|
575
|
+
"""
|
|
576
|
+
The zone name.
|
|
577
|
+
"""
|
|
578
|
+
return pulumi.get(self, "local_name")
|
|
579
|
+
|
|
580
|
+
@property
|
|
581
|
+
@pulumi.getter(name="zoneId")
|
|
582
|
+
def zone_id(self) -> str:
|
|
583
|
+
"""
|
|
584
|
+
The zone ID.
|
|
585
|
+
"""
|
|
586
|
+
return pulumi.get(self, "zone_id")
|
|
587
|
+
|
|
588
|
+
|