pulumi-alicloud 3.63.0__py3-none-any.whl → 3.63.0a1726205090__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 +0 -24
- pulumi_alicloud/alb/acl.py +19 -18
- pulumi_alicloud/alb/health_check_template.py +88 -96
- pulumi_alicloud/amqp/binding.py +36 -30
- pulumi_alicloud/cen/_inputs.py +14 -180
- pulumi_alicloud/cen/outputs.py +12 -173
- pulumi_alicloud/cen/traffic_marking_policy.py +53 -116
- pulumi_alicloud/cen/transit_router_vpc_attachment.py +119 -338
- pulumi_alicloud/cms/_inputs.py +6 -6
- pulumi_alicloud/cms/outputs.py +6 -6
- pulumi_alicloud/cr/chart_namespace.py +6 -14
- pulumi_alicloud/cr/endpoint_acl_policy.py +2 -10
- pulumi_alicloud/cr/namespace.py +2 -10
- pulumi_alicloud/cs/registry_enterprise_sync_rule.py +10 -10
- pulumi_alicloud/ddos/_inputs.py +9 -8
- pulumi_alicloud/ddos/bgp_ip.py +1 -1
- pulumi_alicloud/ddos/domain_resource.py +90 -446
- pulumi_alicloud/ddos/outputs.py +8 -7
- pulumi_alicloud/eci/container_group.py +0 -47
- pulumi_alicloud/ecs/_inputs.py +0 -28
- pulumi_alicloud/ecs/ecs_snapshot.py +77 -199
- pulumi_alicloud/ecs/outputs.py +0 -20
- pulumi_alicloud/ecs/snapshot.py +8 -26
- pulumi_alicloud/emrv2/_inputs.py +12 -12
- pulumi_alicloud/emrv2/outputs.py +12 -12
- pulumi_alicloud/ens/_inputs.py +2 -50
- pulumi_alicloud/ens/instance.py +184 -428
- pulumi_alicloud/ens/outputs.py +2 -57
- pulumi_alicloud/ess/__init__.py +0 -1
- pulumi_alicloud/ess/alarm.py +0 -47
- pulumi_alicloud/expressconnect/physical_connection.py +185 -321
- pulumi_alicloud/fc/trigger.py +24 -22
- pulumi_alicloud/ga/_inputs.py +5 -23
- pulumi_alicloud/ga/endpoint_group.py +14 -68
- pulumi_alicloud/ga/outputs.py +5 -21
- pulumi_alicloud/governance/account.py +0 -61
- pulumi_alicloud/gpdb/__init__.py +0 -4
- pulumi_alicloud/gpdb/_inputs.py +3 -361
- pulumi_alicloud/gpdb/instance.py +0 -47
- pulumi_alicloud/gpdb/outputs.py +4 -597
- pulumi_alicloud/mongodb/instance.py +0 -94
- pulumi_alicloud/nlb/_inputs.py +64 -120
- pulumi_alicloud/nlb/get_listeners.py +2 -32
- pulumi_alicloud/nlb/get_server_group_server_attachments.py +2 -8
- pulumi_alicloud/nlb/listener.py +245 -315
- pulumi_alicloud/nlb/listener_additional_certificate_attachment.py +25 -25
- pulumi_alicloud/nlb/load_balancer.py +212 -297
- pulumi_alicloud/nlb/load_balancer_security_group_attachment.py +39 -29
- pulumi_alicloud/nlb/loadbalancer_common_bandwidth_package_attachment.py +18 -22
- pulumi_alicloud/nlb/outputs.py +66 -122
- pulumi_alicloud/nlb/security_policy.py +25 -53
- pulumi_alicloud/nlb/server_group.py +133 -196
- pulumi_alicloud/ocean/base_instance.py +163 -498
- pulumi_alicloud/oos/get_secret_parameters.py +9 -111
- pulumi_alicloud/oos/outputs.py +11 -22
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/ram/get_account_alias.py +2 -35
- pulumi_alicloud/rds/instance.py +21 -21
- pulumi_alicloud/rocketmq/_inputs.py +22 -79
- pulumi_alicloud/rocketmq/outputs.py +21 -85
- pulumi_alicloud/rocketmq/rocket_mq_instance.py +113 -307
- pulumi_alicloud/servicemesh/extension_provider.py +2 -2
- pulumi_alicloud/vpc/common_bandwith_package_attachment.py +2 -2
- pulumi_alicloud/vpc/peer_connection.py +59 -127
- pulumi_alicloud/vpc/peer_connection_accepter.py +42 -263
- pulumi_alicloud/vpc/route_entry.py +210 -232
- {pulumi_alicloud-3.63.0.dist-info → pulumi_alicloud-3.63.0a1726205090.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.63.0.dist-info → pulumi_alicloud-3.63.0a1726205090.dist-info}/RECORD +70 -75
- {pulumi_alicloud-3.63.0.dist-info → pulumi_alicloud-3.63.0a1726205090.dist-info}/WHEEL +1 -1
- pulumi_alicloud/ess/server_group_attachment.py +0 -552
- pulumi_alicloud/gpdb/db_instance_ip_array.py +0 -533
- pulumi_alicloud/gpdb/get_data_backups.py +0 -288
- pulumi_alicloud/gpdb/get_log_backups.py +0 -225
- pulumi_alicloud/gpdb/streaming_job.py +0 -1568
- {pulumi_alicloud-3.63.0.dist-info → pulumi_alicloud-3.63.0a1726205090.dist-info}/top_level.txt +0 -0
pulumi_alicloud/nlb/outputs.py
CHANGED
|
@@ -50,12 +50,9 @@ class LoadBalancerDeletionProtectionConfig(dict):
|
|
|
50
50
|
enabled_time: Optional[str] = None,
|
|
51
51
|
reason: Optional[str] = None):
|
|
52
52
|
"""
|
|
53
|
-
:param bool enabled:
|
|
54
|
-
:param str enabled_time: Opening time
|
|
55
|
-
:param str reason:
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
> **NOTE:** This parameter takes effect only when `DeletionProtectionEnabled` is set to `true`.
|
|
53
|
+
:param bool enabled: Delete protection enable.
|
|
54
|
+
:param str enabled_time: Opening time.
|
|
55
|
+
:param str reason: Reason for opening.
|
|
59
56
|
"""
|
|
60
57
|
if enabled is not None:
|
|
61
58
|
pulumi.set(__self__, "enabled", enabled)
|
|
@@ -68,7 +65,7 @@ class LoadBalancerDeletionProtectionConfig(dict):
|
|
|
68
65
|
@pulumi.getter
|
|
69
66
|
def enabled(self) -> Optional[bool]:
|
|
70
67
|
"""
|
|
71
|
-
|
|
68
|
+
Delete protection enable.
|
|
72
69
|
"""
|
|
73
70
|
return pulumi.get(self, "enabled")
|
|
74
71
|
|
|
@@ -76,7 +73,7 @@ class LoadBalancerDeletionProtectionConfig(dict):
|
|
|
76
73
|
@pulumi.getter(name="enabledTime")
|
|
77
74
|
def enabled_time(self) -> Optional[str]:
|
|
78
75
|
"""
|
|
79
|
-
Opening time
|
|
76
|
+
Opening time.
|
|
80
77
|
"""
|
|
81
78
|
return pulumi.get(self, "enabled_time")
|
|
82
79
|
|
|
@@ -84,10 +81,7 @@ class LoadBalancerDeletionProtectionConfig(dict):
|
|
|
84
81
|
@pulumi.getter
|
|
85
82
|
def reason(self) -> Optional[str]:
|
|
86
83
|
"""
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
> **NOTE:** This parameter takes effect only when `DeletionProtectionEnabled` is set to `true`.
|
|
84
|
+
Reason for opening.
|
|
91
85
|
"""
|
|
92
86
|
return pulumi.get(self, "reason")
|
|
93
87
|
|
|
@@ -116,15 +110,9 @@ class LoadBalancerModificationProtectionConfig(dict):
|
|
|
116
110
|
reason: Optional[str] = None,
|
|
117
111
|
status: Optional[str] = None):
|
|
118
112
|
"""
|
|
119
|
-
:param str enabled_time: Opening time
|
|
120
|
-
:param str reason:
|
|
121
|
-
|
|
122
|
-
> **NOTE:** This parameter takes effect only if the `status` parameter is set to `ConsoleProtection`.
|
|
123
|
-
:param str status: Specifies whether to enable the configuration read-only mode. Valid values:
|
|
124
|
-
- `NonProtection`: disables the configuration read-only mode. In this case, you cannot set the `ModificationProtectionReason` parameter. If you specify `ModificationProtectionReason`, the value is cleared.
|
|
125
|
-
- `ConsoleProtection`: enables the configuration read-only mode. In this case, you can specify `ModificationProtectionReason`.
|
|
126
|
-
|
|
127
|
-
> **NOTE:** If you set this parameter to `ConsoleProtection`, you cannot use the NLB console to modify instance configurations. However, you can call API operations to modify instance configurations.
|
|
113
|
+
:param str enabled_time: Opening time.
|
|
114
|
+
:param str reason: Reason for opening.
|
|
115
|
+
:param str status: ON.
|
|
128
116
|
"""
|
|
129
117
|
if enabled_time is not None:
|
|
130
118
|
pulumi.set(__self__, "enabled_time", enabled_time)
|
|
@@ -137,7 +125,7 @@ class LoadBalancerModificationProtectionConfig(dict):
|
|
|
137
125
|
@pulumi.getter(name="enabledTime")
|
|
138
126
|
def enabled_time(self) -> Optional[str]:
|
|
139
127
|
"""
|
|
140
|
-
Opening time
|
|
128
|
+
Opening time.
|
|
141
129
|
"""
|
|
142
130
|
return pulumi.get(self, "enabled_time")
|
|
143
131
|
|
|
@@ -145,9 +133,7 @@ class LoadBalancerModificationProtectionConfig(dict):
|
|
|
145
133
|
@pulumi.getter
|
|
146
134
|
def reason(self) -> Optional[str]:
|
|
147
135
|
"""
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
> **NOTE:** This parameter takes effect only if the `status` parameter is set to `ConsoleProtection`.
|
|
136
|
+
Reason for opening.
|
|
151
137
|
"""
|
|
152
138
|
return pulumi.get(self, "reason")
|
|
153
139
|
|
|
@@ -155,11 +141,7 @@ class LoadBalancerModificationProtectionConfig(dict):
|
|
|
155
141
|
@pulumi.getter
|
|
156
142
|
def status(self) -> Optional[str]:
|
|
157
143
|
"""
|
|
158
|
-
|
|
159
|
-
- `NonProtection`: disables the configuration read-only mode. In this case, you cannot set the `ModificationProtectionReason` parameter. If you specify `ModificationProtectionReason`, the value is cleared.
|
|
160
|
-
- `ConsoleProtection`: enables the configuration read-only mode. In this case, you can specify `ModificationProtectionReason`.
|
|
161
|
-
|
|
162
|
-
> **NOTE:** If you set this parameter to `ConsoleProtection`, you cannot use the NLB console to modify instance configurations. However, you can call API operations to modify instance configurations.
|
|
144
|
+
ON.
|
|
163
145
|
"""
|
|
164
146
|
return pulumi.get(self, "status")
|
|
165
147
|
|
|
@@ -205,16 +187,14 @@ class LoadBalancerZoneMapping(dict):
|
|
|
205
187
|
public_ipv4_address: Optional[str] = None,
|
|
206
188
|
status: Optional[str] = None):
|
|
207
189
|
"""
|
|
208
|
-
:param str vswitch_id: The
|
|
209
|
-
:param str zone_id: The
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
:param str
|
|
213
|
-
:param str
|
|
214
|
-
:param str ipv6_address: The IPv6 address of the NLB instance.
|
|
215
|
-
:param str private_ipv4_address: The private IP address. You must add at least two zones. You can add a maximum of 10 zones.
|
|
190
|
+
:param str vswitch_id: The switch corresponding to the zone. Each zone uses one switch and one subnet by default.
|
|
191
|
+
:param str zone_id: The name of the zone. You can call the DescribeZones operation to obtain the name of the zone.
|
|
192
|
+
:param str allocation_id: The ID of the elastic IP address.
|
|
193
|
+
:param str eni_id: The ID of ENI.
|
|
194
|
+
:param str ipv6_address: The IPv6 address of a network-based server load balancer instance.
|
|
195
|
+
:param str private_ipv4_address: The private IPv4 address of a network-based server load balancer instance.
|
|
216
196
|
:param str public_ipv4_address: Public IPv4 address of a network-based server load balancer instance.
|
|
217
|
-
:param str status: Zone Status
|
|
197
|
+
:param str status: Zone Status.
|
|
218
198
|
"""
|
|
219
199
|
pulumi.set(__self__, "vswitch_id", vswitch_id)
|
|
220
200
|
pulumi.set(__self__, "zone_id", zone_id)
|
|
@@ -235,7 +215,7 @@ class LoadBalancerZoneMapping(dict):
|
|
|
235
215
|
@pulumi.getter(name="vswitchId")
|
|
236
216
|
def vswitch_id(self) -> str:
|
|
237
217
|
"""
|
|
238
|
-
The
|
|
218
|
+
The switch corresponding to the zone. Each zone uses one switch and one subnet by default.
|
|
239
219
|
"""
|
|
240
220
|
return pulumi.get(self, "vswitch_id")
|
|
241
221
|
|
|
@@ -243,9 +223,7 @@ class LoadBalancerZoneMapping(dict):
|
|
|
243
223
|
@pulumi.getter(name="zoneId")
|
|
244
224
|
def zone_id(self) -> str:
|
|
245
225
|
"""
|
|
246
|
-
The
|
|
247
|
-
|
|
248
|
-
You can call the [DescribeZones](https://www.alibabacloud.com/help/en/doc-detail/443890.html) operation to query the most recent zone list.
|
|
226
|
+
The name of the zone. You can call the DescribeZones operation to obtain the name of the zone.
|
|
249
227
|
"""
|
|
250
228
|
return pulumi.get(self, "zone_id")
|
|
251
229
|
|
|
@@ -253,7 +231,7 @@ class LoadBalancerZoneMapping(dict):
|
|
|
253
231
|
@pulumi.getter(name="allocationId")
|
|
254
232
|
def allocation_id(self) -> Optional[str]:
|
|
255
233
|
"""
|
|
256
|
-
The ID of the elastic IP address
|
|
234
|
+
The ID of the elastic IP address.
|
|
257
235
|
"""
|
|
258
236
|
return pulumi.get(self, "allocation_id")
|
|
259
237
|
|
|
@@ -261,7 +239,7 @@ class LoadBalancerZoneMapping(dict):
|
|
|
261
239
|
@pulumi.getter(name="eniId")
|
|
262
240
|
def eni_id(self) -> Optional[str]:
|
|
263
241
|
"""
|
|
264
|
-
The ID of
|
|
242
|
+
The ID of ENI.
|
|
265
243
|
"""
|
|
266
244
|
return pulumi.get(self, "eni_id")
|
|
267
245
|
|
|
@@ -269,7 +247,7 @@ class LoadBalancerZoneMapping(dict):
|
|
|
269
247
|
@pulumi.getter(name="ipv6Address")
|
|
270
248
|
def ipv6_address(self) -> Optional[str]:
|
|
271
249
|
"""
|
|
272
|
-
The IPv6 address of
|
|
250
|
+
The IPv6 address of a network-based server load balancer instance.
|
|
273
251
|
"""
|
|
274
252
|
return pulumi.get(self, "ipv6_address")
|
|
275
253
|
|
|
@@ -277,7 +255,7 @@ class LoadBalancerZoneMapping(dict):
|
|
|
277
255
|
@pulumi.getter(name="privateIpv4Address")
|
|
278
256
|
def private_ipv4_address(self) -> Optional[str]:
|
|
279
257
|
"""
|
|
280
|
-
The private
|
|
258
|
+
The private IPv4 address of a network-based server load balancer instance.
|
|
281
259
|
"""
|
|
282
260
|
return pulumi.get(self, "private_ipv4_address")
|
|
283
261
|
|
|
@@ -293,7 +271,7 @@ class LoadBalancerZoneMapping(dict):
|
|
|
293
271
|
@pulumi.getter
|
|
294
272
|
def status(self) -> Optional[str]:
|
|
295
273
|
"""
|
|
296
|
-
Zone Status
|
|
274
|
+
Zone Status.
|
|
297
275
|
"""
|
|
298
276
|
return pulumi.get(self, "status")
|
|
299
277
|
|
|
@@ -350,42 +328,25 @@ class ServerGroupHealthCheck(dict):
|
|
|
350
328
|
http_check_method: Optional[str] = None,
|
|
351
329
|
unhealthy_threshold: Optional[int] = None):
|
|
352
330
|
"""
|
|
353
|
-
:param int health_check_connect_port: The port
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
:param
|
|
360
|
-
-
|
|
361
|
-
|
|
362
|
-
:param Sequence[str] health_check_http_codes:
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
:param
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
:param
|
|
372
|
-
|
|
373
|
-
The path must be 1 to 80 characters in length, and can contain only letters, digits, and the following special characters: `- / . % ? # & =`. It can also contain the following extended characters: `_ ; ~ ! ( ) * [ ] @ $ ^ : ' , +`. The path must start with a forward slash (/).
|
|
374
|
-
|
|
375
|
-
> **NOTE:** This parameter takes effect only when `HealthCheckType` is set to `HTTP`.
|
|
376
|
-
:param int healthy_threshold: The number of times that an unhealthy backend server must consecutively pass health checks before it is declared healthy. In this case, the health status changes from `fail` to `success`.
|
|
377
|
-
|
|
378
|
-
Valid values: `2` to `10`.
|
|
379
|
-
|
|
380
|
-
Default value: `2`.
|
|
381
|
-
:param str http_check_method: The HTTP method that is used for health checks. Valid values: `GET` (default) and `HEAD`.
|
|
382
|
-
|
|
383
|
-
> **NOTE:** This parameter takes effect only when `HealthCheckType` is set to `HTTP`.
|
|
384
|
-
:param int unhealthy_threshold: The number of times that a healthy backend server must consecutively fail health checks before it is declared unhealthy. In this case, the health status changes from `success` to `fail`.
|
|
385
|
-
|
|
386
|
-
Valid values: `2` to `10`.
|
|
387
|
-
|
|
388
|
-
Default value: `2`.
|
|
331
|
+
:param int health_check_connect_port: The port of the backend server for health checks. Valid values: **0** ~ **65535**. **0** indicates that the port of the backend server is used for health check.
|
|
332
|
+
:param int health_check_connect_timeout: Maximum timeout for health check responses. Unit: seconds. Valid values: **1** ~ **300**.
|
|
333
|
+
:param str health_check_domain: The domain name used for health check. Valid values:
|
|
334
|
+
- **$SERVER_IP**: uses the intranet IP of the backend server.
|
|
335
|
+
- **domain**: Specify a specific domain name. The length is limited to 1 to 80 characters. Only lowercase letters, numbers, dashes (-), and half-width periods (.) can be used.
|
|
336
|
+
> **NOTE:** This parameter takes effect only when **HealthCheckType** is **HTTP**.
|
|
337
|
+
:param bool health_check_enabled: Whether to enable health check. Valid values:
|
|
338
|
+
- **true**: on.
|
|
339
|
+
- **false**: closed.
|
|
340
|
+
:param Sequence[str] health_check_http_codes: Health status return code. Multiple status codes are separated by commas (,). Valid values: **http\\_2xx**, **http\\_3xx**, **http\\_4xx**, and **http\\_5xx**.
|
|
341
|
+
> **NOTE:** This parameter takes effect only when **HealthCheckType** is **HTTP**.
|
|
342
|
+
:param int health_check_interval: Time interval of health examination. Unit: seconds. Valid values: **5** ~ **50**.
|
|
343
|
+
:param str health_check_type: Health check protocol. Valid values: **TCP** or **HTTP**.
|
|
344
|
+
:param str health_check_url: Health check path.
|
|
345
|
+
> **NOTE:** This parameter takes effect only when **HealthCheckType** is **HTTP**.
|
|
346
|
+
:param int healthy_threshold: After the health check is successful, the health check status of the backend server is determined from **failed** to **successful**. Valid values: **2** to **10**.
|
|
347
|
+
:param str http_check_method: The health check method. Valid values: **GET** or **HEAD**.
|
|
348
|
+
> **NOTE:** This parameter takes effect only when **HealthCheckType** is **HTTP**.
|
|
349
|
+
:param int unhealthy_threshold: After the health check fails for many times in a row, the health check status of the backend server is determined from **Success** to **Failure**. Valid values: **2** to **10**.
|
|
389
350
|
"""
|
|
390
351
|
if health_check_connect_port is not None:
|
|
391
352
|
pulumi.set(__self__, "health_check_connect_port", health_check_connect_port)
|
|
@@ -414,11 +375,7 @@ class ServerGroupHealthCheck(dict):
|
|
|
414
375
|
@pulumi.getter(name="healthCheckConnectPort")
|
|
415
376
|
def health_check_connect_port(self) -> Optional[int]:
|
|
416
377
|
"""
|
|
417
|
-
The port
|
|
418
|
-
|
|
419
|
-
Valid values: `0` to `65535`.
|
|
420
|
-
|
|
421
|
-
Default value: `0`. If you set the value to 0, the port of the backend server is used for health checks.
|
|
378
|
+
The port of the backend server for health checks. Valid values: **0** ~ **65535**. **0** indicates that the port of the backend server is used for health check.
|
|
422
379
|
"""
|
|
423
380
|
return pulumi.get(self, "health_check_connect_port")
|
|
424
381
|
|
|
@@ -426,7 +383,7 @@ class ServerGroupHealthCheck(dict):
|
|
|
426
383
|
@pulumi.getter(name="healthCheckConnectTimeout")
|
|
427
384
|
def health_check_connect_timeout(self) -> Optional[int]:
|
|
428
385
|
"""
|
|
429
|
-
|
|
386
|
+
Maximum timeout for health check responses. Unit: seconds. Valid values: **1** ~ **300**.
|
|
430
387
|
"""
|
|
431
388
|
return pulumi.get(self, "health_check_connect_timeout")
|
|
432
389
|
|
|
@@ -434,8 +391,10 @@ class ServerGroupHealthCheck(dict):
|
|
|
434
391
|
@pulumi.getter(name="healthCheckDomain")
|
|
435
392
|
def health_check_domain(self) -> Optional[str]:
|
|
436
393
|
"""
|
|
437
|
-
The domain name
|
|
438
|
-
-
|
|
394
|
+
The domain name used for health check. Valid values:
|
|
395
|
+
- **$SERVER_IP**: uses the intranet IP of the backend server.
|
|
396
|
+
- **domain**: Specify a specific domain name. The length is limited to 1 to 80 characters. Only lowercase letters, numbers, dashes (-), and half-width periods (.) can be used.
|
|
397
|
+
> **NOTE:** This parameter takes effect only when **HealthCheckType** is **HTTP**.
|
|
439
398
|
"""
|
|
440
399
|
return pulumi.get(self, "health_check_domain")
|
|
441
400
|
|
|
@@ -443,7 +402,9 @@ class ServerGroupHealthCheck(dict):
|
|
|
443
402
|
@pulumi.getter(name="healthCheckEnabled")
|
|
444
403
|
def health_check_enabled(self) -> Optional[bool]:
|
|
445
404
|
"""
|
|
446
|
-
|
|
405
|
+
Whether to enable health check. Valid values:
|
|
406
|
+
- **true**: on.
|
|
407
|
+
- **false**: closed.
|
|
447
408
|
"""
|
|
448
409
|
return pulumi.get(self, "health_check_enabled")
|
|
449
410
|
|
|
@@ -451,9 +412,8 @@ class ServerGroupHealthCheck(dict):
|
|
|
451
412
|
@pulumi.getter(name="healthCheckHttpCodes")
|
|
452
413
|
def health_check_http_codes(self) -> Optional[Sequence[str]]:
|
|
453
414
|
"""
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
> **NOTE:** This parameter takes effect only when `HealthCheckType` is set to `HTTP`.
|
|
415
|
+
Health status return code. Multiple status codes are separated by commas (,). Valid values: **http\\_2xx**, **http\\_3xx**, **http\\_4xx**, and **http\\_5xx**.
|
|
416
|
+
> **NOTE:** This parameter takes effect only when **HealthCheckType** is **HTTP**.
|
|
457
417
|
"""
|
|
458
418
|
return pulumi.get(self, "health_check_http_codes")
|
|
459
419
|
|
|
@@ -461,11 +421,7 @@ class ServerGroupHealthCheck(dict):
|
|
|
461
421
|
@pulumi.getter(name="healthCheckInterval")
|
|
462
422
|
def health_check_interval(self) -> Optional[int]:
|
|
463
423
|
"""
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
Valid values: `5` to `50`.
|
|
467
|
-
|
|
468
|
-
Default value: `10`.
|
|
424
|
+
Time interval of health examination. Unit: seconds. Valid values: **5** ~ **50**.
|
|
469
425
|
"""
|
|
470
426
|
return pulumi.get(self, "health_check_interval")
|
|
471
427
|
|
|
@@ -473,7 +429,7 @@ class ServerGroupHealthCheck(dict):
|
|
|
473
429
|
@pulumi.getter(name="healthCheckType")
|
|
474
430
|
def health_check_type(self) -> Optional[str]:
|
|
475
431
|
"""
|
|
476
|
-
|
|
432
|
+
Health check protocol. Valid values: **TCP** or **HTTP**.
|
|
477
433
|
"""
|
|
478
434
|
return pulumi.get(self, "health_check_type")
|
|
479
435
|
|
|
@@ -481,11 +437,8 @@ class ServerGroupHealthCheck(dict):
|
|
|
481
437
|
@pulumi.getter(name="healthCheckUrl")
|
|
482
438
|
def health_check_url(self) -> Optional[str]:
|
|
483
439
|
"""
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
The path must be 1 to 80 characters in length, and can contain only letters, digits, and the following special characters: `- / . % ? # & =`. It can also contain the following extended characters: `_ ; ~ ! ( ) * [ ] @ $ ^ : ' , +`. The path must start with a forward slash (/).
|
|
487
|
-
|
|
488
|
-
> **NOTE:** This parameter takes effect only when `HealthCheckType` is set to `HTTP`.
|
|
440
|
+
Health check path.
|
|
441
|
+
> **NOTE:** This parameter takes effect only when **HealthCheckType** is **HTTP**.
|
|
489
442
|
"""
|
|
490
443
|
return pulumi.get(self, "health_check_url")
|
|
491
444
|
|
|
@@ -493,11 +446,7 @@ class ServerGroupHealthCheck(dict):
|
|
|
493
446
|
@pulumi.getter(name="healthyThreshold")
|
|
494
447
|
def healthy_threshold(self) -> Optional[int]:
|
|
495
448
|
"""
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
Valid values: `2` to `10`.
|
|
499
|
-
|
|
500
|
-
Default value: `2`.
|
|
449
|
+
After the health check is successful, the health check status of the backend server is determined from **failed** to **successful**. Valid values: **2** to **10**.
|
|
501
450
|
"""
|
|
502
451
|
return pulumi.get(self, "healthy_threshold")
|
|
503
452
|
|
|
@@ -505,9 +454,8 @@ class ServerGroupHealthCheck(dict):
|
|
|
505
454
|
@pulumi.getter(name="httpCheckMethod")
|
|
506
455
|
def http_check_method(self) -> Optional[str]:
|
|
507
456
|
"""
|
|
508
|
-
The
|
|
509
|
-
|
|
510
|
-
> **NOTE:** This parameter takes effect only when `HealthCheckType` is set to `HTTP`.
|
|
457
|
+
The health check method. Valid values: **GET** or **HEAD**.
|
|
458
|
+
> **NOTE:** This parameter takes effect only when **HealthCheckType** is **HTTP**.
|
|
511
459
|
"""
|
|
512
460
|
return pulumi.get(self, "http_check_method")
|
|
513
461
|
|
|
@@ -515,11 +463,7 @@ class ServerGroupHealthCheck(dict):
|
|
|
515
463
|
@pulumi.getter(name="unhealthyThreshold")
|
|
516
464
|
def unhealthy_threshold(self) -> Optional[int]:
|
|
517
465
|
"""
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
Valid values: `2` to `10`.
|
|
521
|
-
|
|
522
|
-
Default value: `2`.
|
|
466
|
+
After the health check fails for many times in a row, the health check status of the backend server is determined from **Success** to **Failure**. Valid values: **2** to **10**.
|
|
523
467
|
"""
|
|
524
468
|
return pulumi.get(self, "unhealthy_threshold")
|
|
525
469
|
|
|
@@ -1191,7 +1135,7 @@ class GetServerGroupServerAttachmentsAttachmentResult(dict):
|
|
|
1191
1135
|
zone_id: str):
|
|
1192
1136
|
"""
|
|
1193
1137
|
:param str description: The description of the backend server.
|
|
1194
|
-
:param str id: The ID of the server group.
|
|
1138
|
+
:param str id: The ID of the server group.
|
|
1195
1139
|
:param int port: The port used by the backend server.
|
|
1196
1140
|
:param str server_group_id: The ID of the server group.
|
|
1197
1141
|
:param str server_id: The ID of the server.
|
|
@@ -1224,7 +1168,7 @@ class GetServerGroupServerAttachmentsAttachmentResult(dict):
|
|
|
1224
1168
|
@pulumi.getter
|
|
1225
1169
|
def id(self) -> str:
|
|
1226
1170
|
"""
|
|
1227
|
-
The ID of the server group.
|
|
1171
|
+
The ID of the server group.
|
|
1228
1172
|
"""
|
|
1229
1173
|
return pulumi.get(self, "id")
|
|
1230
1174
|
|
|
@@ -26,13 +26,9 @@ class SecurityPolicyArgs:
|
|
|
26
26
|
- TLS 1.2 supports the following cipher suites: `ECDHE-ECDSA-AES128-SHA`, `ECDHE-ECDSA-AES256-SHA`, `ECDHE-RSA-AES128-SHA`, `ECDHE-RSA-AES256-SHA`, `AES128-SHA`, `AES256-SHA, DES-CBC3-SHA`, `ECDHE-ECDSA-AES128-GCM-SHA256`, `ECDHE-ECDSA-AES256-GCM-SHA384`, `ECDHE-ECDSA-AES128-SHA256`, `ECDHE-ECDSA-AES256-SHA384`, `ECDHE-RSA-AES128-GCM-SHA256`, `ECDHE-RSA-AES256-GCM-SHA384`, `ECDHE-RSA-AES128-SHA256`, `ECDHE-RSA-AES256-SHA384`, `AES128-GCM-SHA256`, `AES256-GCM-SHA384`, `AES128-SHA256`, `AES256-SHA256`
|
|
27
27
|
- TLS 1.3 supports the following cipher suites: `TLS_AES_128_GCM_SHA256`, `TLS_AES_256_GCM_SHA384`, `TLS_CHACHA20_POLY1305_SHA256`, `TLS_AES_128_CCM_SHA256`, `TLS_AES_128_CCM_8_SHA256`.
|
|
28
28
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tls_versions: The supported versions of the Transport Layer Security (TLS) protocol. Valid values: `TLSv1.0`, `TLSv1.1`, `TLSv1.2`, and `TLSv1.3`. You can specify at most four TLS versions.
|
|
29
|
-
:param pulumi.Input[str] resource_group_id: The ID of the
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
:param pulumi.Input[str] security_policy_name: The name of the security policy.
|
|
33
|
-
|
|
34
|
-
The name must be 1 to 200 characters in length, and can contain letters, digits, periods (.), underscores (\\_), and hyphens (-).
|
|
35
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag of the resource
|
|
29
|
+
:param pulumi.Input[str] resource_group_id: The ID of the resource group.
|
|
30
|
+
:param pulumi.Input[str] security_policy_name: The name of the security policy. The name must be 1 to 200 characters in length, and can contain letters, digits, periods (.), underscores (_), and hyphens (-).
|
|
31
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag of the resource.
|
|
36
32
|
"""
|
|
37
33
|
pulumi.set(__self__, "ciphers", ciphers)
|
|
38
34
|
pulumi.set(__self__, "tls_versions", tls_versions)
|
|
@@ -74,9 +70,7 @@ class SecurityPolicyArgs:
|
|
|
74
70
|
@pulumi.getter(name="resourceGroupId")
|
|
75
71
|
def resource_group_id(self) -> Optional[pulumi.Input[str]]:
|
|
76
72
|
"""
|
|
77
|
-
The ID of the
|
|
78
|
-
|
|
79
|
-
You can log on to the [Resource Management console](https://resourcemanager.console.aliyun.com/resource-groups) to view resource group IDs.
|
|
73
|
+
The ID of the resource group.
|
|
80
74
|
"""
|
|
81
75
|
return pulumi.get(self, "resource_group_id")
|
|
82
76
|
|
|
@@ -88,9 +82,7 @@ class SecurityPolicyArgs:
|
|
|
88
82
|
@pulumi.getter(name="securityPolicyName")
|
|
89
83
|
def security_policy_name(self) -> Optional[pulumi.Input[str]]:
|
|
90
84
|
"""
|
|
91
|
-
The name of the security policy.
|
|
92
|
-
|
|
93
|
-
The name must be 1 to 200 characters in length, and can contain letters, digits, periods (.), underscores (\\_), and hyphens (-).
|
|
85
|
+
The name of the security policy. The name must be 1 to 200 characters in length, and can contain letters, digits, periods (.), underscores (_), and hyphens (-).
|
|
94
86
|
"""
|
|
95
87
|
return pulumi.get(self, "security_policy_name")
|
|
96
88
|
|
|
@@ -102,7 +94,7 @@ class SecurityPolicyArgs:
|
|
|
102
94
|
@pulumi.getter
|
|
103
95
|
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
104
96
|
"""
|
|
105
|
-
The tag of the resource
|
|
97
|
+
The tag of the resource.
|
|
106
98
|
"""
|
|
107
99
|
return pulumi.get(self, "tags")
|
|
108
100
|
|
|
@@ -126,14 +118,10 @@ class _SecurityPolicyState:
|
|
|
126
118
|
- TLS 1.0 and TLS 1.1 support the following cipher suites: `ECDHE-ECDSA-AES128-SHA`, `ECDHE-ECDSA-AES256-SHA`, `ECDHE-RSA-AES128-SHA`, `ECDHE-RSA-AES256-SHA`, `AES128-SHA`, `AES256-SHA`, `DES-CBC3-SHA`
|
|
127
119
|
- TLS 1.2 supports the following cipher suites: `ECDHE-ECDSA-AES128-SHA`, `ECDHE-ECDSA-AES256-SHA`, `ECDHE-RSA-AES128-SHA`, `ECDHE-RSA-AES256-SHA`, `AES128-SHA`, `AES256-SHA, DES-CBC3-SHA`, `ECDHE-ECDSA-AES128-GCM-SHA256`, `ECDHE-ECDSA-AES256-GCM-SHA384`, `ECDHE-ECDSA-AES128-SHA256`, `ECDHE-ECDSA-AES256-SHA384`, `ECDHE-RSA-AES128-GCM-SHA256`, `ECDHE-RSA-AES256-GCM-SHA384`, `ECDHE-RSA-AES128-SHA256`, `ECDHE-RSA-AES256-SHA384`, `AES128-GCM-SHA256`, `AES256-GCM-SHA384`, `AES128-SHA256`, `AES256-SHA256`
|
|
128
120
|
- TLS 1.3 supports the following cipher suites: `TLS_AES_128_GCM_SHA256`, `TLS_AES_256_GCM_SHA384`, `TLS_CHACHA20_POLY1305_SHA256`, `TLS_AES_128_CCM_SHA256`, `TLS_AES_128_CCM_8_SHA256`.
|
|
129
|
-
:param pulumi.Input[str] resource_group_id: The ID of the
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
:param pulumi.Input[str]
|
|
133
|
-
|
|
134
|
-
The name must be 1 to 200 characters in length, and can contain letters, digits, periods (.), underscores (\\_), and hyphens (-).
|
|
135
|
-
:param pulumi.Input[str] status: The status of the resource
|
|
136
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag of the resource
|
|
121
|
+
:param pulumi.Input[str] resource_group_id: The ID of the resource group.
|
|
122
|
+
:param pulumi.Input[str] security_policy_name: The name of the security policy. The name must be 1 to 200 characters in length, and can contain letters, digits, periods (.), underscores (_), and hyphens (-).
|
|
123
|
+
:param pulumi.Input[str] status: The status of the resource.
|
|
124
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag of the resource.
|
|
137
125
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tls_versions: The supported versions of the Transport Layer Security (TLS) protocol. Valid values: `TLSv1.0`, `TLSv1.1`, `TLSv1.2`, and `TLSv1.3`. You can specify at most four TLS versions.
|
|
138
126
|
"""
|
|
139
127
|
if ciphers is not None:
|
|
@@ -168,9 +156,7 @@ class _SecurityPolicyState:
|
|
|
168
156
|
@pulumi.getter(name="resourceGroupId")
|
|
169
157
|
def resource_group_id(self) -> Optional[pulumi.Input[str]]:
|
|
170
158
|
"""
|
|
171
|
-
The ID of the
|
|
172
|
-
|
|
173
|
-
You can log on to the [Resource Management console](https://resourcemanager.console.aliyun.com/resource-groups) to view resource group IDs.
|
|
159
|
+
The ID of the resource group.
|
|
174
160
|
"""
|
|
175
161
|
return pulumi.get(self, "resource_group_id")
|
|
176
162
|
|
|
@@ -182,9 +168,7 @@ class _SecurityPolicyState:
|
|
|
182
168
|
@pulumi.getter(name="securityPolicyName")
|
|
183
169
|
def security_policy_name(self) -> Optional[pulumi.Input[str]]:
|
|
184
170
|
"""
|
|
185
|
-
The name of the security policy.
|
|
186
|
-
|
|
187
|
-
The name must be 1 to 200 characters in length, and can contain letters, digits, periods (.), underscores (\\_), and hyphens (-).
|
|
171
|
+
The name of the security policy. The name must be 1 to 200 characters in length, and can contain letters, digits, periods (.), underscores (_), and hyphens (-).
|
|
188
172
|
"""
|
|
189
173
|
return pulumi.get(self, "security_policy_name")
|
|
190
174
|
|
|
@@ -196,7 +180,7 @@ class _SecurityPolicyState:
|
|
|
196
180
|
@pulumi.getter
|
|
197
181
|
def status(self) -> Optional[pulumi.Input[str]]:
|
|
198
182
|
"""
|
|
199
|
-
The status of the resource
|
|
183
|
+
The status of the resource.
|
|
200
184
|
"""
|
|
201
185
|
return pulumi.get(self, "status")
|
|
202
186
|
|
|
@@ -208,7 +192,7 @@ class _SecurityPolicyState:
|
|
|
208
192
|
@pulumi.getter
|
|
209
193
|
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
210
194
|
"""
|
|
211
|
-
The tag of the resource
|
|
195
|
+
The tag of the resource.
|
|
212
196
|
"""
|
|
213
197
|
return pulumi.get(self, "tags")
|
|
214
198
|
|
|
@@ -292,13 +276,9 @@ class SecurityPolicy(pulumi.CustomResource):
|
|
|
292
276
|
- TLS 1.0 and TLS 1.1 support the following cipher suites: `ECDHE-ECDSA-AES128-SHA`, `ECDHE-ECDSA-AES256-SHA`, `ECDHE-RSA-AES128-SHA`, `ECDHE-RSA-AES256-SHA`, `AES128-SHA`, `AES256-SHA`, `DES-CBC3-SHA`
|
|
293
277
|
- TLS 1.2 supports the following cipher suites: `ECDHE-ECDSA-AES128-SHA`, `ECDHE-ECDSA-AES256-SHA`, `ECDHE-RSA-AES128-SHA`, `ECDHE-RSA-AES256-SHA`, `AES128-SHA`, `AES256-SHA, DES-CBC3-SHA`, `ECDHE-ECDSA-AES128-GCM-SHA256`, `ECDHE-ECDSA-AES256-GCM-SHA384`, `ECDHE-ECDSA-AES128-SHA256`, `ECDHE-ECDSA-AES256-SHA384`, `ECDHE-RSA-AES128-GCM-SHA256`, `ECDHE-RSA-AES256-GCM-SHA384`, `ECDHE-RSA-AES128-SHA256`, `ECDHE-RSA-AES256-SHA384`, `AES128-GCM-SHA256`, `AES256-GCM-SHA384`, `AES128-SHA256`, `AES256-SHA256`
|
|
294
278
|
- TLS 1.3 supports the following cipher suites: `TLS_AES_128_GCM_SHA256`, `TLS_AES_256_GCM_SHA384`, `TLS_CHACHA20_POLY1305_SHA256`, `TLS_AES_128_CCM_SHA256`, `TLS_AES_128_CCM_8_SHA256`.
|
|
295
|
-
:param pulumi.Input[str] resource_group_id: The ID of the
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
:param pulumi.Input[str] security_policy_name: The name of the security policy.
|
|
299
|
-
|
|
300
|
-
The name must be 1 to 200 characters in length, and can contain letters, digits, periods (.), underscores (\\_), and hyphens (-).
|
|
301
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag of the resource
|
|
279
|
+
:param pulumi.Input[str] resource_group_id: The ID of the resource group.
|
|
280
|
+
:param pulumi.Input[str] security_policy_name: The name of the security policy. The name must be 1 to 200 characters in length, and can contain letters, digits, periods (.), underscores (_), and hyphens (-).
|
|
281
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag of the resource.
|
|
302
282
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tls_versions: The supported versions of the Transport Layer Security (TLS) protocol. Valid values: `TLSv1.0`, `TLSv1.1`, `TLSv1.2`, and `TLSv1.3`. You can specify at most four TLS versions.
|
|
303
283
|
"""
|
|
304
284
|
...
|
|
@@ -419,14 +399,10 @@ class SecurityPolicy(pulumi.CustomResource):
|
|
|
419
399
|
- TLS 1.0 and TLS 1.1 support the following cipher suites: `ECDHE-ECDSA-AES128-SHA`, `ECDHE-ECDSA-AES256-SHA`, `ECDHE-RSA-AES128-SHA`, `ECDHE-RSA-AES256-SHA`, `AES128-SHA`, `AES256-SHA`, `DES-CBC3-SHA`
|
|
420
400
|
- TLS 1.2 supports the following cipher suites: `ECDHE-ECDSA-AES128-SHA`, `ECDHE-ECDSA-AES256-SHA`, `ECDHE-RSA-AES128-SHA`, `ECDHE-RSA-AES256-SHA`, `AES128-SHA`, `AES256-SHA, DES-CBC3-SHA`, `ECDHE-ECDSA-AES128-GCM-SHA256`, `ECDHE-ECDSA-AES256-GCM-SHA384`, `ECDHE-ECDSA-AES128-SHA256`, `ECDHE-ECDSA-AES256-SHA384`, `ECDHE-RSA-AES128-GCM-SHA256`, `ECDHE-RSA-AES256-GCM-SHA384`, `ECDHE-RSA-AES128-SHA256`, `ECDHE-RSA-AES256-SHA384`, `AES128-GCM-SHA256`, `AES256-GCM-SHA384`, `AES128-SHA256`, `AES256-SHA256`
|
|
421
401
|
- TLS 1.3 supports the following cipher suites: `TLS_AES_128_GCM_SHA256`, `TLS_AES_256_GCM_SHA384`, `TLS_CHACHA20_POLY1305_SHA256`, `TLS_AES_128_CCM_SHA256`, `TLS_AES_128_CCM_8_SHA256`.
|
|
422
|
-
:param pulumi.Input[str] resource_group_id: The ID of the
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
:param pulumi.Input[str]
|
|
426
|
-
|
|
427
|
-
The name must be 1 to 200 characters in length, and can contain letters, digits, periods (.), underscores (\\_), and hyphens (-).
|
|
428
|
-
:param pulumi.Input[str] status: The status of the resource
|
|
429
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag of the resource
|
|
402
|
+
:param pulumi.Input[str] resource_group_id: The ID of the resource group.
|
|
403
|
+
:param pulumi.Input[str] security_policy_name: The name of the security policy. The name must be 1 to 200 characters in length, and can contain letters, digits, periods (.), underscores (_), and hyphens (-).
|
|
404
|
+
:param pulumi.Input[str] status: The status of the resource.
|
|
405
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag of the resource.
|
|
430
406
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tls_versions: The supported versions of the Transport Layer Security (TLS) protocol. Valid values: `TLSv1.0`, `TLSv1.1`, `TLSv1.2`, and `TLSv1.3`. You can specify at most four TLS versions.
|
|
431
407
|
"""
|
|
432
408
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -456,9 +432,7 @@ class SecurityPolicy(pulumi.CustomResource):
|
|
|
456
432
|
@pulumi.getter(name="resourceGroupId")
|
|
457
433
|
def resource_group_id(self) -> pulumi.Output[str]:
|
|
458
434
|
"""
|
|
459
|
-
The ID of the
|
|
460
|
-
|
|
461
|
-
You can log on to the [Resource Management console](https://resourcemanager.console.aliyun.com/resource-groups) to view resource group IDs.
|
|
435
|
+
The ID of the resource group.
|
|
462
436
|
"""
|
|
463
437
|
return pulumi.get(self, "resource_group_id")
|
|
464
438
|
|
|
@@ -466,9 +440,7 @@ class SecurityPolicy(pulumi.CustomResource):
|
|
|
466
440
|
@pulumi.getter(name="securityPolicyName")
|
|
467
441
|
def security_policy_name(self) -> pulumi.Output[str]:
|
|
468
442
|
"""
|
|
469
|
-
The name of the security policy.
|
|
470
|
-
|
|
471
|
-
The name must be 1 to 200 characters in length, and can contain letters, digits, periods (.), underscores (\\_), and hyphens (-).
|
|
443
|
+
The name of the security policy. The name must be 1 to 200 characters in length, and can contain letters, digits, periods (.), underscores (_), and hyphens (-).
|
|
472
444
|
"""
|
|
473
445
|
return pulumi.get(self, "security_policy_name")
|
|
474
446
|
|
|
@@ -476,7 +448,7 @@ class SecurityPolicy(pulumi.CustomResource):
|
|
|
476
448
|
@pulumi.getter
|
|
477
449
|
def status(self) -> pulumi.Output[str]:
|
|
478
450
|
"""
|
|
479
|
-
The status of the resource
|
|
451
|
+
The status of the resource.
|
|
480
452
|
"""
|
|
481
453
|
return pulumi.get(self, "status")
|
|
482
454
|
|
|
@@ -484,7 +456,7 @@ class SecurityPolicy(pulumi.CustomResource):
|
|
|
484
456
|
@pulumi.getter
|
|
485
457
|
def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
|
486
458
|
"""
|
|
487
|
-
The tag of the resource
|
|
459
|
+
The tag of the resource.
|
|
488
460
|
"""
|
|
489
461
|
return pulumi.get(self, "tags")
|
|
490
462
|
|