pulumi-alicloud 3.65.1a1731504533__py3-none-any.whl → 3.66.0a1730783952__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 (35) hide show
  1. pulumi_alicloud/alb/load_balancer.py +1 -1
  2. pulumi_alicloud/arms/environment.py +7 -7
  3. pulumi_alicloud/arms/get_remote_writes.py +4 -4
  4. pulumi_alicloud/arms/prometheus_alert_rule.py +0 -58
  5. pulumi_alicloud/arms/remote_write.py +2 -2
  6. pulumi_alicloud/cen/transit_router_vbr_attachment.py +74 -96
  7. pulumi_alicloud/cms/hybrid_monitor_fc_task.py +26 -28
  8. pulumi_alicloud/cr/chain.py +14 -22
  9. pulumi_alicloud/cr/chart_repository.py +6 -14
  10. pulumi_alicloud/cr/repo.py +8 -8
  11. pulumi_alicloud/cr/vpc_endpoint_linked_vpc.py +6 -14
  12. pulumi_alicloud/databasefilesystem/instance_attachment.py +63 -59
  13. pulumi_alicloud/databasefilesystem/snapshot.py +109 -53
  14. pulumi_alicloud/ecs/instance.py +7 -7
  15. pulumi_alicloud/ess/scaling_configuration.py +7 -7
  16. pulumi_alicloud/fc/trigger.py +138 -202
  17. pulumi_alicloud/ga/custom_routing_endpoint_traffic_policy.py +44 -48
  18. pulumi_alicloud/governance/_inputs.py +0 -54
  19. pulumi_alicloud/governance/account.py +14 -49
  20. pulumi_alicloud/governance/outputs.py +0 -51
  21. pulumi_alicloud/gpdb/instance.py +15 -196
  22. pulumi_alicloud/kms/instance.py +0 -28
  23. pulumi_alicloud/nas/data_flow.py +6 -6
  24. pulumi_alicloud/nas/fileset.py +6 -6
  25. pulumi_alicloud/nas/lifecycle_policy.py +6 -6
  26. pulumi_alicloud/nas/recycle_bin.py +6 -6
  27. pulumi_alicloud/nas/snapshot.py +6 -6
  28. pulumi_alicloud/pulumi-plugin.json +1 -1
  29. pulumi_alicloud/redis/tair_instance.py +71 -1102
  30. pulumi_alicloud/threatdetection/honeypot_preset.py +0 -2
  31. pulumi_alicloud/vpn/gateway_vco_route.py +8 -28
  32. {pulumi_alicloud-3.65.1a1731504533.dist-info → pulumi_alicloud-3.66.0a1730783952.dist-info}/METADATA +1 -1
  33. {pulumi_alicloud-3.65.1a1731504533.dist-info → pulumi_alicloud-3.66.0a1730783952.dist-info}/RECORD +35 -35
  34. {pulumi_alicloud-3.65.1a1731504533.dist-info → pulumi_alicloud-3.66.0a1730783952.dist-info}/WHEEL +1 -1
  35. {pulumi_alicloud-3.65.1a1731504533.dist-info → pulumi_alicloud-3.66.0a1730783952.dist-info}/top_level.txt +0 -0
@@ -13,8 +13,6 @@ if sys.version_info >= (3, 11):
13
13
  else:
14
14
  from typing_extensions import NotRequired, TypedDict, TypeAlias
15
15
  from .. import _utilities
16
- from . import outputs
17
- from ._inputs import *
18
16
 
19
17
  __all__ = ['AccountArgs', 'Account']
20
18
 
@@ -24,7 +22,6 @@ class AccountArgs:
24
22
  baseline_id: pulumi.Input[str],
25
23
  account_id: Optional[pulumi.Input[int]] = None,
26
24
  account_name_prefix: Optional[pulumi.Input[str]] = None,
27
- account_tags: Optional[pulumi.Input[Sequence[pulumi.Input['AccountAccountTagArgs']]]] = None,
28
25
  default_domain_name: Optional[pulumi.Input[str]] = None,
29
26
  display_name: Optional[pulumi.Input[str]] = None,
30
27
  folder_id: Optional[pulumi.Input[str]] = None,
@@ -40,8 +37,9 @@ class AccountArgs:
40
37
  :param pulumi.Input[str] account_name_prefix: Account name prefix.
41
38
  - This parameter is required if you are creating a new resource account.
42
39
  - If the registration application is applied to an existing account, this parameter does not need to be filled in.
43
- :param pulumi.Input[Sequence[pulumi.Input['AccountAccountTagArgs']]] account_tags: The tags of the account See `account_tags` below.
44
40
  :param pulumi.Input[str] default_domain_name: The domain name is used to qualify the login name of RAM users and RAM roles.
41
+
42
+ Format: \\<AccountAlias>.onaliyun.com where \\<AccountAlias> is the account alias, and the default value is the Aliyun account ID. The default domain name must end with the .onaliyun.com suffix. The maximum length of the default domain name (including suffix) is 64 characters. It can contain English letters, numbers, English periods (.) , dashes (-) and underscores (_).
45
43
  :param pulumi.Input[str] display_name: The account display name.
46
44
  - This parameter is required if you are creating a new resource account.
47
45
  - If the registration application is applied to an existing account, this parameter does not need to be filled in.
@@ -57,8 +55,6 @@ class AccountArgs:
57
55
  pulumi.set(__self__, "account_id", account_id)
58
56
  if account_name_prefix is not None:
59
57
  pulumi.set(__self__, "account_name_prefix", account_name_prefix)
60
- if account_tags is not None:
61
- pulumi.set(__self__, "account_tags", account_tags)
62
58
  if default_domain_name is not None:
63
59
  pulumi.set(__self__, "default_domain_name", default_domain_name)
64
60
  if display_name is not None:
@@ -110,23 +106,13 @@ class AccountArgs:
110
106
  def account_name_prefix(self, value: Optional[pulumi.Input[str]]):
111
107
  pulumi.set(self, "account_name_prefix", value)
112
108
 
113
- @property
114
- @pulumi.getter(name="accountTags")
115
- def account_tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['AccountAccountTagArgs']]]]:
116
- """
117
- The tags of the account See `account_tags` below.
118
- """
119
- return pulumi.get(self, "account_tags")
120
-
121
- @account_tags.setter
122
- def account_tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['AccountAccountTagArgs']]]]):
123
- pulumi.set(self, "account_tags", value)
124
-
125
109
  @property
126
110
  @pulumi.getter(name="defaultDomainName")
127
111
  def default_domain_name(self) -> Optional[pulumi.Input[str]]:
128
112
  """
129
113
  The domain name is used to qualify the login name of RAM users and RAM roles.
114
+
115
+ Format: \\<AccountAlias>.onaliyun.com where \\<AccountAlias> is the account alias, and the default value is the Aliyun account ID. The default domain name must end with the .onaliyun.com suffix. The maximum length of the default domain name (including suffix) is 64 characters. It can contain English letters, numbers, English periods (.) , dashes (-) and underscores (_).
130
116
  """
131
117
  return pulumi.get(self, "default_domain_name")
132
118
 
@@ -182,7 +168,6 @@ class _AccountState:
182
168
  def __init__(__self__, *,
183
169
  account_id: Optional[pulumi.Input[int]] = None,
184
170
  account_name_prefix: Optional[pulumi.Input[str]] = None,
185
- account_tags: Optional[pulumi.Input[Sequence[pulumi.Input['AccountAccountTagArgs']]]] = None,
186
171
  baseline_id: Optional[pulumi.Input[str]] = None,
187
172
  default_domain_name: Optional[pulumi.Input[str]] = None,
188
173
  display_name: Optional[pulumi.Input[str]] = None,
@@ -197,11 +182,12 @@ class _AccountState:
197
182
  :param pulumi.Input[str] account_name_prefix: Account name prefix.
198
183
  - This parameter is required if you are creating a new resource account.
199
184
  - If the registration application is applied to an existing account, this parameter does not need to be filled in.
200
- :param pulumi.Input[Sequence[pulumi.Input['AccountAccountTagArgs']]] account_tags: The tags of the account See `account_tags` below.
201
185
  :param pulumi.Input[str] baseline_id: The baseline ID.
202
186
 
203
187
  If it is left blank, the system default baseline is used by default.
204
188
  :param pulumi.Input[str] default_domain_name: The domain name is used to qualify the login name of RAM users and RAM roles.
189
+
190
+ Format: \\<AccountAlias>.onaliyun.com where \\<AccountAlias> is the account alias, and the default value is the Aliyun account ID. The default domain name must end with the .onaliyun.com suffix. The maximum length of the default domain name (including suffix) is 64 characters. It can contain English letters, numbers, English periods (.) , dashes (-) and underscores (_).
205
191
  :param pulumi.Input[str] display_name: The account display name.
206
192
  - This parameter is required if you are creating a new resource account.
207
193
  - If the registration application is applied to an existing account, this parameter does not need to be filled in.
@@ -217,8 +203,6 @@ class _AccountState:
217
203
  pulumi.set(__self__, "account_id", account_id)
218
204
  if account_name_prefix is not None:
219
205
  pulumi.set(__self__, "account_name_prefix", account_name_prefix)
220
- if account_tags is not None:
221
- pulumi.set(__self__, "account_tags", account_tags)
222
206
  if baseline_id is not None:
223
207
  pulumi.set(__self__, "baseline_id", baseline_id)
224
208
  if default_domain_name is not None:
@@ -260,18 +244,6 @@ class _AccountState:
260
244
  def account_name_prefix(self, value: Optional[pulumi.Input[str]]):
261
245
  pulumi.set(self, "account_name_prefix", value)
262
246
 
263
- @property
264
- @pulumi.getter(name="accountTags")
265
- def account_tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['AccountAccountTagArgs']]]]:
266
- """
267
- The tags of the account See `account_tags` below.
268
- """
269
- return pulumi.get(self, "account_tags")
270
-
271
- @account_tags.setter
272
- def account_tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['AccountAccountTagArgs']]]]):
273
- pulumi.set(self, "account_tags", value)
274
-
275
247
  @property
276
248
  @pulumi.getter(name="baselineId")
277
249
  def baseline_id(self) -> Optional[pulumi.Input[str]]:
@@ -291,6 +263,8 @@ class _AccountState:
291
263
  def default_domain_name(self) -> Optional[pulumi.Input[str]]:
292
264
  """
293
265
  The domain name is used to qualify the login name of RAM users and RAM roles.
266
+
267
+ Format: \\<AccountAlias>.onaliyun.com where \\<AccountAlias> is the account alias, and the default value is the Aliyun account ID. The default domain name must end with the .onaliyun.com suffix. The maximum length of the default domain name (including suffix) is 64 characters. It can contain English letters, numbers, English periods (.) , dashes (-) and underscores (_).
294
268
  """
295
269
  return pulumi.get(self, "default_domain_name")
296
270
 
@@ -360,7 +334,6 @@ class Account(pulumi.CustomResource):
360
334
  opts: Optional[pulumi.ResourceOptions] = None,
361
335
  account_id: Optional[pulumi.Input[int]] = None,
362
336
  account_name_prefix: Optional[pulumi.Input[str]] = None,
363
- account_tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['AccountAccountTagArgs', 'AccountAccountTagArgsDict']]]]] = None,
364
337
  baseline_id: Optional[pulumi.Input[str]] = None,
365
338
  default_domain_name: Optional[pulumi.Input[str]] = None,
366
339
  display_name: Optional[pulumi.Input[str]] = None,
@@ -384,11 +357,12 @@ class Account(pulumi.CustomResource):
384
357
  :param pulumi.Input[str] account_name_prefix: Account name prefix.
385
358
  - This parameter is required if you are creating a new resource account.
386
359
  - If the registration application is applied to an existing account, this parameter does not need to be filled in.
387
- :param pulumi.Input[Sequence[pulumi.Input[Union['AccountAccountTagArgs', 'AccountAccountTagArgsDict']]]] account_tags: The tags of the account See `account_tags` below.
388
360
  :param pulumi.Input[str] baseline_id: The baseline ID.
389
361
 
390
362
  If it is left blank, the system default baseline is used by default.
391
363
  :param pulumi.Input[str] default_domain_name: The domain name is used to qualify the login name of RAM users and RAM roles.
364
+
365
+ Format: \\<AccountAlias>.onaliyun.com where \\<AccountAlias> is the account alias, and the default value is the Aliyun account ID. The default domain name must end with the .onaliyun.com suffix. The maximum length of the default domain name (including suffix) is 64 characters. It can contain English letters, numbers, English periods (.) , dashes (-) and underscores (_).
392
366
  :param pulumi.Input[str] display_name: The account display name.
393
367
  - This parameter is required if you are creating a new resource account.
394
368
  - If the registration application is applied to an existing account, this parameter does not need to be filled in.
@@ -431,7 +405,6 @@ class Account(pulumi.CustomResource):
431
405
  opts: Optional[pulumi.ResourceOptions] = None,
432
406
  account_id: Optional[pulumi.Input[int]] = None,
433
407
  account_name_prefix: Optional[pulumi.Input[str]] = None,
434
- account_tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['AccountAccountTagArgs', 'AccountAccountTagArgsDict']]]]] = None,
435
408
  baseline_id: Optional[pulumi.Input[str]] = None,
436
409
  default_domain_name: Optional[pulumi.Input[str]] = None,
437
410
  display_name: Optional[pulumi.Input[str]] = None,
@@ -448,7 +421,6 @@ class Account(pulumi.CustomResource):
448
421
 
449
422
  __props__.__dict__["account_id"] = account_id
450
423
  __props__.__dict__["account_name_prefix"] = account_name_prefix
451
- __props__.__dict__["account_tags"] = account_tags
452
424
  if baseline_id is None and not opts.urn:
453
425
  raise TypeError("Missing required property 'baseline_id'")
454
426
  __props__.__dict__["baseline_id"] = baseline_id
@@ -469,7 +441,6 @@ class Account(pulumi.CustomResource):
469
441
  opts: Optional[pulumi.ResourceOptions] = None,
470
442
  account_id: Optional[pulumi.Input[int]] = None,
471
443
  account_name_prefix: Optional[pulumi.Input[str]] = None,
472
- account_tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['AccountAccountTagArgs', 'AccountAccountTagArgsDict']]]]] = None,
473
444
  baseline_id: Optional[pulumi.Input[str]] = None,
474
445
  default_domain_name: Optional[pulumi.Input[str]] = None,
475
446
  display_name: Optional[pulumi.Input[str]] = None,
@@ -489,11 +460,12 @@ class Account(pulumi.CustomResource):
489
460
  :param pulumi.Input[str] account_name_prefix: Account name prefix.
490
461
  - This parameter is required if you are creating a new resource account.
491
462
  - If the registration application is applied to an existing account, this parameter does not need to be filled in.
492
- :param pulumi.Input[Sequence[pulumi.Input[Union['AccountAccountTagArgs', 'AccountAccountTagArgsDict']]]] account_tags: The tags of the account See `account_tags` below.
493
463
  :param pulumi.Input[str] baseline_id: The baseline ID.
494
464
 
495
465
  If it is left blank, the system default baseline is used by default.
496
466
  :param pulumi.Input[str] default_domain_name: The domain name is used to qualify the login name of RAM users and RAM roles.
467
+
468
+ Format: \\<AccountAlias>.onaliyun.com where \\<AccountAlias> is the account alias, and the default value is the Aliyun account ID. The default domain name must end with the .onaliyun.com suffix. The maximum length of the default domain name (including suffix) is 64 characters. It can contain English letters, numbers, English periods (.) , dashes (-) and underscores (_).
497
469
  :param pulumi.Input[str] display_name: The account display name.
498
470
  - This parameter is required if you are creating a new resource account.
499
471
  - If the registration application is applied to an existing account, this parameter does not need to be filled in.
@@ -511,7 +483,6 @@ class Account(pulumi.CustomResource):
511
483
 
512
484
  __props__.__dict__["account_id"] = account_id
513
485
  __props__.__dict__["account_name_prefix"] = account_name_prefix
514
- __props__.__dict__["account_tags"] = account_tags
515
486
  __props__.__dict__["baseline_id"] = baseline_id
516
487
  __props__.__dict__["default_domain_name"] = default_domain_name
517
488
  __props__.__dict__["display_name"] = display_name
@@ -540,14 +511,6 @@ class Account(pulumi.CustomResource):
540
511
  """
541
512
  return pulumi.get(self, "account_name_prefix")
542
513
 
543
- @property
544
- @pulumi.getter(name="accountTags")
545
- def account_tags(self) -> pulumi.Output[Optional[Sequence['outputs.AccountAccountTag']]]:
546
- """
547
- The tags of the account See `account_tags` below.
548
- """
549
- return pulumi.get(self, "account_tags")
550
-
551
514
  @property
552
515
  @pulumi.getter(name="baselineId")
553
516
  def baseline_id(self) -> pulumi.Output[str]:
@@ -563,6 +526,8 @@ class Account(pulumi.CustomResource):
563
526
  def default_domain_name(self) -> pulumi.Output[Optional[str]]:
564
527
  """
565
528
  The domain name is used to qualify the login name of RAM users and RAM roles.
529
+
530
+ Format: \\<AccountAlias>.onaliyun.com where \\<AccountAlias> is the account alias, and the default value is the Aliyun account ID. The default domain name must end with the .onaliyun.com suffix. The maximum length of the default domain name (including suffix) is 64 characters. It can contain English letters, numbers, English periods (.) , dashes (-) and underscores (_).
566
531
  """
567
532
  return pulumi.get(self, "default_domain_name")
568
533
 
@@ -15,61 +15,10 @@ else:
15
15
  from .. import _utilities
16
16
 
17
17
  __all__ = [
18
- 'AccountAccountTag',
19
18
  'BaselineBaselineItem',
20
19
  'GetBaselinesBaselineResult',
21
20
  ]
22
21
 
23
- @pulumi.output_type
24
- class AccountAccountTag(dict):
25
- @staticmethod
26
- def __key_warning(key: str):
27
- suggest = None
28
- if key == "tagKey":
29
- suggest = "tag_key"
30
- elif key == "tagValue":
31
- suggest = "tag_value"
32
-
33
- if suggest:
34
- pulumi.log.warn(f"Key '{key}' not found in AccountAccountTag. Access the value via the '{suggest}' property getter instead.")
35
-
36
- def __getitem__(self, key: str) -> Any:
37
- AccountAccountTag.__key_warning(key)
38
- return super().__getitem__(key)
39
-
40
- def get(self, key: str, default = None) -> Any:
41
- AccountAccountTag.__key_warning(key)
42
- return super().get(key, default)
43
-
44
- def __init__(__self__, *,
45
- tag_key: Optional[str] = None,
46
- tag_value: Optional[str] = None):
47
- """
48
- :param str tag_key: The key of the tags
49
- :param str tag_value: The value of the tags
50
- """
51
- if tag_key is not None:
52
- pulumi.set(__self__, "tag_key", tag_key)
53
- if tag_value is not None:
54
- pulumi.set(__self__, "tag_value", tag_value)
55
-
56
- @property
57
- @pulumi.getter(name="tagKey")
58
- def tag_key(self) -> Optional[str]:
59
- """
60
- The key of the tags
61
- """
62
- return pulumi.get(self, "tag_key")
63
-
64
- @property
65
- @pulumi.getter(name="tagValue")
66
- def tag_value(self) -> Optional[str]:
67
- """
68
- The value of the tags
69
- """
70
- return pulumi.get(self, "tag_value")
71
-
72
-
73
22
  @pulumi.output_type
74
23
  class BaselineBaselineItem(dict):
75
24
  def __init__(__self__, *,