pulumi-alicloud 3.78.0a1747367664__py3-none-any.whl → 3.79.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-alicloud might be problematic. Click here for more details.
- pulumi_alicloud/__init__.py +40 -0
- pulumi_alicloud/alb/_inputs.py +21 -105
- pulumi_alicloud/alb/get_load_balancers.py +169 -18
- pulumi_alicloud/alb/listener.py +28 -56
- pulumi_alicloud/alb/outputs.py +150 -105
- pulumi_alicloud/cs/_inputs.py +54 -0
- pulumi_alicloud/cs/get_kubernetes_version.py +4 -4
- pulumi_alicloud/cs/managed_kubernetes.py +129 -7
- pulumi_alicloud/cs/outputs.py +49 -0
- pulumi_alicloud/ecs/__init__.py +1 -0
- pulumi_alicloud/ecs/_inputs.py +40 -0
- pulumi_alicloud/ecs/get_dedicated_hosts.py +49 -22
- pulumi_alicloud/ecs/get_instances.py +4 -3
- pulumi_alicloud/ecs/instance.py +94 -0
- pulumi_alicloud/ecs/outputs.py +129 -39
- pulumi_alicloud/ecs/ram_role_attachment.py +406 -0
- pulumi_alicloud/eflo/__init__.py +1 -0
- pulumi_alicloud/eflo/vsc.py +433 -0
- pulumi_alicloud/elasticsearch/instance.py +7 -7
- pulumi_alicloud/ess/outputs.py +226 -4
- pulumi_alicloud/expressconnect/router_vpc_association.py +56 -49
- pulumi_alicloud/fc/__init__.py +1 -0
- pulumi_alicloud/fc/get_v3_triggers.py +277 -0
- pulumi_alicloud/fc/outputs.py +192 -0
- pulumi_alicloud/lindorm/__init__.py +1 -0
- pulumi_alicloud/lindorm/public_network.py +288 -0
- pulumi_alicloud/maxcompute/project.py +2 -4
- pulumi_alicloud/oos/get_parameters.py +72 -28
- pulumi_alicloud/oos/outputs.py +10 -10
- pulumi_alicloud/pai/__init__.py +1 -0
- pulumi_alicloud/pai/workspace_user_config.py +356 -0
- pulumi_alicloud/polardb/cluster.py +155 -0
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/pvtz/get_zone_records.py +66 -35
- pulumi_alicloud/pvtz/get_zones.py +49 -32
- pulumi_alicloud/pvtz/outputs.py +60 -56
- pulumi_alicloud/ram/policy.py +21 -35
- pulumi_alicloud/ram/role_attachment.py +6 -2
- pulumi_alicloud/rds/__init__.py +1 -0
- pulumi_alicloud/rds/db_proxy_public.py +512 -0
- pulumi_alicloud/rds/instance.py +35 -35
- pulumi_alicloud/sls/__init__.py +1 -0
- pulumi_alicloud/sls/get_alerts.py +463 -0
- pulumi_alicloud/sls/outputs.py +975 -0
- {pulumi_alicloud-3.78.0a1747367664.dist-info → pulumi_alicloud-3.79.0.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.78.0a1747367664.dist-info → pulumi_alicloud-3.79.0.dist-info}/RECORD +48 -41
- {pulumi_alicloud-3.78.0a1747367664.dist-info → pulumi_alicloud-3.79.0.dist-info}/WHEEL +1 -1
- {pulumi_alicloud-3.78.0a1747367664.dist-info → pulumi_alicloud-3.79.0.dist-info}/top_level.txt +0 -0
pulumi_alicloud/alb/listener.py
CHANGED
|
@@ -49,13 +49,9 @@ class ListenerArgs:
|
|
|
49
49
|
:param pulumi.Input[builtins.int] listener_port: The SLB Instance Front-End, and Those of the Ports Used. Value: 1~65535.
|
|
50
50
|
:param pulumi.Input[builtins.str] listener_protocol: Snooping Protocols. Valid Values: HTTP, HTTPS Or QuIC.
|
|
51
51
|
:param pulumi.Input[builtins.str] load_balancer_id: The SLB Instance Id.
|
|
52
|
-
:param pulumi.Input[builtins.bool] access_log_record_customized_headers_enabled: Access Log Whether to Enable Carry Custom Header Field.
|
|
52
|
+
:param pulumi.Input[builtins.bool] access_log_record_customized_headers_enabled: Access Log Whether to Enable Carry Custom Header Field. Valid values: `true`, `false`. Default Value: `false`.
|
|
53
53
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
Default Value: False * *.
|
|
57
|
-
|
|
58
|
-
> **NOTE:** Only Instances outside the Security Group to Access the Log Switch `accesslogenabled` Open, in Order to Set This Parameter to the **True * *.
|
|
54
|
+
> **NOTE:** Only Instances outside the Security Group to Access the Log Switch `accesslogenabled` Open, in Order to Set This Parameter to the `true`.
|
|
59
55
|
:param pulumi.Input['ListenerAccessLogTracingConfigArgs'] access_log_tracing_config: Xtrace Configuration Information. See `access_log_tracing_config` below.
|
|
60
56
|
:param pulumi.Input['ListenerAclConfigArgs'] acl_config: The configurations of the access control lists (ACLs). See `acl_config` below for details. **NOTE:** Field `acl_config` has been deprecated from provider version 1.163.0, and it will be removed in the future version. Please use the new resource `alb.ListenerAclAttachment`.,
|
|
61
57
|
:param pulumi.Input[Sequence[pulumi.Input['ListenerCaCertificateArgs']]] ca_certificates: The list of certificates. See `ca_certificates` below.
|
|
@@ -64,10 +60,10 @@ class ListenerArgs:
|
|
|
64
60
|
:param pulumi.Input[builtins.bool] dry_run: Whether to PreCheck only this request. Value:
|
|
65
61
|
:param pulumi.Input[builtins.bool] gzip_enabled: Whether to Enable Gzip Compression, as a Specific File Type on a Compression. Valid Values: True Or False. Default Value: TRUE.
|
|
66
62
|
:param pulumi.Input[builtins.bool] http2_enabled: Whether to Enable HTTP/2 Features. Valid Values: True Or False. Default Value: TRUE.
|
|
67
|
-
:param pulumi.Input[builtins.int] idle_timeout: Specify the Connection Idle Timeout Value: 1 to 60
|
|
63
|
+
:param pulumi.Input[builtins.int] idle_timeout: Specify the Connection Idle Timeout Value: 1 to 60 seconds.
|
|
68
64
|
:param pulumi.Input[builtins.str] listener_description: Set the IP Address of the Listened Description. Length Is from 2 to 256 Characters.
|
|
69
65
|
:param pulumi.Input['ListenerQuicConfigArgs'] quic_config: Configuration Associated with the QuIC Listening See `quic_config` below.
|
|
70
|
-
:param pulumi.Input[builtins.int] request_timeout: The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60
|
|
66
|
+
:param pulumi.Input[builtins.int] request_timeout: The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60 seconds. If the Timeout Time Within the Back-End Server Has Not Answered the SLB Will Give up Waiting, the Client Returns the HTTP 504 Error Code.
|
|
71
67
|
:param pulumi.Input[builtins.str] security_policy_id: Security Policy
|
|
72
68
|
:param pulumi.Input[builtins.str] status: The Current IP Address of the Listened State
|
|
73
69
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: The tag of the resource
|
|
@@ -167,13 +163,9 @@ class ListenerArgs:
|
|
|
167
163
|
@pulumi.getter(name="accessLogRecordCustomizedHeadersEnabled")
|
|
168
164
|
def access_log_record_customized_headers_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
|
|
169
165
|
"""
|
|
170
|
-
Access Log Whether to Enable Carry Custom Header Field.
|
|
171
|
-
|
|
172
|
-
Value: True **** Or False * *.
|
|
173
|
-
|
|
174
|
-
Default Value: False * *.
|
|
166
|
+
Access Log Whether to Enable Carry Custom Header Field. Valid values: `true`, `false`. Default Value: `false`.
|
|
175
167
|
|
|
176
|
-
> **NOTE:** Only Instances outside the Security Group to Access the Log Switch `accesslogenabled` Open, in Order to Set This Parameter to the
|
|
168
|
+
> **NOTE:** Only Instances outside the Security Group to Access the Log Switch `accesslogenabled` Open, in Order to Set This Parameter to the `true`.
|
|
177
169
|
"""
|
|
178
170
|
return pulumi.get(self, "access_log_record_customized_headers_enabled")
|
|
179
171
|
|
|
@@ -282,7 +274,7 @@ class ListenerArgs:
|
|
|
282
274
|
@pulumi.getter(name="idleTimeout")
|
|
283
275
|
def idle_timeout(self) -> Optional[pulumi.Input[builtins.int]]:
|
|
284
276
|
"""
|
|
285
|
-
Specify the Connection Idle Timeout Value: 1 to 60
|
|
277
|
+
Specify the Connection Idle Timeout Value: 1 to 60 seconds.
|
|
286
278
|
"""
|
|
287
279
|
return pulumi.get(self, "idle_timeout")
|
|
288
280
|
|
|
@@ -318,7 +310,7 @@ class ListenerArgs:
|
|
|
318
310
|
@pulumi.getter(name="requestTimeout")
|
|
319
311
|
def request_timeout(self) -> Optional[pulumi.Input[builtins.int]]:
|
|
320
312
|
"""
|
|
321
|
-
The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60
|
|
313
|
+
The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60 seconds. If the Timeout Time Within the Back-End Server Has Not Answered the SLB Will Give up Waiting, the Client Returns the HTTP 504 Error Code.
|
|
322
314
|
"""
|
|
323
315
|
return pulumi.get(self, "request_timeout")
|
|
324
316
|
|
|
@@ -401,13 +393,9 @@ class _ListenerState:
|
|
|
401
393
|
x_forwarded_for_config: Optional[pulumi.Input['ListenerXForwardedForConfigArgs']] = None):
|
|
402
394
|
"""
|
|
403
395
|
Input properties used for looking up and filtering Listener resources.
|
|
404
|
-
:param pulumi.Input[builtins.bool] access_log_record_customized_headers_enabled: Access Log Whether to Enable Carry Custom Header Field.
|
|
396
|
+
:param pulumi.Input[builtins.bool] access_log_record_customized_headers_enabled: Access Log Whether to Enable Carry Custom Header Field. Valid values: `true`, `false`. Default Value: `false`.
|
|
405
397
|
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
Default Value: False * *.
|
|
409
|
-
|
|
410
|
-
> **NOTE:** Only Instances outside the Security Group to Access the Log Switch `accesslogenabled` Open, in Order to Set This Parameter to the **True * *.
|
|
398
|
+
> **NOTE:** Only Instances outside the Security Group to Access the Log Switch `accesslogenabled` Open, in Order to Set This Parameter to the `true`.
|
|
411
399
|
:param pulumi.Input['ListenerAccessLogTracingConfigArgs'] access_log_tracing_config: Xtrace Configuration Information. See `access_log_tracing_config` below.
|
|
412
400
|
:param pulumi.Input['ListenerAclConfigArgs'] acl_config: The configurations of the access control lists (ACLs). See `acl_config` below for details. **NOTE:** Field `acl_config` has been deprecated from provider version 1.163.0, and it will be removed in the future version. Please use the new resource `alb.ListenerAclAttachment`.,
|
|
413
401
|
:param pulumi.Input[Sequence[pulumi.Input['ListenerCaCertificateArgs']]] ca_certificates: The list of certificates. See `ca_certificates` below.
|
|
@@ -417,13 +405,13 @@ class _ListenerState:
|
|
|
417
405
|
:param pulumi.Input[builtins.bool] dry_run: Whether to PreCheck only this request. Value:
|
|
418
406
|
:param pulumi.Input[builtins.bool] gzip_enabled: Whether to Enable Gzip Compression, as a Specific File Type on a Compression. Valid Values: True Or False. Default Value: TRUE.
|
|
419
407
|
:param pulumi.Input[builtins.bool] http2_enabled: Whether to Enable HTTP/2 Features. Valid Values: True Or False. Default Value: TRUE.
|
|
420
|
-
:param pulumi.Input[builtins.int] idle_timeout: Specify the Connection Idle Timeout Value: 1 to 60
|
|
408
|
+
:param pulumi.Input[builtins.int] idle_timeout: Specify the Connection Idle Timeout Value: 1 to 60 seconds.
|
|
421
409
|
:param pulumi.Input[builtins.str] listener_description: Set the IP Address of the Listened Description. Length Is from 2 to 256 Characters.
|
|
422
410
|
:param pulumi.Input[builtins.int] listener_port: The SLB Instance Front-End, and Those of the Ports Used. Value: 1~65535.
|
|
423
411
|
:param pulumi.Input[builtins.str] listener_protocol: Snooping Protocols. Valid Values: HTTP, HTTPS Or QuIC.
|
|
424
412
|
:param pulumi.Input[builtins.str] load_balancer_id: The SLB Instance Id.
|
|
425
413
|
:param pulumi.Input['ListenerQuicConfigArgs'] quic_config: Configuration Associated with the QuIC Listening See `quic_config` below.
|
|
426
|
-
:param pulumi.Input[builtins.int] request_timeout: The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60
|
|
414
|
+
:param pulumi.Input[builtins.int] request_timeout: The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60 seconds. If the Timeout Time Within the Back-End Server Has Not Answered the SLB Will Give up Waiting, the Client Returns the HTTP 504 Error Code.
|
|
427
415
|
:param pulumi.Input[builtins.str] security_policy_id: Security Policy
|
|
428
416
|
:param pulumi.Input[builtins.str] status: The Current IP Address of the Listened State
|
|
429
417
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: The tag of the resource
|
|
@@ -479,13 +467,9 @@ class _ListenerState:
|
|
|
479
467
|
@pulumi.getter(name="accessLogRecordCustomizedHeadersEnabled")
|
|
480
468
|
def access_log_record_customized_headers_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
|
|
481
469
|
"""
|
|
482
|
-
Access Log Whether to Enable Carry Custom Header Field.
|
|
483
|
-
|
|
484
|
-
Value: True **** Or False * *.
|
|
470
|
+
Access Log Whether to Enable Carry Custom Header Field. Valid values: `true`, `false`. Default Value: `false`.
|
|
485
471
|
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
> **NOTE:** Only Instances outside the Security Group to Access the Log Switch `accesslogenabled` Open, in Order to Set This Parameter to the **True * *.
|
|
472
|
+
> **NOTE:** Only Instances outside the Security Group to Access the Log Switch `accesslogenabled` Open, in Order to Set This Parameter to the `true`.
|
|
489
473
|
"""
|
|
490
474
|
return pulumi.get(self, "access_log_record_customized_headers_enabled")
|
|
491
475
|
|
|
@@ -606,7 +590,7 @@ class _ListenerState:
|
|
|
606
590
|
@pulumi.getter(name="idleTimeout")
|
|
607
591
|
def idle_timeout(self) -> Optional[pulumi.Input[builtins.int]]:
|
|
608
592
|
"""
|
|
609
|
-
Specify the Connection Idle Timeout Value: 1 to 60
|
|
593
|
+
Specify the Connection Idle Timeout Value: 1 to 60 seconds.
|
|
610
594
|
"""
|
|
611
595
|
return pulumi.get(self, "idle_timeout")
|
|
612
596
|
|
|
@@ -678,7 +662,7 @@ class _ListenerState:
|
|
|
678
662
|
@pulumi.getter(name="requestTimeout")
|
|
679
663
|
def request_timeout(self) -> Optional[pulumi.Input[builtins.int]]:
|
|
680
664
|
"""
|
|
681
|
-
The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60
|
|
665
|
+
The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60 seconds. If the Timeout Time Within the Back-End Server Has Not Answered the SLB Will Give up Waiting, the Client Returns the HTTP 504 Error Code.
|
|
682
666
|
"""
|
|
683
667
|
return pulumi.get(self, "request_timeout")
|
|
684
668
|
|
|
@@ -780,13 +764,9 @@ class Listener(pulumi.CustomResource):
|
|
|
780
764
|
|
|
781
765
|
:param str resource_name: The name of the resource.
|
|
782
766
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
783
|
-
:param pulumi.Input[builtins.bool] access_log_record_customized_headers_enabled: Access Log Whether to Enable Carry Custom Header Field.
|
|
784
|
-
|
|
785
|
-
Value: True **** Or False * *.
|
|
767
|
+
:param pulumi.Input[builtins.bool] access_log_record_customized_headers_enabled: Access Log Whether to Enable Carry Custom Header Field. Valid values: `true`, `false`. Default Value: `false`.
|
|
786
768
|
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
> **NOTE:** Only Instances outside the Security Group to Access the Log Switch `accesslogenabled` Open, in Order to Set This Parameter to the **True * *.
|
|
769
|
+
> **NOTE:** Only Instances outside the Security Group to Access the Log Switch `accesslogenabled` Open, in Order to Set This Parameter to the `true`.
|
|
790
770
|
:param pulumi.Input[Union['ListenerAccessLogTracingConfigArgs', 'ListenerAccessLogTracingConfigArgsDict']] access_log_tracing_config: Xtrace Configuration Information. See `access_log_tracing_config` below.
|
|
791
771
|
:param pulumi.Input[Union['ListenerAclConfigArgs', 'ListenerAclConfigArgsDict']] acl_config: The configurations of the access control lists (ACLs). See `acl_config` below for details. **NOTE:** Field `acl_config` has been deprecated from provider version 1.163.0, and it will be removed in the future version. Please use the new resource `alb.ListenerAclAttachment`.,
|
|
792
772
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ListenerCaCertificateArgs', 'ListenerCaCertificateArgsDict']]]] ca_certificates: The list of certificates. See `ca_certificates` below.
|
|
@@ -796,13 +776,13 @@ class Listener(pulumi.CustomResource):
|
|
|
796
776
|
:param pulumi.Input[builtins.bool] dry_run: Whether to PreCheck only this request. Value:
|
|
797
777
|
:param pulumi.Input[builtins.bool] gzip_enabled: Whether to Enable Gzip Compression, as a Specific File Type on a Compression. Valid Values: True Or False. Default Value: TRUE.
|
|
798
778
|
:param pulumi.Input[builtins.bool] http2_enabled: Whether to Enable HTTP/2 Features. Valid Values: True Or False. Default Value: TRUE.
|
|
799
|
-
:param pulumi.Input[builtins.int] idle_timeout: Specify the Connection Idle Timeout Value: 1 to 60
|
|
779
|
+
:param pulumi.Input[builtins.int] idle_timeout: Specify the Connection Idle Timeout Value: 1 to 60 seconds.
|
|
800
780
|
:param pulumi.Input[builtins.str] listener_description: Set the IP Address of the Listened Description. Length Is from 2 to 256 Characters.
|
|
801
781
|
:param pulumi.Input[builtins.int] listener_port: The SLB Instance Front-End, and Those of the Ports Used. Value: 1~65535.
|
|
802
782
|
:param pulumi.Input[builtins.str] listener_protocol: Snooping Protocols. Valid Values: HTTP, HTTPS Or QuIC.
|
|
803
783
|
:param pulumi.Input[builtins.str] load_balancer_id: The SLB Instance Id.
|
|
804
784
|
:param pulumi.Input[Union['ListenerQuicConfigArgs', 'ListenerQuicConfigArgsDict']] quic_config: Configuration Associated with the QuIC Listening See `quic_config` below.
|
|
805
|
-
:param pulumi.Input[builtins.int] request_timeout: The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60
|
|
785
|
+
:param pulumi.Input[builtins.int] request_timeout: The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60 seconds. If the Timeout Time Within the Back-End Server Has Not Answered the SLB Will Give up Waiting, the Client Returns the HTTP 504 Error Code.
|
|
806
786
|
:param pulumi.Input[builtins.str] security_policy_id: Security Policy
|
|
807
787
|
:param pulumi.Input[builtins.str] status: The Current IP Address of the Listened State
|
|
808
788
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: The tag of the resource
|
|
@@ -941,13 +921,9 @@ class Listener(pulumi.CustomResource):
|
|
|
941
921
|
:param str resource_name: The unique name of the resulting resource.
|
|
942
922
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
943
923
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
944
|
-
:param pulumi.Input[builtins.bool] access_log_record_customized_headers_enabled: Access Log Whether to Enable Carry Custom Header Field.
|
|
945
|
-
|
|
946
|
-
Value: True **** Or False * *.
|
|
924
|
+
:param pulumi.Input[builtins.bool] access_log_record_customized_headers_enabled: Access Log Whether to Enable Carry Custom Header Field. Valid values: `true`, `false`. Default Value: `false`.
|
|
947
925
|
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
> **NOTE:** Only Instances outside the Security Group to Access the Log Switch `accesslogenabled` Open, in Order to Set This Parameter to the **True * *.
|
|
926
|
+
> **NOTE:** Only Instances outside the Security Group to Access the Log Switch `accesslogenabled` Open, in Order to Set This Parameter to the `true`.
|
|
951
927
|
:param pulumi.Input[Union['ListenerAccessLogTracingConfigArgs', 'ListenerAccessLogTracingConfigArgsDict']] access_log_tracing_config: Xtrace Configuration Information. See `access_log_tracing_config` below.
|
|
952
928
|
:param pulumi.Input[Union['ListenerAclConfigArgs', 'ListenerAclConfigArgsDict']] acl_config: The configurations of the access control lists (ACLs). See `acl_config` below for details. **NOTE:** Field `acl_config` has been deprecated from provider version 1.163.0, and it will be removed in the future version. Please use the new resource `alb.ListenerAclAttachment`.,
|
|
953
929
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ListenerCaCertificateArgs', 'ListenerCaCertificateArgsDict']]]] ca_certificates: The list of certificates. See `ca_certificates` below.
|
|
@@ -957,13 +933,13 @@ class Listener(pulumi.CustomResource):
|
|
|
957
933
|
:param pulumi.Input[builtins.bool] dry_run: Whether to PreCheck only this request. Value:
|
|
958
934
|
:param pulumi.Input[builtins.bool] gzip_enabled: Whether to Enable Gzip Compression, as a Specific File Type on a Compression. Valid Values: True Or False. Default Value: TRUE.
|
|
959
935
|
:param pulumi.Input[builtins.bool] http2_enabled: Whether to Enable HTTP/2 Features. Valid Values: True Or False. Default Value: TRUE.
|
|
960
|
-
:param pulumi.Input[builtins.int] idle_timeout: Specify the Connection Idle Timeout Value: 1 to 60
|
|
936
|
+
:param pulumi.Input[builtins.int] idle_timeout: Specify the Connection Idle Timeout Value: 1 to 60 seconds.
|
|
961
937
|
:param pulumi.Input[builtins.str] listener_description: Set the IP Address of the Listened Description. Length Is from 2 to 256 Characters.
|
|
962
938
|
:param pulumi.Input[builtins.int] listener_port: The SLB Instance Front-End, and Those of the Ports Used. Value: 1~65535.
|
|
963
939
|
:param pulumi.Input[builtins.str] listener_protocol: Snooping Protocols. Valid Values: HTTP, HTTPS Or QuIC.
|
|
964
940
|
:param pulumi.Input[builtins.str] load_balancer_id: The SLB Instance Id.
|
|
965
941
|
:param pulumi.Input[Union['ListenerQuicConfigArgs', 'ListenerQuicConfigArgsDict']] quic_config: Configuration Associated with the QuIC Listening See `quic_config` below.
|
|
966
|
-
:param pulumi.Input[builtins.int] request_timeout: The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60
|
|
942
|
+
:param pulumi.Input[builtins.int] request_timeout: The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60 seconds. If the Timeout Time Within the Back-End Server Has Not Answered the SLB Will Give up Waiting, the Client Returns the HTTP 504 Error Code.
|
|
967
943
|
:param pulumi.Input[builtins.str] security_policy_id: Security Policy
|
|
968
944
|
:param pulumi.Input[builtins.str] status: The Current IP Address of the Listened State
|
|
969
945
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: The tag of the resource
|
|
@@ -1000,13 +976,9 @@ class Listener(pulumi.CustomResource):
|
|
|
1000
976
|
@pulumi.getter(name="accessLogRecordCustomizedHeadersEnabled")
|
|
1001
977
|
def access_log_record_customized_headers_enabled(self) -> pulumi.Output[Optional[builtins.bool]]:
|
|
1002
978
|
"""
|
|
1003
|
-
Access Log Whether to Enable Carry Custom Header Field.
|
|
1004
|
-
|
|
1005
|
-
Value: True **** Or False * *.
|
|
1006
|
-
|
|
1007
|
-
Default Value: False * *.
|
|
979
|
+
Access Log Whether to Enable Carry Custom Header Field. Valid values: `true`, `false`. Default Value: `false`.
|
|
1008
980
|
|
|
1009
|
-
> **NOTE:** Only Instances outside the Security Group to Access the Log Switch `accesslogenabled` Open, in Order to Set This Parameter to the
|
|
981
|
+
> **NOTE:** Only Instances outside the Security Group to Access the Log Switch `accesslogenabled` Open, in Order to Set This Parameter to the `true`.
|
|
1010
982
|
"""
|
|
1011
983
|
return pulumi.get(self, "access_log_record_customized_headers_enabled")
|
|
1012
984
|
|
|
@@ -1087,7 +1059,7 @@ class Listener(pulumi.CustomResource):
|
|
|
1087
1059
|
@pulumi.getter(name="idleTimeout")
|
|
1088
1060
|
def idle_timeout(self) -> pulumi.Output[builtins.int]:
|
|
1089
1061
|
"""
|
|
1090
|
-
Specify the Connection Idle Timeout Value: 1 to 60
|
|
1062
|
+
Specify the Connection Idle Timeout Value: 1 to 60 seconds.
|
|
1091
1063
|
"""
|
|
1092
1064
|
return pulumi.get(self, "idle_timeout")
|
|
1093
1065
|
|
|
@@ -1135,7 +1107,7 @@ class Listener(pulumi.CustomResource):
|
|
|
1135
1107
|
@pulumi.getter(name="requestTimeout")
|
|
1136
1108
|
def request_timeout(self) -> pulumi.Output[builtins.int]:
|
|
1137
1109
|
"""
|
|
1138
|
-
The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60
|
|
1110
|
+
The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60 seconds. If the Timeout Time Within the Back-End Server Has Not Answered the SLB Will Give up Waiting, the Client Returns the HTTP 504 Error Code.
|
|
1139
1111
|
"""
|
|
1140
1112
|
return pulumi.get(self, "request_timeout")
|
|
1141
1113
|
|