pulumi-alicloud 3.68.0__py3-none-any.whl → 3.68.0a1732598392__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.

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