pulumi-alicloud 3.73.0a1736949061__py3-none-any.whl → 3.74.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.

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.73.0a1736949061.dist-info → pulumi_alicloud-3.74.0.dist-info}/METADATA +1 -1
  54. {pulumi_alicloud-3.73.0a1736949061.dist-info → pulumi_alicloud-3.74.0.dist-info}/RECORD +56 -45
  55. {pulumi_alicloud-3.73.0a1736949061.dist-info → pulumi_alicloud-3.74.0.dist-info}/WHEEL +0 -0
  56. {pulumi_alicloud-3.73.0a1736949061.dist-info → pulumi_alicloud-3.74.0.dist-info}/top_level.txt +0 -0
@@ -21,14 +21,16 @@ __all__ = ['ListenerArgs', 'Listener']
21
21
  @pulumi.input_type
22
22
  class ListenerArgs:
23
23
  def __init__(__self__, *,
24
+ default_actions: pulumi.Input[Sequence[pulumi.Input['ListenerDefaultActionArgs']]],
24
25
  listener_port: pulumi.Input[int],
25
26
  listener_protocol: pulumi.Input[str],
26
27
  load_balancer_id: pulumi.Input[str],
27
28
  access_log_record_customized_headers_enabled: Optional[pulumi.Input[bool]] = None,
28
29
  access_log_tracing_config: Optional[pulumi.Input['ListenerAccessLogTracingConfigArgs']] = None,
29
30
  acl_config: Optional[pulumi.Input['ListenerAclConfigArgs']] = None,
31
+ ca_certificates: Optional[pulumi.Input[Sequence[pulumi.Input['ListenerCaCertificateArgs']]]] = None,
32
+ ca_enabled: Optional[pulumi.Input[bool]] = None,
30
33
  certificates: Optional[pulumi.Input['ListenerCertificatesArgs']] = None,
31
- default_actions: Optional[pulumi.Input[Sequence[pulumi.Input['ListenerDefaultActionArgs']]]] = None,
32
34
  dry_run: Optional[pulumi.Input[bool]] = None,
33
35
  gzip_enabled: Optional[pulumi.Input[bool]] = None,
34
36
  http2_enabled: Optional[pulumi.Input[bool]] = None,
@@ -42,32 +44,35 @@ class ListenerArgs:
42
44
  x_forwarded_for_config: Optional[pulumi.Input['ListenerXForwardedForConfigArgs']] = None):
43
45
  """
44
46
  The set of arguments for constructing a Listener resource.
45
- :param pulumi.Input[int] listener_port: The ALB Instance Front-End, and Those of the Ports Used. Value: `1` to `65535`.
46
- :param pulumi.Input[str] listener_protocol: Snooping Protocols. Valid Values: `HTTP`, `HTTPS` Or `QUIC`.
47
- :param pulumi.Input[str] load_balancer_id: The ALB Instance Id.
48
- :param pulumi.Input[bool] access_log_record_customized_headers_enabled: Indicates whether the access log has a custom header field. Valid values: true and false. Default value: false.
47
+ :param pulumi.Input[Sequence[pulumi.Input['ListenerDefaultActionArgs']]] default_actions: The Default Rule Action List See `default_actions` below.
48
+ :param pulumi.Input[int] listener_port: The SLB Instance Front-End, and Those of the Ports Used. Value: 1~65535.
49
+ :param pulumi.Input[str] listener_protocol: Snooping Protocols. Valid Values: HTTP, HTTPS Or QuIC.
50
+ :param pulumi.Input[str] load_balancer_id: The SLB Instance Id.
51
+ :param pulumi.Input[bool] access_log_record_customized_headers_enabled: Access Log Whether to Enable Carry Custom Header Field.
49
52
 
50
- > **NOTE:** Only Instances outside the Security Group to Access the Log Switch **accesslogenabled** Open, in Order to Set This Parameter to the **True**.
51
- :param pulumi.Input['ListenerAccessLogTracingConfigArgs'] access_log_tracing_config: Xtrace Configuration Information. See `access_log_tracing_config` below for details.
52
- :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`.,
53
- :param pulumi.Input['ListenerCertificatesArgs'] certificates: The default certificate of the Listener. See `certificates` below for details. **NOTE:** When `listener_protocol` is `HTTPS`, The default certificate must be set one。
54
- :param pulumi.Input[Sequence[pulumi.Input['ListenerDefaultActionArgs']]] default_actions: The Default Rule Action List. See `default_actions` below for details.
55
- :param pulumi.Input[bool] dry_run: The dry run.
56
- :param pulumi.Input[bool] gzip_enabled: Whether to Enable Gzip Compression, as a Specific File Type on a Compression. Valid values: `false`, `true`. Default Value: `true`. .
57
- :param pulumi.Input[bool] http2_enabled: Whether to Enable HTTP/2 Features. Valid Values: `True` Or `False`. Default Value: `True`.
53
+ Value: True **** Or False * *.
58
54
 
59
- > **NOTE:** The attribute is valid when the attribute `listener_protocol` is `HTTPS`.
60
- :param pulumi.Input[int] idle_timeout: Specify the Connection Idle Timeout Value: `1` to `60`. Unit: Seconds.
61
- :param pulumi.Input[str] listener_description: The description of the listener. The description must be 2 to 256 characters in length. The name can contain only the characters in the following string: `/^([^\\x00-\\xff]|[\\w.,;/@-]){2,256}$/`.
62
- :param pulumi.Input['ListenerQuicConfigArgs'] quic_config: Configuration Associated with the QuIC Listening. See `quic_config` below for details.
63
- :param pulumi.Input[int] request_timeout: The Specified Request Timeout Time. Value: `1` to `180`. Unit: Seconds. Default Value: `60`. If the Timeout Time Within the Back-End Server Has Not Answered the ALB Will Give up Waiting, the Client Returns the HTTP 504 Error Code.
64
- :param pulumi.Input[str] security_policy_id: Security Policy.
55
+ Default Value: False * *.
65
56
 
66
- > **NOTE:** The attribute is valid when the attribute `listener_protocol` is `HTTPS`.
67
- :param pulumi.Input[str] status: The state of the listener. Valid Values: `Running` Or `Stopped`. Valid values: `Running`: The listener is running. `Stopped`: The listener is stopped.
68
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A mapping of tags to assign to the resource.
69
- :param pulumi.Input['ListenerXForwardedForConfigArgs'] x_forwarded_for_config: The `x_forward_for` Related Attribute Configuration. See `x_forwarded_for_config` below for details. **NOTE:** The attribute is valid when the attribute `listener_protocol` is `HTTPS`.
70
- """
57
+ > **NOTE:** Only Instances outside the Security Group to Access the Log Switch `accesslogenabled` Open, in Order to Set This Parameter to the **True * *.
58
+ :param pulumi.Input['ListenerAccessLogTracingConfigArgs'] access_log_tracing_config: Xtrace Configuration Information. See `access_log_tracing_config` below.
59
+ :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`.,
60
+ :param pulumi.Input[Sequence[pulumi.Input['ListenerCaCertificateArgs']]] ca_certificates: The list of certificates. See `ca_certificates` below.
61
+ :param pulumi.Input[bool] ca_enabled: Whether to turn on two-way authentication. Value:
62
+ :param pulumi.Input['ListenerCertificatesArgs'] certificates: The list of certificates. See `certificates` below.
63
+ :param pulumi.Input[bool] dry_run: Whether to PreCheck only this request. Value:
64
+ :param pulumi.Input[bool] gzip_enabled: Whether to Enable Gzip Compression, as a Specific File Type on a Compression. Valid Values: True Or False. Default Value: TRUE.
65
+ :param pulumi.Input[bool] http2_enabled: Whether to Enable HTTP/2 Features. Valid Values: True Or False. Default Value: TRUE.
66
+ :param pulumi.Input[int] idle_timeout: Specify the Connection Idle Timeout Value: 1 to 60 miao.
67
+ :param pulumi.Input[str] listener_description: Set the IP Address of the Listened Description. Length Is from 2 to 256 Characters.
68
+ :param pulumi.Input['ListenerQuicConfigArgs'] quic_config: Configuration Associated with the QuIC Listening See `quic_config` below.
69
+ :param pulumi.Input[int] request_timeout: The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60 miao. 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.
70
+ :param pulumi.Input[str] security_policy_id: Security Policy
71
+ :param pulumi.Input[str] status: The Current IP Address of the Listened State
72
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag of the resource
73
+ :param pulumi.Input['ListenerXForwardedForConfigArgs'] x_forwarded_for_config: xforwardfor Related Attribute Configuration See `x_forwarded_for_config` below.
74
+ """
75
+ pulumi.set(__self__, "default_actions", default_actions)
71
76
  pulumi.set(__self__, "listener_port", listener_port)
72
77
  pulumi.set(__self__, "listener_protocol", listener_protocol)
73
78
  pulumi.set(__self__, "load_balancer_id", load_balancer_id)
@@ -80,10 +85,12 @@ class ListenerArgs:
80
85
  pulumi.log.warn("""acl_config is deprecated: 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 'alicloud_alb_listener_acl_attachment'.""")
81
86
  if acl_config is not None:
82
87
  pulumi.set(__self__, "acl_config", acl_config)
88
+ if ca_certificates is not None:
89
+ pulumi.set(__self__, "ca_certificates", ca_certificates)
90
+ if ca_enabled is not None:
91
+ pulumi.set(__self__, "ca_enabled", ca_enabled)
83
92
  if certificates is not None:
84
93
  pulumi.set(__self__, "certificates", certificates)
85
- if default_actions is not None:
86
- pulumi.set(__self__, "default_actions", default_actions)
87
94
  if dry_run is not None:
88
95
  pulumi.set(__self__, "dry_run", dry_run)
89
96
  if gzip_enabled is not None:
@@ -107,11 +114,23 @@ class ListenerArgs:
107
114
  if x_forwarded_for_config is not None:
108
115
  pulumi.set(__self__, "x_forwarded_for_config", x_forwarded_for_config)
109
116
 
117
+ @property
118
+ @pulumi.getter(name="defaultActions")
119
+ def default_actions(self) -> pulumi.Input[Sequence[pulumi.Input['ListenerDefaultActionArgs']]]:
120
+ """
121
+ The Default Rule Action List See `default_actions` below.
122
+ """
123
+ return pulumi.get(self, "default_actions")
124
+
125
+ @default_actions.setter
126
+ def default_actions(self, value: pulumi.Input[Sequence[pulumi.Input['ListenerDefaultActionArgs']]]):
127
+ pulumi.set(self, "default_actions", value)
128
+
110
129
  @property
111
130
  @pulumi.getter(name="listenerPort")
112
131
  def listener_port(self) -> pulumi.Input[int]:
113
132
  """
114
- The ALB Instance Front-End, and Those of the Ports Used. Value: `1` to `65535`.
133
+ The SLB Instance Front-End, and Those of the Ports Used. Value: 1~65535.
115
134
  """
116
135
  return pulumi.get(self, "listener_port")
117
136
 
@@ -123,7 +142,7 @@ class ListenerArgs:
123
142
  @pulumi.getter(name="listenerProtocol")
124
143
  def listener_protocol(self) -> pulumi.Input[str]:
125
144
  """
126
- Snooping Protocols. Valid Values: `HTTP`, `HTTPS` Or `QUIC`.
145
+ Snooping Protocols. Valid Values: HTTP, HTTPS Or QuIC.
127
146
  """
128
147
  return pulumi.get(self, "listener_protocol")
129
148
 
@@ -135,7 +154,7 @@ class ListenerArgs:
135
154
  @pulumi.getter(name="loadBalancerId")
136
155
  def load_balancer_id(self) -> pulumi.Input[str]:
137
156
  """
138
- The ALB Instance Id.
157
+ The SLB Instance Id.
139
158
  """
140
159
  return pulumi.get(self, "load_balancer_id")
141
160
 
@@ -147,9 +166,13 @@ class ListenerArgs:
147
166
  @pulumi.getter(name="accessLogRecordCustomizedHeadersEnabled")
148
167
  def access_log_record_customized_headers_enabled(self) -> Optional[pulumi.Input[bool]]:
149
168
  """
150
- Indicates whether the access log has a custom header field. Valid values: true and false. Default value: false.
169
+ Access Log Whether to Enable Carry Custom Header Field.
170
+
171
+ Value: True **** Or False * *.
151
172
 
152
- > **NOTE:** Only Instances outside the Security Group to Access the Log Switch **accesslogenabled** Open, in Order to Set This Parameter to the **True**.
173
+ Default Value: False * *.
174
+
175
+ > **NOTE:** Only Instances outside the Security Group to Access the Log Switch `accesslogenabled` Open, in Order to Set This Parameter to the **True * *.
153
176
  """
154
177
  return pulumi.get(self, "access_log_record_customized_headers_enabled")
155
178
 
@@ -161,7 +184,7 @@ class ListenerArgs:
161
184
  @pulumi.getter(name="accessLogTracingConfig")
162
185
  def access_log_tracing_config(self) -> Optional[pulumi.Input['ListenerAccessLogTracingConfigArgs']]:
163
186
  """
164
- Xtrace Configuration Information. See `access_log_tracing_config` below for details.
187
+ Xtrace Configuration Information. See `access_log_tracing_config` below.
165
188
  """
166
189
  return pulumi.get(self, "access_log_tracing_config")
167
190
 
@@ -182,11 +205,35 @@ class ListenerArgs:
182
205
  def acl_config(self, value: Optional[pulumi.Input['ListenerAclConfigArgs']]):
183
206
  pulumi.set(self, "acl_config", value)
184
207
 
208
+ @property
209
+ @pulumi.getter(name="caCertificates")
210
+ def ca_certificates(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ListenerCaCertificateArgs']]]]:
211
+ """
212
+ The list of certificates. See `ca_certificates` below.
213
+ """
214
+ return pulumi.get(self, "ca_certificates")
215
+
216
+ @ca_certificates.setter
217
+ def ca_certificates(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ListenerCaCertificateArgs']]]]):
218
+ pulumi.set(self, "ca_certificates", value)
219
+
220
+ @property
221
+ @pulumi.getter(name="caEnabled")
222
+ def ca_enabled(self) -> Optional[pulumi.Input[bool]]:
223
+ """
224
+ Whether to turn on two-way authentication. Value:
225
+ """
226
+ return pulumi.get(self, "ca_enabled")
227
+
228
+ @ca_enabled.setter
229
+ def ca_enabled(self, value: Optional[pulumi.Input[bool]]):
230
+ pulumi.set(self, "ca_enabled", value)
231
+
185
232
  @property
186
233
  @pulumi.getter
187
234
  def certificates(self) -> Optional[pulumi.Input['ListenerCertificatesArgs']]:
188
235
  """
189
- The default certificate of the Listener. See `certificates` below for details. **NOTE:** When `listener_protocol` is `HTTPS`, The default certificate must be set one。
236
+ The list of certificates. See `certificates` below.
190
237
  """
191
238
  return pulumi.get(self, "certificates")
192
239
 
@@ -194,23 +241,11 @@ class ListenerArgs:
194
241
  def certificates(self, value: Optional[pulumi.Input['ListenerCertificatesArgs']]):
195
242
  pulumi.set(self, "certificates", value)
196
243
 
197
- @property
198
- @pulumi.getter(name="defaultActions")
199
- def default_actions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ListenerDefaultActionArgs']]]]:
200
- """
201
- The Default Rule Action List. See `default_actions` below for details.
202
- """
203
- return pulumi.get(self, "default_actions")
204
-
205
- @default_actions.setter
206
- def default_actions(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ListenerDefaultActionArgs']]]]):
207
- pulumi.set(self, "default_actions", value)
208
-
209
244
  @property
210
245
  @pulumi.getter(name="dryRun")
211
246
  def dry_run(self) -> Optional[pulumi.Input[bool]]:
212
247
  """
213
- The dry run.
248
+ Whether to PreCheck only this request. Value:
214
249
  """
215
250
  return pulumi.get(self, "dry_run")
216
251
 
@@ -222,7 +257,7 @@ class ListenerArgs:
222
257
  @pulumi.getter(name="gzipEnabled")
223
258
  def gzip_enabled(self) -> Optional[pulumi.Input[bool]]:
224
259
  """
225
- Whether to Enable Gzip Compression, as a Specific File Type on a Compression. Valid values: `false`, `true`. Default Value: `true`. .
260
+ Whether to Enable Gzip Compression, as a Specific File Type on a Compression. Valid Values: True Or False. Default Value: TRUE.
226
261
  """
227
262
  return pulumi.get(self, "gzip_enabled")
228
263
 
@@ -234,9 +269,7 @@ class ListenerArgs:
234
269
  @pulumi.getter(name="http2Enabled")
235
270
  def http2_enabled(self) -> Optional[pulumi.Input[bool]]:
236
271
  """
237
- Whether to Enable HTTP/2 Features. Valid Values: `True` Or `False`. Default Value: `True`.
238
-
239
- > **NOTE:** The attribute is valid when the attribute `listener_protocol` is `HTTPS`.
272
+ Whether to Enable HTTP/2 Features. Valid Values: True Or False. Default Value: TRUE.
240
273
  """
241
274
  return pulumi.get(self, "http2_enabled")
242
275
 
@@ -248,7 +281,7 @@ class ListenerArgs:
248
281
  @pulumi.getter(name="idleTimeout")
249
282
  def idle_timeout(self) -> Optional[pulumi.Input[int]]:
250
283
  """
251
- Specify the Connection Idle Timeout Value: `1` to `60`. Unit: Seconds.
284
+ Specify the Connection Idle Timeout Value: 1 to 60 miao.
252
285
  """
253
286
  return pulumi.get(self, "idle_timeout")
254
287
 
@@ -260,7 +293,7 @@ class ListenerArgs:
260
293
  @pulumi.getter(name="listenerDescription")
261
294
  def listener_description(self) -> Optional[pulumi.Input[str]]:
262
295
  """
263
- The description of the listener. The description must be 2 to 256 characters in length. The name can contain only the characters in the following string: `/^([^\\x00-\\xff]|[\\w.,;/@-]){2,256}$/`.
296
+ Set the IP Address of the Listened Description. Length Is from 2 to 256 Characters.
264
297
  """
265
298
  return pulumi.get(self, "listener_description")
266
299
 
@@ -272,7 +305,7 @@ class ListenerArgs:
272
305
  @pulumi.getter(name="quicConfig")
273
306
  def quic_config(self) -> Optional[pulumi.Input['ListenerQuicConfigArgs']]:
274
307
  """
275
- Configuration Associated with the QuIC Listening. See `quic_config` below for details.
308
+ Configuration Associated with the QuIC Listening See `quic_config` below.
276
309
  """
277
310
  return pulumi.get(self, "quic_config")
278
311
 
@@ -284,7 +317,7 @@ class ListenerArgs:
284
317
  @pulumi.getter(name="requestTimeout")
285
318
  def request_timeout(self) -> Optional[pulumi.Input[int]]:
286
319
  """
287
- The Specified Request Timeout Time. Value: `1` to `180`. Unit: Seconds. Default Value: `60`. If the Timeout Time Within the Back-End Server Has Not Answered the ALB Will Give up Waiting, the Client Returns the HTTP 504 Error Code.
320
+ The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60 miao. 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.
288
321
  """
289
322
  return pulumi.get(self, "request_timeout")
290
323
 
@@ -296,9 +329,7 @@ class ListenerArgs:
296
329
  @pulumi.getter(name="securityPolicyId")
297
330
  def security_policy_id(self) -> Optional[pulumi.Input[str]]:
298
331
  """
299
- Security Policy.
300
-
301
- > **NOTE:** The attribute is valid when the attribute `listener_protocol` is `HTTPS`.
332
+ Security Policy
302
333
  """
303
334
  return pulumi.get(self, "security_policy_id")
304
335
 
@@ -310,7 +341,7 @@ class ListenerArgs:
310
341
  @pulumi.getter
311
342
  def status(self) -> Optional[pulumi.Input[str]]:
312
343
  """
313
- The state of the listener. Valid Values: `Running` Or `Stopped`. Valid values: `Running`: The listener is running. `Stopped`: The listener is stopped.
344
+ The Current IP Address of the Listened State
314
345
  """
315
346
  return pulumi.get(self, "status")
316
347
 
@@ -322,7 +353,7 @@ class ListenerArgs:
322
353
  @pulumi.getter
323
354
  def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
324
355
  """
325
- A mapping of tags to assign to the resource.
356
+ The tag of the resource
326
357
  """
327
358
  return pulumi.get(self, "tags")
328
359
 
@@ -334,7 +365,7 @@ class ListenerArgs:
334
365
  @pulumi.getter(name="xForwardedForConfig")
335
366
  def x_forwarded_for_config(self) -> Optional[pulumi.Input['ListenerXForwardedForConfigArgs']]:
336
367
  """
337
- The `x_forward_for` Related Attribute Configuration. See `x_forwarded_for_config` below for details. **NOTE:** The attribute is valid when the attribute `listener_protocol` is `HTTPS`.
368
+ xforwardfor Related Attribute Configuration See `x_forwarded_for_config` below.
338
369
  """
339
370
  return pulumi.get(self, "x_forwarded_for_config")
340
371
 
@@ -349,6 +380,8 @@ class _ListenerState:
349
380
  access_log_record_customized_headers_enabled: Optional[pulumi.Input[bool]] = None,
350
381
  access_log_tracing_config: Optional[pulumi.Input['ListenerAccessLogTracingConfigArgs']] = None,
351
382
  acl_config: Optional[pulumi.Input['ListenerAclConfigArgs']] = None,
383
+ ca_certificates: Optional[pulumi.Input[Sequence[pulumi.Input['ListenerCaCertificateArgs']]]] = None,
384
+ ca_enabled: Optional[pulumi.Input[bool]] = None,
352
385
  certificates: Optional[pulumi.Input['ListenerCertificatesArgs']] = None,
353
386
  default_actions: Optional[pulumi.Input[Sequence[pulumi.Input['ListenerDefaultActionArgs']]]] = None,
354
387
  dry_run: Optional[pulumi.Input[bool]] = None,
@@ -367,31 +400,33 @@ class _ListenerState:
367
400
  x_forwarded_for_config: Optional[pulumi.Input['ListenerXForwardedForConfigArgs']] = None):
368
401
  """
369
402
  Input properties used for looking up and filtering Listener resources.
370
- :param pulumi.Input[bool] access_log_record_customized_headers_enabled: Indicates whether the access log has a custom header field. Valid values: true and false. Default value: false.
403
+ :param pulumi.Input[bool] access_log_record_customized_headers_enabled: Access Log Whether to Enable Carry Custom Header Field.
371
404
 
372
- > **NOTE:** Only Instances outside the Security Group to Access the Log Switch **accesslogenabled** Open, in Order to Set This Parameter to the **True**.
373
- :param pulumi.Input['ListenerAccessLogTracingConfigArgs'] access_log_tracing_config: Xtrace Configuration Information. See `access_log_tracing_config` below for details.
374
- :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`.,
375
- :param pulumi.Input['ListenerCertificatesArgs'] certificates: The default certificate of the Listener. See `certificates` below for details. **NOTE:** When `listener_protocol` is `HTTPS`, The default certificate must be set one。
376
- :param pulumi.Input[Sequence[pulumi.Input['ListenerDefaultActionArgs']]] default_actions: The Default Rule Action List. See `default_actions` below for details.
377
- :param pulumi.Input[bool] dry_run: The dry run.
378
- :param pulumi.Input[bool] gzip_enabled: Whether to Enable Gzip Compression, as a Specific File Type on a Compression. Valid values: `false`, `true`. Default Value: `true`. .
379
- :param pulumi.Input[bool] http2_enabled: Whether to Enable HTTP/2 Features. Valid Values: `True` Or `False`. Default Value: `True`.
405
+ Value: True **** Or False * *.
380
406
 
381
- > **NOTE:** The attribute is valid when the attribute `listener_protocol` is `HTTPS`.
382
- :param pulumi.Input[int] idle_timeout: Specify the Connection Idle Timeout Value: `1` to `60`. Unit: Seconds.
383
- :param pulumi.Input[str] listener_description: The description of the listener. The description must be 2 to 256 characters in length. The name can contain only the characters in the following string: `/^([^\\x00-\\xff]|[\\w.,;/@-]){2,256}$/`.
384
- :param pulumi.Input[int] listener_port: The ALB Instance Front-End, and Those of the Ports Used. Value: `1` to `65535`.
385
- :param pulumi.Input[str] listener_protocol: Snooping Protocols. Valid Values: `HTTP`, `HTTPS` Or `QUIC`.
386
- :param pulumi.Input[str] load_balancer_id: The ALB Instance Id.
387
- :param pulumi.Input['ListenerQuicConfigArgs'] quic_config: Configuration Associated with the QuIC Listening. See `quic_config` below for details.
388
- :param pulumi.Input[int] request_timeout: The Specified Request Timeout Time. Value: `1` to `180`. Unit: Seconds. Default Value: `60`. If the Timeout Time Within the Back-End Server Has Not Answered the ALB Will Give up Waiting, the Client Returns the HTTP 504 Error Code.
389
- :param pulumi.Input[str] security_policy_id: Security Policy.
407
+ Default Value: False * *.
390
408
 
391
- > **NOTE:** The attribute is valid when the attribute `listener_protocol` is `HTTPS`.
392
- :param pulumi.Input[str] status: The state of the listener. Valid Values: `Running` Or `Stopped`. Valid values: `Running`: The listener is running. `Stopped`: The listener is stopped.
393
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A mapping of tags to assign to the resource.
394
- :param pulumi.Input['ListenerXForwardedForConfigArgs'] x_forwarded_for_config: The `x_forward_for` Related Attribute Configuration. See `x_forwarded_for_config` below for details. **NOTE:** The attribute is valid when the attribute `listener_protocol` is `HTTPS`.
409
+ > **NOTE:** Only Instances outside the Security Group to Access the Log Switch `accesslogenabled` Open, in Order to Set This Parameter to the **True * *.
410
+ :param pulumi.Input['ListenerAccessLogTracingConfigArgs'] access_log_tracing_config: Xtrace Configuration Information. See `access_log_tracing_config` below.
411
+ :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`.,
412
+ :param pulumi.Input[Sequence[pulumi.Input['ListenerCaCertificateArgs']]] ca_certificates: The list of certificates. See `ca_certificates` below.
413
+ :param pulumi.Input[bool] ca_enabled: Whether to turn on two-way authentication. Value:
414
+ :param pulumi.Input['ListenerCertificatesArgs'] certificates: The list of certificates. See `certificates` below.
415
+ :param pulumi.Input[Sequence[pulumi.Input['ListenerDefaultActionArgs']]] default_actions: The Default Rule Action List See `default_actions` below.
416
+ :param pulumi.Input[bool] dry_run: Whether to PreCheck only this request. Value:
417
+ :param pulumi.Input[bool] gzip_enabled: Whether to Enable Gzip Compression, as a Specific File Type on a Compression. Valid Values: True Or False. Default Value: TRUE.
418
+ :param pulumi.Input[bool] http2_enabled: Whether to Enable HTTP/2 Features. Valid Values: True Or False. Default Value: TRUE.
419
+ :param pulumi.Input[int] idle_timeout: Specify the Connection Idle Timeout Value: 1 to 60 miao.
420
+ :param pulumi.Input[str] listener_description: Set the IP Address of the Listened Description. Length Is from 2 to 256 Characters.
421
+ :param pulumi.Input[int] listener_port: The SLB Instance Front-End, and Those of the Ports Used. Value: 1~65535.
422
+ :param pulumi.Input[str] listener_protocol: Snooping Protocols. Valid Values: HTTP, HTTPS Or QuIC.
423
+ :param pulumi.Input[str] load_balancer_id: The SLB Instance Id.
424
+ :param pulumi.Input['ListenerQuicConfigArgs'] quic_config: Configuration Associated with the QuIC Listening See `quic_config` below.
425
+ :param pulumi.Input[int] request_timeout: The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60 miao. 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.
426
+ :param pulumi.Input[str] security_policy_id: Security Policy
427
+ :param pulumi.Input[str] status: The Current IP Address of the Listened State
428
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag of the resource
429
+ :param pulumi.Input['ListenerXForwardedForConfigArgs'] x_forwarded_for_config: xforwardfor Related Attribute Configuration See `x_forwarded_for_config` below.
395
430
  """
396
431
  if access_log_record_customized_headers_enabled is not None:
397
432
  pulumi.set(__self__, "access_log_record_customized_headers_enabled", access_log_record_customized_headers_enabled)
@@ -402,6 +437,10 @@ class _ListenerState:
402
437
  pulumi.log.warn("""acl_config is deprecated: 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 'alicloud_alb_listener_acl_attachment'.""")
403
438
  if acl_config is not None:
404
439
  pulumi.set(__self__, "acl_config", acl_config)
440
+ if ca_certificates is not None:
441
+ pulumi.set(__self__, "ca_certificates", ca_certificates)
442
+ if ca_enabled is not None:
443
+ pulumi.set(__self__, "ca_enabled", ca_enabled)
405
444
  if certificates is not None:
406
445
  pulumi.set(__self__, "certificates", certificates)
407
446
  if default_actions is not None:
@@ -439,9 +478,13 @@ class _ListenerState:
439
478
  @pulumi.getter(name="accessLogRecordCustomizedHeadersEnabled")
440
479
  def access_log_record_customized_headers_enabled(self) -> Optional[pulumi.Input[bool]]:
441
480
  """
442
- Indicates whether the access log has a custom header field. Valid values: true and false. Default value: false.
481
+ Access Log Whether to Enable Carry Custom Header Field.
482
+
483
+ Value: True **** Or False * *.
443
484
 
444
- > **NOTE:** Only Instances outside the Security Group to Access the Log Switch **accesslogenabled** Open, in Order to Set This Parameter to the **True**.
485
+ Default Value: False * *.
486
+
487
+ > **NOTE:** Only Instances outside the Security Group to Access the Log Switch `accesslogenabled` Open, in Order to Set This Parameter to the **True * *.
445
488
  """
446
489
  return pulumi.get(self, "access_log_record_customized_headers_enabled")
447
490
 
@@ -453,7 +496,7 @@ class _ListenerState:
453
496
  @pulumi.getter(name="accessLogTracingConfig")
454
497
  def access_log_tracing_config(self) -> Optional[pulumi.Input['ListenerAccessLogTracingConfigArgs']]:
455
498
  """
456
- Xtrace Configuration Information. See `access_log_tracing_config` below for details.
499
+ Xtrace Configuration Information. See `access_log_tracing_config` below.
457
500
  """
458
501
  return pulumi.get(self, "access_log_tracing_config")
459
502
 
@@ -474,11 +517,35 @@ class _ListenerState:
474
517
  def acl_config(self, value: Optional[pulumi.Input['ListenerAclConfigArgs']]):
475
518
  pulumi.set(self, "acl_config", value)
476
519
 
520
+ @property
521
+ @pulumi.getter(name="caCertificates")
522
+ def ca_certificates(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ListenerCaCertificateArgs']]]]:
523
+ """
524
+ The list of certificates. See `ca_certificates` below.
525
+ """
526
+ return pulumi.get(self, "ca_certificates")
527
+
528
+ @ca_certificates.setter
529
+ def ca_certificates(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ListenerCaCertificateArgs']]]]):
530
+ pulumi.set(self, "ca_certificates", value)
531
+
532
+ @property
533
+ @pulumi.getter(name="caEnabled")
534
+ def ca_enabled(self) -> Optional[pulumi.Input[bool]]:
535
+ """
536
+ Whether to turn on two-way authentication. Value:
537
+ """
538
+ return pulumi.get(self, "ca_enabled")
539
+
540
+ @ca_enabled.setter
541
+ def ca_enabled(self, value: Optional[pulumi.Input[bool]]):
542
+ pulumi.set(self, "ca_enabled", value)
543
+
477
544
  @property
478
545
  @pulumi.getter
479
546
  def certificates(self) -> Optional[pulumi.Input['ListenerCertificatesArgs']]:
480
547
  """
481
- The default certificate of the Listener. See `certificates` below for details. **NOTE:** When `listener_protocol` is `HTTPS`, The default certificate must be set one。
548
+ The list of certificates. See `certificates` below.
482
549
  """
483
550
  return pulumi.get(self, "certificates")
484
551
 
@@ -490,7 +557,7 @@ class _ListenerState:
490
557
  @pulumi.getter(name="defaultActions")
491
558
  def default_actions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ListenerDefaultActionArgs']]]]:
492
559
  """
493
- The Default Rule Action List. See `default_actions` below for details.
560
+ The Default Rule Action List See `default_actions` below.
494
561
  """
495
562
  return pulumi.get(self, "default_actions")
496
563
 
@@ -502,7 +569,7 @@ class _ListenerState:
502
569
  @pulumi.getter(name="dryRun")
503
570
  def dry_run(self) -> Optional[pulumi.Input[bool]]:
504
571
  """
505
- The dry run.
572
+ Whether to PreCheck only this request. Value:
506
573
  """
507
574
  return pulumi.get(self, "dry_run")
508
575
 
@@ -514,7 +581,7 @@ class _ListenerState:
514
581
  @pulumi.getter(name="gzipEnabled")
515
582
  def gzip_enabled(self) -> Optional[pulumi.Input[bool]]:
516
583
  """
517
- Whether to Enable Gzip Compression, as a Specific File Type on a Compression. Valid values: `false`, `true`. Default Value: `true`. .
584
+ Whether to Enable Gzip Compression, as a Specific File Type on a Compression. Valid Values: True Or False. Default Value: TRUE.
518
585
  """
519
586
  return pulumi.get(self, "gzip_enabled")
520
587
 
@@ -526,9 +593,7 @@ class _ListenerState:
526
593
  @pulumi.getter(name="http2Enabled")
527
594
  def http2_enabled(self) -> Optional[pulumi.Input[bool]]:
528
595
  """
529
- Whether to Enable HTTP/2 Features. Valid Values: `True` Or `False`. Default Value: `True`.
530
-
531
- > **NOTE:** The attribute is valid when the attribute `listener_protocol` is `HTTPS`.
596
+ Whether to Enable HTTP/2 Features. Valid Values: True Or False. Default Value: TRUE.
532
597
  """
533
598
  return pulumi.get(self, "http2_enabled")
534
599
 
@@ -540,7 +605,7 @@ class _ListenerState:
540
605
  @pulumi.getter(name="idleTimeout")
541
606
  def idle_timeout(self) -> Optional[pulumi.Input[int]]:
542
607
  """
543
- Specify the Connection Idle Timeout Value: `1` to `60`. Unit: Seconds.
608
+ Specify the Connection Idle Timeout Value: 1 to 60 miao.
544
609
  """
545
610
  return pulumi.get(self, "idle_timeout")
546
611
 
@@ -552,7 +617,7 @@ class _ListenerState:
552
617
  @pulumi.getter(name="listenerDescription")
553
618
  def listener_description(self) -> Optional[pulumi.Input[str]]:
554
619
  """
555
- The description of the listener. The description must be 2 to 256 characters in length. The name can contain only the characters in the following string: `/^([^\\x00-\\xff]|[\\w.,;/@-]){2,256}$/`.
620
+ Set the IP Address of the Listened Description. Length Is from 2 to 256 Characters.
556
621
  """
557
622
  return pulumi.get(self, "listener_description")
558
623
 
@@ -564,7 +629,7 @@ class _ListenerState:
564
629
  @pulumi.getter(name="listenerPort")
565
630
  def listener_port(self) -> Optional[pulumi.Input[int]]:
566
631
  """
567
- The ALB Instance Front-End, and Those of the Ports Used. Value: `1` to `65535`.
632
+ The SLB Instance Front-End, and Those of the Ports Used. Value: 1~65535.
568
633
  """
569
634
  return pulumi.get(self, "listener_port")
570
635
 
@@ -576,7 +641,7 @@ class _ListenerState:
576
641
  @pulumi.getter(name="listenerProtocol")
577
642
  def listener_protocol(self) -> Optional[pulumi.Input[str]]:
578
643
  """
579
- Snooping Protocols. Valid Values: `HTTP`, `HTTPS` Or `QUIC`.
644
+ Snooping Protocols. Valid Values: HTTP, HTTPS Or QuIC.
580
645
  """
581
646
  return pulumi.get(self, "listener_protocol")
582
647
 
@@ -588,7 +653,7 @@ class _ListenerState:
588
653
  @pulumi.getter(name="loadBalancerId")
589
654
  def load_balancer_id(self) -> Optional[pulumi.Input[str]]:
590
655
  """
591
- The ALB Instance Id.
656
+ The SLB Instance Id.
592
657
  """
593
658
  return pulumi.get(self, "load_balancer_id")
594
659
 
@@ -600,7 +665,7 @@ class _ListenerState:
600
665
  @pulumi.getter(name="quicConfig")
601
666
  def quic_config(self) -> Optional[pulumi.Input['ListenerQuicConfigArgs']]:
602
667
  """
603
- Configuration Associated with the QuIC Listening. See `quic_config` below for details.
668
+ Configuration Associated with the QuIC Listening See `quic_config` below.
604
669
  """
605
670
  return pulumi.get(self, "quic_config")
606
671
 
@@ -612,7 +677,7 @@ class _ListenerState:
612
677
  @pulumi.getter(name="requestTimeout")
613
678
  def request_timeout(self) -> Optional[pulumi.Input[int]]:
614
679
  """
615
- The Specified Request Timeout Time. Value: `1` to `180`. Unit: Seconds. Default Value: `60`. If the Timeout Time Within the Back-End Server Has Not Answered the ALB Will Give up Waiting, the Client Returns the HTTP 504 Error Code.
680
+ The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60 miao. 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.
616
681
  """
617
682
  return pulumi.get(self, "request_timeout")
618
683
 
@@ -624,9 +689,7 @@ class _ListenerState:
624
689
  @pulumi.getter(name="securityPolicyId")
625
690
  def security_policy_id(self) -> Optional[pulumi.Input[str]]:
626
691
  """
627
- Security Policy.
628
-
629
- > **NOTE:** The attribute is valid when the attribute `listener_protocol` is `HTTPS`.
692
+ Security Policy
630
693
  """
631
694
  return pulumi.get(self, "security_policy_id")
632
695
 
@@ -638,7 +701,7 @@ class _ListenerState:
638
701
  @pulumi.getter
639
702
  def status(self) -> Optional[pulumi.Input[str]]:
640
703
  """
641
- The state of the listener. Valid Values: `Running` Or `Stopped`. Valid values: `Running`: The listener is running. `Stopped`: The listener is stopped.
704
+ The Current IP Address of the Listened State
642
705
  """
643
706
  return pulumi.get(self, "status")
644
707
 
@@ -650,7 +713,7 @@ class _ListenerState:
650
713
  @pulumi.getter
651
714
  def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
652
715
  """
653
- A mapping of tags to assign to the resource.
716
+ The tag of the resource
654
717
  """
655
718
  return pulumi.get(self, "tags")
656
719
 
@@ -662,7 +725,7 @@ class _ListenerState:
662
725
  @pulumi.getter(name="xForwardedForConfig")
663
726
  def x_forwarded_for_config(self) -> Optional[pulumi.Input['ListenerXForwardedForConfigArgs']]:
664
727
  """
665
- The `x_forward_for` Related Attribute Configuration. See `x_forwarded_for_config` below for details. **NOTE:** The attribute is valid when the attribute `listener_protocol` is `HTTPS`.
728
+ xforwardfor Related Attribute Configuration See `x_forwarded_for_config` below.
666
729
  """
667
730
  return pulumi.get(self, "x_forwarded_for_config")
668
731
 
@@ -679,6 +742,8 @@ class Listener(pulumi.CustomResource):
679
742
  access_log_record_customized_headers_enabled: Optional[pulumi.Input[bool]] = None,
680
743
  access_log_tracing_config: Optional[pulumi.Input[Union['ListenerAccessLogTracingConfigArgs', 'ListenerAccessLogTracingConfigArgsDict']]] = None,
681
744
  acl_config: Optional[pulumi.Input[Union['ListenerAclConfigArgs', 'ListenerAclConfigArgsDict']]] = None,
745
+ ca_certificates: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ListenerCaCertificateArgs', 'ListenerCaCertificateArgsDict']]]]] = None,
746
+ ca_enabled: Optional[pulumi.Input[bool]] = None,
682
747
  certificates: Optional[pulumi.Input[Union['ListenerCertificatesArgs', 'ListenerCertificatesArgsDict']]] = None,
683
748
  default_actions: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ListenerDefaultActionArgs', 'ListenerDefaultActionArgsDict']]]]] = None,
684
749
  dry_run: Optional[pulumi.Input[bool]] = None,
@@ -713,31 +778,33 @@ class Listener(pulumi.CustomResource):
713
778
 
714
779
  :param str resource_name: The name of the resource.
715
780
  :param pulumi.ResourceOptions opts: Options for the resource.
716
- :param pulumi.Input[bool] access_log_record_customized_headers_enabled: Indicates whether the access log has a custom header field. Valid values: true and false. Default value: false.
781
+ :param pulumi.Input[bool] access_log_record_customized_headers_enabled: Access Log Whether to Enable Carry Custom Header Field.
717
782
 
718
- > **NOTE:** Only Instances outside the Security Group to Access the Log Switch **accesslogenabled** Open, in Order to Set This Parameter to the **True**.
719
- :param pulumi.Input[Union['ListenerAccessLogTracingConfigArgs', 'ListenerAccessLogTracingConfigArgsDict']] access_log_tracing_config: Xtrace Configuration Information. See `access_log_tracing_config` below for details.
720
- :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`.,
721
- :param pulumi.Input[Union['ListenerCertificatesArgs', 'ListenerCertificatesArgsDict']] certificates: The default certificate of the Listener. See `certificates` below for details. **NOTE:** When `listener_protocol` is `HTTPS`, The default certificate must be set one。
722
- :param pulumi.Input[Sequence[pulumi.Input[Union['ListenerDefaultActionArgs', 'ListenerDefaultActionArgsDict']]]] default_actions: The Default Rule Action List. See `default_actions` below for details.
723
- :param pulumi.Input[bool] dry_run: The dry run.
724
- :param pulumi.Input[bool] gzip_enabled: Whether to Enable Gzip Compression, as a Specific File Type on a Compression. Valid values: `false`, `true`. Default Value: `true`. .
725
- :param pulumi.Input[bool] http2_enabled: Whether to Enable HTTP/2 Features. Valid Values: `True` Or `False`. Default Value: `True`.
783
+ Value: True **** Or False * *.
726
784
 
727
- > **NOTE:** The attribute is valid when the attribute `listener_protocol` is `HTTPS`.
728
- :param pulumi.Input[int] idle_timeout: Specify the Connection Idle Timeout Value: `1` to `60`. Unit: Seconds.
729
- :param pulumi.Input[str] listener_description: The description of the listener. The description must be 2 to 256 characters in length. The name can contain only the characters in the following string: `/^([^\\x00-\\xff]|[\\w.,;/@-]){2,256}$/`.
730
- :param pulumi.Input[int] listener_port: The ALB Instance Front-End, and Those of the Ports Used. Value: `1` to `65535`.
731
- :param pulumi.Input[str] listener_protocol: Snooping Protocols. Valid Values: `HTTP`, `HTTPS` Or `QUIC`.
732
- :param pulumi.Input[str] load_balancer_id: The ALB Instance Id.
733
- :param pulumi.Input[Union['ListenerQuicConfigArgs', 'ListenerQuicConfigArgsDict']] quic_config: Configuration Associated with the QuIC Listening. See `quic_config` below for details.
734
- :param pulumi.Input[int] request_timeout: The Specified Request Timeout Time. Value: `1` to `180`. Unit: Seconds. Default Value: `60`. If the Timeout Time Within the Back-End Server Has Not Answered the ALB Will Give up Waiting, the Client Returns the HTTP 504 Error Code.
735
- :param pulumi.Input[str] security_policy_id: Security Policy.
785
+ Default Value: False * *.
736
786
 
737
- > **NOTE:** The attribute is valid when the attribute `listener_protocol` is `HTTPS`.
738
- :param pulumi.Input[str] status: The state of the listener. Valid Values: `Running` Or `Stopped`. Valid values: `Running`: The listener is running. `Stopped`: The listener is stopped.
739
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A mapping of tags to assign to the resource.
740
- :param pulumi.Input[Union['ListenerXForwardedForConfigArgs', 'ListenerXForwardedForConfigArgsDict']] x_forwarded_for_config: The `x_forward_for` Related Attribute Configuration. See `x_forwarded_for_config` below for details. **NOTE:** The attribute is valid when the attribute `listener_protocol` is `HTTPS`.
787
+ > **NOTE:** Only Instances outside the Security Group to Access the Log Switch `accesslogenabled` Open, in Order to Set This Parameter to the **True * *.
788
+ :param pulumi.Input[Union['ListenerAccessLogTracingConfigArgs', 'ListenerAccessLogTracingConfigArgsDict']] access_log_tracing_config: Xtrace Configuration Information. See `access_log_tracing_config` below.
789
+ :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`.,
790
+ :param pulumi.Input[Sequence[pulumi.Input[Union['ListenerCaCertificateArgs', 'ListenerCaCertificateArgsDict']]]] ca_certificates: The list of certificates. See `ca_certificates` below.
791
+ :param pulumi.Input[bool] ca_enabled: Whether to turn on two-way authentication. Value:
792
+ :param pulumi.Input[Union['ListenerCertificatesArgs', 'ListenerCertificatesArgsDict']] certificates: The list of certificates. See `certificates` below.
793
+ :param pulumi.Input[Sequence[pulumi.Input[Union['ListenerDefaultActionArgs', 'ListenerDefaultActionArgsDict']]]] default_actions: The Default Rule Action List See `default_actions` below.
794
+ :param pulumi.Input[bool] dry_run: Whether to PreCheck only this request. Value:
795
+ :param pulumi.Input[bool] gzip_enabled: Whether to Enable Gzip Compression, as a Specific File Type on a Compression. Valid Values: True Or False. Default Value: TRUE.
796
+ :param pulumi.Input[bool] http2_enabled: Whether to Enable HTTP/2 Features. Valid Values: True Or False. Default Value: TRUE.
797
+ :param pulumi.Input[int] idle_timeout: Specify the Connection Idle Timeout Value: 1 to 60 miao.
798
+ :param pulumi.Input[str] listener_description: Set the IP Address of the Listened Description. Length Is from 2 to 256 Characters.
799
+ :param pulumi.Input[int] listener_port: The SLB Instance Front-End, and Those of the Ports Used. Value: 1~65535.
800
+ :param pulumi.Input[str] listener_protocol: Snooping Protocols. Valid Values: HTTP, HTTPS Or QuIC.
801
+ :param pulumi.Input[str] load_balancer_id: The SLB Instance Id.
802
+ :param pulumi.Input[Union['ListenerQuicConfigArgs', 'ListenerQuicConfigArgsDict']] quic_config: Configuration Associated with the QuIC Listening See `quic_config` below.
803
+ :param pulumi.Input[int] request_timeout: The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60 miao. 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.
804
+ :param pulumi.Input[str] security_policy_id: Security Policy
805
+ :param pulumi.Input[str] status: The Current IP Address of the Listened State
806
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag of the resource
807
+ :param pulumi.Input[Union['ListenerXForwardedForConfigArgs', 'ListenerXForwardedForConfigArgsDict']] x_forwarded_for_config: xforwardfor Related Attribute Configuration See `x_forwarded_for_config` below.
741
808
  """
742
809
  ...
743
810
  @overload
@@ -778,6 +845,8 @@ class Listener(pulumi.CustomResource):
778
845
  access_log_record_customized_headers_enabled: Optional[pulumi.Input[bool]] = None,
779
846
  access_log_tracing_config: Optional[pulumi.Input[Union['ListenerAccessLogTracingConfigArgs', 'ListenerAccessLogTracingConfigArgsDict']]] = None,
780
847
  acl_config: Optional[pulumi.Input[Union['ListenerAclConfigArgs', 'ListenerAclConfigArgsDict']]] = None,
848
+ ca_certificates: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ListenerCaCertificateArgs', 'ListenerCaCertificateArgsDict']]]]] = None,
849
+ ca_enabled: Optional[pulumi.Input[bool]] = None,
781
850
  certificates: Optional[pulumi.Input[Union['ListenerCertificatesArgs', 'ListenerCertificatesArgsDict']]] = None,
782
851
  default_actions: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ListenerDefaultActionArgs', 'ListenerDefaultActionArgsDict']]]]] = None,
783
852
  dry_run: Optional[pulumi.Input[bool]] = None,
@@ -806,7 +875,11 @@ class Listener(pulumi.CustomResource):
806
875
  __props__.__dict__["access_log_record_customized_headers_enabled"] = access_log_record_customized_headers_enabled
807
876
  __props__.__dict__["access_log_tracing_config"] = access_log_tracing_config
808
877
  __props__.__dict__["acl_config"] = acl_config
878
+ __props__.__dict__["ca_certificates"] = ca_certificates
879
+ __props__.__dict__["ca_enabled"] = ca_enabled
809
880
  __props__.__dict__["certificates"] = certificates
881
+ if default_actions is None and not opts.urn:
882
+ raise TypeError("Missing required property 'default_actions'")
810
883
  __props__.__dict__["default_actions"] = default_actions
811
884
  __props__.__dict__["dry_run"] = dry_run
812
885
  __props__.__dict__["gzip_enabled"] = gzip_enabled
@@ -841,6 +914,8 @@ class Listener(pulumi.CustomResource):
841
914
  access_log_record_customized_headers_enabled: Optional[pulumi.Input[bool]] = None,
842
915
  access_log_tracing_config: Optional[pulumi.Input[Union['ListenerAccessLogTracingConfigArgs', 'ListenerAccessLogTracingConfigArgsDict']]] = None,
843
916
  acl_config: Optional[pulumi.Input[Union['ListenerAclConfigArgs', 'ListenerAclConfigArgsDict']]] = None,
917
+ ca_certificates: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ListenerCaCertificateArgs', 'ListenerCaCertificateArgsDict']]]]] = None,
918
+ ca_enabled: Optional[pulumi.Input[bool]] = None,
844
919
  certificates: Optional[pulumi.Input[Union['ListenerCertificatesArgs', 'ListenerCertificatesArgsDict']]] = None,
845
920
  default_actions: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ListenerDefaultActionArgs', 'ListenerDefaultActionArgsDict']]]]] = None,
846
921
  dry_run: Optional[pulumi.Input[bool]] = None,
@@ -864,31 +939,33 @@ class Listener(pulumi.CustomResource):
864
939
  :param str resource_name: The unique name of the resulting resource.
865
940
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
866
941
  :param pulumi.ResourceOptions opts: Options for the resource.
867
- :param pulumi.Input[bool] access_log_record_customized_headers_enabled: Indicates whether the access log has a custom header field. Valid values: true and false. Default value: false.
942
+ :param pulumi.Input[bool] access_log_record_customized_headers_enabled: Access Log Whether to Enable Carry Custom Header Field.
868
943
 
869
- > **NOTE:** Only Instances outside the Security Group to Access the Log Switch **accesslogenabled** Open, in Order to Set This Parameter to the **True**.
870
- :param pulumi.Input[Union['ListenerAccessLogTracingConfigArgs', 'ListenerAccessLogTracingConfigArgsDict']] access_log_tracing_config: Xtrace Configuration Information. See `access_log_tracing_config` below for details.
871
- :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`.,
872
- :param pulumi.Input[Union['ListenerCertificatesArgs', 'ListenerCertificatesArgsDict']] certificates: The default certificate of the Listener. See `certificates` below for details. **NOTE:** When `listener_protocol` is `HTTPS`, The default certificate must be set one。
873
- :param pulumi.Input[Sequence[pulumi.Input[Union['ListenerDefaultActionArgs', 'ListenerDefaultActionArgsDict']]]] default_actions: The Default Rule Action List. See `default_actions` below for details.
874
- :param pulumi.Input[bool] dry_run: The dry run.
875
- :param pulumi.Input[bool] gzip_enabled: Whether to Enable Gzip Compression, as a Specific File Type on a Compression. Valid values: `false`, `true`. Default Value: `true`. .
876
- :param pulumi.Input[bool] http2_enabled: Whether to Enable HTTP/2 Features. Valid Values: `True` Or `False`. Default Value: `True`.
944
+ Value: True **** Or False * *.
877
945
 
878
- > **NOTE:** The attribute is valid when the attribute `listener_protocol` is `HTTPS`.
879
- :param pulumi.Input[int] idle_timeout: Specify the Connection Idle Timeout Value: `1` to `60`. Unit: Seconds.
880
- :param pulumi.Input[str] listener_description: The description of the listener. The description must be 2 to 256 characters in length. The name can contain only the characters in the following string: `/^([^\\x00-\\xff]|[\\w.,;/@-]){2,256}$/`.
881
- :param pulumi.Input[int] listener_port: The ALB Instance Front-End, and Those of the Ports Used. Value: `1` to `65535`.
882
- :param pulumi.Input[str] listener_protocol: Snooping Protocols. Valid Values: `HTTP`, `HTTPS` Or `QUIC`.
883
- :param pulumi.Input[str] load_balancer_id: The ALB Instance Id.
884
- :param pulumi.Input[Union['ListenerQuicConfigArgs', 'ListenerQuicConfigArgsDict']] quic_config: Configuration Associated with the QuIC Listening. See `quic_config` below for details.
885
- :param pulumi.Input[int] request_timeout: The Specified Request Timeout Time. Value: `1` to `180`. Unit: Seconds. Default Value: `60`. If the Timeout Time Within the Back-End Server Has Not Answered the ALB Will Give up Waiting, the Client Returns the HTTP 504 Error Code.
886
- :param pulumi.Input[str] security_policy_id: Security Policy.
946
+ Default Value: False * *.
887
947
 
888
- > **NOTE:** The attribute is valid when the attribute `listener_protocol` is `HTTPS`.
889
- :param pulumi.Input[str] status: The state of the listener. Valid Values: `Running` Or `Stopped`. Valid values: `Running`: The listener is running. `Stopped`: The listener is stopped.
890
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A mapping of tags to assign to the resource.
891
- :param pulumi.Input[Union['ListenerXForwardedForConfigArgs', 'ListenerXForwardedForConfigArgsDict']] x_forwarded_for_config: The `x_forward_for` Related Attribute Configuration. See `x_forwarded_for_config` below for details. **NOTE:** The attribute is valid when the attribute `listener_protocol` is `HTTPS`.
948
+ > **NOTE:** Only Instances outside the Security Group to Access the Log Switch `accesslogenabled` Open, in Order to Set This Parameter to the **True * *.
949
+ :param pulumi.Input[Union['ListenerAccessLogTracingConfigArgs', 'ListenerAccessLogTracingConfigArgsDict']] access_log_tracing_config: Xtrace Configuration Information. See `access_log_tracing_config` below.
950
+ :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`.,
951
+ :param pulumi.Input[Sequence[pulumi.Input[Union['ListenerCaCertificateArgs', 'ListenerCaCertificateArgsDict']]]] ca_certificates: The list of certificates. See `ca_certificates` below.
952
+ :param pulumi.Input[bool] ca_enabled: Whether to turn on two-way authentication. Value:
953
+ :param pulumi.Input[Union['ListenerCertificatesArgs', 'ListenerCertificatesArgsDict']] certificates: The list of certificates. See `certificates` below.
954
+ :param pulumi.Input[Sequence[pulumi.Input[Union['ListenerDefaultActionArgs', 'ListenerDefaultActionArgsDict']]]] default_actions: The Default Rule Action List See `default_actions` below.
955
+ :param pulumi.Input[bool] dry_run: Whether to PreCheck only this request. Value:
956
+ :param pulumi.Input[bool] gzip_enabled: Whether to Enable Gzip Compression, as a Specific File Type on a Compression. Valid Values: True Or False. Default Value: TRUE.
957
+ :param pulumi.Input[bool] http2_enabled: Whether to Enable HTTP/2 Features. Valid Values: True Or False. Default Value: TRUE.
958
+ :param pulumi.Input[int] idle_timeout: Specify the Connection Idle Timeout Value: 1 to 60 miao.
959
+ :param pulumi.Input[str] listener_description: Set the IP Address of the Listened Description. Length Is from 2 to 256 Characters.
960
+ :param pulumi.Input[int] listener_port: The SLB Instance Front-End, and Those of the Ports Used. Value: 1~65535.
961
+ :param pulumi.Input[str] listener_protocol: Snooping Protocols. Valid Values: HTTP, HTTPS Or QuIC.
962
+ :param pulumi.Input[str] load_balancer_id: The SLB Instance Id.
963
+ :param pulumi.Input[Union['ListenerQuicConfigArgs', 'ListenerQuicConfigArgsDict']] quic_config: Configuration Associated with the QuIC Listening See `quic_config` below.
964
+ :param pulumi.Input[int] request_timeout: The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60 miao. 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.
965
+ :param pulumi.Input[str] security_policy_id: Security Policy
966
+ :param pulumi.Input[str] status: The Current IP Address of the Listened State
967
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag of the resource
968
+ :param pulumi.Input[Union['ListenerXForwardedForConfigArgs', 'ListenerXForwardedForConfigArgsDict']] x_forwarded_for_config: xforwardfor Related Attribute Configuration See `x_forwarded_for_config` below.
892
969
  """
893
970
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
894
971
 
@@ -897,6 +974,8 @@ class Listener(pulumi.CustomResource):
897
974
  __props__.__dict__["access_log_record_customized_headers_enabled"] = access_log_record_customized_headers_enabled
898
975
  __props__.__dict__["access_log_tracing_config"] = access_log_tracing_config
899
976
  __props__.__dict__["acl_config"] = acl_config
977
+ __props__.__dict__["ca_certificates"] = ca_certificates
978
+ __props__.__dict__["ca_enabled"] = ca_enabled
900
979
  __props__.__dict__["certificates"] = certificates
901
980
  __props__.__dict__["default_actions"] = default_actions
902
981
  __props__.__dict__["dry_run"] = dry_run
@@ -917,11 +996,15 @@ class Listener(pulumi.CustomResource):
917
996
 
918
997
  @property
919
998
  @pulumi.getter(name="accessLogRecordCustomizedHeadersEnabled")
920
- def access_log_record_customized_headers_enabled(self) -> pulumi.Output[bool]:
999
+ def access_log_record_customized_headers_enabled(self) -> pulumi.Output[Optional[bool]]:
921
1000
  """
922
- Indicates whether the access log has a custom header field. Valid values: true and false. Default value: false.
1001
+ Access Log Whether to Enable Carry Custom Header Field.
1002
+
1003
+ Value: True **** Or False * *.
923
1004
 
924
- > **NOTE:** Only Instances outside the Security Group to Access the Log Switch **accesslogenabled** Open, in Order to Set This Parameter to the **True**.
1005
+ Default Value: False * *.
1006
+
1007
+ > **NOTE:** Only Instances outside the Security Group to Access the Log Switch `accesslogenabled` Open, in Order to Set This Parameter to the **True * *.
925
1008
  """
926
1009
  return pulumi.get(self, "access_log_record_customized_headers_enabled")
927
1010
 
@@ -929,7 +1012,7 @@ class Listener(pulumi.CustomResource):
929
1012
  @pulumi.getter(name="accessLogTracingConfig")
930
1013
  def access_log_tracing_config(self) -> pulumi.Output[Optional['outputs.ListenerAccessLogTracingConfig']]:
931
1014
  """
932
- Xtrace Configuration Information. See `access_log_tracing_config` below for details.
1015
+ Xtrace Configuration Information. See `access_log_tracing_config` below.
933
1016
  """
934
1017
  return pulumi.get(self, "access_log_tracing_config")
935
1018
 
@@ -942,19 +1025,35 @@ class Listener(pulumi.CustomResource):
942
1025
  """
943
1026
  return pulumi.get(self, "acl_config")
944
1027
 
1028
+ @property
1029
+ @pulumi.getter(name="caCertificates")
1030
+ def ca_certificates(self) -> pulumi.Output[Optional[Sequence['outputs.ListenerCaCertificate']]]:
1031
+ """
1032
+ The list of certificates. See `ca_certificates` below.
1033
+ """
1034
+ return pulumi.get(self, "ca_certificates")
1035
+
1036
+ @property
1037
+ @pulumi.getter(name="caEnabled")
1038
+ def ca_enabled(self) -> pulumi.Output[Optional[bool]]:
1039
+ """
1040
+ Whether to turn on two-way authentication. Value:
1041
+ """
1042
+ return pulumi.get(self, "ca_enabled")
1043
+
945
1044
  @property
946
1045
  @pulumi.getter
947
1046
  def certificates(self) -> pulumi.Output[Optional['outputs.ListenerCertificates']]:
948
1047
  """
949
- The default certificate of the Listener. See `certificates` below for details. **NOTE:** When `listener_protocol` is `HTTPS`, The default certificate must be set one。
1048
+ The list of certificates. See `certificates` below.
950
1049
  """
951
1050
  return pulumi.get(self, "certificates")
952
1051
 
953
1052
  @property
954
1053
  @pulumi.getter(name="defaultActions")
955
- def default_actions(self) -> pulumi.Output[Optional[Sequence['outputs.ListenerDefaultAction']]]:
1054
+ def default_actions(self) -> pulumi.Output[Sequence['outputs.ListenerDefaultAction']]:
956
1055
  """
957
- The Default Rule Action List. See `default_actions` below for details.
1056
+ The Default Rule Action List See `default_actions` below.
958
1057
  """
959
1058
  return pulumi.get(self, "default_actions")
960
1059
 
@@ -962,7 +1061,7 @@ class Listener(pulumi.CustomResource):
962
1061
  @pulumi.getter(name="dryRun")
963
1062
  def dry_run(self) -> pulumi.Output[Optional[bool]]:
964
1063
  """
965
- The dry run.
1064
+ Whether to PreCheck only this request. Value:
966
1065
  """
967
1066
  return pulumi.get(self, "dry_run")
968
1067
 
@@ -970,7 +1069,7 @@ class Listener(pulumi.CustomResource):
970
1069
  @pulumi.getter(name="gzipEnabled")
971
1070
  def gzip_enabled(self) -> pulumi.Output[bool]:
972
1071
  """
973
- Whether to Enable Gzip Compression, as a Specific File Type on a Compression. Valid values: `false`, `true`. Default Value: `true`. .
1072
+ Whether to Enable Gzip Compression, as a Specific File Type on a Compression. Valid Values: True Or False. Default Value: TRUE.
974
1073
  """
975
1074
  return pulumi.get(self, "gzip_enabled")
976
1075
 
@@ -978,9 +1077,7 @@ class Listener(pulumi.CustomResource):
978
1077
  @pulumi.getter(name="http2Enabled")
979
1078
  def http2_enabled(self) -> pulumi.Output[bool]:
980
1079
  """
981
- Whether to Enable HTTP/2 Features. Valid Values: `True` Or `False`. Default Value: `True`.
982
-
983
- > **NOTE:** The attribute is valid when the attribute `listener_protocol` is `HTTPS`.
1080
+ Whether to Enable HTTP/2 Features. Valid Values: True Or False. Default Value: TRUE.
984
1081
  """
985
1082
  return pulumi.get(self, "http2_enabled")
986
1083
 
@@ -988,7 +1085,7 @@ class Listener(pulumi.CustomResource):
988
1085
  @pulumi.getter(name="idleTimeout")
989
1086
  def idle_timeout(self) -> pulumi.Output[int]:
990
1087
  """
991
- Specify the Connection Idle Timeout Value: `1` to `60`. Unit: Seconds.
1088
+ Specify the Connection Idle Timeout Value: 1 to 60 miao.
992
1089
  """
993
1090
  return pulumi.get(self, "idle_timeout")
994
1091
 
@@ -996,7 +1093,7 @@ class Listener(pulumi.CustomResource):
996
1093
  @pulumi.getter(name="listenerDescription")
997
1094
  def listener_description(self) -> pulumi.Output[Optional[str]]:
998
1095
  """
999
- The description of the listener. The description must be 2 to 256 characters in length. The name can contain only the characters in the following string: `/^([^\\x00-\\xff]|[\\w.,;/@-]){2,256}$/`.
1096
+ Set the IP Address of the Listened Description. Length Is from 2 to 256 Characters.
1000
1097
  """
1001
1098
  return pulumi.get(self, "listener_description")
1002
1099
 
@@ -1004,7 +1101,7 @@ class Listener(pulumi.CustomResource):
1004
1101
  @pulumi.getter(name="listenerPort")
1005
1102
  def listener_port(self) -> pulumi.Output[int]:
1006
1103
  """
1007
- The ALB Instance Front-End, and Those of the Ports Used. Value: `1` to `65535`.
1104
+ The SLB Instance Front-End, and Those of the Ports Used. Value: 1~65535.
1008
1105
  """
1009
1106
  return pulumi.get(self, "listener_port")
1010
1107
 
@@ -1012,7 +1109,7 @@ class Listener(pulumi.CustomResource):
1012
1109
  @pulumi.getter(name="listenerProtocol")
1013
1110
  def listener_protocol(self) -> pulumi.Output[str]:
1014
1111
  """
1015
- Snooping Protocols. Valid Values: `HTTP`, `HTTPS` Or `QUIC`.
1112
+ Snooping Protocols. Valid Values: HTTP, HTTPS Or QuIC.
1016
1113
  """
1017
1114
  return pulumi.get(self, "listener_protocol")
1018
1115
 
@@ -1020,7 +1117,7 @@ class Listener(pulumi.CustomResource):
1020
1117
  @pulumi.getter(name="loadBalancerId")
1021
1118
  def load_balancer_id(self) -> pulumi.Output[str]:
1022
1119
  """
1023
- The ALB Instance Id.
1120
+ The SLB Instance Id.
1024
1121
  """
1025
1122
  return pulumi.get(self, "load_balancer_id")
1026
1123
 
@@ -1028,7 +1125,7 @@ class Listener(pulumi.CustomResource):
1028
1125
  @pulumi.getter(name="quicConfig")
1029
1126
  def quic_config(self) -> pulumi.Output['outputs.ListenerQuicConfig']:
1030
1127
  """
1031
- Configuration Associated with the QuIC Listening. See `quic_config` below for details.
1128
+ Configuration Associated with the QuIC Listening See `quic_config` below.
1032
1129
  """
1033
1130
  return pulumi.get(self, "quic_config")
1034
1131
 
@@ -1036,7 +1133,7 @@ class Listener(pulumi.CustomResource):
1036
1133
  @pulumi.getter(name="requestTimeout")
1037
1134
  def request_timeout(self) -> pulumi.Output[int]:
1038
1135
  """
1039
- The Specified Request Timeout Time. Value: `1` to `180`. Unit: Seconds. Default Value: `60`. If the Timeout Time Within the Back-End Server Has Not Answered the ALB Will Give up Waiting, the Client Returns the HTTP 504 Error Code.
1136
+ The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60 miao. 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.
1040
1137
  """
1041
1138
  return pulumi.get(self, "request_timeout")
1042
1139
 
@@ -1044,9 +1141,7 @@ class Listener(pulumi.CustomResource):
1044
1141
  @pulumi.getter(name="securityPolicyId")
1045
1142
  def security_policy_id(self) -> pulumi.Output[str]:
1046
1143
  """
1047
- Security Policy.
1048
-
1049
- > **NOTE:** The attribute is valid when the attribute `listener_protocol` is `HTTPS`.
1144
+ Security Policy
1050
1145
  """
1051
1146
  return pulumi.get(self, "security_policy_id")
1052
1147
 
@@ -1054,7 +1149,7 @@ class Listener(pulumi.CustomResource):
1054
1149
  @pulumi.getter
1055
1150
  def status(self) -> pulumi.Output[str]:
1056
1151
  """
1057
- The state of the listener. Valid Values: `Running` Or `Stopped`. Valid values: `Running`: The listener is running. `Stopped`: The listener is stopped.
1152
+ The Current IP Address of the Listened State
1058
1153
  """
1059
1154
  return pulumi.get(self, "status")
1060
1155
 
@@ -1062,7 +1157,7 @@ class Listener(pulumi.CustomResource):
1062
1157
  @pulumi.getter
1063
1158
  def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
1064
1159
  """
1065
- A mapping of tags to assign to the resource.
1160
+ The tag of the resource
1066
1161
  """
1067
1162
  return pulumi.get(self, "tags")
1068
1163
 
@@ -1070,7 +1165,7 @@ class Listener(pulumi.CustomResource):
1070
1165
  @pulumi.getter(name="xForwardedForConfig")
1071
1166
  def x_forwarded_for_config(self) -> pulumi.Output['outputs.ListenerXForwardedForConfig']:
1072
1167
  """
1073
- The `x_forward_for` Related Attribute Configuration. See `x_forwarded_for_config` below for details. **NOTE:** The attribute is valid when the attribute `listener_protocol` is `HTTPS`.
1168
+ xforwardfor Related Attribute Configuration See `x_forwarded_for_config` below.
1074
1169
  """
1075
1170
  return pulumi.get(self, "x_forwarded_for_config")
1076
1171