pulumi-alicloud 3.81.0a1750224117__py3-none-any.whl → 3.81.0a1750651450__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 (34) hide show
  1. pulumi_alicloud/__init__.py +8 -0
  2. pulumi_alicloud/cdn/get_service.py +4 -4
  3. pulumi_alicloud/cen/get_transit_router_route_table_propagations.py +116 -21
  4. pulumi_alicloud/cen/get_transit_router_route_tables.py +35 -29
  5. pulumi_alicloud/cen/get_transit_router_vpn_attachments.py +178 -59
  6. pulumi_alicloud/cen/outputs.py +56 -41
  7. pulumi_alicloud/cs/_inputs.py +54 -0
  8. pulumi_alicloud/cs/node_pool.py +158 -45
  9. pulumi_alicloud/cs/outputs.py +51 -0
  10. pulumi_alicloud/dfs/vsc_mount_point.py +4 -4
  11. pulumi_alicloud/ecs/_inputs.py +66 -0
  12. pulumi_alicloud/ecs/ecs_network_interface.py +47 -0
  13. pulumi_alicloud/ecs/outputs.py +48 -0
  14. pulumi_alicloud/eflo/node_group.py +103 -7
  15. pulumi_alicloud/eventbridge/service_linked_role.py +25 -31
  16. pulumi_alicloud/ga/forwarding_rule.py +2 -2
  17. pulumi_alicloud/hbr/ots_backup_plan.py +2 -2
  18. pulumi_alicloud/hbr/replication_vault.py +167 -41
  19. pulumi_alicloud/hbr/vault.py +21 -7
  20. pulumi_alicloud/maxcompute/project.py +2 -2
  21. pulumi_alicloud/message/__init__.py +1 -0
  22. pulumi_alicloud/message/service_service.py +132 -0
  23. pulumi_alicloud/message/service_subscription.py +37 -23
  24. pulumi_alicloud/mns/get_service.py +8 -4
  25. pulumi_alicloud/pulumi-plugin.json +1 -1
  26. pulumi_alicloud/ram/role.py +306 -105
  27. pulumi_alicloud/rds/_inputs.py +0 -9
  28. pulumi_alicloud/rds/custom.py +360 -31
  29. pulumi_alicloud/rds/outputs.py +0 -6
  30. pulumi_alicloud/vpc/network_interface.py +34 -0
  31. {pulumi_alicloud-3.81.0a1750224117.dist-info → pulumi_alicloud-3.81.0a1750651450.dist-info}/METADATA +1 -1
  32. {pulumi_alicloud-3.81.0a1750224117.dist-info → pulumi_alicloud-3.81.0a1750651450.dist-info}/RECORD +34 -33
  33. {pulumi_alicloud-3.81.0a1750224117.dist-info → pulumi_alicloud-3.81.0a1750651450.dist-info}/WHEEL +0 -0
  34. {pulumi_alicloud-3.81.0a1750224117.dist-info → pulumi_alicloud-3.81.0a1750651450.dist-info}/top_level.txt +0 -0
@@ -24,20 +24,28 @@ class ReplicationVaultArgs:
24
24
  replication_source_vault_id: pulumi.Input[builtins.str],
25
25
  vault_name: pulumi.Input[builtins.str],
26
26
  description: Optional[pulumi.Input[builtins.str]] = None,
27
+ encrypt_type: Optional[pulumi.Input[builtins.str]] = None,
28
+ kms_key_id: Optional[pulumi.Input[builtins.str]] = None,
27
29
  vault_storage_class: Optional[pulumi.Input[builtins.str]] = None):
28
30
  """
29
31
  The set of arguments for constructing a ReplicationVault resource.
30
- :param pulumi.Input[builtins.str] replication_source_region_id: The ID of the region where the source vault resides.
31
- :param pulumi.Input[builtins.str] replication_source_vault_id: The ID of the source vault.
32
- :param pulumi.Input[builtins.str] vault_name: The name of the backup vault. The name must be 1 to 64 characters in length.
33
- :param pulumi.Input[builtins.str] description: The description of the backup vault. The description must be 0 to 255 characters in length.
34
- :param pulumi.Input[builtins.str] vault_storage_class: The storage type of the backup vault. Valid values: `STANDARD`.
32
+ :param pulumi.Input[builtins.str] replication_source_region_id: The region ID of the source backup vault.
33
+ :param pulumi.Input[builtins.str] replication_source_vault_id: The vault ID of the source backup vault.
34
+ :param pulumi.Input[builtins.str] vault_name: The name of the backup vault.
35
+ :param pulumi.Input[builtins.str] description: The description of the backup vault.
36
+ :param pulumi.Input[builtins.str] encrypt_type: The encryption type of the backup vault.
37
+ :param pulumi.Input[builtins.str] kms_key_id: Alibaba Cloud KMS custom Key or Alias. This parameter is required only when EncryptType = KMS.
38
+ :param pulumi.Input[builtins.str] vault_storage_class: Backup Vault Storage Class
35
39
  """
36
40
  pulumi.set(__self__, "replication_source_region_id", replication_source_region_id)
37
41
  pulumi.set(__self__, "replication_source_vault_id", replication_source_vault_id)
38
42
  pulumi.set(__self__, "vault_name", vault_name)
39
43
  if description is not None:
40
44
  pulumi.set(__self__, "description", description)
45
+ if encrypt_type is not None:
46
+ pulumi.set(__self__, "encrypt_type", encrypt_type)
47
+ if kms_key_id is not None:
48
+ pulumi.set(__self__, "kms_key_id", kms_key_id)
41
49
  if vault_storage_class is not None:
42
50
  pulumi.set(__self__, "vault_storage_class", vault_storage_class)
43
51
 
@@ -45,7 +53,7 @@ class ReplicationVaultArgs:
45
53
  @pulumi.getter(name="replicationSourceRegionId")
46
54
  def replication_source_region_id(self) -> pulumi.Input[builtins.str]:
47
55
  """
48
- The ID of the region where the source vault resides.
56
+ The region ID of the source backup vault.
49
57
  """
50
58
  return pulumi.get(self, "replication_source_region_id")
51
59
 
@@ -57,7 +65,7 @@ class ReplicationVaultArgs:
57
65
  @pulumi.getter(name="replicationSourceVaultId")
58
66
  def replication_source_vault_id(self) -> pulumi.Input[builtins.str]:
59
67
  """
60
- The ID of the source vault.
68
+ The vault ID of the source backup vault.
61
69
  """
62
70
  return pulumi.get(self, "replication_source_vault_id")
63
71
 
@@ -69,7 +77,7 @@ class ReplicationVaultArgs:
69
77
  @pulumi.getter(name="vaultName")
70
78
  def vault_name(self) -> pulumi.Input[builtins.str]:
71
79
  """
72
- The name of the backup vault. The name must be 1 to 64 characters in length.
80
+ The name of the backup vault.
73
81
  """
74
82
  return pulumi.get(self, "vault_name")
75
83
 
@@ -81,7 +89,7 @@ class ReplicationVaultArgs:
81
89
  @pulumi.getter
82
90
  def description(self) -> Optional[pulumi.Input[builtins.str]]:
83
91
  """
84
- The description of the backup vault. The description must be 0 to 255 characters in length.
92
+ The description of the backup vault.
85
93
  """
86
94
  return pulumi.get(self, "description")
87
95
 
@@ -89,11 +97,35 @@ class ReplicationVaultArgs:
89
97
  def description(self, value: Optional[pulumi.Input[builtins.str]]):
90
98
  pulumi.set(self, "description", value)
91
99
 
100
+ @property
101
+ @pulumi.getter(name="encryptType")
102
+ def encrypt_type(self) -> Optional[pulumi.Input[builtins.str]]:
103
+ """
104
+ The encryption type of the backup vault.
105
+ """
106
+ return pulumi.get(self, "encrypt_type")
107
+
108
+ @encrypt_type.setter
109
+ def encrypt_type(self, value: Optional[pulumi.Input[builtins.str]]):
110
+ pulumi.set(self, "encrypt_type", value)
111
+
112
+ @property
113
+ @pulumi.getter(name="kmsKeyId")
114
+ def kms_key_id(self) -> Optional[pulumi.Input[builtins.str]]:
115
+ """
116
+ Alibaba Cloud KMS custom Key or Alias. This parameter is required only when EncryptType = KMS.
117
+ """
118
+ return pulumi.get(self, "kms_key_id")
119
+
120
+ @kms_key_id.setter
121
+ def kms_key_id(self, value: Optional[pulumi.Input[builtins.str]]):
122
+ pulumi.set(self, "kms_key_id", value)
123
+
92
124
  @property
93
125
  @pulumi.getter(name="vaultStorageClass")
94
126
  def vault_storage_class(self) -> Optional[pulumi.Input[builtins.str]]:
95
127
  """
96
- The storage type of the backup vault. Valid values: `STANDARD`.
128
+ Backup Vault Storage Class
97
129
  """
98
130
  return pulumi.get(self, "vault_storage_class")
99
131
 
@@ -106,6 +138,9 @@ class ReplicationVaultArgs:
106
138
  class _ReplicationVaultState:
107
139
  def __init__(__self__, *,
108
140
  description: Optional[pulumi.Input[builtins.str]] = None,
141
+ encrypt_type: Optional[pulumi.Input[builtins.str]] = None,
142
+ kms_key_id: Optional[pulumi.Input[builtins.str]] = None,
143
+ region_id: Optional[pulumi.Input[builtins.str]] = None,
109
144
  replication_source_region_id: Optional[pulumi.Input[builtins.str]] = None,
110
145
  replication_source_vault_id: Optional[pulumi.Input[builtins.str]] = None,
111
146
  status: Optional[pulumi.Input[builtins.str]] = None,
@@ -113,15 +148,24 @@ class _ReplicationVaultState:
113
148
  vault_storage_class: Optional[pulumi.Input[builtins.str]] = None):
114
149
  """
115
150
  Input properties used for looking up and filtering ReplicationVault resources.
116
- :param pulumi.Input[builtins.str] description: The description of the backup vault. The description must be 0 to 255 characters in length.
117
- :param pulumi.Input[builtins.str] replication_source_region_id: The ID of the region where the source vault resides.
118
- :param pulumi.Input[builtins.str] replication_source_vault_id: The ID of the source vault.
119
- :param pulumi.Input[builtins.str] status: The status of the resource.
120
- :param pulumi.Input[builtins.str] vault_name: The name of the backup vault. The name must be 1 to 64 characters in length.
121
- :param pulumi.Input[builtins.str] vault_storage_class: The storage type of the backup vault. Valid values: `STANDARD`.
151
+ :param pulumi.Input[builtins.str] description: The description of the backup vault.
152
+ :param pulumi.Input[builtins.str] encrypt_type: The encryption type of the backup vault.
153
+ :param pulumi.Input[builtins.str] kms_key_id: Alibaba Cloud KMS custom Key or Alias. This parameter is required only when EncryptType = KMS.
154
+ :param pulumi.Input[builtins.str] region_id: RegionId
155
+ :param pulumi.Input[builtins.str] replication_source_region_id: The region ID of the source backup vault.
156
+ :param pulumi.Input[builtins.str] replication_source_vault_id: The vault ID of the source backup vault.
157
+ :param pulumi.Input[builtins.str] status: The status of the mirror backup vault.
158
+ :param pulumi.Input[builtins.str] vault_name: The name of the backup vault.
159
+ :param pulumi.Input[builtins.str] vault_storage_class: Backup Vault Storage Class
122
160
  """
123
161
  if description is not None:
124
162
  pulumi.set(__self__, "description", description)
163
+ if encrypt_type is not None:
164
+ pulumi.set(__self__, "encrypt_type", encrypt_type)
165
+ if kms_key_id is not None:
166
+ pulumi.set(__self__, "kms_key_id", kms_key_id)
167
+ if region_id is not None:
168
+ pulumi.set(__self__, "region_id", region_id)
125
169
  if replication_source_region_id is not None:
126
170
  pulumi.set(__self__, "replication_source_region_id", replication_source_region_id)
127
171
  if replication_source_vault_id is not None:
@@ -137,7 +181,7 @@ class _ReplicationVaultState:
137
181
  @pulumi.getter
138
182
  def description(self) -> Optional[pulumi.Input[builtins.str]]:
139
183
  """
140
- The description of the backup vault. The description must be 0 to 255 characters in length.
184
+ The description of the backup vault.
141
185
  """
142
186
  return pulumi.get(self, "description")
143
187
 
@@ -145,11 +189,47 @@ class _ReplicationVaultState:
145
189
  def description(self, value: Optional[pulumi.Input[builtins.str]]):
146
190
  pulumi.set(self, "description", value)
147
191
 
192
+ @property
193
+ @pulumi.getter(name="encryptType")
194
+ def encrypt_type(self) -> Optional[pulumi.Input[builtins.str]]:
195
+ """
196
+ The encryption type of the backup vault.
197
+ """
198
+ return pulumi.get(self, "encrypt_type")
199
+
200
+ @encrypt_type.setter
201
+ def encrypt_type(self, value: Optional[pulumi.Input[builtins.str]]):
202
+ pulumi.set(self, "encrypt_type", value)
203
+
204
+ @property
205
+ @pulumi.getter(name="kmsKeyId")
206
+ def kms_key_id(self) -> Optional[pulumi.Input[builtins.str]]:
207
+ """
208
+ Alibaba Cloud KMS custom Key or Alias. This parameter is required only when EncryptType = KMS.
209
+ """
210
+ return pulumi.get(self, "kms_key_id")
211
+
212
+ @kms_key_id.setter
213
+ def kms_key_id(self, value: Optional[pulumi.Input[builtins.str]]):
214
+ pulumi.set(self, "kms_key_id", value)
215
+
216
+ @property
217
+ @pulumi.getter(name="regionId")
218
+ def region_id(self) -> Optional[pulumi.Input[builtins.str]]:
219
+ """
220
+ RegionId
221
+ """
222
+ return pulumi.get(self, "region_id")
223
+
224
+ @region_id.setter
225
+ def region_id(self, value: Optional[pulumi.Input[builtins.str]]):
226
+ pulumi.set(self, "region_id", value)
227
+
148
228
  @property
149
229
  @pulumi.getter(name="replicationSourceRegionId")
150
230
  def replication_source_region_id(self) -> Optional[pulumi.Input[builtins.str]]:
151
231
  """
152
- The ID of the region where the source vault resides.
232
+ The region ID of the source backup vault.
153
233
  """
154
234
  return pulumi.get(self, "replication_source_region_id")
155
235
 
@@ -161,7 +241,7 @@ class _ReplicationVaultState:
161
241
  @pulumi.getter(name="replicationSourceVaultId")
162
242
  def replication_source_vault_id(self) -> Optional[pulumi.Input[builtins.str]]:
163
243
  """
164
- The ID of the source vault.
244
+ The vault ID of the source backup vault.
165
245
  """
166
246
  return pulumi.get(self, "replication_source_vault_id")
167
247
 
@@ -173,7 +253,7 @@ class _ReplicationVaultState:
173
253
  @pulumi.getter
174
254
  def status(self) -> Optional[pulumi.Input[builtins.str]]:
175
255
  """
176
- The status of the resource.
256
+ The status of the mirror backup vault.
177
257
  """
178
258
  return pulumi.get(self, "status")
179
259
 
@@ -185,7 +265,7 @@ class _ReplicationVaultState:
185
265
  @pulumi.getter(name="vaultName")
186
266
  def vault_name(self) -> Optional[pulumi.Input[builtins.str]]:
187
267
  """
188
- The name of the backup vault. The name must be 1 to 64 characters in length.
268
+ The name of the backup vault.
189
269
  """
190
270
  return pulumi.get(self, "vault_name")
191
271
 
@@ -197,7 +277,7 @@ class _ReplicationVaultState:
197
277
  @pulumi.getter(name="vaultStorageClass")
198
278
  def vault_storage_class(self) -> Optional[pulumi.Input[builtins.str]]:
199
279
  """
200
- The storage type of the backup vault. Valid values: `STANDARD`.
280
+ Backup Vault Storage Class
201
281
  """
202
282
  return pulumi.get(self, "vault_storage_class")
203
283
 
@@ -213,6 +293,8 @@ class ReplicationVault(pulumi.CustomResource):
213
293
  resource_name: str,
214
294
  opts: Optional[pulumi.ResourceOptions] = None,
215
295
  description: Optional[pulumi.Input[builtins.str]] = None,
296
+ encrypt_type: Optional[pulumi.Input[builtins.str]] = None,
297
+ kms_key_id: Optional[pulumi.Input[builtins.str]] = None,
216
298
  replication_source_region_id: Optional[pulumi.Input[builtins.str]] = None,
217
299
  replication_source_vault_id: Optional[pulumi.Input[builtins.str]] = None,
218
300
  vault_name: Optional[pulumi.Input[builtins.str]] = None,
@@ -221,9 +303,11 @@ class ReplicationVault(pulumi.CustomResource):
221
303
  """
222
304
  Provides a Hybrid Backup Recovery (HBR) Replication Vault resource.
223
305
 
306
+ The replication vault used by the cross-region backup function of Cloud Backup.
307
+
224
308
  For information about Hybrid Backup Recovery (HBR) Replication Vault and how to use it, see [What is Replication Vault](https://www.alibabacloud.com/help/en/doc-detail/345603.html).
225
309
 
226
- > **NOTE:** Available in v1.152.0+.
310
+ > **NOTE:** Available since v1.252.0.
227
311
 
228
312
  ## Example Usage
229
313
 
@@ -261,11 +345,13 @@ class ReplicationVault(pulumi.CustomResource):
261
345
 
262
346
  :param str resource_name: The name of the resource.
263
347
  :param pulumi.ResourceOptions opts: Options for the resource.
264
- :param pulumi.Input[builtins.str] description: The description of the backup vault. The description must be 0 to 255 characters in length.
265
- :param pulumi.Input[builtins.str] replication_source_region_id: The ID of the region where the source vault resides.
266
- :param pulumi.Input[builtins.str] replication_source_vault_id: The ID of the source vault.
267
- :param pulumi.Input[builtins.str] vault_name: The name of the backup vault. The name must be 1 to 64 characters in length.
268
- :param pulumi.Input[builtins.str] vault_storage_class: The storage type of the backup vault. Valid values: `STANDARD`.
348
+ :param pulumi.Input[builtins.str] description: The description of the backup vault.
349
+ :param pulumi.Input[builtins.str] encrypt_type: The encryption type of the backup vault.
350
+ :param pulumi.Input[builtins.str] kms_key_id: Alibaba Cloud KMS custom Key or Alias. This parameter is required only when EncryptType = KMS.
351
+ :param pulumi.Input[builtins.str] replication_source_region_id: The region ID of the source backup vault.
352
+ :param pulumi.Input[builtins.str] replication_source_vault_id: The vault ID of the source backup vault.
353
+ :param pulumi.Input[builtins.str] vault_name: The name of the backup vault.
354
+ :param pulumi.Input[builtins.str] vault_storage_class: Backup Vault Storage Class
269
355
  """
270
356
  ...
271
357
  @overload
@@ -276,9 +362,11 @@ class ReplicationVault(pulumi.CustomResource):
276
362
  """
277
363
  Provides a Hybrid Backup Recovery (HBR) Replication Vault resource.
278
364
 
365
+ The replication vault used by the cross-region backup function of Cloud Backup.
366
+
279
367
  For information about Hybrid Backup Recovery (HBR) Replication Vault and how to use it, see [What is Replication Vault](https://www.alibabacloud.com/help/en/doc-detail/345603.html).
280
368
 
281
- > **NOTE:** Available in v1.152.0+.
369
+ > **NOTE:** Available since v1.252.0.
282
370
 
283
371
  ## Example Usage
284
372
 
@@ -330,6 +418,8 @@ class ReplicationVault(pulumi.CustomResource):
330
418
  resource_name: str,
331
419
  opts: Optional[pulumi.ResourceOptions] = None,
332
420
  description: Optional[pulumi.Input[builtins.str]] = None,
421
+ encrypt_type: Optional[pulumi.Input[builtins.str]] = None,
422
+ kms_key_id: Optional[pulumi.Input[builtins.str]] = None,
333
423
  replication_source_region_id: Optional[pulumi.Input[builtins.str]] = None,
334
424
  replication_source_vault_id: Optional[pulumi.Input[builtins.str]] = None,
335
425
  vault_name: Optional[pulumi.Input[builtins.str]] = None,
@@ -344,6 +434,8 @@ class ReplicationVault(pulumi.CustomResource):
344
434
  __props__ = ReplicationVaultArgs.__new__(ReplicationVaultArgs)
345
435
 
346
436
  __props__.__dict__["description"] = description
437
+ __props__.__dict__["encrypt_type"] = encrypt_type
438
+ __props__.__dict__["kms_key_id"] = kms_key_id
347
439
  if replication_source_region_id is None and not opts.urn:
348
440
  raise TypeError("Missing required property 'replication_source_region_id'")
349
441
  __props__.__dict__["replication_source_region_id"] = replication_source_region_id
@@ -354,6 +446,7 @@ class ReplicationVault(pulumi.CustomResource):
354
446
  raise TypeError("Missing required property 'vault_name'")
355
447
  __props__.__dict__["vault_name"] = vault_name
356
448
  __props__.__dict__["vault_storage_class"] = vault_storage_class
449
+ __props__.__dict__["region_id"] = None
357
450
  __props__.__dict__["status"] = None
358
451
  super(ReplicationVault, __self__).__init__(
359
452
  'alicloud:hbr/replicationVault:ReplicationVault',
@@ -366,6 +459,9 @@ class ReplicationVault(pulumi.CustomResource):
366
459
  id: pulumi.Input[str],
367
460
  opts: Optional[pulumi.ResourceOptions] = None,
368
461
  description: Optional[pulumi.Input[builtins.str]] = None,
462
+ encrypt_type: Optional[pulumi.Input[builtins.str]] = None,
463
+ kms_key_id: Optional[pulumi.Input[builtins.str]] = None,
464
+ region_id: Optional[pulumi.Input[builtins.str]] = None,
369
465
  replication_source_region_id: Optional[pulumi.Input[builtins.str]] = None,
370
466
  replication_source_vault_id: Optional[pulumi.Input[builtins.str]] = None,
371
467
  status: Optional[pulumi.Input[builtins.str]] = None,
@@ -378,18 +474,24 @@ class ReplicationVault(pulumi.CustomResource):
378
474
  :param str resource_name: The unique name of the resulting resource.
379
475
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
380
476
  :param pulumi.ResourceOptions opts: Options for the resource.
381
- :param pulumi.Input[builtins.str] description: The description of the backup vault. The description must be 0 to 255 characters in length.
382
- :param pulumi.Input[builtins.str] replication_source_region_id: The ID of the region where the source vault resides.
383
- :param pulumi.Input[builtins.str] replication_source_vault_id: The ID of the source vault.
384
- :param pulumi.Input[builtins.str] status: The status of the resource.
385
- :param pulumi.Input[builtins.str] vault_name: The name of the backup vault. The name must be 1 to 64 characters in length.
386
- :param pulumi.Input[builtins.str] vault_storage_class: The storage type of the backup vault. Valid values: `STANDARD`.
477
+ :param pulumi.Input[builtins.str] description: The description of the backup vault.
478
+ :param pulumi.Input[builtins.str] encrypt_type: The encryption type of the backup vault.
479
+ :param pulumi.Input[builtins.str] kms_key_id: Alibaba Cloud KMS custom Key or Alias. This parameter is required only when EncryptType = KMS.
480
+ :param pulumi.Input[builtins.str] region_id: RegionId
481
+ :param pulumi.Input[builtins.str] replication_source_region_id: The region ID of the source backup vault.
482
+ :param pulumi.Input[builtins.str] replication_source_vault_id: The vault ID of the source backup vault.
483
+ :param pulumi.Input[builtins.str] status: The status of the mirror backup vault.
484
+ :param pulumi.Input[builtins.str] vault_name: The name of the backup vault.
485
+ :param pulumi.Input[builtins.str] vault_storage_class: Backup Vault Storage Class
387
486
  """
388
487
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
389
488
 
390
489
  __props__ = _ReplicationVaultState.__new__(_ReplicationVaultState)
391
490
 
392
491
  __props__.__dict__["description"] = description
492
+ __props__.__dict__["encrypt_type"] = encrypt_type
493
+ __props__.__dict__["kms_key_id"] = kms_key_id
494
+ __props__.__dict__["region_id"] = region_id
393
495
  __props__.__dict__["replication_source_region_id"] = replication_source_region_id
394
496
  __props__.__dict__["replication_source_vault_id"] = replication_source_vault_id
395
497
  __props__.__dict__["status"] = status
@@ -401,15 +503,39 @@ class ReplicationVault(pulumi.CustomResource):
401
503
  @pulumi.getter
402
504
  def description(self) -> pulumi.Output[Optional[builtins.str]]:
403
505
  """
404
- The description of the backup vault. The description must be 0 to 255 characters in length.
506
+ The description of the backup vault.
405
507
  """
406
508
  return pulumi.get(self, "description")
407
509
 
510
+ @property
511
+ @pulumi.getter(name="encryptType")
512
+ def encrypt_type(self) -> pulumi.Output[builtins.str]:
513
+ """
514
+ The encryption type of the backup vault.
515
+ """
516
+ return pulumi.get(self, "encrypt_type")
517
+
518
+ @property
519
+ @pulumi.getter(name="kmsKeyId")
520
+ def kms_key_id(self) -> pulumi.Output[Optional[builtins.str]]:
521
+ """
522
+ Alibaba Cloud KMS custom Key or Alias. This parameter is required only when EncryptType = KMS.
523
+ """
524
+ return pulumi.get(self, "kms_key_id")
525
+
526
+ @property
527
+ @pulumi.getter(name="regionId")
528
+ def region_id(self) -> pulumi.Output[builtins.str]:
529
+ """
530
+ RegionId
531
+ """
532
+ return pulumi.get(self, "region_id")
533
+
408
534
  @property
409
535
  @pulumi.getter(name="replicationSourceRegionId")
410
536
  def replication_source_region_id(self) -> pulumi.Output[builtins.str]:
411
537
  """
412
- The ID of the region where the source vault resides.
538
+ The region ID of the source backup vault.
413
539
  """
414
540
  return pulumi.get(self, "replication_source_region_id")
415
541
 
@@ -417,7 +543,7 @@ class ReplicationVault(pulumi.CustomResource):
417
543
  @pulumi.getter(name="replicationSourceVaultId")
418
544
  def replication_source_vault_id(self) -> pulumi.Output[builtins.str]:
419
545
  """
420
- The ID of the source vault.
546
+ The vault ID of the source backup vault.
421
547
  """
422
548
  return pulumi.get(self, "replication_source_vault_id")
423
549
 
@@ -425,7 +551,7 @@ class ReplicationVault(pulumi.CustomResource):
425
551
  @pulumi.getter
426
552
  def status(self) -> pulumi.Output[builtins.str]:
427
553
  """
428
- The status of the resource.
554
+ The status of the mirror backup vault.
429
555
  """
430
556
  return pulumi.get(self, "status")
431
557
 
@@ -433,7 +559,7 @@ class ReplicationVault(pulumi.CustomResource):
433
559
  @pulumi.getter(name="vaultName")
434
560
  def vault_name(self) -> pulumi.Output[builtins.str]:
435
561
  """
436
- The name of the backup vault. The name must be 1 to 64 characters in length.
562
+ The name of the backup vault.
437
563
  """
438
564
  return pulumi.get(self, "vault_name")
439
565
 
@@ -441,7 +567,7 @@ class ReplicationVault(pulumi.CustomResource):
441
567
  @pulumi.getter(name="vaultStorageClass")
442
568
  def vault_storage_class(self) -> pulumi.Output[builtins.str]:
443
569
  """
444
- The storage type of the backup vault. Valid values: `STANDARD`.
570
+ Backup Vault Storage Class
445
571
  """
446
572
  return pulumi.get(self, "vault_storage_class")
447
573
 
@@ -40,7 +40,9 @@ class VaultArgs:
40
40
  :param pulumi.Input[builtins.str] resource_group_id: The ID of the resource group.
41
41
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: The tag of the resource.
42
42
  :param pulumi.Input[builtins.str] vault_storage_class: The storage class of Vault. Valid values: `STANDARD`.
43
- :param pulumi.Input[builtins.str] vault_type: The type of Vault. Valid values: `STANDARD`, `OTS_BACKUP`.
43
+ :param pulumi.Input[builtins.str] vault_type: The type of Vault. Valid values:
44
+ - `STANDARD`: Standard backup vault.
45
+ - `OTS_BACKUP`: Backup vault for Tablestore. **NOTE:** We recommend that you use `STANDARD`. The cloud backup product will upgrade the backup vault, and the `vault_type` will be changed from `OTS_BACKUP` to `STANDARD`.
44
46
  :param pulumi.Input[builtins.bool] worm_enabled: Indicates whether the immutable backup feature is enabled. Valid values: `true`, `false`.
45
47
  """
46
48
  pulumi.set(__self__, "vault_name", vault_name)
@@ -151,7 +153,9 @@ class VaultArgs:
151
153
  @pulumi.getter(name="vaultType")
152
154
  def vault_type(self) -> Optional[pulumi.Input[builtins.str]]:
153
155
  """
154
- The type of Vault. Valid values: `STANDARD`, `OTS_BACKUP`.
156
+ The type of Vault. Valid values:
157
+ - `STANDARD`: Standard backup vault.
158
+ - `OTS_BACKUP`: Backup vault for Tablestore. **NOTE:** We recommend that you use `STANDARD`. The cloud backup product will upgrade the backup vault, and the `vault_type` will be changed from `OTS_BACKUP` to `STANDARD`.
155
159
  """
156
160
  return pulumi.get(self, "vault_type")
157
161
 
@@ -201,7 +205,9 @@ class _VaultState:
201
205
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: The tag of the resource.
202
206
  :param pulumi.Input[builtins.str] vault_name: The name of Vault.
203
207
  :param pulumi.Input[builtins.str] vault_storage_class: The storage class of Vault. Valid values: `STANDARD`.
204
- :param pulumi.Input[builtins.str] vault_type: The type of Vault. Valid values: `STANDARD`, `OTS_BACKUP`.
208
+ :param pulumi.Input[builtins.str] vault_type: The type of Vault. Valid values:
209
+ - `STANDARD`: Standard backup vault.
210
+ - `OTS_BACKUP`: Backup vault for Tablestore. **NOTE:** We recommend that you use `STANDARD`. The cloud backup product will upgrade the backup vault, and the `vault_type` will be changed from `OTS_BACKUP` to `STANDARD`.
205
211
  :param pulumi.Input[builtins.bool] worm_enabled: Indicates whether the immutable backup feature is enabled. Valid values: `true`, `false`.
206
212
  """
207
213
  if create_time is not None:
@@ -355,7 +361,9 @@ class _VaultState:
355
361
  @pulumi.getter(name="vaultType")
356
362
  def vault_type(self) -> Optional[pulumi.Input[builtins.str]]:
357
363
  """
358
- The type of Vault. Valid values: `STANDARD`, `OTS_BACKUP`.
364
+ The type of Vault. Valid values:
365
+ - `STANDARD`: Standard backup vault.
366
+ - `OTS_BACKUP`: Backup vault for Tablestore. **NOTE:** We recommend that you use `STANDARD`. The cloud backup product will upgrade the backup vault, and the `vault_type` will be changed from `OTS_BACKUP` to `STANDARD`.
359
367
  """
360
368
  return pulumi.get(self, "vault_type")
361
369
 
@@ -435,7 +443,9 @@ class Vault(pulumi.CustomResource):
435
443
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: The tag of the resource.
436
444
  :param pulumi.Input[builtins.str] vault_name: The name of Vault.
437
445
  :param pulumi.Input[builtins.str] vault_storage_class: The storage class of Vault. Valid values: `STANDARD`.
438
- :param pulumi.Input[builtins.str] vault_type: The type of Vault. Valid values: `STANDARD`, `OTS_BACKUP`.
446
+ :param pulumi.Input[builtins.str] vault_type: The type of Vault. Valid values:
447
+ - `STANDARD`: Standard backup vault.
448
+ - `OTS_BACKUP`: Backup vault for Tablestore. **NOTE:** We recommend that you use `STANDARD`. The cloud backup product will upgrade the backup vault, and the `vault_type` will be changed from `OTS_BACKUP` to `STANDARD`.
439
449
  :param pulumi.Input[builtins.bool] worm_enabled: Indicates whether the immutable backup feature is enabled. Valid values: `true`, `false`.
440
450
  """
441
451
  ...
@@ -564,7 +574,9 @@ class Vault(pulumi.CustomResource):
564
574
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: The tag of the resource.
565
575
  :param pulumi.Input[builtins.str] vault_name: The name of Vault.
566
576
  :param pulumi.Input[builtins.str] vault_storage_class: The storage class of Vault. Valid values: `STANDARD`.
567
- :param pulumi.Input[builtins.str] vault_type: The type of Vault. Valid values: `STANDARD`, `OTS_BACKUP`.
577
+ :param pulumi.Input[builtins.str] vault_type: The type of Vault. Valid values:
578
+ - `STANDARD`: Standard backup vault.
579
+ - `OTS_BACKUP`: Backup vault for Tablestore. **NOTE:** We recommend that you use `STANDARD`. The cloud backup product will upgrade the backup vault, and the `vault_type` will be changed from `OTS_BACKUP` to `STANDARD`.
568
580
  :param pulumi.Input[builtins.bool] worm_enabled: Indicates whether the immutable backup feature is enabled. Valid values: `true`, `false`.
569
581
  """
570
582
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -671,7 +683,9 @@ class Vault(pulumi.CustomResource):
671
683
  @pulumi.getter(name="vaultType")
672
684
  def vault_type(self) -> pulumi.Output[builtins.str]:
673
685
  """
674
- The type of Vault. Valid values: `STANDARD`, `OTS_BACKUP`.
686
+ The type of Vault. Valid values:
687
+ - `STANDARD`: Standard backup vault.
688
+ - `OTS_BACKUP`: Backup vault for Tablestore. **NOTE:** We recommend that you use `STANDARD`. The cloud backup product will upgrade the backup vault, and the `vault_type` will be changed from `OTS_BACKUP` to `STANDARD`.
675
689
  """
676
690
  return pulumi.get(self, "vault_type")
677
691
 
@@ -462,7 +462,7 @@ class Project(pulumi.CustomResource):
462
462
  if name is None:
463
463
  name = "tf_example"
464
464
  default = alicloud.maxcompute.Project("default",
465
- default_quota="默认后付费Quota",
465
+ default_quota="os_PayAsYouGoQuota",
466
466
  project_name=name,
467
467
  comment=name)
468
468
  ```
@@ -518,7 +518,7 @@ class Project(pulumi.CustomResource):
518
518
  if name is None:
519
519
  name = "tf_example"
520
520
  default = alicloud.maxcompute.Project("default",
521
- default_quota="默认后付费Quota",
521
+ default_quota="os_PayAsYouGoQuota",
522
522
  project_name=name,
523
523
  comment=name)
524
524
  ```
@@ -12,6 +12,7 @@ from .get_service_topics import *
12
12
  from .service_endpoint import *
13
13
  from .service_endpoint_acl import *
14
14
  from .service_queue import *
15
+ from .service_service import *
15
16
  from .service_subscription import *
16
17
  from .service_topic import *
17
18
  from ._inputs import *