pulumi-alicloud 3.62.0a1725945881__py3-none-any.whl → 3.62.1__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 +80 -0
- pulumi_alicloud/actiontrail/trail.py +2 -2
- pulumi_alicloud/adb/cluster.py +34 -0
- pulumi_alicloud/adb/db_cluster.py +47 -0
- pulumi_alicloud/amqp/binding.py +30 -36
- pulumi_alicloud/amqp/static_account.py +12 -12
- pulumi_alicloud/cen/_inputs.py +180 -14
- pulumi_alicloud/cen/outputs.py +173 -12
- pulumi_alicloud/cen/traffic_marking_policy.py +116 -53
- pulumi_alicloud/cen/transit_router_peer_attachment.py +38 -20
- pulumi_alicloud/cen/transit_router_vpc_attachment.py +338 -119
- pulumi_alicloud/cen/transit_router_vpn_attachment.py +2 -2
- pulumi_alicloud/cr/chart_namespace.py +14 -6
- pulumi_alicloud/cr/endpoint_acl_policy.py +10 -2
- pulumi_alicloud/cr/namespace.py +10 -2
- pulumi_alicloud/cs/registry_enterprise_repo.py +4 -4
- pulumi_alicloud/cs/registry_enterprise_sync_rule.py +10 -10
- pulumi_alicloud/ddos/_inputs.py +24 -0
- pulumi_alicloud/ddos/bgp_ip.py +1 -1
- pulumi_alicloud/ddos/outputs.py +37 -0
- pulumi_alicloud/ddos/port.py +110 -40
- pulumi_alicloud/ecs/_inputs.py +28 -0
- pulumi_alicloud/ecs/outputs.py +20 -0
- pulumi_alicloud/emrv2/_inputs.py +20 -20
- pulumi_alicloud/emrv2/get_clusters.py +25 -4
- pulumi_alicloud/emrv2/outputs.py +24 -24
- pulumi_alicloud/ens/_inputs.py +137 -2
- pulumi_alicloud/ens/instance.py +428 -184
- pulumi_alicloud/ens/load_balancer.py +74 -25
- pulumi_alicloud/ens/outputs.py +141 -2
- pulumi_alicloud/expressconnect/physical_connection.py +321 -185
- pulumi_alicloud/fc/__init__.py +3 -0
- pulumi_alicloud/fc/_inputs.py +320 -8
- pulumi_alicloud/fc/outputs.py +321 -8
- pulumi_alicloud/fc/trigger.py +22 -24
- pulumi_alicloud/fc/v3_layer_version.py +511 -0
- pulumi_alicloud/fc/v3_provision_config.py +676 -0
- pulumi_alicloud/fc/v3_vpc_binding.py +283 -0
- pulumi_alicloud/ga/endpoint_group.py +68 -14
- pulumi_alicloud/ga/get_endpoint_group_ip_address_cidr_blocks.py +18 -3
- pulumi_alicloud/gpdb/__init__.py +2 -0
- pulumi_alicloud/gpdb/account.py +172 -83
- pulumi_alicloud/gpdb/db_resource_group.py +54 -9
- pulumi_alicloud/gpdb/hadoop_data_source.py +1135 -0
- pulumi_alicloud/gpdb/jdbc_data_source.py +643 -0
- pulumi_alicloud/hbr/_inputs.py +14 -14
- pulumi_alicloud/hbr/outputs.py +14 -14
- pulumi_alicloud/hbr/policy.py +18 -18
- pulumi_alicloud/hbr/policy_binding.py +203 -62
- pulumi_alicloud/mongodb/instance.py +94 -0
- pulumi_alicloud/nlb/_inputs.py +120 -64
- pulumi_alicloud/nlb/get_listeners.py +32 -2
- pulumi_alicloud/nlb/get_server_group_server_attachments.py +8 -2
- pulumi_alicloud/nlb/listener.py +315 -245
- pulumi_alicloud/nlb/listener_additional_certificate_attachment.py +25 -25
- pulumi_alicloud/nlb/load_balancer.py +181 -212
- pulumi_alicloud/nlb/load_balancer_security_group_attachment.py +29 -39
- pulumi_alicloud/nlb/loadbalancer_common_bandwidth_package_attachment.py +22 -18
- pulumi_alicloud/nlb/outputs.py +122 -66
- pulumi_alicloud/nlb/security_policy.py +53 -25
- pulumi_alicloud/nlb/server_group.py +196 -133
- pulumi_alicloud/ocean/base_instance.py +498 -163
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/quotas/__init__.py +1 -0
- pulumi_alicloud/quotas/template_service.py +165 -0
- pulumi_alicloud/rds/rds_db_proxy.py +61 -0
- pulumi_alicloud/servicecatalog/__init__.py +4 -0
- pulumi_alicloud/servicecatalog/portfolio.py +31 -31
- pulumi_alicloud/servicecatalog/principal_portfolio_association.py +354 -0
- pulumi_alicloud/servicecatalog/product.py +383 -0
- pulumi_alicloud/servicecatalog/product_portfolio_association.py +222 -0
- pulumi_alicloud/servicecatalog/product_version.py +539 -0
- pulumi_alicloud/servicemesh/extension_provider.py +2 -2
- pulumi_alicloud/vpc/common_bandwith_package_attachment.py +2 -2
- pulumi_alicloud/vpc/get_route_tables.py +28 -5
- pulumi_alicloud/vpc/outputs.py +2 -2
- {pulumi_alicloud-3.62.0a1725945881.dist-info → pulumi_alicloud-3.62.1.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.62.0a1725945881.dist-info → pulumi_alicloud-3.62.1.dist-info}/RECORD +80 -70
- {pulumi_alicloud-3.62.0a1725945881.dist-info → pulumi_alicloud-3.62.1.dist-info}/WHEEL +1 -1
- {pulumi_alicloud-3.62.0a1725945881.dist-info → pulumi_alicloud-3.62.1.dist-info}/top_level.txt +0 -0
pulumi_alicloud/nlb/listener.py
CHANGED
|
@@ -36,42 +36,52 @@ class ListenerArgs:
|
|
|
36
36
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
|
37
37
|
"""
|
|
38
38
|
The set of arguments for constructing a Listener resource.
|
|
39
|
-
:param pulumi.Input[int] listener_port:
|
|
40
|
-
|
|
41
|
-
|
|
39
|
+
:param pulumi.Input[int] listener_port: The listener port. Valid values: `0` to `65535`.
|
|
40
|
+
|
|
41
|
+
If you set the value to `0`, the listener listens by port range. If you set the value to `0`, you must specify `StartPort` and `EndPort`.
|
|
42
|
+
:param pulumi.Input[str] listener_protocol: The listening protocol. Valid values: `TCP`, `UDP`, and `TCPSSL`.
|
|
43
|
+
:param pulumi.Input[str] load_balancer_id: The ID of the Network Load Balancer (NLB) instance.
|
|
42
44
|
:param pulumi.Input[str] server_group_id: The ID of the server group.
|
|
43
|
-
:param pulumi.Input[bool] alpn_enabled:
|
|
44
|
-
|
|
45
|
-
-
|
|
46
|
-
|
|
47
|
-
-
|
|
48
|
-
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
> **NOTE:**
|
|
53
|
-
:param pulumi.Input[
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
:param pulumi.Input[
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
:param pulumi.Input[int]
|
|
61
|
-
:param pulumi.Input[
|
|
62
|
-
|
|
63
|
-
> **NOTE:**
|
|
64
|
-
:param pulumi.Input[
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
:param pulumi.Input[
|
|
73
|
-
:param pulumi.Input[str]
|
|
74
|
-
|
|
45
|
+
:param pulumi.Input[bool] alpn_enabled: Specifies whether to enable Application-Layer Protocol Negotiation (ALPN). Valid values:
|
|
46
|
+
:param pulumi.Input[str] alpn_policy: The ALPN policy. Valid values:
|
|
47
|
+
- `HTTP1Only`: uses only HTTP 1.x. The priority of HTTP 1.1 is higher than the priority of HTTP 1.0.
|
|
48
|
+
- `HTTP2Only`: uses only HTTP 2.0.
|
|
49
|
+
- `HTTP2Optional`: preferentially uses HTTP 1.x over HTTP 2.0. The priority of HTTP 1.1 is higher than the priority of HTTP 1.0, and the priority of HTTP 1.0 is higher than the priority of HTTP 2.0.
|
|
50
|
+
- `HTTP2Preferred`: preferentially uses HTTP 2.0 over HTTP 1.x. The priority of HTTP 2.0 is higher than the priority of HTTP 1.1, and the priority of HTTP 1.1 is higher than the priority of HTTP 1.0.
|
|
51
|
+
|
|
52
|
+
> **NOTE:** This parameter is required if AlpnEnabled is set to true.
|
|
53
|
+
|
|
54
|
+
> **NOTE:** Effective only for TCPSSL listener.
|
|
55
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] ca_certificate_ids: The list of certificate authority (CA) certificates. This parameter takes effect only for listeners that use SSL over TCP.
|
|
56
|
+
|
|
57
|
+
> **NOTE:** Only one CA certificate is supported.
|
|
58
|
+
:param pulumi.Input[bool] ca_enabled: Specifies whether to enable mutual authentication. Valid values:
|
|
59
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] certificate_ids: The list of server certificates. This parameter takes effect only for listeners that use SSL over TCP.
|
|
60
|
+
|
|
61
|
+
> **NOTE:** This parameter takes effect only for TCPSSL listeners.
|
|
62
|
+
:param pulumi.Input[int] cps: The maximum number of connections that can be created per second on the NLB instance. Valid values: `0` to `1000000`. `0` specifies that the number of connections is unlimited.
|
|
63
|
+
:param pulumi.Input[int] end_port: The last port in the listener port range. Valid values: `0` to `65535`. The number of the last port must be greater than the number of the first port.
|
|
64
|
+
|
|
65
|
+
> **NOTE:** This parameter is required when `ListenerPort` is set to `0`.
|
|
66
|
+
:param pulumi.Input[int] idle_timeout: The timeout period of idle connections. Unit: seconds. Valid values: `1` to `900`. Default value: `900`.
|
|
67
|
+
:param pulumi.Input[str] listener_description: Enter a name for the listener.
|
|
68
|
+
|
|
69
|
+
The description must be 2 to 256 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (\\_), and hyphens (-).
|
|
70
|
+
:param pulumi.Input[int] mss: The maximum size of a TCP segment. Unit: bytes. Valid values: `0` to `1500`. `0` specifies that the maximum segment size remains unchanged.
|
|
71
|
+
|
|
72
|
+
> **NOTE:** This parameter is supported only by TCP listeners and listeners that use SSL over TCP.
|
|
73
|
+
:param pulumi.Input[bool] proxy_protocol_enabled: Specifies whether to use the Proxy protocol to pass client IP addresses to backend servers. Valid values:
|
|
74
|
+
:param pulumi.Input[bool] sec_sensor_enabled: Specifies whether to enable fine-grained monitoring. Valid values:
|
|
75
|
+
:param pulumi.Input[str] security_policy_id: The security policy ID. System security policies and custom security policies are supported.
|
|
76
|
+
|
|
77
|
+
Valid values: `tls_cipher_policy\\_1\\_0` (default), `tls_cipher_policy\\_1\\_1`, `tls_cipher_policy\\_1\\_2`, `tls_cipher_policy\\_1\\_2\\_strict`, and `tls_cipher_policy\\_1\\_2\\_strict_with\\_1\\_3`.
|
|
78
|
+
|
|
79
|
+
> **NOTE:** This parameter takes effect only for listeners that use SSL over TCP.
|
|
80
|
+
:param pulumi.Input[int] start_port: The first port in the listener port range. Valid values: `0` to `65535`.
|
|
81
|
+
|
|
82
|
+
> **NOTE:** This parameter is required when `ListenerPort` is set to `0`.
|
|
83
|
+
:param pulumi.Input[str] status: The status of the resource. Valid values: `Running`, `Stopped`. When you want to enable this instance, you can set the property value to `Running`;
|
|
84
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag of the resource
|
|
75
85
|
"""
|
|
76
86
|
pulumi.set(__self__, "listener_port", listener_port)
|
|
77
87
|
pulumi.set(__self__, "listener_protocol", listener_protocol)
|
|
@@ -114,7 +124,9 @@ class ListenerArgs:
|
|
|
114
124
|
@pulumi.getter(name="listenerPort")
|
|
115
125
|
def listener_port(self) -> pulumi.Input[int]:
|
|
116
126
|
"""
|
|
117
|
-
|
|
127
|
+
The listener port. Valid values: `0` to `65535`.
|
|
128
|
+
|
|
129
|
+
If you set the value to `0`, the listener listens by port range. If you set the value to `0`, you must specify `StartPort` and `EndPort`.
|
|
118
130
|
"""
|
|
119
131
|
return pulumi.get(self, "listener_port")
|
|
120
132
|
|
|
@@ -126,7 +138,7 @@ class ListenerArgs:
|
|
|
126
138
|
@pulumi.getter(name="listenerProtocol")
|
|
127
139
|
def listener_protocol(self) -> pulumi.Input[str]:
|
|
128
140
|
"""
|
|
129
|
-
The listening protocol. Valid values:
|
|
141
|
+
The listening protocol. Valid values: `TCP`, `UDP`, and `TCPSSL`.
|
|
130
142
|
"""
|
|
131
143
|
return pulumi.get(self, "listener_protocol")
|
|
132
144
|
|
|
@@ -138,7 +150,7 @@ class ListenerArgs:
|
|
|
138
150
|
@pulumi.getter(name="loadBalancerId")
|
|
139
151
|
def load_balancer_id(self) -> pulumi.Input[str]:
|
|
140
152
|
"""
|
|
141
|
-
The ID of the
|
|
153
|
+
The ID of the Network Load Balancer (NLB) instance.
|
|
142
154
|
"""
|
|
143
155
|
return pulumi.get(self, "load_balancer_id")
|
|
144
156
|
|
|
@@ -162,9 +174,7 @@ class ListenerArgs:
|
|
|
162
174
|
@pulumi.getter(name="alpnEnabled")
|
|
163
175
|
def alpn_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
164
176
|
"""
|
|
165
|
-
|
|
166
|
-
- **true**: on.
|
|
167
|
-
- **false**: closed.
|
|
177
|
+
Specifies whether to enable Application-Layer Protocol Negotiation (ALPN). Valid values:
|
|
168
178
|
"""
|
|
169
179
|
return pulumi.get(self, "alpn_enabled")
|
|
170
180
|
|
|
@@ -176,11 +186,15 @@ class ListenerArgs:
|
|
|
176
186
|
@pulumi.getter(name="alpnPolicy")
|
|
177
187
|
def alpn_policy(self) -> Optional[pulumi.Input[str]]:
|
|
178
188
|
"""
|
|
179
|
-
ALPN policy.
|
|
180
|
-
-
|
|
181
|
-
-
|
|
182
|
-
-
|
|
183
|
-
-
|
|
189
|
+
The ALPN policy. Valid values:
|
|
190
|
+
- `HTTP1Only`: uses only HTTP 1.x. The priority of HTTP 1.1 is higher than the priority of HTTP 1.0.
|
|
191
|
+
- `HTTP2Only`: uses only HTTP 2.0.
|
|
192
|
+
- `HTTP2Optional`: preferentially uses HTTP 1.x over HTTP 2.0. The priority of HTTP 1.1 is higher than the priority of HTTP 1.0, and the priority of HTTP 1.0 is higher than the priority of HTTP 2.0.
|
|
193
|
+
- `HTTP2Preferred`: preferentially uses HTTP 2.0 over HTTP 1.x. The priority of HTTP 2.0 is higher than the priority of HTTP 1.1, and the priority of HTTP 1.1 is higher than the priority of HTTP 1.0.
|
|
194
|
+
|
|
195
|
+
> **NOTE:** This parameter is required if AlpnEnabled is set to true.
|
|
196
|
+
|
|
197
|
+
> **NOTE:** Effective only for TCPSSL listener.
|
|
184
198
|
"""
|
|
185
199
|
return pulumi.get(self, "alpn_policy")
|
|
186
200
|
|
|
@@ -192,8 +206,9 @@ class ListenerArgs:
|
|
|
192
206
|
@pulumi.getter(name="caCertificateIds")
|
|
193
207
|
def ca_certificate_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
194
208
|
"""
|
|
195
|
-
|
|
196
|
-
|
|
209
|
+
The list of certificate authority (CA) certificates. This parameter takes effect only for listeners that use SSL over TCP.
|
|
210
|
+
|
|
211
|
+
> **NOTE:** Only one CA certificate is supported.
|
|
197
212
|
"""
|
|
198
213
|
return pulumi.get(self, "ca_certificate_ids")
|
|
199
214
|
|
|
@@ -205,9 +220,7 @@ class ListenerArgs:
|
|
|
205
220
|
@pulumi.getter(name="caEnabled")
|
|
206
221
|
def ca_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
207
222
|
"""
|
|
208
|
-
|
|
209
|
-
- **true**: start.
|
|
210
|
-
- **false**: closed.
|
|
223
|
+
Specifies whether to enable mutual authentication. Valid values:
|
|
211
224
|
"""
|
|
212
225
|
return pulumi.get(self, "ca_enabled")
|
|
213
226
|
|
|
@@ -219,8 +232,9 @@ class ListenerArgs:
|
|
|
219
232
|
@pulumi.getter(name="certificateIds")
|
|
220
233
|
def certificate_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
221
234
|
"""
|
|
222
|
-
|
|
223
|
-
|
|
235
|
+
The list of server certificates. This parameter takes effect only for listeners that use SSL over TCP.
|
|
236
|
+
|
|
237
|
+
> **NOTE:** This parameter takes effect only for TCPSSL listeners.
|
|
224
238
|
"""
|
|
225
239
|
return pulumi.get(self, "certificate_ids")
|
|
226
240
|
|
|
@@ -232,7 +246,7 @@ class ListenerArgs:
|
|
|
232
246
|
@pulumi.getter
|
|
233
247
|
def cps(self) -> Optional[pulumi.Input[int]]:
|
|
234
248
|
"""
|
|
235
|
-
The
|
|
249
|
+
The maximum number of connections that can be created per second on the NLB instance. Valid values: `0` to `1000000`. `0` specifies that the number of connections is unlimited.
|
|
236
250
|
"""
|
|
237
251
|
return pulumi.get(self, "cps")
|
|
238
252
|
|
|
@@ -244,7 +258,9 @@ class ListenerArgs:
|
|
|
244
258
|
@pulumi.getter(name="endPort")
|
|
245
259
|
def end_port(self) -> Optional[pulumi.Input[int]]:
|
|
246
260
|
"""
|
|
247
|
-
|
|
261
|
+
The last port in the listener port range. Valid values: `0` to `65535`. The number of the last port must be greater than the number of the first port.
|
|
262
|
+
|
|
263
|
+
> **NOTE:** This parameter is required when `ListenerPort` is set to `0`.
|
|
248
264
|
"""
|
|
249
265
|
return pulumi.get(self, "end_port")
|
|
250
266
|
|
|
@@ -256,7 +272,7 @@ class ListenerArgs:
|
|
|
256
272
|
@pulumi.getter(name="idleTimeout")
|
|
257
273
|
def idle_timeout(self) -> Optional[pulumi.Input[int]]:
|
|
258
274
|
"""
|
|
259
|
-
|
|
275
|
+
The timeout period of idle connections. Unit: seconds. Valid values: `1` to `900`. Default value: `900`.
|
|
260
276
|
"""
|
|
261
277
|
return pulumi.get(self, "idle_timeout")
|
|
262
278
|
|
|
@@ -268,7 +284,9 @@ class ListenerArgs:
|
|
|
268
284
|
@pulumi.getter(name="listenerDescription")
|
|
269
285
|
def listener_description(self) -> Optional[pulumi.Input[str]]:
|
|
270
286
|
"""
|
|
271
|
-
|
|
287
|
+
Enter a name for the listener.
|
|
288
|
+
|
|
289
|
+
The description must be 2 to 256 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (\\_), and hyphens (-).
|
|
272
290
|
"""
|
|
273
291
|
return pulumi.get(self, "listener_description")
|
|
274
292
|
|
|
@@ -280,8 +298,9 @@ class ListenerArgs:
|
|
|
280
298
|
@pulumi.getter
|
|
281
299
|
def mss(self) -> Optional[pulumi.Input[int]]:
|
|
282
300
|
"""
|
|
283
|
-
The maximum
|
|
284
|
-
|
|
301
|
+
The maximum size of a TCP segment. Unit: bytes. Valid values: `0` to `1500`. `0` specifies that the maximum segment size remains unchanged.
|
|
302
|
+
|
|
303
|
+
> **NOTE:** This parameter is supported only by TCP listeners and listeners that use SSL over TCP.
|
|
285
304
|
"""
|
|
286
305
|
return pulumi.get(self, "mss")
|
|
287
306
|
|
|
@@ -293,9 +312,7 @@ class ListenerArgs:
|
|
|
293
312
|
@pulumi.getter(name="proxyProtocolEnabled")
|
|
294
313
|
def proxy_protocol_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
295
314
|
"""
|
|
296
|
-
|
|
297
|
-
- **true**: on.
|
|
298
|
-
- **false**: closed.
|
|
315
|
+
Specifies whether to use the Proxy protocol to pass client IP addresses to backend servers. Valid values:
|
|
299
316
|
"""
|
|
300
317
|
return pulumi.get(self, "proxy_protocol_enabled")
|
|
301
318
|
|
|
@@ -307,9 +324,7 @@ class ListenerArgs:
|
|
|
307
324
|
@pulumi.getter(name="secSensorEnabled")
|
|
308
325
|
def sec_sensor_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
309
326
|
"""
|
|
310
|
-
|
|
311
|
-
- **true**: on.
|
|
312
|
-
- **false**: closed.
|
|
327
|
+
Specifies whether to enable fine-grained monitoring. Valid values:
|
|
313
328
|
"""
|
|
314
329
|
return pulumi.get(self, "sec_sensor_enabled")
|
|
315
330
|
|
|
@@ -321,8 +336,11 @@ class ListenerArgs:
|
|
|
321
336
|
@pulumi.getter(name="securityPolicyId")
|
|
322
337
|
def security_policy_id(self) -> Optional[pulumi.Input[str]]:
|
|
323
338
|
"""
|
|
324
|
-
|
|
325
|
-
|
|
339
|
+
The security policy ID. System security policies and custom security policies are supported.
|
|
340
|
+
|
|
341
|
+
Valid values: `tls_cipher_policy\\_1\\_0` (default), `tls_cipher_policy\\_1\\_1`, `tls_cipher_policy\\_1\\_2`, `tls_cipher_policy\\_1\\_2\\_strict`, and `tls_cipher_policy\\_1\\_2\\_strict_with\\_1\\_3`.
|
|
342
|
+
|
|
343
|
+
> **NOTE:** This parameter takes effect only for listeners that use SSL over TCP.
|
|
326
344
|
"""
|
|
327
345
|
return pulumi.get(self, "security_policy_id")
|
|
328
346
|
|
|
@@ -334,7 +352,9 @@ class ListenerArgs:
|
|
|
334
352
|
@pulumi.getter(name="startPort")
|
|
335
353
|
def start_port(self) -> Optional[pulumi.Input[int]]:
|
|
336
354
|
"""
|
|
337
|
-
|
|
355
|
+
The first port in the listener port range. Valid values: `0` to `65535`.
|
|
356
|
+
|
|
357
|
+
> **NOTE:** This parameter is required when `ListenerPort` is set to `0`.
|
|
338
358
|
"""
|
|
339
359
|
return pulumi.get(self, "start_port")
|
|
340
360
|
|
|
@@ -346,7 +366,7 @@ class ListenerArgs:
|
|
|
346
366
|
@pulumi.getter
|
|
347
367
|
def status(self) -> Optional[pulumi.Input[str]]:
|
|
348
368
|
"""
|
|
349
|
-
The status of the resource.
|
|
369
|
+
The status of the resource. Valid values: `Running`, `Stopped`. When you want to enable this instance, you can set the property value to `Running`;
|
|
350
370
|
"""
|
|
351
371
|
return pulumi.get(self, "status")
|
|
352
372
|
|
|
@@ -358,7 +378,7 @@ class ListenerArgs:
|
|
|
358
378
|
@pulumi.getter
|
|
359
379
|
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
360
380
|
"""
|
|
361
|
-
The tag of the resource
|
|
381
|
+
The tag of the resource
|
|
362
382
|
"""
|
|
363
383
|
return pulumi.get(self, "tags")
|
|
364
384
|
|
|
@@ -392,42 +412,52 @@ class _ListenerState:
|
|
|
392
412
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
|
393
413
|
"""
|
|
394
414
|
Input properties used for looking up and filtering Listener resources.
|
|
395
|
-
:param pulumi.Input[bool] alpn_enabled:
|
|
396
|
-
|
|
397
|
-
-
|
|
398
|
-
|
|
399
|
-
-
|
|
400
|
-
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
> **NOTE:**
|
|
405
|
-
:param pulumi.Input[
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
:param pulumi.Input[
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
:param pulumi.Input[int]
|
|
413
|
-
:param pulumi.Input[
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
:param pulumi.Input[
|
|
417
|
-
:param pulumi.Input[
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
:param pulumi.Input[
|
|
426
|
-
|
|
415
|
+
:param pulumi.Input[bool] alpn_enabled: Specifies whether to enable Application-Layer Protocol Negotiation (ALPN). Valid values:
|
|
416
|
+
:param pulumi.Input[str] alpn_policy: The ALPN policy. Valid values:
|
|
417
|
+
- `HTTP1Only`: uses only HTTP 1.x. The priority of HTTP 1.1 is higher than the priority of HTTP 1.0.
|
|
418
|
+
- `HTTP2Only`: uses only HTTP 2.0.
|
|
419
|
+
- `HTTP2Optional`: preferentially uses HTTP 1.x over HTTP 2.0. The priority of HTTP 1.1 is higher than the priority of HTTP 1.0, and the priority of HTTP 1.0 is higher than the priority of HTTP 2.0.
|
|
420
|
+
- `HTTP2Preferred`: preferentially uses HTTP 2.0 over HTTP 1.x. The priority of HTTP 2.0 is higher than the priority of HTTP 1.1, and the priority of HTTP 1.1 is higher than the priority of HTTP 1.0.
|
|
421
|
+
|
|
422
|
+
> **NOTE:** This parameter is required if AlpnEnabled is set to true.
|
|
423
|
+
|
|
424
|
+
> **NOTE:** Effective only for TCPSSL listener.
|
|
425
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] ca_certificate_ids: The list of certificate authority (CA) certificates. This parameter takes effect only for listeners that use SSL over TCP.
|
|
426
|
+
|
|
427
|
+
> **NOTE:** Only one CA certificate is supported.
|
|
428
|
+
:param pulumi.Input[bool] ca_enabled: Specifies whether to enable mutual authentication. Valid values:
|
|
429
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] certificate_ids: The list of server certificates. This parameter takes effect only for listeners that use SSL over TCP.
|
|
430
|
+
|
|
431
|
+
> **NOTE:** This parameter takes effect only for TCPSSL listeners.
|
|
432
|
+
:param pulumi.Input[int] cps: The maximum number of connections that can be created per second on the NLB instance. Valid values: `0` to `1000000`. `0` specifies that the number of connections is unlimited.
|
|
433
|
+
:param pulumi.Input[int] end_port: The last port in the listener port range. Valid values: `0` to `65535`. The number of the last port must be greater than the number of the first port.
|
|
434
|
+
|
|
435
|
+
> **NOTE:** This parameter is required when `ListenerPort` is set to `0`.
|
|
436
|
+
:param pulumi.Input[int] idle_timeout: The timeout period of idle connections. Unit: seconds. Valid values: `1` to `900`. Default value: `900`.
|
|
437
|
+
:param pulumi.Input[str] listener_description: Enter a name for the listener.
|
|
438
|
+
|
|
439
|
+
The description must be 2 to 256 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (\\_), and hyphens (-).
|
|
440
|
+
:param pulumi.Input[int] listener_port: The listener port. Valid values: `0` to `65535`.
|
|
441
|
+
|
|
442
|
+
If you set the value to `0`, the listener listens by port range. If you set the value to `0`, you must specify `StartPort` and `EndPort`.
|
|
443
|
+
:param pulumi.Input[str] listener_protocol: The listening protocol. Valid values: `TCP`, `UDP`, and `TCPSSL`.
|
|
444
|
+
:param pulumi.Input[str] load_balancer_id: The ID of the Network Load Balancer (NLB) instance.
|
|
445
|
+
:param pulumi.Input[int] mss: The maximum size of a TCP segment. Unit: bytes. Valid values: `0` to `1500`. `0` specifies that the maximum segment size remains unchanged.
|
|
446
|
+
|
|
447
|
+
> **NOTE:** This parameter is supported only by TCP listeners and listeners that use SSL over TCP.
|
|
448
|
+
:param pulumi.Input[bool] proxy_protocol_enabled: Specifies whether to use the Proxy protocol to pass client IP addresses to backend servers. Valid values:
|
|
449
|
+
:param pulumi.Input[bool] sec_sensor_enabled: Specifies whether to enable fine-grained monitoring. Valid values:
|
|
450
|
+
:param pulumi.Input[str] security_policy_id: The security policy ID. System security policies and custom security policies are supported.
|
|
451
|
+
|
|
452
|
+
Valid values: `tls_cipher_policy\\_1\\_0` (default), `tls_cipher_policy\\_1\\_1`, `tls_cipher_policy\\_1\\_2`, `tls_cipher_policy\\_1\\_2\\_strict`, and `tls_cipher_policy\\_1\\_2\\_strict_with\\_1\\_3`.
|
|
453
|
+
|
|
454
|
+
> **NOTE:** This parameter takes effect only for listeners that use SSL over TCP.
|
|
427
455
|
:param pulumi.Input[str] server_group_id: The ID of the server group.
|
|
428
|
-
:param pulumi.Input[int] start_port:
|
|
429
|
-
|
|
430
|
-
|
|
456
|
+
:param pulumi.Input[int] start_port: The first port in the listener port range. Valid values: `0` to `65535`.
|
|
457
|
+
|
|
458
|
+
> **NOTE:** This parameter is required when `ListenerPort` is set to `0`.
|
|
459
|
+
:param pulumi.Input[str] status: The status of the resource. Valid values: `Running`, `Stopped`. When you want to enable this instance, you can set the property value to `Running`;
|
|
460
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag of the resource
|
|
431
461
|
"""
|
|
432
462
|
if alpn_enabled is not None:
|
|
433
463
|
pulumi.set(__self__, "alpn_enabled", alpn_enabled)
|
|
@@ -474,9 +504,7 @@ class _ListenerState:
|
|
|
474
504
|
@pulumi.getter(name="alpnEnabled")
|
|
475
505
|
def alpn_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
476
506
|
"""
|
|
477
|
-
|
|
478
|
-
- **true**: on.
|
|
479
|
-
- **false**: closed.
|
|
507
|
+
Specifies whether to enable Application-Layer Protocol Negotiation (ALPN). Valid values:
|
|
480
508
|
"""
|
|
481
509
|
return pulumi.get(self, "alpn_enabled")
|
|
482
510
|
|
|
@@ -488,11 +516,15 @@ class _ListenerState:
|
|
|
488
516
|
@pulumi.getter(name="alpnPolicy")
|
|
489
517
|
def alpn_policy(self) -> Optional[pulumi.Input[str]]:
|
|
490
518
|
"""
|
|
491
|
-
ALPN policy.
|
|
492
|
-
-
|
|
493
|
-
-
|
|
494
|
-
-
|
|
495
|
-
-
|
|
519
|
+
The ALPN policy. Valid values:
|
|
520
|
+
- `HTTP1Only`: uses only HTTP 1.x. The priority of HTTP 1.1 is higher than the priority of HTTP 1.0.
|
|
521
|
+
- `HTTP2Only`: uses only HTTP 2.0.
|
|
522
|
+
- `HTTP2Optional`: preferentially uses HTTP 1.x over HTTP 2.0. The priority of HTTP 1.1 is higher than the priority of HTTP 1.0, and the priority of HTTP 1.0 is higher than the priority of HTTP 2.0.
|
|
523
|
+
- `HTTP2Preferred`: preferentially uses HTTP 2.0 over HTTP 1.x. The priority of HTTP 2.0 is higher than the priority of HTTP 1.1, and the priority of HTTP 1.1 is higher than the priority of HTTP 1.0.
|
|
524
|
+
|
|
525
|
+
> **NOTE:** This parameter is required if AlpnEnabled is set to true.
|
|
526
|
+
|
|
527
|
+
> **NOTE:** Effective only for TCPSSL listener.
|
|
496
528
|
"""
|
|
497
529
|
return pulumi.get(self, "alpn_policy")
|
|
498
530
|
|
|
@@ -504,8 +536,9 @@ class _ListenerState:
|
|
|
504
536
|
@pulumi.getter(name="caCertificateIds")
|
|
505
537
|
def ca_certificate_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
506
538
|
"""
|
|
507
|
-
|
|
508
|
-
|
|
539
|
+
The list of certificate authority (CA) certificates. This parameter takes effect only for listeners that use SSL over TCP.
|
|
540
|
+
|
|
541
|
+
> **NOTE:** Only one CA certificate is supported.
|
|
509
542
|
"""
|
|
510
543
|
return pulumi.get(self, "ca_certificate_ids")
|
|
511
544
|
|
|
@@ -517,9 +550,7 @@ class _ListenerState:
|
|
|
517
550
|
@pulumi.getter(name="caEnabled")
|
|
518
551
|
def ca_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
519
552
|
"""
|
|
520
|
-
|
|
521
|
-
- **true**: start.
|
|
522
|
-
- **false**: closed.
|
|
553
|
+
Specifies whether to enable mutual authentication. Valid values:
|
|
523
554
|
"""
|
|
524
555
|
return pulumi.get(self, "ca_enabled")
|
|
525
556
|
|
|
@@ -531,8 +562,9 @@ class _ListenerState:
|
|
|
531
562
|
@pulumi.getter(name="certificateIds")
|
|
532
563
|
def certificate_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
533
564
|
"""
|
|
534
|
-
|
|
535
|
-
|
|
565
|
+
The list of server certificates. This parameter takes effect only for listeners that use SSL over TCP.
|
|
566
|
+
|
|
567
|
+
> **NOTE:** This parameter takes effect only for TCPSSL listeners.
|
|
536
568
|
"""
|
|
537
569
|
return pulumi.get(self, "certificate_ids")
|
|
538
570
|
|
|
@@ -544,7 +576,7 @@ class _ListenerState:
|
|
|
544
576
|
@pulumi.getter
|
|
545
577
|
def cps(self) -> Optional[pulumi.Input[int]]:
|
|
546
578
|
"""
|
|
547
|
-
The
|
|
579
|
+
The maximum number of connections that can be created per second on the NLB instance. Valid values: `0` to `1000000`. `0` specifies that the number of connections is unlimited.
|
|
548
580
|
"""
|
|
549
581
|
return pulumi.get(self, "cps")
|
|
550
582
|
|
|
@@ -556,7 +588,9 @@ class _ListenerState:
|
|
|
556
588
|
@pulumi.getter(name="endPort")
|
|
557
589
|
def end_port(self) -> Optional[pulumi.Input[int]]:
|
|
558
590
|
"""
|
|
559
|
-
|
|
591
|
+
The last port in the listener port range. Valid values: `0` to `65535`. The number of the last port must be greater than the number of the first port.
|
|
592
|
+
|
|
593
|
+
> **NOTE:** This parameter is required when `ListenerPort` is set to `0`.
|
|
560
594
|
"""
|
|
561
595
|
return pulumi.get(self, "end_port")
|
|
562
596
|
|
|
@@ -568,7 +602,7 @@ class _ListenerState:
|
|
|
568
602
|
@pulumi.getter(name="idleTimeout")
|
|
569
603
|
def idle_timeout(self) -> Optional[pulumi.Input[int]]:
|
|
570
604
|
"""
|
|
571
|
-
|
|
605
|
+
The timeout period of idle connections. Unit: seconds. Valid values: `1` to `900`. Default value: `900`.
|
|
572
606
|
"""
|
|
573
607
|
return pulumi.get(self, "idle_timeout")
|
|
574
608
|
|
|
@@ -580,7 +614,9 @@ class _ListenerState:
|
|
|
580
614
|
@pulumi.getter(name="listenerDescription")
|
|
581
615
|
def listener_description(self) -> Optional[pulumi.Input[str]]:
|
|
582
616
|
"""
|
|
583
|
-
|
|
617
|
+
Enter a name for the listener.
|
|
618
|
+
|
|
619
|
+
The description must be 2 to 256 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (\\_), and hyphens (-).
|
|
584
620
|
"""
|
|
585
621
|
return pulumi.get(self, "listener_description")
|
|
586
622
|
|
|
@@ -592,7 +628,9 @@ class _ListenerState:
|
|
|
592
628
|
@pulumi.getter(name="listenerPort")
|
|
593
629
|
def listener_port(self) -> Optional[pulumi.Input[int]]:
|
|
594
630
|
"""
|
|
595
|
-
|
|
631
|
+
The listener port. Valid values: `0` to `65535`.
|
|
632
|
+
|
|
633
|
+
If you set the value to `0`, the listener listens by port range. If you set the value to `0`, you must specify `StartPort` and `EndPort`.
|
|
596
634
|
"""
|
|
597
635
|
return pulumi.get(self, "listener_port")
|
|
598
636
|
|
|
@@ -604,7 +642,7 @@ class _ListenerState:
|
|
|
604
642
|
@pulumi.getter(name="listenerProtocol")
|
|
605
643
|
def listener_protocol(self) -> Optional[pulumi.Input[str]]:
|
|
606
644
|
"""
|
|
607
|
-
The listening protocol. Valid values:
|
|
645
|
+
The listening protocol. Valid values: `TCP`, `UDP`, and `TCPSSL`.
|
|
608
646
|
"""
|
|
609
647
|
return pulumi.get(self, "listener_protocol")
|
|
610
648
|
|
|
@@ -616,7 +654,7 @@ class _ListenerState:
|
|
|
616
654
|
@pulumi.getter(name="loadBalancerId")
|
|
617
655
|
def load_balancer_id(self) -> Optional[pulumi.Input[str]]:
|
|
618
656
|
"""
|
|
619
|
-
The ID of the
|
|
657
|
+
The ID of the Network Load Balancer (NLB) instance.
|
|
620
658
|
"""
|
|
621
659
|
return pulumi.get(self, "load_balancer_id")
|
|
622
660
|
|
|
@@ -628,8 +666,9 @@ class _ListenerState:
|
|
|
628
666
|
@pulumi.getter
|
|
629
667
|
def mss(self) -> Optional[pulumi.Input[int]]:
|
|
630
668
|
"""
|
|
631
|
-
The maximum
|
|
632
|
-
|
|
669
|
+
The maximum size of a TCP segment. Unit: bytes. Valid values: `0` to `1500`. `0` specifies that the maximum segment size remains unchanged.
|
|
670
|
+
|
|
671
|
+
> **NOTE:** This parameter is supported only by TCP listeners and listeners that use SSL over TCP.
|
|
633
672
|
"""
|
|
634
673
|
return pulumi.get(self, "mss")
|
|
635
674
|
|
|
@@ -641,9 +680,7 @@ class _ListenerState:
|
|
|
641
680
|
@pulumi.getter(name="proxyProtocolEnabled")
|
|
642
681
|
def proxy_protocol_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
643
682
|
"""
|
|
644
|
-
|
|
645
|
-
- **true**: on.
|
|
646
|
-
- **false**: closed.
|
|
683
|
+
Specifies whether to use the Proxy protocol to pass client IP addresses to backend servers. Valid values:
|
|
647
684
|
"""
|
|
648
685
|
return pulumi.get(self, "proxy_protocol_enabled")
|
|
649
686
|
|
|
@@ -655,9 +692,7 @@ class _ListenerState:
|
|
|
655
692
|
@pulumi.getter(name="secSensorEnabled")
|
|
656
693
|
def sec_sensor_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
657
694
|
"""
|
|
658
|
-
|
|
659
|
-
- **true**: on.
|
|
660
|
-
- **false**: closed.
|
|
695
|
+
Specifies whether to enable fine-grained monitoring. Valid values:
|
|
661
696
|
"""
|
|
662
697
|
return pulumi.get(self, "sec_sensor_enabled")
|
|
663
698
|
|
|
@@ -669,8 +704,11 @@ class _ListenerState:
|
|
|
669
704
|
@pulumi.getter(name="securityPolicyId")
|
|
670
705
|
def security_policy_id(self) -> Optional[pulumi.Input[str]]:
|
|
671
706
|
"""
|
|
672
|
-
|
|
673
|
-
|
|
707
|
+
The security policy ID. System security policies and custom security policies are supported.
|
|
708
|
+
|
|
709
|
+
Valid values: `tls_cipher_policy\\_1\\_0` (default), `tls_cipher_policy\\_1\\_1`, `tls_cipher_policy\\_1\\_2`, `tls_cipher_policy\\_1\\_2\\_strict`, and `tls_cipher_policy\\_1\\_2\\_strict_with\\_1\\_3`.
|
|
710
|
+
|
|
711
|
+
> **NOTE:** This parameter takes effect only for listeners that use SSL over TCP.
|
|
674
712
|
"""
|
|
675
713
|
return pulumi.get(self, "security_policy_id")
|
|
676
714
|
|
|
@@ -694,7 +732,9 @@ class _ListenerState:
|
|
|
694
732
|
@pulumi.getter(name="startPort")
|
|
695
733
|
def start_port(self) -> Optional[pulumi.Input[int]]:
|
|
696
734
|
"""
|
|
697
|
-
|
|
735
|
+
The first port in the listener port range. Valid values: `0` to `65535`.
|
|
736
|
+
|
|
737
|
+
> **NOTE:** This parameter is required when `ListenerPort` is set to `0`.
|
|
698
738
|
"""
|
|
699
739
|
return pulumi.get(self, "start_port")
|
|
700
740
|
|
|
@@ -706,7 +746,7 @@ class _ListenerState:
|
|
|
706
746
|
@pulumi.getter
|
|
707
747
|
def status(self) -> Optional[pulumi.Input[str]]:
|
|
708
748
|
"""
|
|
709
|
-
The status of the resource.
|
|
749
|
+
The status of the resource. Valid values: `Running`, `Stopped`. When you want to enable this instance, you can set the property value to `Running`;
|
|
710
750
|
"""
|
|
711
751
|
return pulumi.get(self, "status")
|
|
712
752
|
|
|
@@ -718,7 +758,7 @@ class _ListenerState:
|
|
|
718
758
|
@pulumi.getter
|
|
719
759
|
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
720
760
|
"""
|
|
721
|
-
The tag of the resource
|
|
761
|
+
The tag of the resource
|
|
722
762
|
"""
|
|
723
763
|
return pulumi.get(self, "tags")
|
|
724
764
|
|
|
@@ -862,42 +902,52 @@ class Listener(pulumi.CustomResource):
|
|
|
862
902
|
|
|
863
903
|
:param str resource_name: The name of the resource.
|
|
864
904
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
865
|
-
:param pulumi.Input[bool] alpn_enabled:
|
|
866
|
-
|
|
867
|
-
-
|
|
868
|
-
|
|
869
|
-
-
|
|
870
|
-
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
> **NOTE:**
|
|
875
|
-
:param pulumi.Input[
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
:param pulumi.Input[
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
:param pulumi.Input[int]
|
|
883
|
-
:param pulumi.Input[
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
:param pulumi.Input[
|
|
887
|
-
:param pulumi.Input[
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
:param pulumi.Input[
|
|
896
|
-
|
|
905
|
+
:param pulumi.Input[bool] alpn_enabled: Specifies whether to enable Application-Layer Protocol Negotiation (ALPN). Valid values:
|
|
906
|
+
:param pulumi.Input[str] alpn_policy: The ALPN policy. Valid values:
|
|
907
|
+
- `HTTP1Only`: uses only HTTP 1.x. The priority of HTTP 1.1 is higher than the priority of HTTP 1.0.
|
|
908
|
+
- `HTTP2Only`: uses only HTTP 2.0.
|
|
909
|
+
- `HTTP2Optional`: preferentially uses HTTP 1.x over HTTP 2.0. The priority of HTTP 1.1 is higher than the priority of HTTP 1.0, and the priority of HTTP 1.0 is higher than the priority of HTTP 2.0.
|
|
910
|
+
- `HTTP2Preferred`: preferentially uses HTTP 2.0 over HTTP 1.x. The priority of HTTP 2.0 is higher than the priority of HTTP 1.1, and the priority of HTTP 1.1 is higher than the priority of HTTP 1.0.
|
|
911
|
+
|
|
912
|
+
> **NOTE:** This parameter is required if AlpnEnabled is set to true.
|
|
913
|
+
|
|
914
|
+
> **NOTE:** Effective only for TCPSSL listener.
|
|
915
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] ca_certificate_ids: The list of certificate authority (CA) certificates. This parameter takes effect only for listeners that use SSL over TCP.
|
|
916
|
+
|
|
917
|
+
> **NOTE:** Only one CA certificate is supported.
|
|
918
|
+
:param pulumi.Input[bool] ca_enabled: Specifies whether to enable mutual authentication. Valid values:
|
|
919
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] certificate_ids: The list of server certificates. This parameter takes effect only for listeners that use SSL over TCP.
|
|
920
|
+
|
|
921
|
+
> **NOTE:** This parameter takes effect only for TCPSSL listeners.
|
|
922
|
+
:param pulumi.Input[int] cps: The maximum number of connections that can be created per second on the NLB instance. Valid values: `0` to `1000000`. `0` specifies that the number of connections is unlimited.
|
|
923
|
+
:param pulumi.Input[int] end_port: The last port in the listener port range. Valid values: `0` to `65535`. The number of the last port must be greater than the number of the first port.
|
|
924
|
+
|
|
925
|
+
> **NOTE:** This parameter is required when `ListenerPort` is set to `0`.
|
|
926
|
+
:param pulumi.Input[int] idle_timeout: The timeout period of idle connections. Unit: seconds. Valid values: `1` to `900`. Default value: `900`.
|
|
927
|
+
:param pulumi.Input[str] listener_description: Enter a name for the listener.
|
|
928
|
+
|
|
929
|
+
The description must be 2 to 256 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (\\_), and hyphens (-).
|
|
930
|
+
:param pulumi.Input[int] listener_port: The listener port. Valid values: `0` to `65535`.
|
|
931
|
+
|
|
932
|
+
If you set the value to `0`, the listener listens by port range. If you set the value to `0`, you must specify `StartPort` and `EndPort`.
|
|
933
|
+
:param pulumi.Input[str] listener_protocol: The listening protocol. Valid values: `TCP`, `UDP`, and `TCPSSL`.
|
|
934
|
+
:param pulumi.Input[str] load_balancer_id: The ID of the Network Load Balancer (NLB) instance.
|
|
935
|
+
:param pulumi.Input[int] mss: The maximum size of a TCP segment. Unit: bytes. Valid values: `0` to `1500`. `0` specifies that the maximum segment size remains unchanged.
|
|
936
|
+
|
|
937
|
+
> **NOTE:** This parameter is supported only by TCP listeners and listeners that use SSL over TCP.
|
|
938
|
+
:param pulumi.Input[bool] proxy_protocol_enabled: Specifies whether to use the Proxy protocol to pass client IP addresses to backend servers. Valid values:
|
|
939
|
+
:param pulumi.Input[bool] sec_sensor_enabled: Specifies whether to enable fine-grained monitoring. Valid values:
|
|
940
|
+
:param pulumi.Input[str] security_policy_id: The security policy ID. System security policies and custom security policies are supported.
|
|
941
|
+
|
|
942
|
+
Valid values: `tls_cipher_policy\\_1\\_0` (default), `tls_cipher_policy\\_1\\_1`, `tls_cipher_policy\\_1\\_2`, `tls_cipher_policy\\_1\\_2\\_strict`, and `tls_cipher_policy\\_1\\_2\\_strict_with\\_1\\_3`.
|
|
943
|
+
|
|
944
|
+
> **NOTE:** This parameter takes effect only for listeners that use SSL over TCP.
|
|
897
945
|
:param pulumi.Input[str] server_group_id: The ID of the server group.
|
|
898
|
-
:param pulumi.Input[int] start_port:
|
|
899
|
-
|
|
900
|
-
|
|
946
|
+
:param pulumi.Input[int] start_port: The first port in the listener port range. Valid values: `0` to `65535`.
|
|
947
|
+
|
|
948
|
+
> **NOTE:** This parameter is required when `ListenerPort` is set to `0`.
|
|
949
|
+
:param pulumi.Input[str] status: The status of the resource. Valid values: `Running`, `Stopped`. When you want to enable this instance, you can set the property value to `Running`;
|
|
950
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag of the resource
|
|
901
951
|
"""
|
|
902
952
|
...
|
|
903
953
|
@overload
|
|
@@ -1121,42 +1171,52 @@ class Listener(pulumi.CustomResource):
|
|
|
1121
1171
|
:param str resource_name: The unique name of the resulting resource.
|
|
1122
1172
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
1123
1173
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
1124
|
-
:param pulumi.Input[bool] alpn_enabled:
|
|
1125
|
-
|
|
1126
|
-
-
|
|
1127
|
-
|
|
1128
|
-
-
|
|
1129
|
-
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
> **NOTE:**
|
|
1134
|
-
:param pulumi.Input[
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
:param pulumi.Input[
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
:param pulumi.Input[int]
|
|
1142
|
-
:param pulumi.Input[
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
:param pulumi.Input[
|
|
1146
|
-
:param pulumi.Input[
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
:param pulumi.Input[
|
|
1155
|
-
|
|
1174
|
+
:param pulumi.Input[bool] alpn_enabled: Specifies whether to enable Application-Layer Protocol Negotiation (ALPN). Valid values:
|
|
1175
|
+
:param pulumi.Input[str] alpn_policy: The ALPN policy. Valid values:
|
|
1176
|
+
- `HTTP1Only`: uses only HTTP 1.x. The priority of HTTP 1.1 is higher than the priority of HTTP 1.0.
|
|
1177
|
+
- `HTTP2Only`: uses only HTTP 2.0.
|
|
1178
|
+
- `HTTP2Optional`: preferentially uses HTTP 1.x over HTTP 2.0. The priority of HTTP 1.1 is higher than the priority of HTTP 1.0, and the priority of HTTP 1.0 is higher than the priority of HTTP 2.0.
|
|
1179
|
+
- `HTTP2Preferred`: preferentially uses HTTP 2.0 over HTTP 1.x. The priority of HTTP 2.0 is higher than the priority of HTTP 1.1, and the priority of HTTP 1.1 is higher than the priority of HTTP 1.0.
|
|
1180
|
+
|
|
1181
|
+
> **NOTE:** This parameter is required if AlpnEnabled is set to true.
|
|
1182
|
+
|
|
1183
|
+
> **NOTE:** Effective only for TCPSSL listener.
|
|
1184
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] ca_certificate_ids: The list of certificate authority (CA) certificates. This parameter takes effect only for listeners that use SSL over TCP.
|
|
1185
|
+
|
|
1186
|
+
> **NOTE:** Only one CA certificate is supported.
|
|
1187
|
+
:param pulumi.Input[bool] ca_enabled: Specifies whether to enable mutual authentication. Valid values:
|
|
1188
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] certificate_ids: The list of server certificates. This parameter takes effect only for listeners that use SSL over TCP.
|
|
1189
|
+
|
|
1190
|
+
> **NOTE:** This parameter takes effect only for TCPSSL listeners.
|
|
1191
|
+
:param pulumi.Input[int] cps: The maximum number of connections that can be created per second on the NLB instance. Valid values: `0` to `1000000`. `0` specifies that the number of connections is unlimited.
|
|
1192
|
+
:param pulumi.Input[int] end_port: The last port in the listener port range. Valid values: `0` to `65535`. The number of the last port must be greater than the number of the first port.
|
|
1193
|
+
|
|
1194
|
+
> **NOTE:** This parameter is required when `ListenerPort` is set to `0`.
|
|
1195
|
+
:param pulumi.Input[int] idle_timeout: The timeout period of idle connections. Unit: seconds. Valid values: `1` to `900`. Default value: `900`.
|
|
1196
|
+
:param pulumi.Input[str] listener_description: Enter a name for the listener.
|
|
1197
|
+
|
|
1198
|
+
The description must be 2 to 256 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (\\_), and hyphens (-).
|
|
1199
|
+
:param pulumi.Input[int] listener_port: The listener port. Valid values: `0` to `65535`.
|
|
1200
|
+
|
|
1201
|
+
If you set the value to `0`, the listener listens by port range. If you set the value to `0`, you must specify `StartPort` and `EndPort`.
|
|
1202
|
+
:param pulumi.Input[str] listener_protocol: The listening protocol. Valid values: `TCP`, `UDP`, and `TCPSSL`.
|
|
1203
|
+
:param pulumi.Input[str] load_balancer_id: The ID of the Network Load Balancer (NLB) instance.
|
|
1204
|
+
:param pulumi.Input[int] mss: The maximum size of a TCP segment. Unit: bytes. Valid values: `0` to `1500`. `0` specifies that the maximum segment size remains unchanged.
|
|
1205
|
+
|
|
1206
|
+
> **NOTE:** This parameter is supported only by TCP listeners and listeners that use SSL over TCP.
|
|
1207
|
+
:param pulumi.Input[bool] proxy_protocol_enabled: Specifies whether to use the Proxy protocol to pass client IP addresses to backend servers. Valid values:
|
|
1208
|
+
:param pulumi.Input[bool] sec_sensor_enabled: Specifies whether to enable fine-grained monitoring. Valid values:
|
|
1209
|
+
:param pulumi.Input[str] security_policy_id: The security policy ID. System security policies and custom security policies are supported.
|
|
1210
|
+
|
|
1211
|
+
Valid values: `tls_cipher_policy\\_1\\_0` (default), `tls_cipher_policy\\_1\\_1`, `tls_cipher_policy\\_1\\_2`, `tls_cipher_policy\\_1\\_2\\_strict`, and `tls_cipher_policy\\_1\\_2\\_strict_with\\_1\\_3`.
|
|
1212
|
+
|
|
1213
|
+
> **NOTE:** This parameter takes effect only for listeners that use SSL over TCP.
|
|
1156
1214
|
:param pulumi.Input[str] server_group_id: The ID of the server group.
|
|
1157
|
-
:param pulumi.Input[int] start_port:
|
|
1158
|
-
|
|
1159
|
-
|
|
1215
|
+
:param pulumi.Input[int] start_port: The first port in the listener port range. Valid values: `0` to `65535`.
|
|
1216
|
+
|
|
1217
|
+
> **NOTE:** This parameter is required when `ListenerPort` is set to `0`.
|
|
1218
|
+
:param pulumi.Input[str] status: The status of the resource. Valid values: `Running`, `Stopped`. When you want to enable this instance, you can set the property value to `Running`;
|
|
1219
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag of the resource
|
|
1160
1220
|
"""
|
|
1161
1221
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
1162
1222
|
|
|
@@ -1188,9 +1248,7 @@ class Listener(pulumi.CustomResource):
|
|
|
1188
1248
|
@pulumi.getter(name="alpnEnabled")
|
|
1189
1249
|
def alpn_enabled(self) -> pulumi.Output[bool]:
|
|
1190
1250
|
"""
|
|
1191
|
-
|
|
1192
|
-
- **true**: on.
|
|
1193
|
-
- **false**: closed.
|
|
1251
|
+
Specifies whether to enable Application-Layer Protocol Negotiation (ALPN). Valid values:
|
|
1194
1252
|
"""
|
|
1195
1253
|
return pulumi.get(self, "alpn_enabled")
|
|
1196
1254
|
|
|
@@ -1198,11 +1256,15 @@ class Listener(pulumi.CustomResource):
|
|
|
1198
1256
|
@pulumi.getter(name="alpnPolicy")
|
|
1199
1257
|
def alpn_policy(self) -> pulumi.Output[Optional[str]]:
|
|
1200
1258
|
"""
|
|
1201
|
-
ALPN policy.
|
|
1202
|
-
-
|
|
1203
|
-
-
|
|
1204
|
-
-
|
|
1205
|
-
-
|
|
1259
|
+
The ALPN policy. Valid values:
|
|
1260
|
+
- `HTTP1Only`: uses only HTTP 1.x. The priority of HTTP 1.1 is higher than the priority of HTTP 1.0.
|
|
1261
|
+
- `HTTP2Only`: uses only HTTP 2.0.
|
|
1262
|
+
- `HTTP2Optional`: preferentially uses HTTP 1.x over HTTP 2.0. The priority of HTTP 1.1 is higher than the priority of HTTP 1.0, and the priority of HTTP 1.0 is higher than the priority of HTTP 2.0.
|
|
1263
|
+
- `HTTP2Preferred`: preferentially uses HTTP 2.0 over HTTP 1.x. The priority of HTTP 2.0 is higher than the priority of HTTP 1.1, and the priority of HTTP 1.1 is higher than the priority of HTTP 1.0.
|
|
1264
|
+
|
|
1265
|
+
> **NOTE:** This parameter is required if AlpnEnabled is set to true.
|
|
1266
|
+
|
|
1267
|
+
> **NOTE:** Effective only for TCPSSL listener.
|
|
1206
1268
|
"""
|
|
1207
1269
|
return pulumi.get(self, "alpn_policy")
|
|
1208
1270
|
|
|
@@ -1210,8 +1272,9 @@ class Listener(pulumi.CustomResource):
|
|
|
1210
1272
|
@pulumi.getter(name="caCertificateIds")
|
|
1211
1273
|
def ca_certificate_ids(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
1212
1274
|
"""
|
|
1213
|
-
|
|
1214
|
-
|
|
1275
|
+
The list of certificate authority (CA) certificates. This parameter takes effect only for listeners that use SSL over TCP.
|
|
1276
|
+
|
|
1277
|
+
> **NOTE:** Only one CA certificate is supported.
|
|
1215
1278
|
"""
|
|
1216
1279
|
return pulumi.get(self, "ca_certificate_ids")
|
|
1217
1280
|
|
|
@@ -1219,9 +1282,7 @@ class Listener(pulumi.CustomResource):
|
|
|
1219
1282
|
@pulumi.getter(name="caEnabled")
|
|
1220
1283
|
def ca_enabled(self) -> pulumi.Output[bool]:
|
|
1221
1284
|
"""
|
|
1222
|
-
|
|
1223
|
-
- **true**: start.
|
|
1224
|
-
- **false**: closed.
|
|
1285
|
+
Specifies whether to enable mutual authentication. Valid values:
|
|
1225
1286
|
"""
|
|
1226
1287
|
return pulumi.get(self, "ca_enabled")
|
|
1227
1288
|
|
|
@@ -1229,8 +1290,9 @@ class Listener(pulumi.CustomResource):
|
|
|
1229
1290
|
@pulumi.getter(name="certificateIds")
|
|
1230
1291
|
def certificate_ids(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
1231
1292
|
"""
|
|
1232
|
-
|
|
1233
|
-
|
|
1293
|
+
The list of server certificates. This parameter takes effect only for listeners that use SSL over TCP.
|
|
1294
|
+
|
|
1295
|
+
> **NOTE:** This parameter takes effect only for TCPSSL listeners.
|
|
1234
1296
|
"""
|
|
1235
1297
|
return pulumi.get(self, "certificate_ids")
|
|
1236
1298
|
|
|
@@ -1238,7 +1300,7 @@ class Listener(pulumi.CustomResource):
|
|
|
1238
1300
|
@pulumi.getter
|
|
1239
1301
|
def cps(self) -> pulumi.Output[Optional[int]]:
|
|
1240
1302
|
"""
|
|
1241
|
-
The
|
|
1303
|
+
The maximum number of connections that can be created per second on the NLB instance. Valid values: `0` to `1000000`. `0` specifies that the number of connections is unlimited.
|
|
1242
1304
|
"""
|
|
1243
1305
|
return pulumi.get(self, "cps")
|
|
1244
1306
|
|
|
@@ -1246,7 +1308,9 @@ class Listener(pulumi.CustomResource):
|
|
|
1246
1308
|
@pulumi.getter(name="endPort")
|
|
1247
1309
|
def end_port(self) -> pulumi.Output[Optional[int]]:
|
|
1248
1310
|
"""
|
|
1249
|
-
|
|
1311
|
+
The last port in the listener port range. Valid values: `0` to `65535`. The number of the last port must be greater than the number of the first port.
|
|
1312
|
+
|
|
1313
|
+
> **NOTE:** This parameter is required when `ListenerPort` is set to `0`.
|
|
1250
1314
|
"""
|
|
1251
1315
|
return pulumi.get(self, "end_port")
|
|
1252
1316
|
|
|
@@ -1254,7 +1318,7 @@ class Listener(pulumi.CustomResource):
|
|
|
1254
1318
|
@pulumi.getter(name="idleTimeout")
|
|
1255
1319
|
def idle_timeout(self) -> pulumi.Output[int]:
|
|
1256
1320
|
"""
|
|
1257
|
-
|
|
1321
|
+
The timeout period of idle connections. Unit: seconds. Valid values: `1` to `900`. Default value: `900`.
|
|
1258
1322
|
"""
|
|
1259
1323
|
return pulumi.get(self, "idle_timeout")
|
|
1260
1324
|
|
|
@@ -1262,7 +1326,9 @@ class Listener(pulumi.CustomResource):
|
|
|
1262
1326
|
@pulumi.getter(name="listenerDescription")
|
|
1263
1327
|
def listener_description(self) -> pulumi.Output[Optional[str]]:
|
|
1264
1328
|
"""
|
|
1265
|
-
|
|
1329
|
+
Enter a name for the listener.
|
|
1330
|
+
|
|
1331
|
+
The description must be 2 to 256 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (\\_), and hyphens (-).
|
|
1266
1332
|
"""
|
|
1267
1333
|
return pulumi.get(self, "listener_description")
|
|
1268
1334
|
|
|
@@ -1270,7 +1336,9 @@ class Listener(pulumi.CustomResource):
|
|
|
1270
1336
|
@pulumi.getter(name="listenerPort")
|
|
1271
1337
|
def listener_port(self) -> pulumi.Output[int]:
|
|
1272
1338
|
"""
|
|
1273
|
-
|
|
1339
|
+
The listener port. Valid values: `0` to `65535`.
|
|
1340
|
+
|
|
1341
|
+
If you set the value to `0`, the listener listens by port range. If you set the value to `0`, you must specify `StartPort` and `EndPort`.
|
|
1274
1342
|
"""
|
|
1275
1343
|
return pulumi.get(self, "listener_port")
|
|
1276
1344
|
|
|
@@ -1278,7 +1346,7 @@ class Listener(pulumi.CustomResource):
|
|
|
1278
1346
|
@pulumi.getter(name="listenerProtocol")
|
|
1279
1347
|
def listener_protocol(self) -> pulumi.Output[str]:
|
|
1280
1348
|
"""
|
|
1281
|
-
The listening protocol. Valid values:
|
|
1349
|
+
The listening protocol. Valid values: `TCP`, `UDP`, and `TCPSSL`.
|
|
1282
1350
|
"""
|
|
1283
1351
|
return pulumi.get(self, "listener_protocol")
|
|
1284
1352
|
|
|
@@ -1286,7 +1354,7 @@ class Listener(pulumi.CustomResource):
|
|
|
1286
1354
|
@pulumi.getter(name="loadBalancerId")
|
|
1287
1355
|
def load_balancer_id(self) -> pulumi.Output[str]:
|
|
1288
1356
|
"""
|
|
1289
|
-
The ID of the
|
|
1357
|
+
The ID of the Network Load Balancer (NLB) instance.
|
|
1290
1358
|
"""
|
|
1291
1359
|
return pulumi.get(self, "load_balancer_id")
|
|
1292
1360
|
|
|
@@ -1294,8 +1362,9 @@ class Listener(pulumi.CustomResource):
|
|
|
1294
1362
|
@pulumi.getter
|
|
1295
1363
|
def mss(self) -> pulumi.Output[Optional[int]]:
|
|
1296
1364
|
"""
|
|
1297
|
-
The maximum
|
|
1298
|
-
|
|
1365
|
+
The maximum size of a TCP segment. Unit: bytes. Valid values: `0` to `1500`. `0` specifies that the maximum segment size remains unchanged.
|
|
1366
|
+
|
|
1367
|
+
> **NOTE:** This parameter is supported only by TCP listeners and listeners that use SSL over TCP.
|
|
1299
1368
|
"""
|
|
1300
1369
|
return pulumi.get(self, "mss")
|
|
1301
1370
|
|
|
@@ -1303,9 +1372,7 @@ class Listener(pulumi.CustomResource):
|
|
|
1303
1372
|
@pulumi.getter(name="proxyProtocolEnabled")
|
|
1304
1373
|
def proxy_protocol_enabled(self) -> pulumi.Output[bool]:
|
|
1305
1374
|
"""
|
|
1306
|
-
|
|
1307
|
-
- **true**: on.
|
|
1308
|
-
- **false**: closed.
|
|
1375
|
+
Specifies whether to use the Proxy protocol to pass client IP addresses to backend servers. Valid values:
|
|
1309
1376
|
"""
|
|
1310
1377
|
return pulumi.get(self, "proxy_protocol_enabled")
|
|
1311
1378
|
|
|
@@ -1313,9 +1380,7 @@ class Listener(pulumi.CustomResource):
|
|
|
1313
1380
|
@pulumi.getter(name="secSensorEnabled")
|
|
1314
1381
|
def sec_sensor_enabled(self) -> pulumi.Output[bool]:
|
|
1315
1382
|
"""
|
|
1316
|
-
|
|
1317
|
-
- **true**: on.
|
|
1318
|
-
- **false**: closed.
|
|
1383
|
+
Specifies whether to enable fine-grained monitoring. Valid values:
|
|
1319
1384
|
"""
|
|
1320
1385
|
return pulumi.get(self, "sec_sensor_enabled")
|
|
1321
1386
|
|
|
@@ -1323,8 +1388,11 @@ class Listener(pulumi.CustomResource):
|
|
|
1323
1388
|
@pulumi.getter(name="securityPolicyId")
|
|
1324
1389
|
def security_policy_id(self) -> pulumi.Output[str]:
|
|
1325
1390
|
"""
|
|
1326
|
-
|
|
1327
|
-
|
|
1391
|
+
The security policy ID. System security policies and custom security policies are supported.
|
|
1392
|
+
|
|
1393
|
+
Valid values: `tls_cipher_policy\\_1\\_0` (default), `tls_cipher_policy\\_1\\_1`, `tls_cipher_policy\\_1\\_2`, `tls_cipher_policy\\_1\\_2\\_strict`, and `tls_cipher_policy\\_1\\_2\\_strict_with\\_1\\_3`.
|
|
1394
|
+
|
|
1395
|
+
> **NOTE:** This parameter takes effect only for listeners that use SSL over TCP.
|
|
1328
1396
|
"""
|
|
1329
1397
|
return pulumi.get(self, "security_policy_id")
|
|
1330
1398
|
|
|
@@ -1340,7 +1408,9 @@ class Listener(pulumi.CustomResource):
|
|
|
1340
1408
|
@pulumi.getter(name="startPort")
|
|
1341
1409
|
def start_port(self) -> pulumi.Output[Optional[int]]:
|
|
1342
1410
|
"""
|
|
1343
|
-
|
|
1411
|
+
The first port in the listener port range. Valid values: `0` to `65535`.
|
|
1412
|
+
|
|
1413
|
+
> **NOTE:** This parameter is required when `ListenerPort` is set to `0`.
|
|
1344
1414
|
"""
|
|
1345
1415
|
return pulumi.get(self, "start_port")
|
|
1346
1416
|
|
|
@@ -1348,7 +1418,7 @@ class Listener(pulumi.CustomResource):
|
|
|
1348
1418
|
@pulumi.getter
|
|
1349
1419
|
def status(self) -> pulumi.Output[str]:
|
|
1350
1420
|
"""
|
|
1351
|
-
The status of the resource.
|
|
1421
|
+
The status of the resource. Valid values: `Running`, `Stopped`. When you want to enable this instance, you can set the property value to `Running`;
|
|
1352
1422
|
"""
|
|
1353
1423
|
return pulumi.get(self, "status")
|
|
1354
1424
|
|
|
@@ -1356,7 +1426,7 @@ class Listener(pulumi.CustomResource):
|
|
|
1356
1426
|
@pulumi.getter
|
|
1357
1427
|
def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
|
1358
1428
|
"""
|
|
1359
|
-
The tag of the resource
|
|
1429
|
+
The tag of the resource
|
|
1360
1430
|
"""
|
|
1361
1431
|
return pulumi.get(self, "tags")
|
|
1362
1432
|
|