pulumi-alicloud 3.56.0a1717132537__py3-none-any.whl → 3.56.0a1717175543__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pulumi-alicloud might be problematic. Click here for more details.

Files changed (43) hide show
  1. pulumi_alicloud/__init__.py +96 -0
  2. pulumi_alicloud/alikafka/instance.py +47 -0
  3. pulumi_alicloud/apigateway/__init__.py +1 -0
  4. pulumi_alicloud/apigateway/_inputs.py +40 -0
  5. pulumi_alicloud/apigateway/access_control_list.py +322 -0
  6. pulumi_alicloud/apigateway/get_apis.py +96 -23
  7. pulumi_alicloud/apigateway/outputs.py +72 -14
  8. pulumi_alicloud/apigateway/plugin.py +225 -73
  9. pulumi_alicloud/cen/get_transit_router_vpc_attachments.py +171 -18
  10. pulumi_alicloud/cen/outputs.py +51 -22
  11. pulumi_alicloud/cloudfirewall/__init__.py +2 -0
  12. pulumi_alicloud/cloudfirewall/_inputs.py +68 -0
  13. pulumi_alicloud/cloudfirewall/nat_firewall.py +811 -0
  14. pulumi_alicloud/cloudfirewall/nat_firewall_control_policy.py +1589 -0
  15. pulumi_alicloud/cloudfirewall/outputs.py +75 -0
  16. pulumi_alicloud/ecs/security_group_rule.py +75 -53
  17. pulumi_alicloud/ess/_inputs.py +56 -0
  18. pulumi_alicloud/ess/outputs.py +61 -0
  19. pulumi_alicloud/ess/scaling_group.py +101 -7
  20. pulumi_alicloud/kms/key.py +251 -333
  21. pulumi_alicloud/kms/secret.py +210 -125
  22. pulumi_alicloud/nas/__init__.py +2 -0
  23. pulumi_alicloud/nas/_inputs.py +126 -0
  24. pulumi_alicloud/nas/access_point.py +743 -0
  25. pulumi_alicloud/nas/outputs.py +128 -0
  26. pulumi_alicloud/oss/__init__.py +7 -0
  27. pulumi_alicloud/oss/account_public_access_block.py +200 -0
  28. pulumi_alicloud/oss/bucket_access_monitor.py +206 -0
  29. pulumi_alicloud/oss/bucket_data_redundancy_transition.py +290 -0
  30. pulumi_alicloud/oss/bucket_meta_query.py +270 -0
  31. pulumi_alicloud/oss/bucket_public_access_block.py +258 -0
  32. pulumi_alicloud/oss/bucket_transfer_acceleration.py +205 -0
  33. pulumi_alicloud/oss/bucket_user_defined_log_fields.py +328 -0
  34. pulumi_alicloud/pulumi-plugin.json +1 -1
  35. pulumi_alicloud/redis/tair_instance.py +188 -0
  36. pulumi_alicloud/sls/__init__.py +1 -0
  37. pulumi_alicloud/sls/_inputs.py +384 -0
  38. pulumi_alicloud/sls/outputs.py +358 -0
  39. pulumi_alicloud/sls/scheduled_sql.py +523 -0
  40. {pulumi_alicloud-3.56.0a1717132537.dist-info → pulumi_alicloud-3.56.0a1717175543.dist-info}/METADATA +1 -1
  41. {pulumi_alicloud-3.56.0a1717132537.dist-info → pulumi_alicloud-3.56.0a1717175543.dist-info}/RECORD +43 -30
  42. {pulumi_alicloud-3.56.0a1717132537.dist-info → pulumi_alicloud-3.56.0a1717175543.dist-info}/WHEEL +0 -0
  43. {pulumi_alicloud-3.56.0a1717132537.dist-info → pulumi_alicloud-3.56.0a1717175543.dist-info}/top_level.txt +0 -0
@@ -23,15 +23,23 @@ class PluginArgs:
23
23
  The set of arguments for constructing a Plugin resource.
24
24
  :param pulumi.Input[str] plugin_data: The definition statement of the plug-in. Plug-in definition statements in the JSON and YAML formats are supported.
25
25
  :param pulumi.Input[str] plugin_name: The name of the plug-in that you want to create. It can contain uppercase English letters, lowercase English letters, Chinese characters, numbers, and underscores (_). It must be 4 to 50 characters in length and cannot start with an underscore (_).
26
- :param pulumi.Input[str] plugin_type: The type of the plug-in. Valid values: `backendSignature`, `caching`, `cors`, `ipControl`, `jwtAuth`, `trafficControl`.
27
- - ipControl: indicates IP address-based access control.
28
- - trafficControl: indicates throttling.
29
- - backendSignature: indicates backend signature.
30
- - jwtAuth: indicates JWT (OpenId Connect).
31
- - cors: indicates cross-origin resource access (CORS).
32
- - caching: indicates caching.
26
+ :param pulumi.Input[str] plugin_type: The type of the plug-in. Valid values:
27
+ - "trafficControl"
28
+ - "ipControl"
29
+ - "backendSignature"
30
+ - "jwtAuth"
31
+ - "basicAuth"
32
+ - "cors"
33
+ - "caching"
34
+ - "routing"
35
+ - "accessControl"
36
+ - "errorMapping"
37
+ - "circuitBreaker"
38
+ - "remoteAuth"
39
+ - "logMask"
40
+ - "transformer".
33
41
  :param pulumi.Input[str] description: The description of the plug-in, which cannot exceed 200 characters.
34
- :param pulumi.Input[Mapping[str, Any]] tags: A mapping of tags to assign to the resource.
42
+ :param pulumi.Input[Mapping[str, Any]] tags: The tag of the resource.
35
43
  """
36
44
  pulumi.set(__self__, "plugin_data", plugin_data)
37
45
  pulumi.set(__self__, "plugin_name", plugin_name)
@@ -69,13 +77,21 @@ class PluginArgs:
69
77
  @pulumi.getter(name="pluginType")
70
78
  def plugin_type(self) -> pulumi.Input[str]:
71
79
  """
72
- The type of the plug-in. Valid values: `backendSignature`, `caching`, `cors`, `ipControl`, `jwtAuth`, `trafficControl`.
73
- - ipControl: indicates IP address-based access control.
74
- - trafficControl: indicates throttling.
75
- - backendSignature: indicates backend signature.
76
- - jwtAuth: indicates JWT (OpenId Connect).
77
- - cors: indicates cross-origin resource access (CORS).
78
- - caching: indicates caching.
80
+ The type of the plug-in. Valid values:
81
+ - "trafficControl"
82
+ - "ipControl"
83
+ - "backendSignature"
84
+ - "jwtAuth"
85
+ - "basicAuth"
86
+ - "cors"
87
+ - "caching"
88
+ - "routing"
89
+ - "accessControl"
90
+ - "errorMapping"
91
+ - "circuitBreaker"
92
+ - "remoteAuth"
93
+ - "logMask"
94
+ - "transformer".
79
95
  """
80
96
  return pulumi.get(self, "plugin_type")
81
97
 
@@ -99,7 +115,7 @@ class PluginArgs:
99
115
  @pulumi.getter
100
116
  def tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
101
117
  """
102
- A mapping of tags to assign to the resource.
118
+ The tag of the resource.
103
119
  """
104
120
  return pulumi.get(self, "tags")
105
121
 
@@ -111,6 +127,7 @@ class PluginArgs:
111
127
  @pulumi.input_type
112
128
  class _PluginState:
113
129
  def __init__(__self__, *,
130
+ create_time: Optional[pulumi.Input[str]] = None,
114
131
  description: Optional[pulumi.Input[str]] = None,
115
132
  plugin_data: Optional[pulumi.Input[str]] = None,
116
133
  plugin_name: Optional[pulumi.Input[str]] = None,
@@ -118,18 +135,29 @@ class _PluginState:
118
135
  tags: Optional[pulumi.Input[Mapping[str, Any]]] = None):
119
136
  """
120
137
  Input properties used for looking up and filtering Plugin resources.
138
+ :param pulumi.Input[str] create_time: Create time.
121
139
  :param pulumi.Input[str] description: The description of the plug-in, which cannot exceed 200 characters.
122
140
  :param pulumi.Input[str] plugin_data: The definition statement of the plug-in. Plug-in definition statements in the JSON and YAML formats are supported.
123
141
  :param pulumi.Input[str] plugin_name: The name of the plug-in that you want to create. It can contain uppercase English letters, lowercase English letters, Chinese characters, numbers, and underscores (_). It must be 4 to 50 characters in length and cannot start with an underscore (_).
124
- :param pulumi.Input[str] plugin_type: The type of the plug-in. Valid values: `backendSignature`, `caching`, `cors`, `ipControl`, `jwtAuth`, `trafficControl`.
125
- - ipControl: indicates IP address-based access control.
126
- - trafficControl: indicates throttling.
127
- - backendSignature: indicates backend signature.
128
- - jwtAuth: indicates JWT (OpenId Connect).
129
- - cors: indicates cross-origin resource access (CORS).
130
- - caching: indicates caching.
131
- :param pulumi.Input[Mapping[str, Any]] tags: A mapping of tags to assign to the resource.
132
- """
142
+ :param pulumi.Input[str] plugin_type: The type of the plug-in. Valid values:
143
+ - "trafficControl"
144
+ - "ipControl"
145
+ - "backendSignature"
146
+ - "jwtAuth"
147
+ - "basicAuth"
148
+ - "cors"
149
+ - "caching"
150
+ - "routing"
151
+ - "accessControl"
152
+ - "errorMapping"
153
+ - "circuitBreaker"
154
+ - "remoteAuth"
155
+ - "logMask"
156
+ - "transformer".
157
+ :param pulumi.Input[Mapping[str, Any]] tags: The tag of the resource.
158
+ """
159
+ if create_time is not None:
160
+ pulumi.set(__self__, "create_time", create_time)
133
161
  if description is not None:
134
162
  pulumi.set(__self__, "description", description)
135
163
  if plugin_data is not None:
@@ -141,6 +169,18 @@ class _PluginState:
141
169
  if tags is not None:
142
170
  pulumi.set(__self__, "tags", tags)
143
171
 
172
+ @property
173
+ @pulumi.getter(name="createTime")
174
+ def create_time(self) -> Optional[pulumi.Input[str]]:
175
+ """
176
+ Create time.
177
+ """
178
+ return pulumi.get(self, "create_time")
179
+
180
+ @create_time.setter
181
+ def create_time(self, value: Optional[pulumi.Input[str]]):
182
+ pulumi.set(self, "create_time", value)
183
+
144
184
  @property
145
185
  @pulumi.getter
146
186
  def description(self) -> Optional[pulumi.Input[str]]:
@@ -181,13 +221,21 @@ class _PluginState:
181
221
  @pulumi.getter(name="pluginType")
182
222
  def plugin_type(self) -> Optional[pulumi.Input[str]]:
183
223
  """
184
- The type of the plug-in. Valid values: `backendSignature`, `caching`, `cors`, `ipControl`, `jwtAuth`, `trafficControl`.
185
- - ipControl: indicates IP address-based access control.
186
- - trafficControl: indicates throttling.
187
- - backendSignature: indicates backend signature.
188
- - jwtAuth: indicates JWT (OpenId Connect).
189
- - cors: indicates cross-origin resource access (CORS).
190
- - caching: indicates caching.
224
+ The type of the plug-in. Valid values:
225
+ - "trafficControl"
226
+ - "ipControl"
227
+ - "backendSignature"
228
+ - "jwtAuth"
229
+ - "basicAuth"
230
+ - "cors"
231
+ - "caching"
232
+ - "routing"
233
+ - "accessControl"
234
+ - "errorMapping"
235
+ - "circuitBreaker"
236
+ - "remoteAuth"
237
+ - "logMask"
238
+ - "transformer".
191
239
  """
192
240
  return pulumi.get(self, "plugin_type")
193
241
 
@@ -199,7 +247,7 @@ class _PluginState:
199
247
  @pulumi.getter
200
248
  def tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
201
249
  """
202
- A mapping of tags to assign to the resource.
250
+ The tag of the resource.
203
251
  """
204
252
  return pulumi.get(self, "tags")
205
253
 
@@ -232,17 +280,51 @@ class Plugin(pulumi.CustomResource):
232
280
 
233
281
  ```python
234
282
  import pulumi
283
+ import json
235
284
  import pulumi_alicloud as alicloud
236
285
 
286
+ config = pulumi.Config()
287
+ name = config.get("name")
288
+ if name is None:
289
+ name = "terraform_example"
237
290
  default = alicloud.apigateway.Plugin("default",
238
- description="tf_example",
239
- plugin_name="tf_example",
240
- plugin_data="{\\"allowOrigins\\": \\"api.foo.com\\",\\"allowMethods\\": \\"GET,POST,PUT,DELETE,HEAD,OPTIONS,PATCH\\",\\"allowHeaders\\": \\"Authorization,Accept,Accept-Ranges,Cache-Control,Range,Date,Content-Type,Content-Length,Content-MD5,User-Agent,X-Ca-Signature,X-Ca-Signature-Headers,X-Ca-Signature-Method,X-Ca-Key,X-Ca-Timestamp,X-Ca-Nonce,X-Ca-Stage,X-Ca-Request-Mode,x-ca-deviceid\\",\\"exposeHeaders\\": \\"Content-MD5,Server,Date,Latency,X-Ca-Request-Id,X-Ca-Error-Code,X-Ca-Error-Message\\",\\"maxAge\\": 172800,\\"allowCredentials\\": true}",
241
- plugin_type="cors",
242
- tags={
243
- "Created": "TF",
244
- "For": "example",
245
- })
291
+ description=name,
292
+ plugin_name=name,
293
+ plugin_data=json.dumps({
294
+ "routes": [
295
+ {
296
+ "name": "Vip",
297
+ "condition": "$CaAppId = 123456",
298
+ "backend": {
299
+ "type": "HTTP-VPC",
300
+ "vpcAccessName": "slbAccessForVip",
301
+ },
302
+ },
303
+ {
304
+ "name": "MockForOldClient",
305
+ "condition": "$ClientVersion < '2.0.5'",
306
+ "backend": {
307
+ "type": "MOCK",
308
+ "statusCode": 400,
309
+ "mockBody": "This version is not supported!!!",
310
+ },
311
+ },
312
+ {
313
+ "name": "BlueGreenPercent05",
314
+ "condition": "1 = 1",
315
+ "backend": {
316
+ "type": "HTTP",
317
+ "address": "https://beta-version.api.foo.com",
318
+ },
319
+ "constant-parameters": [{
320
+ "name": "x-route-blue-green",
321
+ "location": "header",
322
+ "value": "route-blue-green",
323
+ }],
324
+ },
325
+ ],
326
+ }),
327
+ plugin_type="routing")
246
328
  ```
247
329
 
248
330
  ## Import
@@ -258,14 +340,22 @@ class Plugin(pulumi.CustomResource):
258
340
  :param pulumi.Input[str] description: The description of the plug-in, which cannot exceed 200 characters.
259
341
  :param pulumi.Input[str] plugin_data: The definition statement of the plug-in. Plug-in definition statements in the JSON and YAML formats are supported.
260
342
  :param pulumi.Input[str] plugin_name: The name of the plug-in that you want to create. It can contain uppercase English letters, lowercase English letters, Chinese characters, numbers, and underscores (_). It must be 4 to 50 characters in length and cannot start with an underscore (_).
261
- :param pulumi.Input[str] plugin_type: The type of the plug-in. Valid values: `backendSignature`, `caching`, `cors`, `ipControl`, `jwtAuth`, `trafficControl`.
262
- - ipControl: indicates IP address-based access control.
263
- - trafficControl: indicates throttling.
264
- - backendSignature: indicates backend signature.
265
- - jwtAuth: indicates JWT (OpenId Connect).
266
- - cors: indicates cross-origin resource access (CORS).
267
- - caching: indicates caching.
268
- :param pulumi.Input[Mapping[str, Any]] tags: A mapping of tags to assign to the resource.
343
+ :param pulumi.Input[str] plugin_type: The type of the plug-in. Valid values:
344
+ - "trafficControl"
345
+ - "ipControl"
346
+ - "backendSignature"
347
+ - "jwtAuth"
348
+ - "basicAuth"
349
+ - "cors"
350
+ - "caching"
351
+ - "routing"
352
+ - "accessControl"
353
+ - "errorMapping"
354
+ - "circuitBreaker"
355
+ - "remoteAuth"
356
+ - "logMask"
357
+ - "transformer".
358
+ :param pulumi.Input[Mapping[str, Any]] tags: The tag of the resource.
269
359
  """
270
360
  ...
271
361
  @overload
@@ -286,17 +376,51 @@ class Plugin(pulumi.CustomResource):
286
376
 
287
377
  ```python
288
378
  import pulumi
379
+ import json
289
380
  import pulumi_alicloud as alicloud
290
381
 
382
+ config = pulumi.Config()
383
+ name = config.get("name")
384
+ if name is None:
385
+ name = "terraform_example"
291
386
  default = alicloud.apigateway.Plugin("default",
292
- description="tf_example",
293
- plugin_name="tf_example",
294
- plugin_data="{\\"allowOrigins\\": \\"api.foo.com\\",\\"allowMethods\\": \\"GET,POST,PUT,DELETE,HEAD,OPTIONS,PATCH\\",\\"allowHeaders\\": \\"Authorization,Accept,Accept-Ranges,Cache-Control,Range,Date,Content-Type,Content-Length,Content-MD5,User-Agent,X-Ca-Signature,X-Ca-Signature-Headers,X-Ca-Signature-Method,X-Ca-Key,X-Ca-Timestamp,X-Ca-Nonce,X-Ca-Stage,X-Ca-Request-Mode,x-ca-deviceid\\",\\"exposeHeaders\\": \\"Content-MD5,Server,Date,Latency,X-Ca-Request-Id,X-Ca-Error-Code,X-Ca-Error-Message\\",\\"maxAge\\": 172800,\\"allowCredentials\\": true}",
295
- plugin_type="cors",
296
- tags={
297
- "Created": "TF",
298
- "For": "example",
299
- })
387
+ description=name,
388
+ plugin_name=name,
389
+ plugin_data=json.dumps({
390
+ "routes": [
391
+ {
392
+ "name": "Vip",
393
+ "condition": "$CaAppId = 123456",
394
+ "backend": {
395
+ "type": "HTTP-VPC",
396
+ "vpcAccessName": "slbAccessForVip",
397
+ },
398
+ },
399
+ {
400
+ "name": "MockForOldClient",
401
+ "condition": "$ClientVersion < '2.0.5'",
402
+ "backend": {
403
+ "type": "MOCK",
404
+ "statusCode": 400,
405
+ "mockBody": "This version is not supported!!!",
406
+ },
407
+ },
408
+ {
409
+ "name": "BlueGreenPercent05",
410
+ "condition": "1 = 1",
411
+ "backend": {
412
+ "type": "HTTP",
413
+ "address": "https://beta-version.api.foo.com",
414
+ },
415
+ "constant-parameters": [{
416
+ "name": "x-route-blue-green",
417
+ "location": "header",
418
+ "value": "route-blue-green",
419
+ }],
420
+ },
421
+ ],
422
+ }),
423
+ plugin_type="routing")
300
424
  ```
301
425
 
302
426
  ## Import
@@ -347,6 +471,7 @@ class Plugin(pulumi.CustomResource):
347
471
  raise TypeError("Missing required property 'plugin_type'")
348
472
  __props__.__dict__["plugin_type"] = plugin_type
349
473
  __props__.__dict__["tags"] = tags
474
+ __props__.__dict__["create_time"] = None
350
475
  super(Plugin, __self__).__init__(
351
476
  'alicloud:apigateway/plugin:Plugin',
352
477
  resource_name,
@@ -357,6 +482,7 @@ class Plugin(pulumi.CustomResource):
357
482
  def get(resource_name: str,
358
483
  id: pulumi.Input[str],
359
484
  opts: Optional[pulumi.ResourceOptions] = None,
485
+ create_time: Optional[pulumi.Input[str]] = None,
360
486
  description: Optional[pulumi.Input[str]] = None,
361
487
  plugin_data: Optional[pulumi.Input[str]] = None,
362
488
  plugin_name: Optional[pulumi.Input[str]] = None,
@@ -369,22 +495,32 @@ class Plugin(pulumi.CustomResource):
369
495
  :param str resource_name: The unique name of the resulting resource.
370
496
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
371
497
  :param pulumi.ResourceOptions opts: Options for the resource.
498
+ :param pulumi.Input[str] create_time: Create time.
372
499
  :param pulumi.Input[str] description: The description of the plug-in, which cannot exceed 200 characters.
373
500
  :param pulumi.Input[str] plugin_data: The definition statement of the plug-in. Plug-in definition statements in the JSON and YAML formats are supported.
374
501
  :param pulumi.Input[str] plugin_name: The name of the plug-in that you want to create. It can contain uppercase English letters, lowercase English letters, Chinese characters, numbers, and underscores (_). It must be 4 to 50 characters in length and cannot start with an underscore (_).
375
- :param pulumi.Input[str] plugin_type: The type of the plug-in. Valid values: `backendSignature`, `caching`, `cors`, `ipControl`, `jwtAuth`, `trafficControl`.
376
- - ipControl: indicates IP address-based access control.
377
- - trafficControl: indicates throttling.
378
- - backendSignature: indicates backend signature.
379
- - jwtAuth: indicates JWT (OpenId Connect).
380
- - cors: indicates cross-origin resource access (CORS).
381
- - caching: indicates caching.
382
- :param pulumi.Input[Mapping[str, Any]] tags: A mapping of tags to assign to the resource.
502
+ :param pulumi.Input[str] plugin_type: The type of the plug-in. Valid values:
503
+ - "trafficControl"
504
+ - "ipControl"
505
+ - "backendSignature"
506
+ - "jwtAuth"
507
+ - "basicAuth"
508
+ - "cors"
509
+ - "caching"
510
+ - "routing"
511
+ - "accessControl"
512
+ - "errorMapping"
513
+ - "circuitBreaker"
514
+ - "remoteAuth"
515
+ - "logMask"
516
+ - "transformer".
517
+ :param pulumi.Input[Mapping[str, Any]] tags: The tag of the resource.
383
518
  """
384
519
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
385
520
 
386
521
  __props__ = _PluginState.__new__(_PluginState)
387
522
 
523
+ __props__.__dict__["create_time"] = create_time
388
524
  __props__.__dict__["description"] = description
389
525
  __props__.__dict__["plugin_data"] = plugin_data
390
526
  __props__.__dict__["plugin_name"] = plugin_name
@@ -392,6 +528,14 @@ class Plugin(pulumi.CustomResource):
392
528
  __props__.__dict__["tags"] = tags
393
529
  return Plugin(resource_name, opts=opts, __props__=__props__)
394
530
 
531
+ @property
532
+ @pulumi.getter(name="createTime")
533
+ def create_time(self) -> pulumi.Output[str]:
534
+ """
535
+ Create time.
536
+ """
537
+ return pulumi.get(self, "create_time")
538
+
395
539
  @property
396
540
  @pulumi.getter
397
541
  def description(self) -> pulumi.Output[Optional[str]]:
@@ -420,13 +564,21 @@ class Plugin(pulumi.CustomResource):
420
564
  @pulumi.getter(name="pluginType")
421
565
  def plugin_type(self) -> pulumi.Output[str]:
422
566
  """
423
- The type of the plug-in. Valid values: `backendSignature`, `caching`, `cors`, `ipControl`, `jwtAuth`, `trafficControl`.
424
- - ipControl: indicates IP address-based access control.
425
- - trafficControl: indicates throttling.
426
- - backendSignature: indicates backend signature.
427
- - jwtAuth: indicates JWT (OpenId Connect).
428
- - cors: indicates cross-origin resource access (CORS).
429
- - caching: indicates caching.
567
+ The type of the plug-in. Valid values:
568
+ - "trafficControl"
569
+ - "ipControl"
570
+ - "backendSignature"
571
+ - "jwtAuth"
572
+ - "basicAuth"
573
+ - "cors"
574
+ - "caching"
575
+ - "routing"
576
+ - "accessControl"
577
+ - "errorMapping"
578
+ - "circuitBreaker"
579
+ - "remoteAuth"
580
+ - "logMask"
581
+ - "transformer".
430
582
  """
431
583
  return pulumi.get(self, "plugin_type")
432
584
 
@@ -434,7 +586,7 @@ class Plugin(pulumi.CustomResource):
434
586
  @pulumi.getter
435
587
  def tags(self) -> pulumi.Output[Optional[Mapping[str, Any]]]:
436
588
  """
437
- A mapping of tags to assign to the resource.
589
+ The tag of the resource.
438
590
  """
439
591
  return pulumi.get(self, "tags")
440
592