pulumi-alicloud 3.65.0a1730759410__py3-none-any.whl → 3.65.1a1731504533__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 +58 -0
  5. pulumi_alicloud/arms/remote_write.py +2 -2
  6. pulumi_alicloud/cen/transit_router_vbr_attachment.py +96 -74
  7. pulumi_alicloud/cms/hybrid_monitor_fc_task.py +28 -26
  8. pulumi_alicloud/cr/chain.py +22 -14
  9. pulumi_alicloud/cr/chart_repository.py +14 -6
  10. pulumi_alicloud/cr/repo.py +8 -8
  11. pulumi_alicloud/cr/vpc_endpoint_linked_vpc.py +14 -6
  12. pulumi_alicloud/databasefilesystem/instance_attachment.py +59 -63
  13. pulumi_alicloud/databasefilesystem/snapshot.py +53 -109
  14. pulumi_alicloud/ecs/instance.py +7 -7
  15. pulumi_alicloud/ess/scaling_configuration.py +7 -7
  16. pulumi_alicloud/fc/trigger.py +202 -138
  17. pulumi_alicloud/ga/custom_routing_endpoint_traffic_policy.py +48 -44
  18. pulumi_alicloud/governance/_inputs.py +54 -0
  19. pulumi_alicloud/governance/account.py +49 -14
  20. pulumi_alicloud/governance/outputs.py +51 -0
  21. pulumi_alicloud/gpdb/instance.py +196 -15
  22. pulumi_alicloud/kms/instance.py +28 -0
  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 +1102 -71
  30. pulumi_alicloud/threatdetection/honeypot_preset.py +2 -0
  31. pulumi_alicloud/vpn/gateway_vco_route.py +28 -8
  32. {pulumi_alicloud-3.65.0a1730759410.dist-info → pulumi_alicloud-3.65.1a1731504533.dist-info}/METADATA +1 -1
  33. {pulumi_alicloud-3.65.0a1730759410.dist-info → pulumi_alicloud-3.65.1a1731504533.dist-info}/RECORD +35 -35
  34. {pulumi_alicloud-3.65.0a1730759410.dist-info → pulumi_alicloud-3.65.1a1731504533.dist-info}/WHEEL +1 -1
  35. {pulumi_alicloud-3.65.0a1730759410.dist-info → pulumi_alicloud-3.65.1a1731504533.dist-info}/top_level.txt +0 -0
@@ -26,11 +26,11 @@ class SnapshotArgs:
26
26
  snapshot_name: Optional[pulumi.Input[str]] = None):
27
27
  """
28
28
  The set of arguments for constructing a Snapshot resource.
29
- :param pulumi.Input[str] instance_id: The ID of the database file system.
30
- :param pulumi.Input[str] description: Description of the snapshot. The description must be `2` to `256` characters in length. It must start with a letter, and cannot start with `http://` or `https://`.
31
- :param pulumi.Input[bool] force: Whether to force deletion of snapshots.
32
- :param pulumi.Input[int] retention_days: The retention time of the snapshot. Unit: days. Snapshots are automatically released after the retention time expires. Valid values: `1` to `65536`.
33
- :param pulumi.Input[str] snapshot_name: The display name of the snapshot. The length is `2` to `128` characters. It must start with a large or small letter or Chinese, and cannot start with `http://` and `https://`. It can contain numbers, colons (:), underscores (_), or hyphens (-). To prevent name conflicts with automatic snapshots, you cannot start with `auto`.
29
+ :param pulumi.Input[str] instance_id: The ID of the Database File System.
30
+ :param pulumi.Input[str] description: The description of the snapshot. The `description` must be `2` to `256` characters in length. It cannot start with `http://` or `https://`. **NOTE:** From version 1.233.1, `description` can be modified.
31
+ :param pulumi.Input[bool] force: Specifies whether to force delete the snapshot. Valid values:
32
+ :param pulumi.Input[int] retention_days: The retention period of the snapshot. Valid values: `1` to `65536`.
33
+ :param pulumi.Input[str] snapshot_name: The name of the snapshot. The `snapshot_name` must be `2` to `128` characters in length. It must start with a large or small letter or Chinese, and cannot start with `http://`, `https://`, `auto` or `dbfs-auto`. It can contain numbers, colons (:), underscores (_), or hyphens (-). **NOTE:** From version 1.233.1, `snapshot_name` can be modified.
34
34
  """
35
35
  pulumi.set(__self__, "instance_id", instance_id)
36
36
  if description is not None:
@@ -46,7 +46,7 @@ class SnapshotArgs:
46
46
  @pulumi.getter(name="instanceId")
47
47
  def instance_id(self) -> pulumi.Input[str]:
48
48
  """
49
- The ID of the database file system.
49
+ The ID of the Database File System.
50
50
  """
51
51
  return pulumi.get(self, "instance_id")
52
52
 
@@ -58,7 +58,7 @@ class SnapshotArgs:
58
58
  @pulumi.getter
59
59
  def description(self) -> Optional[pulumi.Input[str]]:
60
60
  """
61
- Description of the snapshot. The description must be `2` to `256` characters in length. It must start with a letter, and cannot start with `http://` or `https://`.
61
+ The description of the snapshot. The `description` must be `2` to `256` characters in length. It cannot start with `http://` or `https://`. **NOTE:** From version 1.233.1, `description` can be modified.
62
62
  """
63
63
  return pulumi.get(self, "description")
64
64
 
@@ -70,7 +70,7 @@ class SnapshotArgs:
70
70
  @pulumi.getter
71
71
  def force(self) -> Optional[pulumi.Input[bool]]:
72
72
  """
73
- Whether to force deletion of snapshots.
73
+ Specifies whether to force delete the snapshot. Valid values:
74
74
  """
75
75
  return pulumi.get(self, "force")
76
76
 
@@ -82,7 +82,7 @@ class SnapshotArgs:
82
82
  @pulumi.getter(name="retentionDays")
83
83
  def retention_days(self) -> Optional[pulumi.Input[int]]:
84
84
  """
85
- The retention time of the snapshot. Unit: days. Snapshots are automatically released after the retention time expires. Valid values: `1` to `65536`.
85
+ The retention period of the snapshot. Valid values: `1` to `65536`.
86
86
  """
87
87
  return pulumi.get(self, "retention_days")
88
88
 
@@ -94,7 +94,7 @@ class SnapshotArgs:
94
94
  @pulumi.getter(name="snapshotName")
95
95
  def snapshot_name(self) -> Optional[pulumi.Input[str]]:
96
96
  """
97
- The display name of the snapshot. The length is `2` to `128` characters. It must start with a large or small letter or Chinese, and cannot start with `http://` and `https://`. It can contain numbers, colons (:), underscores (_), or hyphens (-). To prevent name conflicts with automatic snapshots, you cannot start with `auto`.
97
+ The name of the snapshot. The `snapshot_name` must be `2` to `128` characters in length. It must start with a large or small letter or Chinese, and cannot start with `http://`, `https://`, `auto` or `dbfs-auto`. It can contain numbers, colons (:), underscores (_), or hyphens (-). **NOTE:** From version 1.233.1, `snapshot_name` can be modified.
98
98
  """
99
99
  return pulumi.get(self, "snapshot_name")
100
100
 
@@ -114,11 +114,11 @@ class _SnapshotState:
114
114
  status: Optional[pulumi.Input[str]] = None):
115
115
  """
116
116
  Input properties used for looking up and filtering Snapshot resources.
117
- :param pulumi.Input[str] description: Description of the snapshot. The description must be `2` to `256` characters in length. It must start with a letter, and cannot start with `http://` or `https://`.
118
- :param pulumi.Input[bool] force: Whether to force deletion of snapshots.
119
- :param pulumi.Input[str] instance_id: The ID of the database file system.
120
- :param pulumi.Input[int] retention_days: The retention time of the snapshot. Unit: days. Snapshots are automatically released after the retention time expires. Valid values: `1` to `65536`.
121
- :param pulumi.Input[str] snapshot_name: The display name of the snapshot. The length is `2` to `128` characters. It must start with a large or small letter or Chinese, and cannot start with `http://` and `https://`. It can contain numbers, colons (:), underscores (_), or hyphens (-). To prevent name conflicts with automatic snapshots, you cannot start with `auto`.
117
+ :param pulumi.Input[str] description: The description of the snapshot. The `description` must be `2` to `256` characters in length. It cannot start with `http://` or `https://`. **NOTE:** From version 1.233.1, `description` can be modified.
118
+ :param pulumi.Input[bool] force: Specifies whether to force delete the snapshot. Valid values:
119
+ :param pulumi.Input[str] instance_id: The ID of the Database File System.
120
+ :param pulumi.Input[int] retention_days: The retention period of the snapshot. Valid values: `1` to `65536`.
121
+ :param pulumi.Input[str] snapshot_name: The name of the snapshot. The `snapshot_name` must be `2` to `128` characters in length. It must start with a large or small letter or Chinese, and cannot start with `http://`, `https://`, `auto` or `dbfs-auto`. It can contain numbers, colons (:), underscores (_), or hyphens (-). **NOTE:** From version 1.233.1, `snapshot_name` can be modified.
122
122
  :param pulumi.Input[str] status: The status of the Snapshot.
123
123
  """
124
124
  if description is not None:
@@ -138,7 +138,7 @@ class _SnapshotState:
138
138
  @pulumi.getter
139
139
  def description(self) -> Optional[pulumi.Input[str]]:
140
140
  """
141
- Description of the snapshot. The description must be `2` to `256` characters in length. It must start with a letter, and cannot start with `http://` or `https://`.
141
+ The description of the snapshot. The `description` must be `2` to `256` characters in length. It cannot start with `http://` or `https://`. **NOTE:** From version 1.233.1, `description` can be modified.
142
142
  """
143
143
  return pulumi.get(self, "description")
144
144
 
@@ -150,7 +150,7 @@ class _SnapshotState:
150
150
  @pulumi.getter
151
151
  def force(self) -> Optional[pulumi.Input[bool]]:
152
152
  """
153
- Whether to force deletion of snapshots.
153
+ Specifies whether to force delete the snapshot. Valid values:
154
154
  """
155
155
  return pulumi.get(self, "force")
156
156
 
@@ -162,7 +162,7 @@ class _SnapshotState:
162
162
  @pulumi.getter(name="instanceId")
163
163
  def instance_id(self) -> Optional[pulumi.Input[str]]:
164
164
  """
165
- The ID of the database file system.
165
+ The ID of the Database File System.
166
166
  """
167
167
  return pulumi.get(self, "instance_id")
168
168
 
@@ -174,7 +174,7 @@ class _SnapshotState:
174
174
  @pulumi.getter(name="retentionDays")
175
175
  def retention_days(self) -> Optional[pulumi.Input[int]]:
176
176
  """
177
- The retention time of the snapshot. Unit: days. Snapshots are automatically released after the retention time expires. Valid values: `1` to `65536`.
177
+ The retention period of the snapshot. Valid values: `1` to `65536`.
178
178
  """
179
179
  return pulumi.get(self, "retention_days")
180
180
 
@@ -186,7 +186,7 @@ class _SnapshotState:
186
186
  @pulumi.getter(name="snapshotName")
187
187
  def snapshot_name(self) -> Optional[pulumi.Input[str]]:
188
188
  """
189
- The display name of the snapshot. The length is `2` to `128` characters. It must start with a large or small letter or Chinese, and cannot start with `http://` and `https://`. It can contain numbers, colons (:), underscores (_), or hyphens (-). To prevent name conflicts with automatic snapshots, you cannot start with `auto`.
189
+ The name of the snapshot. The `snapshot_name` must be `2` to `128` characters in length. It must start with a large or small letter or Chinese, and cannot start with `http://`, `https://`, `auto` or `dbfs-auto`. It can contain numbers, colons (:), underscores (_), or hyphens (-). **NOTE:** From version 1.233.1, `snapshot_name` can be modified.
190
190
  """
191
191
  return pulumi.get(self, "snapshot_name")
192
192
 
@@ -219,9 +219,9 @@ class Snapshot(pulumi.CustomResource):
219
219
  snapshot_name: Optional[pulumi.Input[str]] = None,
220
220
  __props__=None):
221
221
  """
222
- Provides a DBFS Snapshot resource.
222
+ Provides a Database File System (DBFS) Snapshot resource.
223
223
 
224
- For information about DBFS Snapshot and how to use it.
224
+ For information about Database File System (DBFS) Snapshot and how to use it, see [What is Snapshot](https://help.aliyun.com/zh/dbfs/developer-reference/api-dbfs-2020-04-18-createsnapshot).
225
225
 
226
226
  > **NOTE:** Available since v1.156.0.
227
227
 
@@ -236,46 +236,18 @@ class Snapshot(pulumi.CustomResource):
236
236
  config = pulumi.Config()
237
237
  name = config.get("name")
238
238
  if name is None:
239
- name = "tf-example"
240
- zone_id = "cn-hangzhou-i"
241
- example = alicloud.ecs.get_instance_types(availability_zone=zone_id,
242
- instance_type_family="ecs.g7se")
243
- example_get_images = alicloud.ecs.get_images(instance_type=example.instance_types[len(example.instance_types) - 1].id,
244
- name_regex="^aliyun_2_1903_x64_20G_alibase_20240628.vhd",
245
- owners="system")
246
- default = alicloud.vpc.get_networks(name_regex="^default-NODELETING$")
247
- default_get_switches = alicloud.vpc.get_switches(vpc_id=default.ids[0],
248
- zone_id=zone_id)
249
- example_security_group = alicloud.ecs.SecurityGroup("example",
250
- name=name,
251
- vpc_id=default.ids[0])
252
- default_instance = alicloud.ecs.Instance("default",
253
- availability_zone=zone_id,
254
- instance_name=name,
255
- image_id=example_get_images.images[0].id,
256
- instance_type=example.instance_types[len(example.instance_types) - 1].id,
257
- security_groups=[example_security_group.id],
258
- vswitch_id=default_get_switches.ids[0],
259
- system_disk_category="cloud_essd")
260
- default_instance2 = alicloud.databasefilesystem.Instance("default",
261
- category="enterprise",
262
- zone_id=default_instance.availability_zone,
263
- performance_level="PL1",
264
- fs_name=name,
265
- size=100)
266
- default_instance_attachment = alicloud.databasefilesystem.InstanceAttachment("default",
267
- ecs_id=default_instance.id,
268
- instance_id=default_instance2.id)
269
- example_snapshot = alicloud.databasefilesystem.Snapshot("example",
270
- instance_id=default_instance_attachment.instance_id,
239
+ name = "terraform-example"
240
+ default = alicloud.databasefilesystem.get_instances()
241
+ example = alicloud.databasefilesystem.Snapshot("example",
242
+ instance_id=default.instances[0].id,
243
+ retention_days=50,
271
244
  snapshot_name=name,
272
- description=name,
273
- retention_days=30)
245
+ description="DbfsSnapshot")
274
246
  ```
275
247
 
276
248
  ## Import
277
249
 
278
- DBFS Snapshot can be imported using the id, e.g.
250
+ Database File System (DBFS) Snapshot can be imported using the id, e.g.
279
251
 
280
252
  ```sh
281
253
  $ pulumi import alicloud:databasefilesystem/snapshot:Snapshot example <id>
@@ -283,11 +255,11 @@ class Snapshot(pulumi.CustomResource):
283
255
 
284
256
  :param str resource_name: The name of the resource.
285
257
  :param pulumi.ResourceOptions opts: Options for the resource.
286
- :param pulumi.Input[str] description: Description of the snapshot. The description must be `2` to `256` characters in length. It must start with a letter, and cannot start with `http://` or `https://`.
287
- :param pulumi.Input[bool] force: Whether to force deletion of snapshots.
288
- :param pulumi.Input[str] instance_id: The ID of the database file system.
289
- :param pulumi.Input[int] retention_days: The retention time of the snapshot. Unit: days. Snapshots are automatically released after the retention time expires. Valid values: `1` to `65536`.
290
- :param pulumi.Input[str] snapshot_name: The display name of the snapshot. The length is `2` to `128` characters. It must start with a large or small letter or Chinese, and cannot start with `http://` and `https://`. It can contain numbers, colons (:), underscores (_), or hyphens (-). To prevent name conflicts with automatic snapshots, you cannot start with `auto`.
258
+ :param pulumi.Input[str] description: The description of the snapshot. The `description` must be `2` to `256` characters in length. It cannot start with `http://` or `https://`. **NOTE:** From version 1.233.1, `description` can be modified.
259
+ :param pulumi.Input[bool] force: Specifies whether to force delete the snapshot. Valid values:
260
+ :param pulumi.Input[str] instance_id: The ID of the Database File System.
261
+ :param pulumi.Input[int] retention_days: The retention period of the snapshot. Valid values: `1` to `65536`.
262
+ :param pulumi.Input[str] snapshot_name: The name of the snapshot. The `snapshot_name` must be `2` to `128` characters in length. It must start with a large or small letter or Chinese, and cannot start with `http://`, `https://`, `auto` or `dbfs-auto`. It can contain numbers, colons (:), underscores (_), or hyphens (-). **NOTE:** From version 1.233.1, `snapshot_name` can be modified.
291
263
  """
292
264
  ...
293
265
  @overload
@@ -296,9 +268,9 @@ class Snapshot(pulumi.CustomResource):
296
268
  args: SnapshotArgs,
297
269
  opts: Optional[pulumi.ResourceOptions] = None):
298
270
  """
299
- Provides a DBFS Snapshot resource.
271
+ Provides a Database File System (DBFS) Snapshot resource.
300
272
 
301
- For information about DBFS Snapshot and how to use it.
273
+ For information about Database File System (DBFS) Snapshot and how to use it, see [What is Snapshot](https://help.aliyun.com/zh/dbfs/developer-reference/api-dbfs-2020-04-18-createsnapshot).
302
274
 
303
275
  > **NOTE:** Available since v1.156.0.
304
276
 
@@ -313,46 +285,18 @@ class Snapshot(pulumi.CustomResource):
313
285
  config = pulumi.Config()
314
286
  name = config.get("name")
315
287
  if name is None:
316
- name = "tf-example"
317
- zone_id = "cn-hangzhou-i"
318
- example = alicloud.ecs.get_instance_types(availability_zone=zone_id,
319
- instance_type_family="ecs.g7se")
320
- example_get_images = alicloud.ecs.get_images(instance_type=example.instance_types[len(example.instance_types) - 1].id,
321
- name_regex="^aliyun_2_1903_x64_20G_alibase_20240628.vhd",
322
- owners="system")
323
- default = alicloud.vpc.get_networks(name_regex="^default-NODELETING$")
324
- default_get_switches = alicloud.vpc.get_switches(vpc_id=default.ids[0],
325
- zone_id=zone_id)
326
- example_security_group = alicloud.ecs.SecurityGroup("example",
327
- name=name,
328
- vpc_id=default.ids[0])
329
- default_instance = alicloud.ecs.Instance("default",
330
- availability_zone=zone_id,
331
- instance_name=name,
332
- image_id=example_get_images.images[0].id,
333
- instance_type=example.instance_types[len(example.instance_types) - 1].id,
334
- security_groups=[example_security_group.id],
335
- vswitch_id=default_get_switches.ids[0],
336
- system_disk_category="cloud_essd")
337
- default_instance2 = alicloud.databasefilesystem.Instance("default",
338
- category="enterprise",
339
- zone_id=default_instance.availability_zone,
340
- performance_level="PL1",
341
- fs_name=name,
342
- size=100)
343
- default_instance_attachment = alicloud.databasefilesystem.InstanceAttachment("default",
344
- ecs_id=default_instance.id,
345
- instance_id=default_instance2.id)
346
- example_snapshot = alicloud.databasefilesystem.Snapshot("example",
347
- instance_id=default_instance_attachment.instance_id,
288
+ name = "terraform-example"
289
+ default = alicloud.databasefilesystem.get_instances()
290
+ example = alicloud.databasefilesystem.Snapshot("example",
291
+ instance_id=default.instances[0].id,
292
+ retention_days=50,
348
293
  snapshot_name=name,
349
- description=name,
350
- retention_days=30)
294
+ description="DbfsSnapshot")
351
295
  ```
352
296
 
353
297
  ## Import
354
298
 
355
- DBFS Snapshot can be imported using the id, e.g.
299
+ Database File System (DBFS) Snapshot can be imported using the id, e.g.
356
300
 
357
301
  ```sh
358
302
  $ pulumi import alicloud:databasefilesystem/snapshot:Snapshot example <id>
@@ -418,11 +362,11 @@ class Snapshot(pulumi.CustomResource):
418
362
  :param str resource_name: The unique name of the resulting resource.
419
363
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
420
364
  :param pulumi.ResourceOptions opts: Options for the resource.
421
- :param pulumi.Input[str] description: Description of the snapshot. The description must be `2` to `256` characters in length. It must start with a letter, and cannot start with `http://` or `https://`.
422
- :param pulumi.Input[bool] force: Whether to force deletion of snapshots.
423
- :param pulumi.Input[str] instance_id: The ID of the database file system.
424
- :param pulumi.Input[int] retention_days: The retention time of the snapshot. Unit: days. Snapshots are automatically released after the retention time expires. Valid values: `1` to `65536`.
425
- :param pulumi.Input[str] snapshot_name: The display name of the snapshot. The length is `2` to `128` characters. It must start with a large or small letter or Chinese, and cannot start with `http://` and `https://`. It can contain numbers, colons (:), underscores (_), or hyphens (-). To prevent name conflicts with automatic snapshots, you cannot start with `auto`.
365
+ :param pulumi.Input[str] description: The description of the snapshot. The `description` must be `2` to `256` characters in length. It cannot start with `http://` or `https://`. **NOTE:** From version 1.233.1, `description` can be modified.
366
+ :param pulumi.Input[bool] force: Specifies whether to force delete the snapshot. Valid values:
367
+ :param pulumi.Input[str] instance_id: The ID of the Database File System.
368
+ :param pulumi.Input[int] retention_days: The retention period of the snapshot. Valid values: `1` to `65536`.
369
+ :param pulumi.Input[str] snapshot_name: The name of the snapshot. The `snapshot_name` must be `2` to `128` characters in length. It must start with a large or small letter or Chinese, and cannot start with `http://`, `https://`, `auto` or `dbfs-auto`. It can contain numbers, colons (:), underscores (_), or hyphens (-). **NOTE:** From version 1.233.1, `snapshot_name` can be modified.
426
370
  :param pulumi.Input[str] status: The status of the Snapshot.
427
371
  """
428
372
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -441,7 +385,7 @@ class Snapshot(pulumi.CustomResource):
441
385
  @pulumi.getter
442
386
  def description(self) -> pulumi.Output[Optional[str]]:
443
387
  """
444
- Description of the snapshot. The description must be `2` to `256` characters in length. It must start with a letter, and cannot start with `http://` or `https://`.
388
+ The description of the snapshot. The `description` must be `2` to `256` characters in length. It cannot start with `http://` or `https://`. **NOTE:** From version 1.233.1, `description` can be modified.
445
389
  """
446
390
  return pulumi.get(self, "description")
447
391
 
@@ -449,7 +393,7 @@ class Snapshot(pulumi.CustomResource):
449
393
  @pulumi.getter
450
394
  def force(self) -> pulumi.Output[Optional[bool]]:
451
395
  """
452
- Whether to force deletion of snapshots.
396
+ Specifies whether to force delete the snapshot. Valid values:
453
397
  """
454
398
  return pulumi.get(self, "force")
455
399
 
@@ -457,7 +401,7 @@ class Snapshot(pulumi.CustomResource):
457
401
  @pulumi.getter(name="instanceId")
458
402
  def instance_id(self) -> pulumi.Output[str]:
459
403
  """
460
- The ID of the database file system.
404
+ The ID of the Database File System.
461
405
  """
462
406
  return pulumi.get(self, "instance_id")
463
407
 
@@ -465,7 +409,7 @@ class Snapshot(pulumi.CustomResource):
465
409
  @pulumi.getter(name="retentionDays")
466
410
  def retention_days(self) -> pulumi.Output[Optional[int]]:
467
411
  """
468
- The retention time of the snapshot. Unit: days. Snapshots are automatically released after the retention time expires. Valid values: `1` to `65536`.
412
+ The retention period of the snapshot. Valid values: `1` to `65536`.
469
413
  """
470
414
  return pulumi.get(self, "retention_days")
471
415
 
@@ -473,7 +417,7 @@ class Snapshot(pulumi.CustomResource):
473
417
  @pulumi.getter(name="snapshotName")
474
418
  def snapshot_name(self) -> pulumi.Output[Optional[str]]:
475
419
  """
476
- The display name of the snapshot. The length is `2` to `128` characters. It must start with a large or small letter or Chinese, and cannot start with `http://` and `https://`. It can contain numbers, colons (:), underscores (_), or hyphens (-). To prevent name conflicts with automatic snapshots, you cannot start with `auto`.
420
+ The name of the snapshot. The `snapshot_name` must be `2` to `128` characters in length. It must start with a large or small letter or Chinese, and cannot start with `http://`, `https://`, `auto` or `dbfs-auto`. It can contain numbers, colons (:), underscores (_), or hyphens (-). **NOTE:** From version 1.233.1, `snapshot_name` can be modified.
477
421
  """
478
422
  return pulumi.get(self, "snapshot_name")
479
423
 
@@ -124,7 +124,7 @@ class InstanceArgs:
124
124
  On other OSs such as Linux, the host name can contain a maximum of 64 characters, which can be segments separated by dots (“.”), where each segment can contain uppercase/lowercase letters, numerals, or “_“. When it is changed, the instance will reboot to make the change take effect.
125
125
  :param pulumi.Input[str] hpc_cluster_id: The ID of the Elastic High Performance Computing (E-HPC) cluster to which to assign the instance.
126
126
  :param pulumi.Input[str] http_endpoint: Specifies whether to enable the access channel for instance metadata. Valid values: `enabled`, `disabled`. Default value: `enabled`.
127
- :param pulumi.Input[int] http_put_response_hop_limit: The HTTP PUT response hop limit for accessing instance metadata. Valid values: 1 to 64. Default value: 1.
127
+ :param pulumi.Input[int] http_put_response_hop_limit: **NOTE:**: This parameter is not available for use yet. The HTTP PUT response hop limit for accessing instance metadata. Valid values: 1 to 64. Default value: 1.
128
128
  :param pulumi.Input[str] http_tokens: Specifies whether to forcefully use the security-enhanced mode (IMDSv2) to access instance metadata. Default value: optional. Valid values:
129
129
  - optional: does not forcefully use the security-enhanced mode (IMDSv2).
130
130
  - required: forcefully uses the security-enhanced mode (IMDSv2). After you set this parameter to required, you cannot access instance metadata in normal mode.
@@ -580,7 +580,7 @@ class InstanceArgs:
580
580
  @pulumi.getter(name="httpPutResponseHopLimit")
581
581
  def http_put_response_hop_limit(self) -> Optional[pulumi.Input[int]]:
582
582
  """
583
- The HTTP PUT response hop limit for accessing instance metadata. Valid values: 1 to 64. Default value: 1.
583
+ **NOTE:**: This parameter is not available for use yet. The HTTP PUT response hop limit for accessing instance metadata. Valid values: 1 to 64. Default value: 1.
584
584
  """
585
585
  return pulumi.get(self, "http_put_response_hop_limit")
586
586
 
@@ -1438,7 +1438,7 @@ class _InstanceState:
1438
1438
  On other OSs such as Linux, the host name can contain a maximum of 64 characters, which can be segments separated by dots (“.”), where each segment can contain uppercase/lowercase letters, numerals, or “_“. When it is changed, the instance will reboot to make the change take effect.
1439
1439
  :param pulumi.Input[str] hpc_cluster_id: The ID of the Elastic High Performance Computing (E-HPC) cluster to which to assign the instance.
1440
1440
  :param pulumi.Input[str] http_endpoint: Specifies whether to enable the access channel for instance metadata. Valid values: `enabled`, `disabled`. Default value: `enabled`.
1441
- :param pulumi.Input[int] http_put_response_hop_limit: The HTTP PUT response hop limit for accessing instance metadata. Valid values: 1 to 64. Default value: 1.
1441
+ :param pulumi.Input[int] http_put_response_hop_limit: **NOTE:**: This parameter is not available for use yet. The HTTP PUT response hop limit for accessing instance metadata. Valid values: 1 to 64. Default value: 1.
1442
1442
  :param pulumi.Input[str] http_tokens: Specifies whether to forcefully use the security-enhanced mode (IMDSv2) to access instance metadata. Default value: optional. Valid values:
1443
1443
  - optional: does not forcefully use the security-enhanced mode (IMDSv2).
1444
1444
  - required: forcefully uses the security-enhanced mode (IMDSv2). After you set this parameter to required, you cannot access instance metadata in normal mode.
@@ -1974,7 +1974,7 @@ class _InstanceState:
1974
1974
  @pulumi.getter(name="httpPutResponseHopLimit")
1975
1975
  def http_put_response_hop_limit(self) -> Optional[pulumi.Input[int]]:
1976
1976
  """
1977
- The HTTP PUT response hop limit for accessing instance metadata. Valid values: 1 to 64. Default value: 1.
1977
+ **NOTE:**: This parameter is not available for use yet. The HTTP PUT response hop limit for accessing instance metadata. Valid values: 1 to 64. Default value: 1.
1978
1978
  """
1979
1979
  return pulumi.get(self, "http_put_response_hop_limit")
1980
1980
 
@@ -2993,7 +2993,7 @@ class Instance(pulumi.CustomResource):
2993
2993
  On other OSs such as Linux, the host name can contain a maximum of 64 characters, which can be segments separated by dots (“.”), where each segment can contain uppercase/lowercase letters, numerals, or “_“. When it is changed, the instance will reboot to make the change take effect.
2994
2994
  :param pulumi.Input[str] hpc_cluster_id: The ID of the Elastic High Performance Computing (E-HPC) cluster to which to assign the instance.
2995
2995
  :param pulumi.Input[str] http_endpoint: Specifies whether to enable the access channel for instance metadata. Valid values: `enabled`, `disabled`. Default value: `enabled`.
2996
- :param pulumi.Input[int] http_put_response_hop_limit: The HTTP PUT response hop limit for accessing instance metadata. Valid values: 1 to 64. Default value: 1.
2996
+ :param pulumi.Input[int] http_put_response_hop_limit: **NOTE:**: This parameter is not available for use yet. The HTTP PUT response hop limit for accessing instance metadata. Valid values: 1 to 64. Default value: 1.
2997
2997
  :param pulumi.Input[str] http_tokens: Specifies whether to forcefully use the security-enhanced mode (IMDSv2) to access instance metadata. Default value: optional. Valid values:
2998
2998
  - optional: does not forcefully use the security-enhanced mode (IMDSv2).
2999
2999
  - required: forcefully uses the security-enhanced mode (IMDSv2). After you set this parameter to required, you cannot access instance metadata in normal mode.
@@ -3491,7 +3491,7 @@ class Instance(pulumi.CustomResource):
3491
3491
  On other OSs such as Linux, the host name can contain a maximum of 64 characters, which can be segments separated by dots (“.”), where each segment can contain uppercase/lowercase letters, numerals, or “_“. When it is changed, the instance will reboot to make the change take effect.
3492
3492
  :param pulumi.Input[str] hpc_cluster_id: The ID of the Elastic High Performance Computing (E-HPC) cluster to which to assign the instance.
3493
3493
  :param pulumi.Input[str] http_endpoint: Specifies whether to enable the access channel for instance metadata. Valid values: `enabled`, `disabled`. Default value: `enabled`.
3494
- :param pulumi.Input[int] http_put_response_hop_limit: The HTTP PUT response hop limit for accessing instance metadata. Valid values: 1 to 64. Default value: 1.
3494
+ :param pulumi.Input[int] http_put_response_hop_limit: **NOTE:**: This parameter is not available for use yet. The HTTP PUT response hop limit for accessing instance metadata. Valid values: 1 to 64. Default value: 1.
3495
3495
  :param pulumi.Input[str] http_tokens: Specifies whether to forcefully use the security-enhanced mode (IMDSv2) to access instance metadata. Default value: optional. Valid values:
3496
3496
  - optional: does not forcefully use the security-enhanced mode (IMDSv2).
3497
3497
  - required: forcefully uses the security-enhanced mode (IMDSv2). After you set this parameter to required, you cannot access instance metadata in normal mode.
@@ -3859,7 +3859,7 @@ class Instance(pulumi.CustomResource):
3859
3859
  @pulumi.getter(name="httpPutResponseHopLimit")
3860
3860
  def http_put_response_hop_limit(self) -> pulumi.Output[int]:
3861
3861
  """
3862
- The HTTP PUT response hop limit for accessing instance metadata. Valid values: 1 to 64. Default value: 1.
3862
+ **NOTE:**: This parameter is not available for use yet. The HTTP PUT response hop limit for accessing instance metadata. Valid values: 1 to 64. Default value: 1.
3863
3863
  """
3864
3864
  return pulumi.get(self, "http_put_response_hop_limit")
3865
3865
 
@@ -93,7 +93,7 @@ class ScalingConfigurationArgs:
93
93
  :param pulumi.Input[Sequence[pulumi.Input['ScalingConfigurationInstanceTypeOverrideArgs']]] instance_type_overrides: specify the weight of instance type. See `instance_type_override` below for details.
94
94
  :param pulumi.Input[Sequence[pulumi.Input[str]]] instance_types: Resource types of an ECS instance.
95
95
  :param pulumi.Input[str] internet_charge_type: Network billing type, Values: PayByBandwidth or PayByTraffic. Default to `PayByBandwidth`.
96
- :param pulumi.Input[int] internet_max_bandwidth_in: Maximum incoming bandwidth from the public network, measured in Mbps (Mega bit per second). The value range is [1,200].
96
+ :param pulumi.Input[int] internet_max_bandwidth_in: Maximum incoming bandwidth from the public network, measured in Mbps (Mega bit per second).
97
97
  :param pulumi.Input[int] internet_max_bandwidth_out: Maximum outgoing bandwidth from the public network, measured in Mbps (Mega bit per second). The value range for PayByBandwidth is [0,1024].
98
98
  :param pulumi.Input[str] io_optimized: It has been deprecated on instance resource. All the launched alicloud instances will be I/O optimized.
99
99
  :param pulumi.Input[bool] is_outdated: Whether to use outdated instance type. Default to false.
@@ -483,7 +483,7 @@ class ScalingConfigurationArgs:
483
483
  @pulumi.getter(name="internetMaxBandwidthIn")
484
484
  def internet_max_bandwidth_in(self) -> Optional[pulumi.Input[int]]:
485
485
  """
486
- Maximum incoming bandwidth from the public network, measured in Mbps (Mega bit per second). The value range is [1,200].
486
+ Maximum incoming bandwidth from the public network, measured in Mbps (Mega bit per second).
487
487
  """
488
488
  return pulumi.get(self, "internet_max_bandwidth_in")
489
489
 
@@ -955,7 +955,7 @@ class _ScalingConfigurationState:
955
955
  :param pulumi.Input[Sequence[pulumi.Input['ScalingConfigurationInstanceTypeOverrideArgs']]] instance_type_overrides: specify the weight of instance type. See `instance_type_override` below for details.
956
956
  :param pulumi.Input[Sequence[pulumi.Input[str]]] instance_types: Resource types of an ECS instance.
957
957
  :param pulumi.Input[str] internet_charge_type: Network billing type, Values: PayByBandwidth or PayByTraffic. Default to `PayByBandwidth`.
958
- :param pulumi.Input[int] internet_max_bandwidth_in: Maximum incoming bandwidth from the public network, measured in Mbps (Mega bit per second). The value range is [1,200].
958
+ :param pulumi.Input[int] internet_max_bandwidth_in: Maximum incoming bandwidth from the public network, measured in Mbps (Mega bit per second).
959
959
  :param pulumi.Input[int] internet_max_bandwidth_out: Maximum outgoing bandwidth from the public network, measured in Mbps (Mega bit per second). The value range for PayByBandwidth is [0,1024].
960
960
  :param pulumi.Input[str] io_optimized: It has been deprecated on instance resource. All the launched alicloud instances will be I/O optimized.
961
961
  :param pulumi.Input[bool] is_outdated: Whether to use outdated instance type. Default to false.
@@ -1335,7 +1335,7 @@ class _ScalingConfigurationState:
1335
1335
  @pulumi.getter(name="internetMaxBandwidthIn")
1336
1336
  def internet_max_bandwidth_in(self) -> Optional[pulumi.Input[int]]:
1337
1337
  """
1338
- Maximum incoming bandwidth from the public network, measured in Mbps (Mega bit per second). The value range is [1,200].
1338
+ Maximum incoming bandwidth from the public network, measured in Mbps (Mega bit per second).
1339
1339
  """
1340
1340
  return pulumi.get(self, "internet_max_bandwidth_in")
1341
1341
 
@@ -1903,7 +1903,7 @@ class ScalingConfiguration(pulumi.CustomResource):
1903
1903
  :param pulumi.Input[Sequence[pulumi.Input[Union['ScalingConfigurationInstanceTypeOverrideArgs', 'ScalingConfigurationInstanceTypeOverrideArgsDict']]]] instance_type_overrides: specify the weight of instance type. See `instance_type_override` below for details.
1904
1904
  :param pulumi.Input[Sequence[pulumi.Input[str]]] instance_types: Resource types of an ECS instance.
1905
1905
  :param pulumi.Input[str] internet_charge_type: Network billing type, Values: PayByBandwidth or PayByTraffic. Default to `PayByBandwidth`.
1906
- :param pulumi.Input[int] internet_max_bandwidth_in: Maximum incoming bandwidth from the public network, measured in Mbps (Mega bit per second). The value range is [1,200].
1906
+ :param pulumi.Input[int] internet_max_bandwidth_in: Maximum incoming bandwidth from the public network, measured in Mbps (Mega bit per second).
1907
1907
  :param pulumi.Input[int] internet_max_bandwidth_out: Maximum outgoing bandwidth from the public network, measured in Mbps (Mega bit per second). The value range for PayByBandwidth is [0,1024].
1908
1908
  :param pulumi.Input[str] io_optimized: It has been deprecated on instance resource. All the launched alicloud instances will be I/O optimized.
1909
1909
  :param pulumi.Input[bool] is_outdated: Whether to use outdated instance type. Default to false.
@@ -2254,7 +2254,7 @@ class ScalingConfiguration(pulumi.CustomResource):
2254
2254
  :param pulumi.Input[Sequence[pulumi.Input[Union['ScalingConfigurationInstanceTypeOverrideArgs', 'ScalingConfigurationInstanceTypeOverrideArgsDict']]]] instance_type_overrides: specify the weight of instance type. See `instance_type_override` below for details.
2255
2255
  :param pulumi.Input[Sequence[pulumi.Input[str]]] instance_types: Resource types of an ECS instance.
2256
2256
  :param pulumi.Input[str] internet_charge_type: Network billing type, Values: PayByBandwidth or PayByTraffic. Default to `PayByBandwidth`.
2257
- :param pulumi.Input[int] internet_max_bandwidth_in: Maximum incoming bandwidth from the public network, measured in Mbps (Mega bit per second). The value range is [1,200].
2257
+ :param pulumi.Input[int] internet_max_bandwidth_in: Maximum incoming bandwidth from the public network, measured in Mbps (Mega bit per second).
2258
2258
  :param pulumi.Input[int] internet_max_bandwidth_out: Maximum outgoing bandwidth from the public network, measured in Mbps (Mega bit per second). The value range for PayByBandwidth is [0,1024].
2259
2259
  :param pulumi.Input[str] io_optimized: It has been deprecated on instance resource. All the launched alicloud instances will be I/O optimized.
2260
2260
  :param pulumi.Input[bool] is_outdated: Whether to use outdated instance type. Default to false.
@@ -2510,7 +2510,7 @@ class ScalingConfiguration(pulumi.CustomResource):
2510
2510
  @pulumi.getter(name="internetMaxBandwidthIn")
2511
2511
  def internet_max_bandwidth_in(self) -> pulumi.Output[Optional[int]]:
2512
2512
  """
2513
- Maximum incoming bandwidth from the public network, measured in Mbps (Mega bit per second). The value range is [1,200].
2513
+ Maximum incoming bandwidth from the public network, measured in Mbps (Mega bit per second).
2514
2514
  """
2515
2515
  return pulumi.get(self, "internet_max_bandwidth_in")
2516
2516