pulumi-alicloud 3.87.0a1760591825__py3-none-any.whl → 3.87.0a1760759066__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 (39) hide show
  1. pulumi_alicloud/__init__.py +24 -0
  2. pulumi_alicloud/adb/resource_group.py +463 -3
  3. pulumi_alicloud/cloudsso/__init__.py +1 -0
  4. pulumi_alicloud/cloudsso/get_user_provisioning_events.py +226 -0
  5. pulumi_alicloud/cloudsso/outputs.py +228 -0
  6. pulumi_alicloud/cs/managed_kubernetes.py +6 -2
  7. pulumi_alicloud/ddos/domain_resource.py +89 -0
  8. pulumi_alicloud/ecs/elasticity_assurance.py +279 -20
  9. pulumi_alicloud/eflo/node.py +153 -15
  10. pulumi_alicloud/esa/__init__.py +1 -0
  11. pulumi_alicloud/esa/_inputs.py +2152 -0
  12. pulumi_alicloud/esa/outputs.py +1599 -0
  13. pulumi_alicloud/esa/waf_rule.py +510 -0
  14. pulumi_alicloud/ess/__init__.py +1 -0
  15. pulumi_alicloud/ess/_inputs.py +256 -0
  16. pulumi_alicloud/ess/instance_refresh.py +760 -0
  17. pulumi_alicloud/ess/outputs.py +203 -0
  18. pulumi_alicloud/expressconnect/traffic_qos.py +137 -31
  19. pulumi_alicloud/expressconnect/traffic_qos_queue.py +91 -66
  20. pulumi_alicloud/expressconnect/traffic_qos_rule.py +307 -261
  21. pulumi_alicloud/expressconnect/vbr_pconn_association.py +105 -59
  22. pulumi_alicloud/kvstore/account.py +14 -14
  23. pulumi_alicloud/log/_inputs.py +29 -9
  24. pulumi_alicloud/log/etl.py +56 -9
  25. pulumi_alicloud/log/outputs.py +18 -6
  26. pulumi_alicloud/polardb/__init__.py +1 -0
  27. pulumi_alicloud/polardb/zonal_db_cluster.py +1255 -0
  28. pulumi_alicloud/pulumi-plugin.json +1 -1
  29. pulumi_alicloud/resourcemanager/_inputs.py +54 -0
  30. pulumi_alicloud/resourcemanager/outputs.py +51 -0
  31. pulumi_alicloud/resourcemanager/resource_share.py +341 -11
  32. pulumi_alicloud/vpc/bgp_group.py +250 -53
  33. pulumi_alicloud/vpc/common_bandwith_package_attachment.py +30 -14
  34. pulumi_alicloud/vpc/get_enhanced_nat_available_zones.py +3 -3
  35. pulumi_alicloud/vpc/vbr_ha.py +127 -46
  36. {pulumi_alicloud-3.87.0a1760591825.dist-info → pulumi_alicloud-3.87.0a1760759066.dist-info}/METADATA +1 -1
  37. {pulumi_alicloud-3.87.0a1760591825.dist-info → pulumi_alicloud-3.87.0a1760759066.dist-info}/RECORD +39 -35
  38. {pulumi_alicloud-3.87.0a1760591825.dist-info → pulumi_alicloud-3.87.0a1760759066.dist-info}/WHEEL +0 -0
  39. {pulumi_alicloud-3.87.0a1760591825.dist-info → pulumi_alicloud-3.87.0a1760759066.dist-info}/top_level.txt +0 -0
@@ -30,6 +30,7 @@ class DomainResourceArgs:
30
30
  cert_identifier: Optional[pulumi.Input[_builtins.str]] = None,
31
31
  cert_name: Optional[pulumi.Input[_builtins.str]] = None,
32
32
  cert_region: Optional[pulumi.Input[_builtins.str]] = None,
33
+ custom_headers: Optional[pulumi.Input[_builtins.str]] = None,
33
34
  https_ext: Optional[pulumi.Input[_builtins.str]] = None,
34
35
  key: Optional[pulumi.Input[_builtins.str]] = None,
35
36
  ocsp_enabled: Optional[pulumi.Input[_builtins.bool]] = None):
@@ -52,6 +53,13 @@ class DomainResourceArgs:
52
53
 
53
54
  > **NOTE:** If you specify a value for the CertName, Cert, and Key parameters, you do not need to specify a value for the CertId parameter.
54
55
  :param pulumi.Input[_builtins.str] cert_region: The region of the certificate. `cn-hangzhou` and `ap-southeast-1` are supported. The default value is `cn-hangzhou`.
56
+ :param pulumi.Input[_builtins.str] custom_headers: The key-value pair of the custom header. The key specifies the header name, and the value specifies the header value. You can specify up to five key-value pairs. The key-value pairs can be up to 200 characters in length.
57
+ Take note of the following items:
58
+ - Do not use the following default HTTP headers:
59
+ - X-Forwarded-ClientSrcPort: This header is used to obtain the source ports of clients that access Anti-DDoS Proxy (a Layer 7 proxy).
60
+ - X-Forwarded-ProxyPort: This header is used to obtain the ports of listeners that access Anti-DDoS Proxy (a Layer 7 proxy).
61
+ - X-Forwarded-For: This header is used to obtain the IP addresses of clients that access Anti-DDoS Proxy (a Layer 7 proxy).
62
+ - Do not use standard HTTP headers or specific widely used custom HTTP headers. The standard HTTP headers include Host, User-Agent, Connection, and Upgrade, and the widely used custom HTTP headers include X-Real-IP, X-True-IP, X-Client-IP, Web-Server-Type, WL-Proxy-Client-IP, eEagleEye-RpcID, EagleEye-TraceID, X-Forwarded-Cluster, and X-Forwarded-Proto. If the preceding headers are used, the original content of the headers is overwritten.
55
63
  :param pulumi.Input[_builtins.str] https_ext: The advanced HTTPS settings. This parameter takes effect only when the value of the `ProxyType` parameter includes `https`. The value is a string that consists of a JSON struct. The JSON struct contains the following fields:
56
64
 
57
65
  - `Http2https`: specifies whether to turn on Enforce HTTPS Routing. This field is optional and must be an integer. Valid values: `0` and `1`. The value 0 indicates that Enforce HTTPS Routing is turned off. The value 1 indicates that Enforce HTTPS Routing is turned on. The default value is 0.
@@ -83,6 +91,8 @@ class DomainResourceArgs:
83
91
  pulumi.set(__self__, "cert_name", cert_name)
84
92
  if cert_region is not None:
85
93
  pulumi.set(__self__, "cert_region", cert_region)
94
+ if custom_headers is not None:
95
+ pulumi.set(__self__, "custom_headers", custom_headers)
86
96
  if https_ext is not None:
87
97
  pulumi.set(__self__, "https_ext", https_ext)
88
98
  if key is not None:
@@ -206,6 +216,24 @@ class DomainResourceArgs:
206
216
  def cert_region(self, value: Optional[pulumi.Input[_builtins.str]]):
207
217
  pulumi.set(self, "cert_region", value)
208
218
 
219
+ @_builtins.property
220
+ @pulumi.getter(name="customHeaders")
221
+ def custom_headers(self) -> Optional[pulumi.Input[_builtins.str]]:
222
+ """
223
+ The key-value pair of the custom header. The key specifies the header name, and the value specifies the header value. You can specify up to five key-value pairs. The key-value pairs can be up to 200 characters in length.
224
+ Take note of the following items:
225
+ - Do not use the following default HTTP headers:
226
+ - X-Forwarded-ClientSrcPort: This header is used to obtain the source ports of clients that access Anti-DDoS Proxy (a Layer 7 proxy).
227
+ - X-Forwarded-ProxyPort: This header is used to obtain the ports of listeners that access Anti-DDoS Proxy (a Layer 7 proxy).
228
+ - X-Forwarded-For: This header is used to obtain the IP addresses of clients that access Anti-DDoS Proxy (a Layer 7 proxy).
229
+ - Do not use standard HTTP headers or specific widely used custom HTTP headers. The standard HTTP headers include Host, User-Agent, Connection, and Upgrade, and the widely used custom HTTP headers include X-Real-IP, X-True-IP, X-Client-IP, Web-Server-Type, WL-Proxy-Client-IP, eEagleEye-RpcID, EagleEye-TraceID, X-Forwarded-Cluster, and X-Forwarded-Proto. If the preceding headers are used, the original content of the headers is overwritten.
230
+ """
231
+ return pulumi.get(self, "custom_headers")
232
+
233
+ @custom_headers.setter
234
+ def custom_headers(self, value: Optional[pulumi.Input[_builtins.str]]):
235
+ pulumi.set(self, "custom_headers", value)
236
+
209
237
  @_builtins.property
210
238
  @pulumi.getter(name="httpsExt")
211
239
  def https_ext(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -265,6 +293,7 @@ class _DomainResourceState:
265
293
  cert_name: Optional[pulumi.Input[_builtins.str]] = None,
266
294
  cert_region: Optional[pulumi.Input[_builtins.str]] = None,
267
295
  cname: Optional[pulumi.Input[_builtins.str]] = None,
296
+ custom_headers: Optional[pulumi.Input[_builtins.str]] = None,
268
297
  domain: Optional[pulumi.Input[_builtins.str]] = None,
269
298
  https_ext: Optional[pulumi.Input[_builtins.str]] = None,
270
299
  instance_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
@@ -286,6 +315,13 @@ class _DomainResourceState:
286
315
  > **NOTE:** If you specify a value for the CertName, Cert, and Key parameters, you do not need to specify a value for the CertId parameter.
287
316
  :param pulumi.Input[_builtins.str] cert_region: The region of the certificate. `cn-hangzhou` and `ap-southeast-1` are supported. The default value is `cn-hangzhou`.
288
317
  :param pulumi.Input[_builtins.str] cname: The CNAME address to query.
318
+ :param pulumi.Input[_builtins.str] custom_headers: The key-value pair of the custom header. The key specifies the header name, and the value specifies the header value. You can specify up to five key-value pairs. The key-value pairs can be up to 200 characters in length.
319
+ Take note of the following items:
320
+ - Do not use the following default HTTP headers:
321
+ - X-Forwarded-ClientSrcPort: This header is used to obtain the source ports of clients that access Anti-DDoS Proxy (a Layer 7 proxy).
322
+ - X-Forwarded-ProxyPort: This header is used to obtain the ports of listeners that access Anti-DDoS Proxy (a Layer 7 proxy).
323
+ - X-Forwarded-For: This header is used to obtain the IP addresses of clients that access Anti-DDoS Proxy (a Layer 7 proxy).
324
+ - Do not use standard HTTP headers or specific widely used custom HTTP headers. The standard HTTP headers include Host, User-Agent, Connection, and Upgrade, and the widely used custom HTTP headers include X-Real-IP, X-True-IP, X-Client-IP, Web-Server-Type, WL-Proxy-Client-IP, eEagleEye-RpcID, EagleEye-TraceID, X-Forwarded-Cluster, and X-Forwarded-Proto. If the preceding headers are used, the original content of the headers is overwritten.
289
325
  :param pulumi.Input[_builtins.str] domain: The domain name for which you want to configure the Static Page Caching policy.
290
326
 
291
327
  > **NOTE:** You can call the [DescribeDomains](https://www.alibabacloud.com/help/en/doc-detail/91724.html) operation to query all the domain names that are added to Anti-DDoS Pro or Anti-DDoS Premium.
@@ -321,6 +357,8 @@ class _DomainResourceState:
321
357
  pulumi.set(__self__, "cert_region", cert_region)
322
358
  if cname is not None:
323
359
  pulumi.set(__self__, "cname", cname)
360
+ if custom_headers is not None:
361
+ pulumi.set(__self__, "custom_headers", custom_headers)
324
362
  if domain is not None:
325
363
  pulumi.set(__self__, "domain", domain)
326
364
  if https_ext is not None:
@@ -404,6 +442,24 @@ class _DomainResourceState:
404
442
  def cname(self, value: Optional[pulumi.Input[_builtins.str]]):
405
443
  pulumi.set(self, "cname", value)
406
444
 
445
+ @_builtins.property
446
+ @pulumi.getter(name="customHeaders")
447
+ def custom_headers(self) -> Optional[pulumi.Input[_builtins.str]]:
448
+ """
449
+ The key-value pair of the custom header. The key specifies the header name, and the value specifies the header value. You can specify up to five key-value pairs. The key-value pairs can be up to 200 characters in length.
450
+ Take note of the following items:
451
+ - Do not use the following default HTTP headers:
452
+ - X-Forwarded-ClientSrcPort: This header is used to obtain the source ports of clients that access Anti-DDoS Proxy (a Layer 7 proxy).
453
+ - X-Forwarded-ProxyPort: This header is used to obtain the ports of listeners that access Anti-DDoS Proxy (a Layer 7 proxy).
454
+ - X-Forwarded-For: This header is used to obtain the IP addresses of clients that access Anti-DDoS Proxy (a Layer 7 proxy).
455
+ - Do not use standard HTTP headers or specific widely used custom HTTP headers. The standard HTTP headers include Host, User-Agent, Connection, and Upgrade, and the widely used custom HTTP headers include X-Real-IP, X-True-IP, X-Client-IP, Web-Server-Type, WL-Proxy-Client-IP, eEagleEye-RpcID, EagleEye-TraceID, X-Forwarded-Cluster, and X-Forwarded-Proto. If the preceding headers are used, the original content of the headers is overwritten.
456
+ """
457
+ return pulumi.get(self, "custom_headers")
458
+
459
+ @custom_headers.setter
460
+ def custom_headers(self, value: Optional[pulumi.Input[_builtins.str]]):
461
+ pulumi.set(self, "custom_headers", value)
462
+
407
463
  @_builtins.property
408
464
  @pulumi.getter
409
465
  def domain(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -527,6 +583,7 @@ class DomainResource(pulumi.CustomResource):
527
583
  cert_identifier: Optional[pulumi.Input[_builtins.str]] = None,
528
584
  cert_name: Optional[pulumi.Input[_builtins.str]] = None,
529
585
  cert_region: Optional[pulumi.Input[_builtins.str]] = None,
586
+ custom_headers: Optional[pulumi.Input[_builtins.str]] = None,
530
587
  domain: Optional[pulumi.Input[_builtins.str]] = None,
531
588
  https_ext: Optional[pulumi.Input[_builtins.str]] = None,
532
589
  instance_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
@@ -604,6 +661,13 @@ class DomainResource(pulumi.CustomResource):
604
661
 
605
662
  > **NOTE:** If you specify a value for the CertName, Cert, and Key parameters, you do not need to specify a value for the CertId parameter.
606
663
  :param pulumi.Input[_builtins.str] cert_region: The region of the certificate. `cn-hangzhou` and `ap-southeast-1` are supported. The default value is `cn-hangzhou`.
664
+ :param pulumi.Input[_builtins.str] custom_headers: The key-value pair of the custom header. The key specifies the header name, and the value specifies the header value. You can specify up to five key-value pairs. The key-value pairs can be up to 200 characters in length.
665
+ Take note of the following items:
666
+ - Do not use the following default HTTP headers:
667
+ - X-Forwarded-ClientSrcPort: This header is used to obtain the source ports of clients that access Anti-DDoS Proxy (a Layer 7 proxy).
668
+ - X-Forwarded-ProxyPort: This header is used to obtain the ports of listeners that access Anti-DDoS Proxy (a Layer 7 proxy).
669
+ - X-Forwarded-For: This header is used to obtain the IP addresses of clients that access Anti-DDoS Proxy (a Layer 7 proxy).
670
+ - Do not use standard HTTP headers or specific widely used custom HTTP headers. The standard HTTP headers include Host, User-Agent, Connection, and Upgrade, and the widely used custom HTTP headers include X-Real-IP, X-True-IP, X-Client-IP, Web-Server-Type, WL-Proxy-Client-IP, eEagleEye-RpcID, EagleEye-TraceID, X-Forwarded-Cluster, and X-Forwarded-Proto. If the preceding headers are used, the original content of the headers is overwritten.
607
671
  :param pulumi.Input[_builtins.str] domain: The domain name for which you want to configure the Static Page Caching policy.
608
672
 
609
673
  > **NOTE:** You can call the [DescribeDomains](https://www.alibabacloud.com/help/en/doc-detail/91724.html) operation to query all the domain names that are added to Anti-DDoS Pro or Anti-DDoS Premium.
@@ -710,6 +774,7 @@ class DomainResource(pulumi.CustomResource):
710
774
  cert_identifier: Optional[pulumi.Input[_builtins.str]] = None,
711
775
  cert_name: Optional[pulumi.Input[_builtins.str]] = None,
712
776
  cert_region: Optional[pulumi.Input[_builtins.str]] = None,
777
+ custom_headers: Optional[pulumi.Input[_builtins.str]] = None,
713
778
  domain: Optional[pulumi.Input[_builtins.str]] = None,
714
779
  https_ext: Optional[pulumi.Input[_builtins.str]] = None,
715
780
  instance_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
@@ -731,6 +796,7 @@ class DomainResource(pulumi.CustomResource):
731
796
  __props__.__dict__["cert_identifier"] = cert_identifier
732
797
  __props__.__dict__["cert_name"] = cert_name
733
798
  __props__.__dict__["cert_region"] = None if cert_region is None else pulumi.Output.secret(cert_region)
799
+ __props__.__dict__["custom_headers"] = custom_headers
734
800
  if domain is None and not opts.urn:
735
801
  raise TypeError("Missing required property 'domain'")
736
802
  __props__.__dict__["domain"] = domain
@@ -767,6 +833,7 @@ class DomainResource(pulumi.CustomResource):
767
833
  cert_name: Optional[pulumi.Input[_builtins.str]] = None,
768
834
  cert_region: Optional[pulumi.Input[_builtins.str]] = None,
769
835
  cname: Optional[pulumi.Input[_builtins.str]] = None,
836
+ custom_headers: Optional[pulumi.Input[_builtins.str]] = None,
770
837
  domain: Optional[pulumi.Input[_builtins.str]] = None,
771
838
  https_ext: Optional[pulumi.Input[_builtins.str]] = None,
772
839
  instance_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
@@ -793,6 +860,13 @@ class DomainResource(pulumi.CustomResource):
793
860
  > **NOTE:** If you specify a value for the CertName, Cert, and Key parameters, you do not need to specify a value for the CertId parameter.
794
861
  :param pulumi.Input[_builtins.str] cert_region: The region of the certificate. `cn-hangzhou` and `ap-southeast-1` are supported. The default value is `cn-hangzhou`.
795
862
  :param pulumi.Input[_builtins.str] cname: The CNAME address to query.
863
+ :param pulumi.Input[_builtins.str] custom_headers: The key-value pair of the custom header. The key specifies the header name, and the value specifies the header value. You can specify up to five key-value pairs. The key-value pairs can be up to 200 characters in length.
864
+ Take note of the following items:
865
+ - Do not use the following default HTTP headers:
866
+ - X-Forwarded-ClientSrcPort: This header is used to obtain the source ports of clients that access Anti-DDoS Proxy (a Layer 7 proxy).
867
+ - X-Forwarded-ProxyPort: This header is used to obtain the ports of listeners that access Anti-DDoS Proxy (a Layer 7 proxy).
868
+ - X-Forwarded-For: This header is used to obtain the IP addresses of clients that access Anti-DDoS Proxy (a Layer 7 proxy).
869
+ - Do not use standard HTTP headers or specific widely used custom HTTP headers. The standard HTTP headers include Host, User-Agent, Connection, and Upgrade, and the widely used custom HTTP headers include X-Real-IP, X-True-IP, X-Client-IP, Web-Server-Type, WL-Proxy-Client-IP, eEagleEye-RpcID, EagleEye-TraceID, X-Forwarded-Cluster, and X-Forwarded-Proto. If the preceding headers are used, the original content of the headers is overwritten.
796
870
  :param pulumi.Input[_builtins.str] domain: The domain name for which you want to configure the Static Page Caching policy.
797
871
 
798
872
  > **NOTE:** You can call the [DescribeDomains](https://www.alibabacloud.com/help/en/doc-detail/91724.html) operation to query all the domain names that are added to Anti-DDoS Pro or Anti-DDoS Premium.
@@ -827,6 +901,7 @@ class DomainResource(pulumi.CustomResource):
827
901
  __props__.__dict__["cert_name"] = cert_name
828
902
  __props__.__dict__["cert_region"] = cert_region
829
903
  __props__.__dict__["cname"] = cname
904
+ __props__.__dict__["custom_headers"] = custom_headers
830
905
  __props__.__dict__["domain"] = domain
831
906
  __props__.__dict__["https_ext"] = https_ext
832
907
  __props__.__dict__["instance_ids"] = instance_ids
@@ -883,6 +958,20 @@ class DomainResource(pulumi.CustomResource):
883
958
  """
884
959
  return pulumi.get(self, "cname")
885
960
 
961
+ @_builtins.property
962
+ @pulumi.getter(name="customHeaders")
963
+ def custom_headers(self) -> pulumi.Output[_builtins.str]:
964
+ """
965
+ The key-value pair of the custom header. The key specifies the header name, and the value specifies the header value. You can specify up to five key-value pairs. The key-value pairs can be up to 200 characters in length.
966
+ Take note of the following items:
967
+ - Do not use the following default HTTP headers:
968
+ - X-Forwarded-ClientSrcPort: This header is used to obtain the source ports of clients that access Anti-DDoS Proxy (a Layer 7 proxy).
969
+ - X-Forwarded-ProxyPort: This header is used to obtain the ports of listeners that access Anti-DDoS Proxy (a Layer 7 proxy).
970
+ - X-Forwarded-For: This header is used to obtain the IP addresses of clients that access Anti-DDoS Proxy (a Layer 7 proxy).
971
+ - Do not use standard HTTP headers or specific widely used custom HTTP headers. The standard HTTP headers include Host, User-Agent, Connection, and Upgrade, and the widely used custom HTTP headers include X-Real-IP, X-True-IP, X-Client-IP, Web-Server-Type, WL-Proxy-Client-IP, eEagleEye-RpcID, EagleEye-TraceID, X-Forwarded-Cluster, and X-Forwarded-Proto. If the preceding headers are used, the original content of the headers is overwritten.
972
+ """
973
+ return pulumi.get(self, "custom_headers")
974
+
886
975
  @_builtins.property
887
976
  @pulumi.getter
888
977
  def domain(self) -> pulumi.Output[_builtins.str]: