pulumi-alicloud 3.74.0a1737523155__py3-none-any.whl → 3.74.0a1737989015__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 (56) hide show
  1. pulumi_alicloud/__init__.py +80 -0
  2. pulumi_alicloud/alb/__init__.py +1 -0
  3. pulumi_alicloud/alb/_inputs.py +907 -244
  4. pulumi_alicloud/alb/get_server_groups.py +55 -25
  5. pulumi_alicloud/alb/listener.py +269 -174
  6. pulumi_alicloud/alb/load_balancer.py +239 -118
  7. pulumi_alicloud/alb/load_balancer_zone_shifted_attachment.py +303 -0
  8. pulumi_alicloud/alb/outputs.py +716 -218
  9. pulumi_alicloud/alb/server_group.py +532 -122
  10. pulumi_alicloud/cen/_inputs.py +34 -0
  11. pulumi_alicloud/cen/outputs.py +37 -0
  12. pulumi_alicloud/cen/transit_router_multicast_domain.py +123 -36
  13. pulumi_alicloud/cs/_inputs.py +349 -1
  14. pulumi_alicloud/cs/kubernetes.py +15 -15
  15. pulumi_alicloud/cs/node_pool.py +77 -2
  16. pulumi_alicloud/cs/outputs.py +265 -1
  17. pulumi_alicloud/dfs/file_system.py +62 -23
  18. pulumi_alicloud/dfs/mount_point.py +48 -22
  19. pulumi_alicloud/esa/__init__.py +3 -0
  20. pulumi_alicloud/esa/_inputs.py +81 -0
  21. pulumi_alicloud/esa/http_request_header_modification_rule.py +531 -0
  22. pulumi_alicloud/esa/list.py +361 -0
  23. pulumi_alicloud/esa/outputs.py +48 -0
  24. pulumi_alicloud/esa/page.py +376 -0
  25. pulumi_alicloud/esa/rate_plan_instance.py +63 -7
  26. pulumi_alicloud/ess/get_scaling_groups.py +64 -10
  27. pulumi_alicloud/ess/get_scaling_rules.py +74 -10
  28. pulumi_alicloud/ess/outputs.py +357 -17
  29. pulumi_alicloud/eventbridge/get_service.py +2 -6
  30. pulumi_alicloud/fc/_inputs.py +75 -75
  31. pulumi_alicloud/fc/outputs.py +50 -50
  32. pulumi_alicloud/fc/v3_function.py +53 -6
  33. pulumi_alicloud/kms/__init__.py +1 -0
  34. pulumi_alicloud/kms/get_instances.py +160 -0
  35. pulumi_alicloud/kms/instance.py +0 -60
  36. pulumi_alicloud/kms/outputs.py +19 -0
  37. pulumi_alicloud/maxcompute/__init__.py +5 -0
  38. pulumi_alicloud/maxcompute/_inputs.py +615 -42
  39. pulumi_alicloud/maxcompute/outputs.py +486 -28
  40. pulumi_alicloud/maxcompute/project.py +63 -31
  41. pulumi_alicloud/maxcompute/quota_plan.py +412 -0
  42. pulumi_alicloud/maxcompute/quota_schedule.py +260 -0
  43. pulumi_alicloud/maxcompute/role.py +423 -0
  44. pulumi_alicloud/maxcompute/role_user_attachment.py +368 -0
  45. pulumi_alicloud/maxcompute/tunnel_quota_timer.py +287 -0
  46. pulumi_alicloud/pulumi-plugin.json +1 -1
  47. pulumi_alicloud/rds/instance.py +68 -0
  48. pulumi_alicloud/vpc/__init__.py +1 -0
  49. pulumi_alicloud/vpc/ipam_ipam_pool.py +47 -0
  50. pulumi_alicloud/vpc/ipam_ipam_scope.py +47 -0
  51. pulumi_alicloud/vpc/ipam_service.py +144 -0
  52. pulumi_alicloud/vpc/ipv4_cidr_block.py +162 -51
  53. {pulumi_alicloud-3.74.0a1737523155.dist-info → pulumi_alicloud-3.74.0a1737989015.dist-info}/METADATA +1 -1
  54. {pulumi_alicloud-3.74.0a1737523155.dist-info → pulumi_alicloud-3.74.0a1737989015.dist-info}/RECORD +56 -45
  55. {pulumi_alicloud-3.74.0a1737523155.dist-info → pulumi_alicloud-3.74.0a1737989015.dist-info}/WHEEL +0 -0
  56. {pulumi_alicloud-3.74.0a1737523155.dist-info → pulumi_alicloud-3.74.0a1737989015.dist-info}/top_level.txt +0 -0
@@ -21,6 +21,7 @@ __all__ = [
21
21
  'ListenerAccessLogTracingConfig',
22
22
  'ListenerAclConfig',
23
23
  'ListenerAclConfigAclRelation',
24
+ 'ListenerCaCertificate',
24
25
  'ListenerCertificates',
25
26
  'ListenerDefaultAction',
26
27
  'ListenerDefaultActionForwardGroupConfig',
@@ -28,6 +29,7 @@ __all__ = [
28
29
  'ListenerQuicConfig',
29
30
  'ListenerXForwardedForConfig',
30
31
  'LoadBalancerAccessLogConfig',
32
+ 'LoadBalancerDeletionProtectionConfig',
31
33
  'LoadBalancerLoadBalancerBillingConfig',
32
34
  'LoadBalancerModificationProtectionConfig',
33
35
  'LoadBalancerZoneMapping',
@@ -58,9 +60,12 @@ __all__ = [
58
60
  'RuleRuleConditionResponseHeaderConfig',
59
61
  'RuleRuleConditionResponseStatusCodeConfig',
60
62
  'RuleRuleConditionSourceIpConfig',
63
+ 'ServerGroupConnectionDrainConfig',
61
64
  'ServerGroupHealthCheckConfig',
62
65
  'ServerGroupServer',
66
+ 'ServerGroupSlowStartConfig',
63
67
  'ServerGroupStickySessionConfig',
68
+ 'ServerGroupUchConfig',
64
69
  'GetAclsAclResult',
65
70
  'GetAclsAclAclEntryResult',
66
71
  'GetAscriptsAscriptResult',
@@ -238,22 +243,23 @@ class ListenerAccessLogTracingConfig(dict):
238
243
  return super().get(key, default)
239
244
 
240
245
  def __init__(__self__, *,
241
- tracing_enabled: Optional[bool] = None,
246
+ tracing_enabled: bool,
242
247
  tracing_sample: Optional[int] = None,
243
248
  tracing_type: Optional[str] = None):
244
249
  """
245
- :param bool tracing_enabled: Xtrace Function. Value: `True` Or `False` . Default Value: `False`.
250
+ :param bool tracing_enabled: Xtrace Function.
251
+
252
+ Value: True **** Or False * *.
246
253
 
247
- > **NOTE:** Only Instances outside the Security Group to Access the Log Switch `accesslogenabled` Open, in Order to Set This Parameter to the `True`.
248
- :param int tracing_sample: Xtrace Sampling Rate. Value: `1` to `10000`.
254
+ Default Value: False * *.
249
255
 
250
- > **NOTE:** This attribute is valid when `tracingenabled` is `true`.
251
- :param str tracing_type: Xtrace Type Value Is `Zipkin`.
256
+ > **NOTE:** Only Instances outside the Security Group to Access the Log Switch `accesslogenabled` Open, in Order to Set This Parameter to the **True * *.
257
+ :param int tracing_sample: Xtrace Sampling Rate. Value: 1~10000 **.> `tracingenabled` **True When Effective.
258
+ :param str tracing_type: Xtrace Type Value Is **Zipkin * *.
252
259
 
253
- > **NOTE:** This attribute is valid when `tracingenabled` is `true`.
260
+ > **NOTE:** `tracingenabled` **True When Effective.
254
261
  """
255
- if tracing_enabled is not None:
256
- pulumi.set(__self__, "tracing_enabled", tracing_enabled)
262
+ pulumi.set(__self__, "tracing_enabled", tracing_enabled)
257
263
  if tracing_sample is not None:
258
264
  pulumi.set(__self__, "tracing_sample", tracing_sample)
259
265
  if tracing_type is not None:
@@ -261,11 +267,15 @@ class ListenerAccessLogTracingConfig(dict):
261
267
 
262
268
  @property
263
269
  @pulumi.getter(name="tracingEnabled")
264
- def tracing_enabled(self) -> Optional[bool]:
270
+ def tracing_enabled(self) -> bool:
265
271
  """
266
- Xtrace Function. Value: `True` Or `False` . Default Value: `False`.
272
+ Xtrace Function.
273
+
274
+ Value: True **** Or False * *.
267
275
 
268
- > **NOTE:** Only Instances outside the Security Group to Access the Log Switch `accesslogenabled` Open, in Order to Set This Parameter to the `True`.
276
+ Default Value: False * *.
277
+
278
+ > **NOTE:** Only Instances outside the Security Group to Access the Log Switch `accesslogenabled` Open, in Order to Set This Parameter to the **True * *.
269
279
  """
270
280
  return pulumi.get(self, "tracing_enabled")
271
281
 
@@ -273,9 +283,7 @@ class ListenerAccessLogTracingConfig(dict):
273
283
  @pulumi.getter(name="tracingSample")
274
284
  def tracing_sample(self) -> Optional[int]:
275
285
  """
276
- Xtrace Sampling Rate. Value: `1` to `10000`.
277
-
278
- > **NOTE:** This attribute is valid when `tracingenabled` is `true`.
286
+ Xtrace Sampling Rate. Value: 1~10000 **.> `tracingenabled` **True When Effective.
279
287
  """
280
288
  return pulumi.get(self, "tracing_sample")
281
289
 
@@ -283,9 +291,9 @@ class ListenerAccessLogTracingConfig(dict):
283
291
  @pulumi.getter(name="tracingType")
284
292
  def tracing_type(self) -> Optional[str]:
285
293
  """
286
- Xtrace Type Value Is `Zipkin`.
294
+ Xtrace Type Value Is **Zipkin * *.
287
295
 
288
- > **NOTE:** This attribute is valid when `tracingenabled` is `true`.
296
+ > **NOTE:** `tracingenabled` **True When Effective.
289
297
  """
290
298
  return pulumi.get(self, "tracing_type")
291
299
 
@@ -364,7 +372,7 @@ class ListenerAclConfigAclRelation(dict):
364
372
  status: Optional[str] = None):
365
373
  """
366
374
  :param str acl_id: Snooping Binding of the Access Policy Group ID List.
367
- :param str status: The state of the listener. Valid Values: `Running` Or `Stopped`. Valid values: `Running`: The listener is running. `Stopped`: The listener is stopped.
375
+ :param str status: The Current IP Address of the Listened State
368
376
  """
369
377
  if acl_id is not None:
370
378
  pulumi.set(__self__, "acl_id", acl_id)
@@ -383,11 +391,47 @@ class ListenerAclConfigAclRelation(dict):
383
391
  @pulumi.getter
384
392
  def status(self) -> Optional[str]:
385
393
  """
386
- The state of the listener. Valid Values: `Running` Or `Stopped`. Valid values: `Running`: The listener is running. `Stopped`: The listener is stopped.
394
+ The Current IP Address of the Listened State
387
395
  """
388
396
  return pulumi.get(self, "status")
389
397
 
390
398
 
399
+ @pulumi.output_type
400
+ class ListenerCaCertificate(dict):
401
+ @staticmethod
402
+ def __key_warning(key: str):
403
+ suggest = None
404
+ if key == "certificateId":
405
+ suggest = "certificate_id"
406
+
407
+ if suggest:
408
+ pulumi.log.warn(f"Key '{key}' not found in ListenerCaCertificate. Access the value via the '{suggest}' property getter instead.")
409
+
410
+ def __getitem__(self, key: str) -> Any:
411
+ ListenerCaCertificate.__key_warning(key)
412
+ return super().__getitem__(key)
413
+
414
+ def get(self, key: str, default = None) -> Any:
415
+ ListenerCaCertificate.__key_warning(key)
416
+ return super().get(key, default)
417
+
418
+ def __init__(__self__, *,
419
+ certificate_id: Optional[str] = None):
420
+ """
421
+ :param str certificate_id: The ID of the certificate. Currently, only server certificates are supported.
422
+ """
423
+ if certificate_id is not None:
424
+ pulumi.set(__self__, "certificate_id", certificate_id)
425
+
426
+ @property
427
+ @pulumi.getter(name="certificateId")
428
+ def certificate_id(self) -> Optional[str]:
429
+ """
430
+ The ID of the certificate. Currently, only server certificates are supported.
431
+ """
432
+ return pulumi.get(self, "certificate_id")
433
+
434
+
391
435
  @pulumi.output_type
392
436
  class ListenerCertificates(dict):
393
437
  @staticmethod
@@ -410,7 +454,7 @@ class ListenerCertificates(dict):
410
454
  def __init__(__self__, *,
411
455
  certificate_id: Optional[str] = None):
412
456
  """
413
- :param str certificate_id: The ID of the Certificate.
457
+ :param str certificate_id: The ID of the certificate. Currently, only server certificates are supported.
414
458
  """
415
459
  if certificate_id is not None:
416
460
  pulumi.set(__self__, "certificate_id", certificate_id)
@@ -419,7 +463,7 @@ class ListenerCertificates(dict):
419
463
  @pulumi.getter(name="certificateId")
420
464
  def certificate_id(self) -> Optional[str]:
421
465
  """
422
- The ID of the Certificate.
466
+ The ID of the certificate. Currently, only server certificates are supported.
423
467
  """
424
468
  return pulumi.get(self, "certificate_id")
425
469
 
@@ -444,30 +488,31 @@ class ListenerDefaultAction(dict):
444
488
  return super().get(key, default)
445
489
 
446
490
  def __init__(__self__, *,
447
- forward_group_config: 'outputs.ListenerDefaultActionForwardGroupConfig',
448
- type: str):
491
+ type: str,
492
+ forward_group_config: Optional['outputs.ListenerDefaultActionForwardGroupConfig'] = None):
449
493
  """
450
- :param 'ListenerDefaultActionForwardGroupConfigArgs' forward_group_config: The configurations of the actions. This parameter is required if Type is set to FowardGroup. See `forward_group_config` below for details.
451
- :param str type: Action Type.
494
+ :param str type: Action Type
495
+ :param 'ListenerDefaultActionForwardGroupConfigArgs' forward_group_config: Forwarding Action Configurations See `forward_group_config` below.
452
496
  """
453
- pulumi.set(__self__, "forward_group_config", forward_group_config)
454
497
  pulumi.set(__self__, "type", type)
498
+ if forward_group_config is not None:
499
+ pulumi.set(__self__, "forward_group_config", forward_group_config)
455
500
 
456
501
  @property
457
- @pulumi.getter(name="forwardGroupConfig")
458
- def forward_group_config(self) -> 'outputs.ListenerDefaultActionForwardGroupConfig':
502
+ @pulumi.getter
503
+ def type(self) -> str:
459
504
  """
460
- The configurations of the actions. This parameter is required if Type is set to FowardGroup. See `forward_group_config` below for details.
505
+ Action Type
461
506
  """
462
- return pulumi.get(self, "forward_group_config")
507
+ return pulumi.get(self, "type")
463
508
 
464
509
  @property
465
- @pulumi.getter
466
- def type(self) -> str:
510
+ @pulumi.getter(name="forwardGroupConfig")
511
+ def forward_group_config(self) -> Optional['outputs.ListenerDefaultActionForwardGroupConfig']:
467
512
  """
468
- Action Type.
513
+ Forwarding Action Configurations See `forward_group_config` below.
469
514
  """
470
- return pulumi.get(self, "type")
515
+ return pulumi.get(self, "forward_group_config")
471
516
 
472
517
 
473
518
  @pulumi.output_type
@@ -492,7 +537,7 @@ class ListenerDefaultActionForwardGroupConfig(dict):
492
537
  def __init__(__self__, *,
493
538
  server_group_tuples: Sequence['outputs.ListenerDefaultActionForwardGroupConfigServerGroupTuple']):
494
539
  """
495
- :param Sequence['ListenerDefaultActionForwardGroupConfigServerGroupTupleArgs'] server_group_tuples: The destination server group to which requests are forwarded. See `server_group_tuples` below for details.
540
+ :param Sequence['ListenerDefaultActionForwardGroupConfigServerGroupTupleArgs'] server_group_tuples: The Forwarding Destination Server Group See `server_group_tuples` below.
496
541
  """
497
542
  pulumi.set(__self__, "server_group_tuples", server_group_tuples)
498
543
 
@@ -500,7 +545,7 @@ class ListenerDefaultActionForwardGroupConfig(dict):
500
545
  @pulumi.getter(name="serverGroupTuples")
501
546
  def server_group_tuples(self) -> Sequence['outputs.ListenerDefaultActionForwardGroupConfigServerGroupTuple']:
502
547
  """
503
- The destination server group to which requests are forwarded. See `server_group_tuples` below for details.
548
+ The Forwarding Destination Server Group See `server_group_tuples` below.
504
549
  """
505
550
  return pulumi.get(self, "server_group_tuples")
506
551
 
@@ -527,7 +572,7 @@ class ListenerDefaultActionForwardGroupConfigServerGroupTuple(dict):
527
572
  def __init__(__self__, *,
528
573
  server_group_id: str):
529
574
  """
530
- :param str server_group_id: The ID of the destination server group to which requests are forwarded.
575
+ :param str server_group_id: Forwarded to the Destination Server Group ID
531
576
  """
532
577
  pulumi.set(__self__, "server_group_id", server_group_id)
533
578
 
@@ -535,7 +580,7 @@ class ListenerDefaultActionForwardGroupConfigServerGroupTuple(dict):
535
580
  @pulumi.getter(name="serverGroupId")
536
581
  def server_group_id(self) -> str:
537
582
  """
538
- The ID of the destination server group to which requests are forwarded.
583
+ Forwarded to the Destination Server Group ID
539
584
  """
540
585
  return pulumi.get(self, "server_group_id")
541
586
 
@@ -566,9 +611,7 @@ class ListenerQuicConfig(dict):
566
611
  quic_upgrade_enabled: Optional[bool] = None):
567
612
  """
568
613
  :param str quic_listener_id: There Is a Need to Correlate the QuIC Listener ID. The Https Listener, in Effect at the Time. quicupgradeenabled True When Required.
569
- :param bool quic_upgrade_enabled: Indicates Whether to Enable the QuIC Upgrade.
570
-
571
- > **NOTE:** The attribute is valid when the attribute `ListenerProtocol` is `HTTPS`.
614
+ :param bool quic_upgrade_enabled: Indicates Whether to Enable the QuIC Upgrade
572
615
  """
573
616
  if quic_listener_id is not None:
574
617
  pulumi.set(__self__, "quic_listener_id", quic_listener_id)
@@ -587,9 +630,7 @@ class ListenerQuicConfig(dict):
587
630
  @pulumi.getter(name="quicUpgradeEnabled")
588
631
  def quic_upgrade_enabled(self) -> Optional[bool]:
589
632
  """
590
- Indicates Whether to Enable the QuIC Upgrade.
591
-
592
- > **NOTE:** The attribute is valid when the attribute `ListenerProtocol` is `HTTPS`.
633
+ Indicates Whether to Enable the QuIC Upgrade
593
634
  """
594
635
  return pulumi.get(self, "quic_upgrade_enabled")
595
636
 
@@ -623,6 +664,10 @@ class ListenerXForwardedForConfig(dict):
623
664
  suggest = "x_forwarded_for_client_src_port_enabled"
624
665
  elif key == "xForwardedForEnabled":
625
666
  suggest = "x_forwarded_for_enabled"
667
+ elif key == "xForwardedForHostEnabled":
668
+ suggest = "x_forwarded_for_host_enabled"
669
+ elif key == "xForwardedForProcessingMode":
670
+ suggest = "x_forwarded_for_processing_mode"
626
671
  elif key == "xForwardedForProtoEnabled":
627
672
  suggest = "x_forwarded_for_proto_enabled"
628
673
  elif key == "xForwardedForSlbIdEnabled":
@@ -654,25 +699,53 @@ class ListenerXForwardedForConfig(dict):
654
699
  x_forwarded_for_client_source_ips_trusted: Optional[str] = None,
655
700
  x_forwarded_for_client_src_port_enabled: Optional[bool] = None,
656
701
  x_forwarded_for_enabled: Optional[bool] = None,
702
+ x_forwarded_for_host_enabled: Optional[bool] = None,
703
+ x_forwarded_for_processing_mode: Optional[str] = None,
657
704
  x_forwarded_for_proto_enabled: Optional[bool] = None,
658
705
  x_forwarded_for_slb_id_enabled: Optional[bool] = None,
659
706
  x_forwarded_for_slb_port_enabled: Optional[bool] = None):
660
707
  """
661
- :param str x_forwarded_for_client_cert_client_verify_alias: The Custom Header Field Names Only When `x_forwarded_for_client_cert_client_verify_enabled` Has a Value of True, this Value Will Not Take Effect until.The name must be 1 to 40 characters in length, and can contain letters, hyphens (-), underscores (_), and digits.
662
- :param bool x_forwarded_for_client_cert_client_verify_enabled: Indicates Whether the `X-Forwarded-Clientcert-clientverify` Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate to Verify the Results.
663
- :param str x_forwarded_for_client_cert_finger_print_alias: The Custom Header Field Names Only When `x_forwarded_for_client_certfingerprint_enabled`, Which Evaluates to True When the Entry into Force of.The name must be 1 to 40 characters in length, and can contain letters, hyphens (-), underscores (_), and digits.
664
- :param bool x_forwarded_for_client_cert_finger_print_enabled: Indicates Whether the `X-Forwarded-client_cert-fingerprint` Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate Fingerprint Value.
665
- :param str x_forwarded_for_client_cert_issuer_dn_alias: The Custom Header Field Names Only When `x_forwarded_for_client_cert_issuer_dn_enabled`, Which Evaluates to True When the Entry into Force of.
666
- :param bool x_forwarded_for_client_cert_issuer_dn_enabled: Indicates Whether the `X-Forwarded-Clientcert-issuerdn` Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate after the Manifests Are Signed, the Publisher Information.
667
- :param str x_forwarded_for_client_cert_subject_dn_alias: The name of the custom header. This parameter is valid only if `x_forwarded_for_client_certsubjectdn_enabled` is set to true. The name must be 1 to 40 characters in length, and can contain letters, hyphens (-), underscores (_), and digits.
668
- :param bool x_forwarded_for_client_cert_subject_dn_enabled: Specifies whether to use the `X-Forwarded-client_cert-subjectdn` header field to obtain information about the owner of the ALB client certificate. Valid values: true and false. Default value: false.
669
- :param bool x_forwarded_for_client_source_ips_enabled: Whether to use the X-Forwarded-Client-Ip header to obtain the source IP address of the server load balancer instance. Value: true, false. Note HTTP, HTTPS, and QUIC listeners support this parameter. The function corresponding to this parameter is not open by default. Please contact the account manager if you need to use it.
670
- :param str x_forwarded_for_client_source_ips_trusted: Specify the trusted proxy IP. Application-oriented load balancing ALB will traverse the X-Forwarded-For from back to front, and select the first IP that is not in the trusted IP list as the real client IP, which will be used for the source IP speed limit.
708
+ :param str x_forwarded_for_client_cert_client_verify_alias: The Custom Header Field Names Only When xforwardedforclientcertclientverifyenabled Has a Value of True, this Value Will Not Take Effect until.
709
+ :param bool x_forwarded_for_client_cert_client_verify_enabled: Indicates Whether the X-Forwarded-Clientcert-clientverify Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate to Verify the Results.
710
+ :param str x_forwarded_for_client_cert_finger_print_alias: The Custom Header Field Names Only When xforwardedforclientcertfingerprintenabled, Which Evaluates to True When the Entry into Force of.
711
+ :param bool x_forwarded_for_client_cert_finger_print_enabled: Indicates Whether the X-Forwarded-Clientcert-fingerprint Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate Fingerprint Value.
712
+ :param str x_forwarded_for_client_cert_issuer_dn_alias: The Custom Header Field Names Only When xforwardedforclientcertsubjectdnenabled, Which Evaluates to True When the Entry into Force of.
713
+ :param bool x_forwarded_for_client_cert_issuer_dn_enabled: Indicates Whether the X-Forwarded-Clientcert-issuerdn Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate after the Manifests Are Signed, the Publisher Information.
714
+ :param str x_forwarded_for_client_cert_subject_dn_alias: The Custom Header Field Name,
715
+ :param bool x_forwarded_for_client_cert_subject_dn_enabled: Indicates Whether the X-Forwarded-Clientcert-subjectdn Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate Owner Information.
716
+ :param bool x_forwarded_for_client_source_ips_enabled: Whether to use the X-Forwarded-Client-Ip header to obtain the source IP address of the server load balancer instance. Value:
717
+
718
+ true: Yes.
719
+
720
+ false (default): No.
721
+
722
+ Note HTTP, HTTPS, and QUIC listeners support this parameter. The function corresponding to this parameter is not open by default. Please contact the account manager if you need to use it.
723
+ :param str x_forwarded_for_client_source_ips_trusted: Specify the trusted proxy IP.
724
+
725
+ Application-oriented load balancing ALB will traverse the X-Forwarded-For from back to front, and select the first IP that is not in the trusted IP list as the real client IP, which will be used for the source IP speed limit.
671
726
  :param bool x_forwarded_for_client_src_port_enabled: Indicates Whether the X-Forwarded-Client-Port Header Field Is Used to Obtain Access to Server Load Balancer Instances to the Client, and Those of the Ports.
672
727
  :param bool x_forwarded_for_enabled: Whether to Enable by X-Forwarded-For Header Field Is Used to Obtain the Client IP Addresses.
728
+ :param bool x_forwarded_for_host_enabled: Whether to enable the X-Forwarded-Host header field to obtain the domain name of the client accessing the Application Load Balancer. Value:
729
+
730
+ true: Yes.
731
+
732
+ false (default): No.
733
+
734
+ HTTP, HTTPS, and QUIC listeners support this parameter.
735
+ :param str x_forwarded_for_processing_mode: Schema for processing X-Forwarded-For header fields. This value takes effect only when XForwardedForEnabled is true. Value:
736
+
737
+ append (default): append.
738
+
739
+ remove: Delete.
740
+
741
+ Configure append to add the last hop IP address to the X-Forwarded-For header field before sending the request to the backend service.
742
+
743
+ Configure remove to delete the X-Forwarded-For header before the request is sent to the backend service, regardless of whether the request carries X-Forwarded-For header fields.
744
+
745
+ HTTP and HTTPS listeners support this parameter.
673
746
  :param bool x_forwarded_for_proto_enabled: Indicates Whether the X-Forwarded-Proto Header Field Is Used to Obtain the Server Load Balancer Instance Snooping Protocols.
674
- :param bool x_forwarded_for_slb_id_enabled: Indicates Whether the SLB-ID Header Field Is Used to Obtain the Load Balancing Instance Id.
675
- :param bool x_forwarded_for_slb_port_enabled: Indicates Whether the X-Forwarded-Port Header Field Is Used to Obtain the Server Load Balancer Instance Listening Port.
747
+ :param bool x_forwarded_for_slb_id_enabled: Indicates Whether the SLB-ID Header Field Is Used to Obtain the Load Balancing Instance Id
748
+ :param bool x_forwarded_for_slb_port_enabled: Indicates Whether the X-Forwarded-Port Header Field Is Used to Obtain the Server Load Balancer Instance Listening Port
676
749
  """
677
750
  if x_forwarded_for_client_cert_client_verify_alias is not None:
678
751
  pulumi.set(__self__, "x_forwarded_for_client_cert_client_verify_alias", x_forwarded_for_client_cert_client_verify_alias)
@@ -698,6 +771,10 @@ class ListenerXForwardedForConfig(dict):
698
771
  pulumi.set(__self__, "x_forwarded_for_client_src_port_enabled", x_forwarded_for_client_src_port_enabled)
699
772
  if x_forwarded_for_enabled is not None:
700
773
  pulumi.set(__self__, "x_forwarded_for_enabled", x_forwarded_for_enabled)
774
+ if x_forwarded_for_host_enabled is not None:
775
+ pulumi.set(__self__, "x_forwarded_for_host_enabled", x_forwarded_for_host_enabled)
776
+ if x_forwarded_for_processing_mode is not None:
777
+ pulumi.set(__self__, "x_forwarded_for_processing_mode", x_forwarded_for_processing_mode)
701
778
  if x_forwarded_for_proto_enabled is not None:
702
779
  pulumi.set(__self__, "x_forwarded_for_proto_enabled", x_forwarded_for_proto_enabled)
703
780
  if x_forwarded_for_slb_id_enabled is not None:
@@ -709,7 +786,7 @@ class ListenerXForwardedForConfig(dict):
709
786
  @pulumi.getter(name="xForwardedForClientCertClientVerifyAlias")
710
787
  def x_forwarded_for_client_cert_client_verify_alias(self) -> Optional[str]:
711
788
  """
712
- The Custom Header Field Names Only When `x_forwarded_for_client_cert_client_verify_enabled` Has a Value of True, this Value Will Not Take Effect until.The name must be 1 to 40 characters in length, and can contain letters, hyphens (-), underscores (_), and digits.
789
+ The Custom Header Field Names Only When xforwardedforclientcertclientverifyenabled Has a Value of True, this Value Will Not Take Effect until.
713
790
  """
714
791
  return pulumi.get(self, "x_forwarded_for_client_cert_client_verify_alias")
715
792
 
@@ -717,7 +794,7 @@ class ListenerXForwardedForConfig(dict):
717
794
  @pulumi.getter(name="xForwardedForClientCertClientVerifyEnabled")
718
795
  def x_forwarded_for_client_cert_client_verify_enabled(self) -> Optional[bool]:
719
796
  """
720
- Indicates Whether the `X-Forwarded-Clientcert-clientverify` Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate to Verify the Results.
797
+ Indicates Whether the X-Forwarded-Clientcert-clientverify Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate to Verify the Results.
721
798
  """
722
799
  return pulumi.get(self, "x_forwarded_for_client_cert_client_verify_enabled")
723
800
 
@@ -725,7 +802,7 @@ class ListenerXForwardedForConfig(dict):
725
802
  @pulumi.getter(name="xForwardedForClientCertFingerPrintAlias")
726
803
  def x_forwarded_for_client_cert_finger_print_alias(self) -> Optional[str]:
727
804
  """
728
- The Custom Header Field Names Only When `x_forwarded_for_client_certfingerprint_enabled`, Which Evaluates to True When the Entry into Force of.The name must be 1 to 40 characters in length, and can contain letters, hyphens (-), underscores (_), and digits.
805
+ The Custom Header Field Names Only When xforwardedforclientcertfingerprintenabled, Which Evaluates to True When the Entry into Force of.
729
806
  """
730
807
  return pulumi.get(self, "x_forwarded_for_client_cert_finger_print_alias")
731
808
 
@@ -733,7 +810,7 @@ class ListenerXForwardedForConfig(dict):
733
810
  @pulumi.getter(name="xForwardedForClientCertFingerPrintEnabled")
734
811
  def x_forwarded_for_client_cert_finger_print_enabled(self) -> Optional[bool]:
735
812
  """
736
- Indicates Whether the `X-Forwarded-client_cert-fingerprint` Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate Fingerprint Value.
813
+ Indicates Whether the X-Forwarded-Clientcert-fingerprint Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate Fingerprint Value.
737
814
  """
738
815
  return pulumi.get(self, "x_forwarded_for_client_cert_finger_print_enabled")
739
816
 
@@ -741,7 +818,7 @@ class ListenerXForwardedForConfig(dict):
741
818
  @pulumi.getter(name="xForwardedForClientCertIssuerDnAlias")
742
819
  def x_forwarded_for_client_cert_issuer_dn_alias(self) -> Optional[str]:
743
820
  """
744
- The Custom Header Field Names Only When `x_forwarded_for_client_cert_issuer_dn_enabled`, Which Evaluates to True When the Entry into Force of.
821
+ The Custom Header Field Names Only When xforwardedforclientcertsubjectdnenabled, Which Evaluates to True When the Entry into Force of.
745
822
  """
746
823
  return pulumi.get(self, "x_forwarded_for_client_cert_issuer_dn_alias")
747
824
 
@@ -749,7 +826,7 @@ class ListenerXForwardedForConfig(dict):
749
826
  @pulumi.getter(name="xForwardedForClientCertIssuerDnEnabled")
750
827
  def x_forwarded_for_client_cert_issuer_dn_enabled(self) -> Optional[bool]:
751
828
  """
752
- Indicates Whether the `X-Forwarded-Clientcert-issuerdn` Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate after the Manifests Are Signed, the Publisher Information.
829
+ Indicates Whether the X-Forwarded-Clientcert-issuerdn Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate after the Manifests Are Signed, the Publisher Information.
753
830
  """
754
831
  return pulumi.get(self, "x_forwarded_for_client_cert_issuer_dn_enabled")
755
832
 
@@ -757,7 +834,7 @@ class ListenerXForwardedForConfig(dict):
757
834
  @pulumi.getter(name="xForwardedForClientCertSubjectDnAlias")
758
835
  def x_forwarded_for_client_cert_subject_dn_alias(self) -> Optional[str]:
759
836
  """
760
- The name of the custom header. This parameter is valid only if `x_forwarded_for_client_certsubjectdn_enabled` is set to true. The name must be 1 to 40 characters in length, and can contain letters, hyphens (-), underscores (_), and digits.
837
+ The Custom Header Field Name,
761
838
  """
762
839
  return pulumi.get(self, "x_forwarded_for_client_cert_subject_dn_alias")
763
840
 
@@ -765,7 +842,7 @@ class ListenerXForwardedForConfig(dict):
765
842
  @pulumi.getter(name="xForwardedForClientCertSubjectDnEnabled")
766
843
  def x_forwarded_for_client_cert_subject_dn_enabled(self) -> Optional[bool]:
767
844
  """
768
- Specifies whether to use the `X-Forwarded-client_cert-subjectdn` header field to obtain information about the owner of the ALB client certificate. Valid values: true and false. Default value: false.
845
+ Indicates Whether the X-Forwarded-Clientcert-subjectdn Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate Owner Information.
769
846
  """
770
847
  return pulumi.get(self, "x_forwarded_for_client_cert_subject_dn_enabled")
771
848
 
@@ -773,7 +850,13 @@ class ListenerXForwardedForConfig(dict):
773
850
  @pulumi.getter(name="xForwardedForClientSourceIpsEnabled")
774
851
  def x_forwarded_for_client_source_ips_enabled(self) -> Optional[bool]:
775
852
  """
776
- Whether to use the X-Forwarded-Client-Ip header to obtain the source IP address of the server load balancer instance. Value: true, false. Note HTTP, HTTPS, and QUIC listeners support this parameter. The function corresponding to this parameter is not open by default. Please contact the account manager if you need to use it.
853
+ Whether to use the X-Forwarded-Client-Ip header to obtain the source IP address of the server load balancer instance. Value:
854
+
855
+ true: Yes.
856
+
857
+ false (default): No.
858
+
859
+ Note HTTP, HTTPS, and QUIC listeners support this parameter. The function corresponding to this parameter is not open by default. Please contact the account manager if you need to use it.
777
860
  """
778
861
  return pulumi.get(self, "x_forwarded_for_client_source_ips_enabled")
779
862
 
@@ -781,7 +864,9 @@ class ListenerXForwardedForConfig(dict):
781
864
  @pulumi.getter(name="xForwardedForClientSourceIpsTrusted")
782
865
  def x_forwarded_for_client_source_ips_trusted(self) -> Optional[str]:
783
866
  """
784
- Specify the trusted proxy IP. Application-oriented load balancing ALB will traverse the X-Forwarded-For from back to front, and select the first IP that is not in the trusted IP list as the real client IP, which will be used for the source IP speed limit.
867
+ Specify the trusted proxy IP.
868
+
869
+ Application-oriented load balancing ALB will traverse the X-Forwarded-For from back to front, and select the first IP that is not in the trusted IP list as the real client IP, which will be used for the source IP speed limit.
785
870
  """
786
871
  return pulumi.get(self, "x_forwarded_for_client_source_ips_trusted")
787
872
 
@@ -801,6 +886,38 @@ class ListenerXForwardedForConfig(dict):
801
886
  """
802
887
  return pulumi.get(self, "x_forwarded_for_enabled")
803
888
 
889
+ @property
890
+ @pulumi.getter(name="xForwardedForHostEnabled")
891
+ def x_forwarded_for_host_enabled(self) -> Optional[bool]:
892
+ """
893
+ Whether to enable the X-Forwarded-Host header field to obtain the domain name of the client accessing the Application Load Balancer. Value:
894
+
895
+ true: Yes.
896
+
897
+ false (default): No.
898
+
899
+ HTTP, HTTPS, and QUIC listeners support this parameter.
900
+ """
901
+ return pulumi.get(self, "x_forwarded_for_host_enabled")
902
+
903
+ @property
904
+ @pulumi.getter(name="xForwardedForProcessingMode")
905
+ def x_forwarded_for_processing_mode(self) -> Optional[str]:
906
+ """
907
+ Schema for processing X-Forwarded-For header fields. This value takes effect only when XForwardedForEnabled is true. Value:
908
+
909
+ append (default): append.
910
+
911
+ remove: Delete.
912
+
913
+ Configure append to add the last hop IP address to the X-Forwarded-For header field before sending the request to the backend service.
914
+
915
+ Configure remove to delete the X-Forwarded-For header before the request is sent to the backend service, regardless of whether the request carries X-Forwarded-For header fields.
916
+
917
+ HTTP and HTTPS listeners support this parameter.
918
+ """
919
+ return pulumi.get(self, "x_forwarded_for_processing_mode")
920
+
804
921
  @property
805
922
  @pulumi.getter(name="xForwardedForProtoEnabled")
806
923
  def x_forwarded_for_proto_enabled(self) -> Optional[bool]:
@@ -813,7 +930,7 @@ class ListenerXForwardedForConfig(dict):
813
930
  @pulumi.getter(name="xForwardedForSlbIdEnabled")
814
931
  def x_forwarded_for_slb_id_enabled(self) -> Optional[bool]:
815
932
  """
816
- Indicates Whether the SLB-ID Header Field Is Used to Obtain the Load Balancing Instance Id.
933
+ Indicates Whether the SLB-ID Header Field Is Used to Obtain the Load Balancing Instance Id
817
934
  """
818
935
  return pulumi.get(self, "x_forwarded_for_slb_id_enabled")
819
936
 
@@ -821,7 +938,7 @@ class ListenerXForwardedForConfig(dict):
821
938
  @pulumi.getter(name="xForwardedForSlbPortEnabled")
822
939
  def x_forwarded_for_slb_port_enabled(self) -> Optional[bool]:
823
940
  """
824
- Indicates Whether the X-Forwarded-Port Header Field Is Used to Obtain the Server Load Balancer Instance Listening Port.
941
+ Indicates Whether the X-Forwarded-Port Header Field Is Used to Obtain the Server Load Balancer Instance Listening Port
825
942
  """
826
943
  return pulumi.get(self, "x_forwarded_for_slb_port_enabled")
827
944
 
@@ -848,18 +965,20 @@ class LoadBalancerAccessLogConfig(dict):
848
965
  return super().get(key, default)
849
966
 
850
967
  def __init__(__self__, *,
851
- log_project: str,
852
- log_store: str):
968
+ log_project: Optional[str] = None,
969
+ log_store: Optional[str] = None):
853
970
  """
854
971
  :param str log_project: The project to which the access log is shipped.
855
972
  :param str log_store: The Logstore to which the access log is shipped.
856
973
  """
857
- pulumi.set(__self__, "log_project", log_project)
858
- pulumi.set(__self__, "log_store", log_store)
974
+ if log_project is not None:
975
+ pulumi.set(__self__, "log_project", log_project)
976
+ if log_store is not None:
977
+ pulumi.set(__self__, "log_store", log_store)
859
978
 
860
979
  @property
861
980
  @pulumi.getter(name="logProject")
862
- def log_project(self) -> str:
981
+ def log_project(self) -> Optional[str]:
863
982
  """
864
983
  The project to which the access log is shipped.
865
984
  """
@@ -867,13 +986,61 @@ class LoadBalancerAccessLogConfig(dict):
867
986
 
868
987
  @property
869
988
  @pulumi.getter(name="logStore")
870
- def log_store(self) -> str:
989
+ def log_store(self) -> Optional[str]:
871
990
  """
872
991
  The Logstore to which the access log is shipped.
873
992
  """
874
993
  return pulumi.get(self, "log_store")
875
994
 
876
995
 
996
+ @pulumi.output_type
997
+ class LoadBalancerDeletionProtectionConfig(dict):
998
+ @staticmethod
999
+ def __key_warning(key: str):
1000
+ suggest = None
1001
+ if key == "enabledTime":
1002
+ suggest = "enabled_time"
1003
+
1004
+ if suggest:
1005
+ pulumi.log.warn(f"Key '{key}' not found in LoadBalancerDeletionProtectionConfig. Access the value via the '{suggest}' property getter instead.")
1006
+
1007
+ def __getitem__(self, key: str) -> Any:
1008
+ LoadBalancerDeletionProtectionConfig.__key_warning(key)
1009
+ return super().__getitem__(key)
1010
+
1011
+ def get(self, key: str, default = None) -> Any:
1012
+ LoadBalancerDeletionProtectionConfig.__key_warning(key)
1013
+ return super().get(key, default)
1014
+
1015
+ def __init__(__self__, *,
1016
+ enabled: Optional[bool] = None,
1017
+ enabled_time: Optional[str] = None):
1018
+ """
1019
+ :param bool enabled: Remove the Protection Status
1020
+ :param str enabled_time: Deletion Protection Turn-on Time Use Greenwich Mean Time, in the Format of Yyyy-MM-ddTHH: mm: SSZ
1021
+ """
1022
+ if enabled is not None:
1023
+ pulumi.set(__self__, "enabled", enabled)
1024
+ if enabled_time is not None:
1025
+ pulumi.set(__self__, "enabled_time", enabled_time)
1026
+
1027
+ @property
1028
+ @pulumi.getter
1029
+ def enabled(self) -> Optional[bool]:
1030
+ """
1031
+ Remove the Protection Status
1032
+ """
1033
+ return pulumi.get(self, "enabled")
1034
+
1035
+ @property
1036
+ @pulumi.getter(name="enabledTime")
1037
+ def enabled_time(self) -> Optional[str]:
1038
+ """
1039
+ Deletion Protection Turn-on Time Use Greenwich Mean Time, in the Format of Yyyy-MM-ddTHH: mm: SSZ
1040
+ """
1041
+ return pulumi.get(self, "enabled_time")
1042
+
1043
+
877
1044
  @pulumi.output_type
878
1045
  class LoadBalancerLoadBalancerBillingConfig(dict):
879
1046
  @staticmethod
@@ -896,7 +1063,7 @@ class LoadBalancerLoadBalancerBillingConfig(dict):
896
1063
  def __init__(__self__, *,
897
1064
  pay_type: str):
898
1065
  """
899
- :param str pay_type: The billing method of the ALB instance. Valid values: `PayAsYouGo`.
1066
+ :param str pay_type: Pay Type
900
1067
  """
901
1068
  pulumi.set(__self__, "pay_type", pay_type)
902
1069
 
@@ -904,7 +1071,7 @@ class LoadBalancerLoadBalancerBillingConfig(dict):
904
1071
  @pulumi.getter(name="payType")
905
1072
  def pay_type(self) -> str:
906
1073
  """
907
- The billing method of the ALB instance. Valid values: `PayAsYouGo`.
1074
+ Pay Type
908
1075
  """
909
1076
  return pulumi.get(self, "pay_type")
910
1077
 
@@ -915,8 +1082,8 @@ class LoadBalancerModificationProtectionConfig(dict):
915
1082
  reason: Optional[str] = None,
916
1083
  status: Optional[str] = None):
917
1084
  """
918
- :param str reason: The reason for enabling the configuration read-only mode. **NOTE:** `reason` takes effect only if `status` is set to `ConsoleProtection`.
919
- :param str status: Specifies whether to enable the configuration read-only mode. Valid values: `ConsoleProtection`, `NonProtection`.
1085
+ :param str reason: Managed Instance
1086
+ :param str status: Load Balancing Modify the Protection Status
920
1087
  """
921
1088
  if reason is not None:
922
1089
  pulumi.set(__self__, "reason", reason)
@@ -927,7 +1094,7 @@ class LoadBalancerModificationProtectionConfig(dict):
927
1094
  @pulumi.getter
928
1095
  def reason(self) -> Optional[str]:
929
1096
  """
930
- The reason for enabling the configuration read-only mode. **NOTE:** `reason` takes effect only if `status` is set to `ConsoleProtection`.
1097
+ Managed Instance
931
1098
  """
932
1099
  return pulumi.get(self, "reason")
933
1100
 
@@ -935,7 +1102,7 @@ class LoadBalancerModificationProtectionConfig(dict):
935
1102
  @pulumi.getter
936
1103
  def status(self) -> Optional[str]:
937
1104
  """
938
- Specifies whether to enable the configuration read-only mode. Valid values: `ConsoleProtection`, `NonProtection`.
1105
+ Load Balancing Modify the Protection Status
939
1106
  """
940
1107
  return pulumi.get(self, "status")
941
1108
 
@@ -968,9 +1135,9 @@ class LoadBalancerZoneMapping(dict):
968
1135
  zone_id: str,
969
1136
  load_balancer_addresses: Optional[Sequence['outputs.LoadBalancerZoneMappingLoadBalancerAddress']] = None):
970
1137
  """
971
- :param str vswitch_id: The ID of the VSwitch.
972
- :param str zone_id: The zone ID of the ALB instance.
973
- :param Sequence['LoadBalancerZoneMappingLoadBalancerAddressArgs'] load_balancer_addresses: The IP address of the ALB instance.
1138
+ :param str vswitch_id: The ID of the vSwitch that corresponds to the zone. Each zone can use only one vSwitch and subnet.
1139
+ :param str zone_id: The ID of the zone to which the SLB instance belongs.
1140
+ :param Sequence['LoadBalancerZoneMappingLoadBalancerAddressArgs'] load_balancer_addresses: The SLB Instance Address
974
1141
  """
975
1142
  pulumi.set(__self__, "vswitch_id", vswitch_id)
976
1143
  pulumi.set(__self__, "zone_id", zone_id)
@@ -981,7 +1148,7 @@ class LoadBalancerZoneMapping(dict):
981
1148
  @pulumi.getter(name="vswitchId")
982
1149
  def vswitch_id(self) -> str:
983
1150
  """
984
- The ID of the VSwitch.
1151
+ The ID of the vSwitch that corresponds to the zone. Each zone can use only one vSwitch and subnet.
985
1152
  """
986
1153
  return pulumi.get(self, "vswitch_id")
987
1154
 
@@ -989,7 +1156,7 @@ class LoadBalancerZoneMapping(dict):
989
1156
  @pulumi.getter(name="zoneId")
990
1157
  def zone_id(self) -> str:
991
1158
  """
992
- The zone ID of the ALB instance.
1159
+ The ID of the zone to which the SLB instance belongs.
993
1160
  """
994
1161
  return pulumi.get(self, "zone_id")
995
1162
 
@@ -997,7 +1164,7 @@ class LoadBalancerZoneMapping(dict):
997
1164
  @pulumi.getter(name="loadBalancerAddresses")
998
1165
  def load_balancer_addresses(self) -> Optional[Sequence['outputs.LoadBalancerZoneMappingLoadBalancerAddress']]:
999
1166
  """
1000
- The IP address of the ALB instance.
1167
+ The SLB Instance Address
1001
1168
  """
1002
1169
  return pulumi.get(self, "load_balancer_addresses")
1003
1170
 
@@ -1031,10 +1198,10 @@ class LoadBalancerZoneMappingLoadBalancerAddress(dict):
1031
1198
  eip_type: Optional[str] = None,
1032
1199
  ipv6_address: Optional[str] = None):
1033
1200
  """
1034
- :param str address: IP address. The Public IP Address, and Private IP Address from the Address Type.
1035
- :param str allocation_id: The ID of the EIP.
1036
- :param str eip_type: The type of the EIP.
1037
- :param str ipv6_address: Ipv6 address.
1201
+ :param str address: IP Address. The Public IP Address, and Private IP Address from the Address Type
1202
+ :param str allocation_id: The ID of the EIP instance.
1203
+ :param str eip_type: The type of the EIP instance.
1204
+ :param str ipv6_address: Ipv6 address
1038
1205
  """
1039
1206
  if address is not None:
1040
1207
  pulumi.set(__self__, "address", address)
@@ -1049,7 +1216,7 @@ class LoadBalancerZoneMappingLoadBalancerAddress(dict):
1049
1216
  @pulumi.getter
1050
1217
  def address(self) -> Optional[str]:
1051
1218
  """
1052
- IP address. The Public IP Address, and Private IP Address from the Address Type.
1219
+ IP Address. The Public IP Address, and Private IP Address from the Address Type
1053
1220
  """
1054
1221
  return pulumi.get(self, "address")
1055
1222
 
@@ -1057,7 +1224,7 @@ class LoadBalancerZoneMappingLoadBalancerAddress(dict):
1057
1224
  @pulumi.getter(name="allocationId")
1058
1225
  def allocation_id(self) -> Optional[str]:
1059
1226
  """
1060
- The ID of the EIP.
1227
+ The ID of the EIP instance.
1061
1228
  """
1062
1229
  return pulumi.get(self, "allocation_id")
1063
1230
 
@@ -1065,7 +1232,7 @@ class LoadBalancerZoneMappingLoadBalancerAddress(dict):
1065
1232
  @pulumi.getter(name="eipType")
1066
1233
  def eip_type(self) -> Optional[str]:
1067
1234
  """
1068
- The type of the EIP.
1235
+ The type of the EIP instance.
1069
1236
  """
1070
1237
  return pulumi.get(self, "eip_type")
1071
1238
 
@@ -1073,7 +1240,7 @@ class LoadBalancerZoneMappingLoadBalancerAddress(dict):
1073
1240
  @pulumi.getter(name="ipv6Address")
1074
1241
  def ipv6_address(self) -> Optional[str]:
1075
1242
  """
1076
- Ipv6 address.
1243
+ Ipv6 address
1077
1244
  """
1078
1245
  return pulumi.get(self, "ipv6_address")
1079
1246
 
@@ -2336,6 +2503,64 @@ class RuleRuleConditionSourceIpConfig(dict):
2336
2503
  return pulumi.get(self, "values")
2337
2504
 
2338
2505
 
2506
+ @pulumi.output_type
2507
+ class ServerGroupConnectionDrainConfig(dict):
2508
+ @staticmethod
2509
+ def __key_warning(key: str):
2510
+ suggest = None
2511
+ if key == "connectionDrainEnabled":
2512
+ suggest = "connection_drain_enabled"
2513
+ elif key == "connectionDrainTimeout":
2514
+ suggest = "connection_drain_timeout"
2515
+
2516
+ if suggest:
2517
+ pulumi.log.warn(f"Key '{key}' not found in ServerGroupConnectionDrainConfig. Access the value via the '{suggest}' property getter instead.")
2518
+
2519
+ def __getitem__(self, key: str) -> Any:
2520
+ ServerGroupConnectionDrainConfig.__key_warning(key)
2521
+ return super().__getitem__(key)
2522
+
2523
+ def get(self, key: str, default = None) -> Any:
2524
+ ServerGroupConnectionDrainConfig.__key_warning(key)
2525
+ return super().get(key, default)
2526
+
2527
+ def __init__(__self__, *,
2528
+ connection_drain_enabled: Optional[bool] = None,
2529
+ connection_drain_timeout: Optional[int] = None):
2530
+ """
2531
+ :param bool connection_drain_enabled: Specifies whether to enable connection draining. Valid values:
2532
+ :param int connection_drain_timeout: The timeout period of connection draining.
2533
+
2534
+ Valid values: `0` to `900`.
2535
+
2536
+ Default value: `300`.
2537
+ """
2538
+ if connection_drain_enabled is not None:
2539
+ pulumi.set(__self__, "connection_drain_enabled", connection_drain_enabled)
2540
+ if connection_drain_timeout is not None:
2541
+ pulumi.set(__self__, "connection_drain_timeout", connection_drain_timeout)
2542
+
2543
+ @property
2544
+ @pulumi.getter(name="connectionDrainEnabled")
2545
+ def connection_drain_enabled(self) -> Optional[bool]:
2546
+ """
2547
+ Specifies whether to enable connection draining. Valid values:
2548
+ """
2549
+ return pulumi.get(self, "connection_drain_enabled")
2550
+
2551
+ @property
2552
+ @pulumi.getter(name="connectionDrainTimeout")
2553
+ def connection_drain_timeout(self) -> Optional[int]:
2554
+ """
2555
+ The timeout period of connection draining.
2556
+
2557
+ Valid values: `0` to `900`.
2558
+
2559
+ Default value: `300`.
2560
+ """
2561
+ return pulumi.get(self, "connection_drain_timeout")
2562
+
2563
+
2339
2564
  @pulumi.output_type
2340
2565
  class ServerGroupHealthCheckConfig(dict):
2341
2566
  @staticmethod
@@ -2391,20 +2616,75 @@ class ServerGroupHealthCheckConfig(dict):
2391
2616
  healthy_threshold: Optional[int] = None,
2392
2617
  unhealthy_threshold: Optional[int] = None):
2393
2618
  """
2394
- :param bool health_check_enabled: Specifies whether to enable the health check feature. Valid values: `true`, `false`.
2395
- :param Sequence[str] health_check_codes: The HTTP status codes that are used to indicate whether the backend server passes the health check. Valid values:
2396
- - If `health_check_protocol` is set to `HTTP` or `HTTPS`. Valid values: `http_2xx`, `http_3xx`, `http_4xx`, and `http_5xx`. Default value: `http_2xx`.
2397
- - If `health_check_protocol` is set to `gRPC`. Valid values: `0` to `99`. Default value: `0`.
2398
- :param int health_check_connect_port: The backend port that is used for health checks. Default value: `0`. Valid values: `0` to `65535`. A value of 0 indicates that a backend server port is used for health checks.
2619
+ :param bool health_check_enabled: Specifies whether to enable the health check feature. Valid values:
2620
+ :param Sequence[str] health_check_codes: The status code for a successful health check
2621
+ :param int health_check_connect_port: The backend port that is used for health checks.
2622
+
2623
+ Valid values: `0` to `65535`.
2624
+
2625
+ If you set the value to `0`, the backend port is used for health checks.
2626
+
2627
+ > **NOTE:** This parameter takes effect only if you set `HealthCheckEnabled` to `true`.
2399
2628
  :param str health_check_host: The domain name that is used for health checks.
2400
- :param str health_check_http_version: The version of the HTTP protocol. Default value: `HTTP1.1`. Valid values: `HTTP1.0` and `HTTP1.1`. **NOTE:** This parameter takes effect only when `health_check_protocol` is set to `HTTP` or `HTTPS`.
2401
- :param int health_check_interval: The interval at which health checks are performed. Unit: seconds. Default value: `2`. Valid values: `1` to `50`.
2402
- :param str health_check_method: The HTTP method that is used for health checks. Default value: `GET`. Valid values: `GET`, `POST`, `HEAD`. **NOTE:** This parameter takes effect only when `health_check_protocol` is set to `HTTP`, `HTTPS`, or `gRPC`. From version 1.215.0, `health_check_method` can be set to `POST`.
2403
- :param str health_check_path: The path that is used for health checks. **NOTE:** This parameter takes effect only when `health_check_protocol` is set to `HTTP` or `HTTPS`.
2404
- :param str health_check_protocol: The protocol that is used for health checks. Valid values: `HTTP`, `HTTPS`, `TCP` and `gRPC`.
2405
- :param int health_check_timeout: The timeout period for a health check response. If a backend Elastic Compute Service (ECS) instance does not send an expected response within the specified period of time, the ECS instance is considered unhealthy. Unit: seconds. Default value: `5`. Valid values: `1` to `300`. **NOTE:** If the value of `health_check_timeout` is smaller than the value of `health_check_interval`, the value of `health_check_timeout` is ignored and the value of `health_check_interval` is used.
2406
- :param int healthy_threshold: The number of times that an unhealthy backend server must consecutively pass health checks before it is declared healthy. Default value: `3`. Valid values: `2` to `10`.
2407
- :param int unhealthy_threshold: The number of times that a healthy backend server must consecutively fail health checks before it is declared unhealthy. Default value: `3`. Valid values: `2` to `10`.
2629
+
2630
+ * **Backend Server Internal IP** (default): Use the internal IP address of backend servers as the health check domain name.
2631
+
2632
+ * **Custom Domain Name**: Enter a domain name.
2633
+
2634
+ * The domain name must be 1 to 80 characters in length.
2635
+ * The domain name can contain lowercase letters, digits, hyphens (-), and periods (.).
2636
+ * The domain name must contain at least one period (.) but cannot start or end with a period (.).
2637
+ * The rightmost domain label of the domain name can contain only letters, and cannot contain digits or hyphens (-).
2638
+ * The domain name cannot start or end with a hyphen (-).
2639
+
2640
+ > **NOTE:** This parameter takes effect only if `HealthCheckProtocol` is set to `HTTP`, `HTTPS`, or `gRPC`.
2641
+ :param str health_check_http_version: The HTTP version that is used for health checks. Valid values:
2642
+
2643
+ * **HTTP1.0**
2644
+
2645
+ * **HTTP1.1**
2646
+
2647
+ > **NOTE:** This parameter takes effect only if you set `HealthCheckEnabled` to true and `HealthCheckProtocol` to `HTTP` or `HTTPS`.
2648
+ :param int health_check_interval: The interval at which health checks are performed. Unit: seconds.
2649
+
2650
+ Valid values: `1` to `50`.
2651
+
2652
+ > **NOTE:** This parameter takes effect only if you set `HealthCheckEnabled` to `true`.
2653
+ :param str health_check_method: The HTTP method that is used for health checks. Valid values:
2654
+
2655
+ * `GET`: If the length of a response exceeds 8 KB, the response is truncated. However, the health check result is not affected.
2656
+
2657
+ * `POST`: gRPC health checks use the POST method by default.
2658
+
2659
+ * `HEAD`: HTTP and HTTPS health checks use the HEAD method by default.
2660
+
2661
+ > **NOTE:** This parameter takes effect only if you set `HealthCheckEnabled` to true and `HealthCheckProtocol` to `HTTP`, `HTTPS`, or `gRPC`.
2662
+ :param str health_check_path: The URL that is used for health checks.
2663
+
2664
+ The URL must be 1 to 80 characters in length, and can contain letters, digits, and the following special characters: `- / . % ? # & =`. It can also contain the following extended characters: `_ ; ~ ! ( ) * [ ] @ $ ^ : ' , +`. The URL must start with a forward slash (`/`).
2665
+
2666
+ > **NOTE:** This parameter takes effect only if you set `HealthCheckEnabled` to `true` and `HealthCheckProtocol` to `HTTP` or `HTTPS`.
2667
+ :param str health_check_protocol: The protocol that is used for health checks. Valid values:
2668
+
2669
+ - `HTTP`: HTTP health checks simulate browser behaviors by sending HEAD or GET requests to probe the availability of backend servers.
2670
+ - `HTTPS`: HTTPS health checks simulate browser behaviors by sending HEAD or GET requests to probe the availability of backend servers. HTTPS provides higher security than HTTP because HTTPS supports data encryption.
2671
+ - `TCP`: TCP health checks send TCP SYN packets to a backend server to probe the availability of backend servers.
2672
+ - `gRPC`: gRPC health checks send POST or GET requests to a backend server to check whether the backend server is healthy.
2673
+ :param int health_check_timeout: The timeout period of a health check response. If a backend ECS instance does not respond within the specified timeout period, the ECS instance fails the health check. Unit: seconds.
2674
+
2675
+ Valid values: `1` to `300`.
2676
+
2677
+ > **NOTE:** This parameter takes effect only if you set `HealthCheckEnabled` to `true`.
2678
+ :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 check status of the backend server changes from `fail` to `success`.
2679
+
2680
+ Valid values: `2` to `10`.
2681
+
2682
+ Default value: `3`.
2683
+ :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 check status of the backend server changes from `success` to `fail`.
2684
+
2685
+ Valid values: `2` to `10`.
2686
+
2687
+ Default value: `3`.
2408
2688
  """
2409
2689
  pulumi.set(__self__, "health_check_enabled", health_check_enabled)
2410
2690
  if health_check_codes is not None:
@@ -2434,7 +2714,7 @@ class ServerGroupHealthCheckConfig(dict):
2434
2714
  @pulumi.getter(name="healthCheckEnabled")
2435
2715
  def health_check_enabled(self) -> bool:
2436
2716
  """
2437
- Specifies whether to enable the health check feature. Valid values: `true`, `false`.
2717
+ Specifies whether to enable the health check feature. Valid values:
2438
2718
  """
2439
2719
  return pulumi.get(self, "health_check_enabled")
2440
2720
 
@@ -2442,9 +2722,7 @@ class ServerGroupHealthCheckConfig(dict):
2442
2722
  @pulumi.getter(name="healthCheckCodes")
2443
2723
  def health_check_codes(self) -> Optional[Sequence[str]]:
2444
2724
  """
2445
- The HTTP status codes that are used to indicate whether the backend server passes the health check. Valid values:
2446
- - If `health_check_protocol` is set to `HTTP` or `HTTPS`. Valid values: `http_2xx`, `http_3xx`, `http_4xx`, and `http_5xx`. Default value: `http_2xx`.
2447
- - If `health_check_protocol` is set to `gRPC`. Valid values: `0` to `99`. Default value: `0`.
2725
+ The status code for a successful health check
2448
2726
  """
2449
2727
  return pulumi.get(self, "health_check_codes")
2450
2728
 
@@ -2452,7 +2730,13 @@ class ServerGroupHealthCheckConfig(dict):
2452
2730
  @pulumi.getter(name="healthCheckConnectPort")
2453
2731
  def health_check_connect_port(self) -> Optional[int]:
2454
2732
  """
2455
- The backend port that is used for health checks. Default value: `0`. Valid values: `0` to `65535`. A value of 0 indicates that a backend server port is used for health checks.
2733
+ The backend port that is used for health checks.
2734
+
2735
+ Valid values: `0` to `65535`.
2736
+
2737
+ If you set the value to `0`, the backend port is used for health checks.
2738
+
2739
+ > **NOTE:** This parameter takes effect only if you set `HealthCheckEnabled` to `true`.
2456
2740
  """
2457
2741
  return pulumi.get(self, "health_check_connect_port")
2458
2742
 
@@ -2461,6 +2745,18 @@ class ServerGroupHealthCheckConfig(dict):
2461
2745
  def health_check_host(self) -> Optional[str]:
2462
2746
  """
2463
2747
  The domain name that is used for health checks.
2748
+
2749
+ * **Backend Server Internal IP** (default): Use the internal IP address of backend servers as the health check domain name.
2750
+
2751
+ * **Custom Domain Name**: Enter a domain name.
2752
+
2753
+ * The domain name must be 1 to 80 characters in length.
2754
+ * The domain name can contain lowercase letters, digits, hyphens (-), and periods (.).
2755
+ * The domain name must contain at least one period (.) but cannot start or end with a period (.).
2756
+ * The rightmost domain label of the domain name can contain only letters, and cannot contain digits or hyphens (-).
2757
+ * The domain name cannot start or end with a hyphen (-).
2758
+
2759
+ > **NOTE:** This parameter takes effect only if `HealthCheckProtocol` is set to `HTTP`, `HTTPS`, or `gRPC`.
2464
2760
  """
2465
2761
  return pulumi.get(self, "health_check_host")
2466
2762
 
@@ -2468,7 +2764,13 @@ class ServerGroupHealthCheckConfig(dict):
2468
2764
  @pulumi.getter(name="healthCheckHttpVersion")
2469
2765
  def health_check_http_version(self) -> Optional[str]:
2470
2766
  """
2471
- The version of the HTTP protocol. Default value: `HTTP1.1`. Valid values: `HTTP1.0` and `HTTP1.1`. **NOTE:** This parameter takes effect only when `health_check_protocol` is set to `HTTP` or `HTTPS`.
2767
+ The HTTP version that is used for health checks. Valid values:
2768
+
2769
+ * **HTTP1.0**
2770
+
2771
+ * **HTTP1.1**
2772
+
2773
+ > **NOTE:** This parameter takes effect only if you set `HealthCheckEnabled` to true and `HealthCheckProtocol` to `HTTP` or `HTTPS`.
2472
2774
  """
2473
2775
  return pulumi.get(self, "health_check_http_version")
2474
2776
 
@@ -2476,7 +2778,11 @@ class ServerGroupHealthCheckConfig(dict):
2476
2778
  @pulumi.getter(name="healthCheckInterval")
2477
2779
  def health_check_interval(self) -> Optional[int]:
2478
2780
  """
2479
- The interval at which health checks are performed. Unit: seconds. Default value: `2`. Valid values: `1` to `50`.
2781
+ The interval at which health checks are performed. Unit: seconds.
2782
+
2783
+ Valid values: `1` to `50`.
2784
+
2785
+ > **NOTE:** This parameter takes effect only if you set `HealthCheckEnabled` to `true`.
2480
2786
  """
2481
2787
  return pulumi.get(self, "health_check_interval")
2482
2788
 
@@ -2484,7 +2790,15 @@ class ServerGroupHealthCheckConfig(dict):
2484
2790
  @pulumi.getter(name="healthCheckMethod")
2485
2791
  def health_check_method(self) -> Optional[str]:
2486
2792
  """
2487
- The HTTP method that is used for health checks. Default value: `GET`. Valid values: `GET`, `POST`, `HEAD`. **NOTE:** This parameter takes effect only when `health_check_protocol` is set to `HTTP`, `HTTPS`, or `gRPC`. From version 1.215.0, `health_check_method` can be set to `POST`.
2793
+ The HTTP method that is used for health checks. Valid values:
2794
+
2795
+ * `GET`: If the length of a response exceeds 8 KB, the response is truncated. However, the health check result is not affected.
2796
+
2797
+ * `POST`: gRPC health checks use the POST method by default.
2798
+
2799
+ * `HEAD`: HTTP and HTTPS health checks use the HEAD method by default.
2800
+
2801
+ > **NOTE:** This parameter takes effect only if you set `HealthCheckEnabled` to true and `HealthCheckProtocol` to `HTTP`, `HTTPS`, or `gRPC`.
2488
2802
  """
2489
2803
  return pulumi.get(self, "health_check_method")
2490
2804
 
@@ -2492,7 +2806,11 @@ class ServerGroupHealthCheckConfig(dict):
2492
2806
  @pulumi.getter(name="healthCheckPath")
2493
2807
  def health_check_path(self) -> Optional[str]:
2494
2808
  """
2495
- The path that is used for health checks. **NOTE:** This parameter takes effect only when `health_check_protocol` is set to `HTTP` or `HTTPS`.
2809
+ The URL that is used for health checks.
2810
+
2811
+ The URL must be 1 to 80 characters in length, and can contain letters, digits, and the following special characters: `- / . % ? # & =`. It can also contain the following extended characters: `_ ; ~ ! ( ) * [ ] @ $ ^ : ' , +`. The URL must start with a forward slash (`/`).
2812
+
2813
+ > **NOTE:** This parameter takes effect only if you set `HealthCheckEnabled` to `true` and `HealthCheckProtocol` to `HTTP` or `HTTPS`.
2496
2814
  """
2497
2815
  return pulumi.get(self, "health_check_path")
2498
2816
 
@@ -2500,7 +2818,12 @@ class ServerGroupHealthCheckConfig(dict):
2500
2818
  @pulumi.getter(name="healthCheckProtocol")
2501
2819
  def health_check_protocol(self) -> Optional[str]:
2502
2820
  """
2503
- The protocol that is used for health checks. Valid values: `HTTP`, `HTTPS`, `TCP` and `gRPC`.
2821
+ The protocol that is used for health checks. Valid values:
2822
+
2823
+ - `HTTP`: HTTP health checks simulate browser behaviors by sending HEAD or GET requests to probe the availability of backend servers.
2824
+ - `HTTPS`: HTTPS health checks simulate browser behaviors by sending HEAD or GET requests to probe the availability of backend servers. HTTPS provides higher security than HTTP because HTTPS supports data encryption.
2825
+ - `TCP`: TCP health checks send TCP SYN packets to a backend server to probe the availability of backend servers.
2826
+ - `gRPC`: gRPC health checks send POST or GET requests to a backend server to check whether the backend server is healthy.
2504
2827
  """
2505
2828
  return pulumi.get(self, "health_check_protocol")
2506
2829
 
@@ -2508,7 +2831,11 @@ class ServerGroupHealthCheckConfig(dict):
2508
2831
  @pulumi.getter(name="healthCheckTimeout")
2509
2832
  def health_check_timeout(self) -> Optional[int]:
2510
2833
  """
2511
- The timeout period for a health check response. If a backend Elastic Compute Service (ECS) instance does not send an expected response within the specified period of time, the ECS instance is considered unhealthy. Unit: seconds. Default value: `5`. Valid values: `1` to `300`. **NOTE:** If the value of `health_check_timeout` is smaller than the value of `health_check_interval`, the value of `health_check_timeout` is ignored and the value of `health_check_interval` is used.
2834
+ The timeout period of a health check response. If a backend ECS instance does not respond within the specified timeout period, the ECS instance fails the health check. Unit: seconds.
2835
+
2836
+ Valid values: `1` to `300`.
2837
+
2838
+ > **NOTE:** This parameter takes effect only if you set `HealthCheckEnabled` to `true`.
2512
2839
  """
2513
2840
  return pulumi.get(self, "health_check_timeout")
2514
2841
 
@@ -2516,7 +2843,11 @@ class ServerGroupHealthCheckConfig(dict):
2516
2843
  @pulumi.getter(name="healthyThreshold")
2517
2844
  def healthy_threshold(self) -> Optional[int]:
2518
2845
  """
2519
- The number of times that an unhealthy backend server must consecutively pass health checks before it is declared healthy. Default value: `3`. Valid values: `2` to `10`.
2846
+ The number of times that an unhealthy backend server must consecutively pass health checks before it is declared healthy. In this case, the health check status of the backend server changes from `fail` to `success`.
2847
+
2848
+ Valid values: `2` to `10`.
2849
+
2850
+ Default value: `3`.
2520
2851
  """
2521
2852
  return pulumi.get(self, "healthy_threshold")
2522
2853
 
@@ -2524,7 +2855,11 @@ class ServerGroupHealthCheckConfig(dict):
2524
2855
  @pulumi.getter(name="unhealthyThreshold")
2525
2856
  def unhealthy_threshold(self) -> Optional[int]:
2526
2857
  """
2527
- The number of times that a healthy backend server must consecutively fail health checks before it is declared unhealthy. Default value: `3`. Valid values: `2` to `10`.
2858
+ The number of times that a healthy backend server must consecutively fail health checks before it is declared unhealthy. In this case, the health check status of the backend server changes from `success` to `fail`.
2859
+
2860
+ Valid values: `2` to `10`.
2861
+
2862
+ Default value: `3`.
2528
2863
  """
2529
2864
  return pulumi.get(self, "unhealthy_threshold")
2530
2865
 
@@ -2540,6 +2875,8 @@ class ServerGroupServer(dict):
2540
2875
  suggest = "server_type"
2541
2876
  elif key == "remoteIpEnabled":
2542
2877
  suggest = "remote_ip_enabled"
2878
+ elif key == "serverGroupId":
2879
+ suggest = "server_group_id"
2543
2880
  elif key == "serverIp":
2544
2881
  suggest = "server_ip"
2545
2882
 
@@ -2560,26 +2897,38 @@ class ServerGroupServer(dict):
2560
2897
  description: Optional[str] = None,
2561
2898
  port: Optional[int] = None,
2562
2899
  remote_ip_enabled: Optional[bool] = None,
2900
+ server_group_id: Optional[str] = None,
2563
2901
  server_ip: Optional[str] = None,
2564
2902
  status: Optional[str] = None,
2565
2903
  weight: Optional[int] = None):
2566
2904
  """
2567
- :param str server_id: The ID of the backend server.
2568
- - If `server_group_type` is set to `Instance`, set the parameter to the ID of an Elastic Compute Service (ECS) instance, an elastic network interface (ENI), or an elastic container instance. These backend servers are specified by Ecs, Eni, or Eci.
2569
- - If `server_group_type` is set to `Ip`, set the parameter to an IP address specified in the server group.
2570
- - If `server_group_type` is set to `Fc`, set the parameter to the Alibaba Cloud Resource Name (ARN) of a function specified in the server group.
2571
- :param str server_type: The type of the server. The type of the server. Valid values:
2572
- - `Ecs`: an ECS instance.
2573
- - `Eni`: an ENI.
2574
- - `Eci`: an elastic container instance.
2575
- - `Ip`(Available since v1.194.0): an IP address.
2576
- - `Fc`(Available since v1.194.0): a function.
2577
- :param str description: The description of the backend server.
2578
- :param int port: The port used by the backend server. Valid values: `1` to `65535`. **Note:** This parameter is required if the `server_type` parameter is set to `Ecs`, `Eni`, `Eci`, or `Ip`. You do not need to configure this parameter if you set `server_type` to `Fc`.
2579
- :param bool remote_ip_enabled: Specifies whether to enable the remote IP address feature. You can specify up to 40 servers in each call. **Note:** If `server_type` is set to `Ip`, this parameter is available.
2580
- :param str server_ip: The IP address of an Elastic Compute Service (ECS) instance, an elastic network interface (ENI), or an elastic container instance. **Note:** If `server_group_type` is set to `Fc`, you do not need to configure parameters, otherwise this attribute is required. If `server_group_type` is set to `Ip`, the value of this property is the same as the `server_id` value.
2581
- :param str status: The status of the backend server.
2582
- :param int weight: The weight of the server. Default value: `100`. Valid values: `0` to `100`. If the value is set to `0`, no requests are forwarded to the server. **Note:** You do not need to set this parameter if you set `server_type` to `Fc`.
2905
+ :param str server_id: The ID of the backend server. You can specify at most 200 servers in each call.
2906
+
2907
+ * If the server group is of the `Instance` type, set ServerId to the ID of a resource of the `Ecs`, `Eni`, or `Eci` type.
2908
+
2909
+ * If the server group is of the `Ip` type, set ServerId to IP addresses.
2910
+
2911
+ > **NOTE:** You cannot perform this operation on a server group of the Function Compute type. You can call the [ListServerGroups](https://www.alibabacloud.com/help/en/doc-detail/213627.html) operation to query the type of server groups.
2912
+ :param str server_type: The type of the backend server. You can specify at most 200 servers in each call. Default values:
2913
+
2914
+ - `Ecs`: Elastic Compute Service (ECS) instance
2915
+ - `Eni`: elastic network interface (ENI)
2916
+ - `Eci`: elastic container instance
2917
+ - `Ip`: IP address
2918
+ - `Fc`: Function Compute
2919
+ :param str description: The description of the backend server. The description must be 2 to 256 characters in length, and cannot start with http:// or https://.
2920
+ :param int port: The port that is used by the backend server. Valid values: `1` to `65535`. You can specify at most 200 servers in each call.
2921
+
2922
+ > **NOTE:** This parameter is required if you set `ServerType` to `Ecs`, `Eni`, `Eci`, or `Ip`. You do not need to set this parameter if `ServerType` is set to `Fc`.
2923
+ :param bool remote_ip_enabled: Specifies whether to enable the remote IP feature. You can specify at most 200 servers in each call. Default values:
2924
+ :param str server_group_id: The ID of the server group.
2925
+ :param str server_ip: The IP address of the backend server. You can specify at most 200 servers in each call.
2926
+
2927
+ > **NOTE:** You do not need to set this parameter if you set `ServerType` to `Fc`.
2928
+ :param str status: The status of the resource
2929
+ :param int weight: The weight of the backend server. Valid values: `0` to `100`. Default value: `100`. If the value is set to `0`, no requests are forwarded to the server. You can specify at most 200 servers in each call.
2930
+
2931
+ > **NOTE:** You do not need to set this parameter if you set `ServerType` to `Fc`.
2583
2932
  """
2584
2933
  pulumi.set(__self__, "server_id", server_id)
2585
2934
  pulumi.set(__self__, "server_type", server_type)
@@ -2589,6 +2938,8 @@ class ServerGroupServer(dict):
2589
2938
  pulumi.set(__self__, "port", port)
2590
2939
  if remote_ip_enabled is not None:
2591
2940
  pulumi.set(__self__, "remote_ip_enabled", remote_ip_enabled)
2941
+ if server_group_id is not None:
2942
+ pulumi.set(__self__, "server_group_id", server_group_id)
2592
2943
  if server_ip is not None:
2593
2944
  pulumi.set(__self__, "server_ip", server_ip)
2594
2945
  if status is not None:
@@ -2600,10 +2951,13 @@ class ServerGroupServer(dict):
2600
2951
  @pulumi.getter(name="serverId")
2601
2952
  def server_id(self) -> str:
2602
2953
  """
2603
- The ID of the backend server.
2604
- - If `server_group_type` is set to `Instance`, set the parameter to the ID of an Elastic Compute Service (ECS) instance, an elastic network interface (ENI), or an elastic container instance. These backend servers are specified by Ecs, Eni, or Eci.
2605
- - If `server_group_type` is set to `Ip`, set the parameter to an IP address specified in the server group.
2606
- - If `server_group_type` is set to `Fc`, set the parameter to the Alibaba Cloud Resource Name (ARN) of a function specified in the server group.
2954
+ The ID of the backend server. You can specify at most 200 servers in each call.
2955
+
2956
+ * If the server group is of the `Instance` type, set ServerId to the ID of a resource of the `Ecs`, `Eni`, or `Eci` type.
2957
+
2958
+ * If the server group is of the `Ip` type, set ServerId to IP addresses.
2959
+
2960
+ > **NOTE:** You cannot perform this operation on a server group of the Function Compute type. You can call the [ListServerGroups](https://www.alibabacloud.com/help/en/doc-detail/213627.html) operation to query the type of server groups.
2607
2961
  """
2608
2962
  return pulumi.get(self, "server_id")
2609
2963
 
@@ -2611,12 +2965,13 @@ class ServerGroupServer(dict):
2611
2965
  @pulumi.getter(name="serverType")
2612
2966
  def server_type(self) -> str:
2613
2967
  """
2614
- The type of the server. The type of the server. Valid values:
2615
- - `Ecs`: an ECS instance.
2616
- - `Eni`: an ENI.
2617
- - `Eci`: an elastic container instance.
2618
- - `Ip`(Available since v1.194.0): an IP address.
2619
- - `Fc`(Available since v1.194.0): a function.
2968
+ The type of the backend server. You can specify at most 200 servers in each call. Default values:
2969
+
2970
+ - `Ecs`: Elastic Compute Service (ECS) instance
2971
+ - `Eni`: elastic network interface (ENI)
2972
+ - `Eci`: elastic container instance
2973
+ - `Ip`: IP address
2974
+ - `Fc`: Function Compute
2620
2975
  """
2621
2976
  return pulumi.get(self, "server_type")
2622
2977
 
@@ -2624,7 +2979,7 @@ class ServerGroupServer(dict):
2624
2979
  @pulumi.getter
2625
2980
  def description(self) -> Optional[str]:
2626
2981
  """
2627
- The description of the backend server.
2982
+ The description of the backend server. The description must be 2 to 256 characters in length, and cannot start with http:// or https://.
2628
2983
  """
2629
2984
  return pulumi.get(self, "description")
2630
2985
 
@@ -2632,7 +2987,9 @@ class ServerGroupServer(dict):
2632
2987
  @pulumi.getter
2633
2988
  def port(self) -> Optional[int]:
2634
2989
  """
2635
- The port used by the backend server. Valid values: `1` to `65535`. **Note:** This parameter is required if the `server_type` parameter is set to `Ecs`, `Eni`, `Eci`, or `Ip`. You do not need to configure this parameter if you set `server_type` to `Fc`.
2990
+ The port that is used by the backend server. Valid values: `1` to `65535`. You can specify at most 200 servers in each call.
2991
+
2992
+ > **NOTE:** This parameter is required if you set `ServerType` to `Ecs`, `Eni`, `Eci`, or `Ip`. You do not need to set this parameter if `ServerType` is set to `Fc`.
2636
2993
  """
2637
2994
  return pulumi.get(self, "port")
2638
2995
 
@@ -2640,15 +2997,25 @@ class ServerGroupServer(dict):
2640
2997
  @pulumi.getter(name="remoteIpEnabled")
2641
2998
  def remote_ip_enabled(self) -> Optional[bool]:
2642
2999
  """
2643
- Specifies whether to enable the remote IP address feature. You can specify up to 40 servers in each call. **Note:** If `server_type` is set to `Ip`, this parameter is available.
3000
+ Specifies whether to enable the remote IP feature. You can specify at most 200 servers in each call. Default values:
2644
3001
  """
2645
3002
  return pulumi.get(self, "remote_ip_enabled")
2646
3003
 
3004
+ @property
3005
+ @pulumi.getter(name="serverGroupId")
3006
+ def server_group_id(self) -> Optional[str]:
3007
+ """
3008
+ The ID of the server group.
3009
+ """
3010
+ return pulumi.get(self, "server_group_id")
3011
+
2647
3012
  @property
2648
3013
  @pulumi.getter(name="serverIp")
2649
3014
  def server_ip(self) -> Optional[str]:
2650
3015
  """
2651
- The IP address of an Elastic Compute Service (ECS) instance, an elastic network interface (ENI), or an elastic container instance. **Note:** If `server_group_type` is set to `Fc`, you do not need to configure parameters, otherwise this attribute is required. If `server_group_type` is set to `Ip`, the value of this property is the same as the `server_id` value.
3016
+ The IP address of the backend server. You can specify at most 200 servers in each call.
3017
+
3018
+ > **NOTE:** You do not need to set this parameter if you set `ServerType` to `Fc`.
2652
3019
  """
2653
3020
  return pulumi.get(self, "server_ip")
2654
3021
 
@@ -2656,7 +3023,7 @@ class ServerGroupServer(dict):
2656
3023
  @pulumi.getter
2657
3024
  def status(self) -> Optional[str]:
2658
3025
  """
2659
- The status of the backend server.
3026
+ The status of the resource
2660
3027
  """
2661
3028
  return pulumi.get(self, "status")
2662
3029
 
@@ -2664,11 +3031,71 @@ class ServerGroupServer(dict):
2664
3031
  @pulumi.getter
2665
3032
  def weight(self) -> Optional[int]:
2666
3033
  """
2667
- The weight of the server. Default value: `100`. Valid values: `0` to `100`. If the value is set to `0`, no requests are forwarded to the server. **Note:** You do not need to set this parameter if you set `server_type` to `Fc`.
3034
+ The weight of the backend server. Valid values: `0` to `100`. Default value: `100`. If the value is set to `0`, no requests are forwarded to the server. You can specify at most 200 servers in each call.
3035
+
3036
+ > **NOTE:** You do not need to set this parameter if you set `ServerType` to `Fc`.
2668
3037
  """
2669
3038
  return pulumi.get(self, "weight")
2670
3039
 
2671
3040
 
3041
+ @pulumi.output_type
3042
+ class ServerGroupSlowStartConfig(dict):
3043
+ @staticmethod
3044
+ def __key_warning(key: str):
3045
+ suggest = None
3046
+ if key == "slowStartDuration":
3047
+ suggest = "slow_start_duration"
3048
+ elif key == "slowStartEnabled":
3049
+ suggest = "slow_start_enabled"
3050
+
3051
+ if suggest:
3052
+ pulumi.log.warn(f"Key '{key}' not found in ServerGroupSlowStartConfig. Access the value via the '{suggest}' property getter instead.")
3053
+
3054
+ def __getitem__(self, key: str) -> Any:
3055
+ ServerGroupSlowStartConfig.__key_warning(key)
3056
+ return super().__getitem__(key)
3057
+
3058
+ def get(self, key: str, default = None) -> Any:
3059
+ ServerGroupSlowStartConfig.__key_warning(key)
3060
+ return super().get(key, default)
3061
+
3062
+ def __init__(__self__, *,
3063
+ slow_start_duration: Optional[int] = None,
3064
+ slow_start_enabled: Optional[bool] = None):
3065
+ """
3066
+ :param int slow_start_duration: The duration of a slow start.
3067
+
3068
+ Valid values: 30 to 900.
3069
+
3070
+ Default value: 30.
3071
+ :param bool slow_start_enabled: Indicates whether slow starts are enabled. Valid values:
3072
+ """
3073
+ if slow_start_duration is not None:
3074
+ pulumi.set(__self__, "slow_start_duration", slow_start_duration)
3075
+ if slow_start_enabled is not None:
3076
+ pulumi.set(__self__, "slow_start_enabled", slow_start_enabled)
3077
+
3078
+ @property
3079
+ @pulumi.getter(name="slowStartDuration")
3080
+ def slow_start_duration(self) -> Optional[int]:
3081
+ """
3082
+ The duration of a slow start.
3083
+
3084
+ Valid values: 30 to 900.
3085
+
3086
+ Default value: 30.
3087
+ """
3088
+ return pulumi.get(self, "slow_start_duration")
3089
+
3090
+ @property
3091
+ @pulumi.getter(name="slowStartEnabled")
3092
+ def slow_start_enabled(self) -> Optional[bool]:
3093
+ """
3094
+ Indicates whether slow starts are enabled. Valid values:
3095
+ """
3096
+ return pulumi.get(self, "slow_start_enabled")
3097
+
3098
+
2672
3099
  @pulumi.output_type
2673
3100
  class ServerGroupStickySessionConfig(dict):
2674
3101
  @staticmethod
@@ -2698,10 +3125,30 @@ class ServerGroupStickySessionConfig(dict):
2698
3125
  sticky_session_enabled: Optional[bool] = None,
2699
3126
  sticky_session_type: Optional[str] = None):
2700
3127
  """
2701
- :param str cookie: The cookie to be configured on the server. **NOTE:** This parameter takes effect when the `sticky_session_enabled` parameter is set to `true` and the `sticky_session_type` parameter is set to `Server`.
2702
- :param int cookie_timeout: The timeout period of a cookie. Unit: seconds. Default value: `1000`. Valid values: `1` to `86400`. **NOTE:** This parameter takes effect when the `sticky_session_enabled` parameter is set to `true` and the `sticky_session_type` parameter is set to `Insert`.
2703
- :param bool sticky_session_enabled: Specifies whether to enable session persistence. Default value: `false`. Valid values: `true`, `false`. **NOTE:** This parameter takes effect when the `server_group_type` parameter is set to `Instance` or `Ip`.
2704
- :param str sticky_session_type: The method that is used to handle a cookie. Valid values: `Server`, `Insert`.
3128
+ :param str cookie: The cookie to be configured on the server.
3129
+
3130
+ The cookie must be 1 to 200 characters in length and can contain only ASCII characters and digits. It cannot contain commas (,), semicolons (;), or space characters. It cannot start with a dollar sign ($).
3131
+
3132
+ > **NOTE:** This parameter takes effect when the `StickySessionEnabled` parameter is set to `true` and the `StickySessionType` parameter is set to `Server`.
3133
+ :param int cookie_timeout: The maximum amount of time to wait before the session cookie expires. Unit: seconds.
3134
+
3135
+ Valid values: `1` to `86400`.
3136
+
3137
+ Default value: `1000`.
3138
+
3139
+ > **NOTE:** This parameter takes effect only when `StickySessionEnabled` is set to `true` and `StickySessionType` is set to `Insert`.
3140
+ :param bool sticky_session_enabled: Specifies whether to enable session persistence. Valid values:
3141
+ :param str sticky_session_type: The method that is used to handle a cookie. Valid values:
3142
+
3143
+ * `Insert`: inserts a cookie.
3144
+
3145
+ ALB inserts a cookie (SERVERID) into the first HTTP or HTTPS response packet that is sent to a client. The next request from the client contains this cookie and the listener forwards this request to the recorded backend server.
3146
+
3147
+ * `Server`: rewrites a cookie.
3148
+
3149
+ When ALB detects a user-defined cookie, it overwrites the original cookie with the user-defined cookie. Subsequent requests to ALB carry this user-defined cookie, and ALB determines the destination servers of the requests based on the cookies.
3150
+
3151
+ > **NOTE:** This parameter takes effect when the `StickySessionEnabled` parameter is set to `true` for the server group.
2705
3152
  """
2706
3153
  if cookie is not None:
2707
3154
  pulumi.set(__self__, "cookie", cookie)
@@ -2716,7 +3163,11 @@ class ServerGroupStickySessionConfig(dict):
2716
3163
  @pulumi.getter
2717
3164
  def cookie(self) -> Optional[str]:
2718
3165
  """
2719
- The cookie to be configured on the server. **NOTE:** This parameter takes effect when the `sticky_session_enabled` parameter is set to `true` and the `sticky_session_type` parameter is set to `Server`.
3166
+ The cookie to be configured on the server.
3167
+
3168
+ The cookie must be 1 to 200 characters in length and can contain only ASCII characters and digits. It cannot contain commas (,), semicolons (;), or space characters. It cannot start with a dollar sign ($).
3169
+
3170
+ > **NOTE:** This parameter takes effect when the `StickySessionEnabled` parameter is set to `true` and the `StickySessionType` parameter is set to `Server`.
2720
3171
  """
2721
3172
  return pulumi.get(self, "cookie")
2722
3173
 
@@ -2724,7 +3175,13 @@ class ServerGroupStickySessionConfig(dict):
2724
3175
  @pulumi.getter(name="cookieTimeout")
2725
3176
  def cookie_timeout(self) -> Optional[int]:
2726
3177
  """
2727
- The timeout period of a cookie. Unit: seconds. Default value: `1000`. Valid values: `1` to `86400`. **NOTE:** This parameter takes effect when the `sticky_session_enabled` parameter is set to `true` and the `sticky_session_type` parameter is set to `Insert`.
3178
+ The maximum amount of time to wait before the session cookie expires. Unit: seconds.
3179
+
3180
+ Valid values: `1` to `86400`.
3181
+
3182
+ Default value: `1000`.
3183
+
3184
+ > **NOTE:** This parameter takes effect only when `StickySessionEnabled` is set to `true` and `StickySessionType` is set to `Insert`.
2728
3185
  """
2729
3186
  return pulumi.get(self, "cookie_timeout")
2730
3187
 
@@ -2732,7 +3189,7 @@ class ServerGroupStickySessionConfig(dict):
2732
3189
  @pulumi.getter(name="stickySessionEnabled")
2733
3190
  def sticky_session_enabled(self) -> Optional[bool]:
2734
3191
  """
2735
- Specifies whether to enable session persistence. Default value: `false`. Valid values: `true`, `false`. **NOTE:** This parameter takes effect when the `server_group_type` parameter is set to `Instance` or `Ip`.
3192
+ Specifies whether to enable session persistence. Valid values:
2736
3193
  """
2737
3194
  return pulumi.get(self, "sticky_session_enabled")
2738
3195
 
@@ -2740,11 +3197,52 @@ class ServerGroupStickySessionConfig(dict):
2740
3197
  @pulumi.getter(name="stickySessionType")
2741
3198
  def sticky_session_type(self) -> Optional[str]:
2742
3199
  """
2743
- The method that is used to handle a cookie. Valid values: `Server`, `Insert`.
3200
+ The method that is used to handle a cookie. Valid values:
3201
+
3202
+ * `Insert`: inserts a cookie.
3203
+
3204
+ ALB inserts a cookie (SERVERID) into the first HTTP or HTTPS response packet that is sent to a client. The next request from the client contains this cookie and the listener forwards this request to the recorded backend server.
3205
+
3206
+ * `Server`: rewrites a cookie.
3207
+
3208
+ When ALB detects a user-defined cookie, it overwrites the original cookie with the user-defined cookie. Subsequent requests to ALB carry this user-defined cookie, and ALB determines the destination servers of the requests based on the cookies.
3209
+
3210
+ > **NOTE:** This parameter takes effect when the `StickySessionEnabled` parameter is set to `true` for the server group.
2744
3211
  """
2745
3212
  return pulumi.get(self, "sticky_session_type")
2746
3213
 
2747
3214
 
3215
+ @pulumi.output_type
3216
+ class ServerGroupUchConfig(dict):
3217
+ def __init__(__self__, *,
3218
+ type: Optional[str] = None,
3219
+ value: Optional[str] = None):
3220
+ """
3221
+ :param str type: The parameter type. Only QueryString can be filled.
3222
+ :param str value: Consistency hash parameter value
3223
+ """
3224
+ if type is not None:
3225
+ pulumi.set(__self__, "type", type)
3226
+ if value is not None:
3227
+ pulumi.set(__self__, "value", value)
3228
+
3229
+ @property
3230
+ @pulumi.getter
3231
+ def type(self) -> Optional[str]:
3232
+ """
3233
+ The parameter type. Only QueryString can be filled.
3234
+ """
3235
+ return pulumi.get(self, "type")
3236
+
3237
+ @property
3238
+ @pulumi.getter
3239
+ def value(self) -> Optional[str]:
3240
+ """
3241
+ Consistency hash parameter value
3242
+ """
3243
+ return pulumi.get(self, "value")
3244
+
3245
+
2748
3246
  @pulumi.output_type
2749
3247
  class GetAclsAclResult(dict):
2750
3248
  def __init__(__self__, *,
@@ -5152,17 +5650,17 @@ class GetServerGroupsGroupResult(dict):
5152
5650
  tags: Mapping[str, str],
5153
5651
  vpc_id: str):
5154
5652
  """
5155
- :param Sequence['GetServerGroupsGroupHealthCheckConfigArgs'] health_check_configs: The configuration of health checks.
5653
+ :param Sequence['GetServerGroupsGroupHealthCheckConfigArgs'] health_check_configs: The configuration of health checks. **Note:** `health_check_config` takes effect only if `enable_details` is set to `true`.
5156
5654
  :param str id: The ID of the Server Group.
5157
- :param str protocol: The server protocol. Valid values: `HTTP` and `HTTPS`. Default value: `HTTP`.
5158
- :param str scheduler: The scheduling algorithm. Valid values: `Wrr`, `Wlc` and `Sch`.
5159
- :param str server_group_id: The first ID of the res ource.
5160
- :param str server_group_name: The name of the resource.
5161
- :param Sequence['GetServerGroupsGroupServerArgs'] servers: The backend server.
5162
- :param str status: The status of the resource.
5163
- :param Sequence['GetServerGroupsGroupStickySessionConfigArgs'] sticky_session_configs: The configuration of the sticky session.
5164
- :param Mapping[str, str] tags: A map of tags assigned to the group.
5165
- :param str vpc_id: The ID of the VPC that you want to access.
5655
+ :param str protocol: The backend protocol.
5656
+ :param str scheduler: The scheduling algorithm.
5657
+ :param str server_group_id: The ID of the Server Group.
5658
+ :param str server_group_name: The names of the Server Group.
5659
+ :param Sequence['GetServerGroupsGroupServerArgs'] servers: The backend server. **Note:** `servers` takes effect only if `enable_details` is set to `true`.
5660
+ :param str status: The status of the Server Group. Valid values: `Available`, `Configuring`, `Provisioning`.
5661
+ :param Sequence['GetServerGroupsGroupStickySessionConfigArgs'] sticky_session_configs: The configuration of the sticky session. **Note:** `sticky_session_config` takes effect only if `enable_details` is set to `true`.
5662
+ :param Mapping[str, str] tags: A mapping of tags to assign to the resource.
5663
+ :param str vpc_id: The ID of the virtual private cloud (VPC).
5166
5664
  """
5167
5665
  pulumi.set(__self__, "health_check_configs", health_check_configs)
5168
5666
  pulumi.set(__self__, "id", id)
@@ -5180,7 +5678,7 @@ class GetServerGroupsGroupResult(dict):
5180
5678
  @pulumi.getter(name="healthCheckConfigs")
5181
5679
  def health_check_configs(self) -> Sequence['outputs.GetServerGroupsGroupHealthCheckConfigResult']:
5182
5680
  """
5183
- The configuration of health checks.
5681
+ The configuration of health checks. **Note:** `health_check_config` takes effect only if `enable_details` is set to `true`.
5184
5682
  """
5185
5683
  return pulumi.get(self, "health_check_configs")
5186
5684
 
@@ -5196,7 +5694,7 @@ class GetServerGroupsGroupResult(dict):
5196
5694
  @pulumi.getter
5197
5695
  def protocol(self) -> str:
5198
5696
  """
5199
- The server protocol. Valid values: `HTTP` and `HTTPS`. Default value: `HTTP`.
5697
+ The backend protocol.
5200
5698
  """
5201
5699
  return pulumi.get(self, "protocol")
5202
5700
 
@@ -5204,7 +5702,7 @@ class GetServerGroupsGroupResult(dict):
5204
5702
  @pulumi.getter
5205
5703
  def scheduler(self) -> str:
5206
5704
  """
5207
- The scheduling algorithm. Valid values: `Wrr`, `Wlc` and `Sch`.
5705
+ The scheduling algorithm.
5208
5706
  """
5209
5707
  return pulumi.get(self, "scheduler")
5210
5708
 
@@ -5212,7 +5710,7 @@ class GetServerGroupsGroupResult(dict):
5212
5710
  @pulumi.getter(name="serverGroupId")
5213
5711
  def server_group_id(self) -> str:
5214
5712
  """
5215
- The first ID of the res ource.
5713
+ The ID of the Server Group.
5216
5714
  """
5217
5715
  return pulumi.get(self, "server_group_id")
5218
5716
 
@@ -5220,7 +5718,7 @@ class GetServerGroupsGroupResult(dict):
5220
5718
  @pulumi.getter(name="serverGroupName")
5221
5719
  def server_group_name(self) -> str:
5222
5720
  """
5223
- The name of the resource.
5721
+ The names of the Server Group.
5224
5722
  """
5225
5723
  return pulumi.get(self, "server_group_name")
5226
5724
 
@@ -5228,7 +5726,7 @@ class GetServerGroupsGroupResult(dict):
5228
5726
  @pulumi.getter
5229
5727
  def servers(self) -> Sequence['outputs.GetServerGroupsGroupServerResult']:
5230
5728
  """
5231
- The backend server.
5729
+ The backend server. **Note:** `servers` takes effect only if `enable_details` is set to `true`.
5232
5730
  """
5233
5731
  return pulumi.get(self, "servers")
5234
5732
 
@@ -5236,7 +5734,7 @@ class GetServerGroupsGroupResult(dict):
5236
5734
  @pulumi.getter
5237
5735
  def status(self) -> str:
5238
5736
  """
5239
- The status of the resource.
5737
+ The status of the Server Group. Valid values: `Available`, `Configuring`, `Provisioning`.
5240
5738
  """
5241
5739
  return pulumi.get(self, "status")
5242
5740
 
@@ -5244,7 +5742,7 @@ class GetServerGroupsGroupResult(dict):
5244
5742
  @pulumi.getter(name="stickySessionConfigs")
5245
5743
  def sticky_session_configs(self) -> Sequence['outputs.GetServerGroupsGroupStickySessionConfigResult']:
5246
5744
  """
5247
- The configuration of the sticky session.
5745
+ The configuration of the sticky session. **Note:** `sticky_session_config` takes effect only if `enable_details` is set to `true`.
5248
5746
  """
5249
5747
  return pulumi.get(self, "sticky_session_configs")
5250
5748
 
@@ -5252,7 +5750,7 @@ class GetServerGroupsGroupResult(dict):
5252
5750
  @pulumi.getter
5253
5751
  def tags(self) -> Mapping[str, str]:
5254
5752
  """
5255
- A map of tags assigned to the group.
5753
+ A mapping of tags to assign to the resource.
5256
5754
  """
5257
5755
  return pulumi.get(self, "tags")
5258
5756
 
@@ -5260,7 +5758,7 @@ class GetServerGroupsGroupResult(dict):
5260
5758
  @pulumi.getter(name="vpcId")
5261
5759
  def vpc_id(self) -> str:
5262
5760
  """
5263
- The ID of the VPC that you want to access.
5761
+ The ID of the virtual private cloud (VPC).
5264
5762
  """
5265
5763
  return pulumi.get(self, "vpc_id")
5266
5764
 
@@ -5281,18 +5779,18 @@ class GetServerGroupsGroupHealthCheckConfigResult(dict):
5281
5779
  healthy_threshold: int,
5282
5780
  unhealthy_threshold: int):
5283
5781
  """
5284
- :param Sequence[str] health_check_codes: The status code for a successful health check. Multiple status codes can be specified as a list. Valid values: `http_2xx`, `http_3xx`, `http_4xx`, and `http_5xx`. Default value: `http_2xx`. **NOTE:** This parameter exists if the `HealthCheckProtocol` parameter is set to `HTTP`.
5285
- :param int health_check_connect_port: The port of the backend server that is used for health checks. Valid values: `0` to `65535`. Default value: `0`. A value of `0` indicates that a backend server port is used for health checks.
5286
- :param bool health_check_enabled: Indicates whether health checks are enabled. Valid values: `true`, `false`. Default value: `true`.
5782
+ :param Sequence[str] health_check_codes: The status code for a successful health check. Multiple status codes can be specified as a list.
5783
+ :param int health_check_connect_port: The port of the backend server that is used for health checks.
5784
+ :param bool health_check_enabled: Indicates whether health checks are enabled.
5287
5785
  :param str health_check_host: The domain name that is used for health checks.
5288
- :param str health_check_http_version: HTTP protocol version. Valid values: `HTTP1.0` and `HTTP1.1`. Default value: `HTTP1.1`. **NOTE:** This parameter exists if the `HealthCheckProtocol` parameter is set to `HTTP`.
5289
- :param int health_check_interval: The time interval between two consecutive health checks. Unit: seconds. Valid values: `1` to `50`. Default value: `2`.
5290
- :param str health_check_method: Health check method. Valid values: `GET` and `HEAD`. Default: `GET`. **NOTE:** This parameter exists if the `HealthCheckProtocol` parameter is set to `HTTP`.
5291
- :param str health_check_path: The forwarding rule path of health checks. **NOTE:** This parameter exists if the `HealthCheckProtocol` parameter is set to `HTTP`.
5292
- :param str health_check_protocol: Health check protocol. Valid values: `HTTP` and `TCP`.
5293
- :param int health_check_timeout: The timeout period of a health check response. If a backend Elastic Compute Service (ECS) instance does not send an expected response within the specified period of time, the ECS instance is considered unhealthy. Unit: seconds. Valid values: `1` to `300`. Default value: `5`. **NOTE:** If the value of the `HealthCHeckTimeout` parameter is smaller than that of the `HealthCheckInterval` parameter, the value of the `HealthCHeckTimeout` parameter is ignored and the value of the `HealthCheckInterval` parameter is regarded as the timeout period.
5294
- :param int healthy_threshold: The number of health checks that an unhealthy backend server must pass consecutively before it is declared healthy. In this case, the health check state is changed from fail to success. Valid values: `2` to `10`. Default value: `3`.
5295
- :param int unhealthy_threshold: The number of consecutive health checks that a healthy backend server must consecutively fail before it is declared unhealthy. In this case, the health check state is changed from success to fail. Valid values: `2` to `10`. Default value: `3`.
5786
+ :param str health_check_http_version: HTTP protocol version.
5787
+ :param int health_check_interval: The time interval between two consecutive health checks.
5788
+ :param str health_check_method: Health check method.
5789
+ :param str health_check_path: The forwarding rule path of health checks.
5790
+ :param str health_check_protocol: Health check protocol.
5791
+ :param int health_check_timeout: The timeout period of a health check response. If a backend Elastic Compute Service (ECS) instance does not send an expected response within the specified period of time, the ECS instance is considered unhealthy.
5792
+ :param int healthy_threshold: The number of health checks that an unhealthy backend server must pass consecutively before it is declared healthy. In this case, the health check state is changed from fail to success.
5793
+ :param int unhealthy_threshold: The number of consecutive health checks that a healthy backend server must consecutively fail before it is declared unhealthy. In this case, the health check state is changed from success to fail.
5296
5794
  """
5297
5795
  pulumi.set(__self__, "health_check_codes", health_check_codes)
5298
5796
  pulumi.set(__self__, "health_check_connect_port", health_check_connect_port)
@@ -5311,7 +5809,7 @@ class GetServerGroupsGroupHealthCheckConfigResult(dict):
5311
5809
  @pulumi.getter(name="healthCheckCodes")
5312
5810
  def health_check_codes(self) -> Sequence[str]:
5313
5811
  """
5314
- The status code for a successful health check. Multiple status codes can be specified as a list. Valid values: `http_2xx`, `http_3xx`, `http_4xx`, and `http_5xx`. Default value: `http_2xx`. **NOTE:** This parameter exists if the `HealthCheckProtocol` parameter is set to `HTTP`.
5812
+ The status code for a successful health check. Multiple status codes can be specified as a list.
5315
5813
  """
5316
5814
  return pulumi.get(self, "health_check_codes")
5317
5815
 
@@ -5319,7 +5817,7 @@ class GetServerGroupsGroupHealthCheckConfigResult(dict):
5319
5817
  @pulumi.getter(name="healthCheckConnectPort")
5320
5818
  def health_check_connect_port(self) -> int:
5321
5819
  """
5322
- The port of the backend server that is used for health checks. Valid values: `0` to `65535`. Default value: `0`. A value of `0` indicates that a backend server port is used for health checks.
5820
+ The port of the backend server that is used for health checks.
5323
5821
  """
5324
5822
  return pulumi.get(self, "health_check_connect_port")
5325
5823
 
@@ -5327,7 +5825,7 @@ class GetServerGroupsGroupHealthCheckConfigResult(dict):
5327
5825
  @pulumi.getter(name="healthCheckEnabled")
5328
5826
  def health_check_enabled(self) -> bool:
5329
5827
  """
5330
- Indicates whether health checks are enabled. Valid values: `true`, `false`. Default value: `true`.
5828
+ Indicates whether health checks are enabled.
5331
5829
  """
5332
5830
  return pulumi.get(self, "health_check_enabled")
5333
5831
 
@@ -5343,7 +5841,7 @@ class GetServerGroupsGroupHealthCheckConfigResult(dict):
5343
5841
  @pulumi.getter(name="healthCheckHttpVersion")
5344
5842
  def health_check_http_version(self) -> str:
5345
5843
  """
5346
- HTTP protocol version. Valid values: `HTTP1.0` and `HTTP1.1`. Default value: `HTTP1.1`. **NOTE:** This parameter exists if the `HealthCheckProtocol` parameter is set to `HTTP`.
5844
+ HTTP protocol version.
5347
5845
  """
5348
5846
  return pulumi.get(self, "health_check_http_version")
5349
5847
 
@@ -5351,7 +5849,7 @@ class GetServerGroupsGroupHealthCheckConfigResult(dict):
5351
5849
  @pulumi.getter(name="healthCheckInterval")
5352
5850
  def health_check_interval(self) -> int:
5353
5851
  """
5354
- The time interval between two consecutive health checks. Unit: seconds. Valid values: `1` to `50`. Default value: `2`.
5852
+ The time interval between two consecutive health checks.
5355
5853
  """
5356
5854
  return pulumi.get(self, "health_check_interval")
5357
5855
 
@@ -5359,7 +5857,7 @@ class GetServerGroupsGroupHealthCheckConfigResult(dict):
5359
5857
  @pulumi.getter(name="healthCheckMethod")
5360
5858
  def health_check_method(self) -> str:
5361
5859
  """
5362
- Health check method. Valid values: `GET` and `HEAD`. Default: `GET`. **NOTE:** This parameter exists if the `HealthCheckProtocol` parameter is set to `HTTP`.
5860
+ Health check method.
5363
5861
  """
5364
5862
  return pulumi.get(self, "health_check_method")
5365
5863
 
@@ -5367,7 +5865,7 @@ class GetServerGroupsGroupHealthCheckConfigResult(dict):
5367
5865
  @pulumi.getter(name="healthCheckPath")
5368
5866
  def health_check_path(self) -> str:
5369
5867
  """
5370
- The forwarding rule path of health checks. **NOTE:** This parameter exists if the `HealthCheckProtocol` parameter is set to `HTTP`.
5868
+ The forwarding rule path of health checks.
5371
5869
  """
5372
5870
  return pulumi.get(self, "health_check_path")
5373
5871
 
@@ -5375,7 +5873,7 @@ class GetServerGroupsGroupHealthCheckConfigResult(dict):
5375
5873
  @pulumi.getter(name="healthCheckProtocol")
5376
5874
  def health_check_protocol(self) -> str:
5377
5875
  """
5378
- Health check protocol. Valid values: `HTTP` and `TCP`.
5876
+ Health check protocol.
5379
5877
  """
5380
5878
  return pulumi.get(self, "health_check_protocol")
5381
5879
 
@@ -5383,7 +5881,7 @@ class GetServerGroupsGroupHealthCheckConfigResult(dict):
5383
5881
  @pulumi.getter(name="healthCheckTimeout")
5384
5882
  def health_check_timeout(self) -> int:
5385
5883
  """
5386
- The timeout period of a health check response. If a backend Elastic Compute Service (ECS) instance does not send an expected response within the specified period of time, the ECS instance is considered unhealthy. Unit: seconds. Valid values: `1` to `300`. Default value: `5`. **NOTE:** If the value of the `HealthCHeckTimeout` parameter is smaller than that of the `HealthCheckInterval` parameter, the value of the `HealthCHeckTimeout` parameter is ignored and the value of the `HealthCheckInterval` parameter is regarded as the timeout period.
5884
+ The timeout period of a health check response. If a backend Elastic Compute Service (ECS) instance does not send an expected response within the specified period of time, the ECS instance is considered unhealthy.
5387
5885
  """
5388
5886
  return pulumi.get(self, "health_check_timeout")
5389
5887
 
@@ -5391,7 +5889,7 @@ class GetServerGroupsGroupHealthCheckConfigResult(dict):
5391
5889
  @pulumi.getter(name="healthyThreshold")
5392
5890
  def healthy_threshold(self) -> int:
5393
5891
  """
5394
- The number of health checks that an unhealthy backend server must pass consecutively before it is declared healthy. In this case, the health check state is changed from fail to success. Valid values: `2` to `10`. Default value: `3`.
5892
+ The number of health checks that an unhealthy backend server must pass consecutively before it is declared healthy. In this case, the health check state is changed from fail to success.
5395
5893
  """
5396
5894
  return pulumi.get(self, "healthy_threshold")
5397
5895
 
@@ -5399,7 +5897,7 @@ class GetServerGroupsGroupHealthCheckConfigResult(dict):
5399
5897
  @pulumi.getter(name="unhealthyThreshold")
5400
5898
  def unhealthy_threshold(self) -> int:
5401
5899
  """
5402
- The number of consecutive health checks that a healthy backend server must consecutively fail before it is declared unhealthy. In this case, the health check state is changed from success to fail. Valid values: `2` to `10`. Default value: `3`.
5900
+ The number of consecutive health checks that a healthy backend server must consecutively fail before it is declared unhealthy. In this case, the health check state is changed from success to fail.
5403
5901
  """
5404
5902
  return pulumi.get(self, "unhealthy_threshold")
5405
5903
 
@@ -5416,12 +5914,12 @@ class GetServerGroupsGroupServerResult(dict):
5416
5914
  weight: int):
5417
5915
  """
5418
5916
  :param str description: The description of the server.
5419
- :param int port: The port that is used by the server. Valid values: `1` to `65535`.
5917
+ :param int port: The port that is used by the server.
5420
5918
  :param str server_id: The ID of the ECS instance, ENI instance or ECI instance.
5421
5919
  :param str server_ip: The IP address of the ENI instance when it is in the inclusive ENI mode.
5422
- :param str server_type: The type of the server. The type of the server. Valid values: `Ecs`, `Eni` and `Eci`.
5423
- :param str status: The status of the resource.
5424
- :param int weight: The weight of the server. Valid values: `0` to `100`. Default value: `100`. If the value is set to `0`, no requests are forwarded to the server.
5920
+ :param str server_type: The type of the server. The type of the server.
5921
+ :param str status: The status of the Server Group. Valid values: `Available`, `Configuring`, `Provisioning`.
5922
+ :param int weight: The weight of the server.
5425
5923
  """
5426
5924
  pulumi.set(__self__, "description", description)
5427
5925
  pulumi.set(__self__, "port", port)
@@ -5443,7 +5941,7 @@ class GetServerGroupsGroupServerResult(dict):
5443
5941
  @pulumi.getter
5444
5942
  def port(self) -> int:
5445
5943
  """
5446
- The port that is used by the server. Valid values: `1` to `65535`.
5944
+ The port that is used by the server.
5447
5945
  """
5448
5946
  return pulumi.get(self, "port")
5449
5947
 
@@ -5467,7 +5965,7 @@ class GetServerGroupsGroupServerResult(dict):
5467
5965
  @pulumi.getter(name="serverType")
5468
5966
  def server_type(self) -> str:
5469
5967
  """
5470
- The type of the server. The type of the server. Valid values: `Ecs`, `Eni` and `Eci`.
5968
+ The type of the server. The type of the server.
5471
5969
  """
5472
5970
  return pulumi.get(self, "server_type")
5473
5971
 
@@ -5475,7 +5973,7 @@ class GetServerGroupsGroupServerResult(dict):
5475
5973
  @pulumi.getter
5476
5974
  def status(self) -> str:
5477
5975
  """
5478
- The status of the resource.
5976
+ The status of the Server Group. Valid values: `Available`, `Configuring`, `Provisioning`.
5479
5977
  """
5480
5978
  return pulumi.get(self, "status")
5481
5979
 
@@ -5483,7 +5981,7 @@ class GetServerGroupsGroupServerResult(dict):
5483
5981
  @pulumi.getter
5484
5982
  def weight(self) -> int:
5485
5983
  """
5486
- The weight of the server. Valid values: `0` to `100`. Default value: `100`. If the value is set to `0`, no requests are forwarded to the server.
5984
+ The weight of the server.
5487
5985
  """
5488
5986
  return pulumi.get(self, "weight")
5489
5987
 
@@ -5496,10 +5994,10 @@ class GetServerGroupsGroupStickySessionConfigResult(dict):
5496
5994
  sticky_session_enabled: bool,
5497
5995
  sticky_session_type: str):
5498
5996
  """
5499
- :param str cookie: the cookie that is configured on the server. **NOTE:** This parameter exists if the `StickySession` parameter is set to `On` and the `StickySessionType` parameter is set to `server`.
5500
- :param int cookie_timeout: The timeout period of a cookie. The timeout period of a cookie. Unit: seconds. Valid values: `1` to `86400`. Default value: `1000`.
5501
- :param bool sticky_session_enabled: Indicates whether sticky session is enabled. Values: `true` and `false`. Default value: `false`. **NOTE:** This parameter exists if the `StickySession` parameter is set to `On`.
5502
- :param str sticky_session_type: The method that is used to handle a cookie. Values: `Server` and `Insert`.
5997
+ :param str cookie: the cookie that is configured on the server.
5998
+ :param int cookie_timeout: The timeout period of a cookie. The timeout period of a cookie.
5999
+ :param bool sticky_session_enabled: Indicates whether sticky session is enabled.
6000
+ :param str sticky_session_type: The method that is used to handle a cookie.
5503
6001
  """
5504
6002
  pulumi.set(__self__, "cookie", cookie)
5505
6003
  pulumi.set(__self__, "cookie_timeout", cookie_timeout)
@@ -5510,7 +6008,7 @@ class GetServerGroupsGroupStickySessionConfigResult(dict):
5510
6008
  @pulumi.getter
5511
6009
  def cookie(self) -> str:
5512
6010
  """
5513
- the cookie that is configured on the server. **NOTE:** This parameter exists if the `StickySession` parameter is set to `On` and the `StickySessionType` parameter is set to `server`.
6011
+ the cookie that is configured on the server.
5514
6012
  """
5515
6013
  return pulumi.get(self, "cookie")
5516
6014
 
@@ -5518,7 +6016,7 @@ class GetServerGroupsGroupStickySessionConfigResult(dict):
5518
6016
  @pulumi.getter(name="cookieTimeout")
5519
6017
  def cookie_timeout(self) -> int:
5520
6018
  """
5521
- The timeout period of a cookie. The timeout period of a cookie. Unit: seconds. Valid values: `1` to `86400`. Default value: `1000`.
6019
+ The timeout period of a cookie. The timeout period of a cookie.
5522
6020
  """
5523
6021
  return pulumi.get(self, "cookie_timeout")
5524
6022
 
@@ -5526,7 +6024,7 @@ class GetServerGroupsGroupStickySessionConfigResult(dict):
5526
6024
  @pulumi.getter(name="stickySessionEnabled")
5527
6025
  def sticky_session_enabled(self) -> bool:
5528
6026
  """
5529
- Indicates whether sticky session is enabled. Values: `true` and `false`. Default value: `false`. **NOTE:** This parameter exists if the `StickySession` parameter is set to `On`.
6027
+ Indicates whether sticky session is enabled.
5530
6028
  """
5531
6029
  return pulumi.get(self, "sticky_session_enabled")
5532
6030
 
@@ -5534,7 +6032,7 @@ class GetServerGroupsGroupStickySessionConfigResult(dict):
5534
6032
  @pulumi.getter(name="stickySessionType")
5535
6033
  def sticky_session_type(self) -> str:
5536
6034
  """
5537
- The method that is used to handle a cookie. Values: `Server` and `Insert`.
6035
+ The method that is used to handle a cookie.
5538
6036
  """
5539
6037
  return pulumi.get(self, "sticky_session_type")
5540
6038