pulumi-alicloud 3.78.0a1747367664__py3-none-any.whl → 3.79.0__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 (48) hide show
  1. pulumi_alicloud/__init__.py +40 -0
  2. pulumi_alicloud/alb/_inputs.py +21 -105
  3. pulumi_alicloud/alb/get_load_balancers.py +169 -18
  4. pulumi_alicloud/alb/listener.py +28 -56
  5. pulumi_alicloud/alb/outputs.py +150 -105
  6. pulumi_alicloud/cs/_inputs.py +54 -0
  7. pulumi_alicloud/cs/get_kubernetes_version.py +4 -4
  8. pulumi_alicloud/cs/managed_kubernetes.py +129 -7
  9. pulumi_alicloud/cs/outputs.py +49 -0
  10. pulumi_alicloud/ecs/__init__.py +1 -0
  11. pulumi_alicloud/ecs/_inputs.py +40 -0
  12. pulumi_alicloud/ecs/get_dedicated_hosts.py +49 -22
  13. pulumi_alicloud/ecs/get_instances.py +4 -3
  14. pulumi_alicloud/ecs/instance.py +94 -0
  15. pulumi_alicloud/ecs/outputs.py +129 -39
  16. pulumi_alicloud/ecs/ram_role_attachment.py +406 -0
  17. pulumi_alicloud/eflo/__init__.py +1 -0
  18. pulumi_alicloud/eflo/vsc.py +433 -0
  19. pulumi_alicloud/elasticsearch/instance.py +7 -7
  20. pulumi_alicloud/ess/outputs.py +226 -4
  21. pulumi_alicloud/expressconnect/router_vpc_association.py +56 -49
  22. pulumi_alicloud/fc/__init__.py +1 -0
  23. pulumi_alicloud/fc/get_v3_triggers.py +277 -0
  24. pulumi_alicloud/fc/outputs.py +192 -0
  25. pulumi_alicloud/lindorm/__init__.py +1 -0
  26. pulumi_alicloud/lindorm/public_network.py +288 -0
  27. pulumi_alicloud/maxcompute/project.py +2 -4
  28. pulumi_alicloud/oos/get_parameters.py +72 -28
  29. pulumi_alicloud/oos/outputs.py +10 -10
  30. pulumi_alicloud/pai/__init__.py +1 -0
  31. pulumi_alicloud/pai/workspace_user_config.py +356 -0
  32. pulumi_alicloud/polardb/cluster.py +155 -0
  33. pulumi_alicloud/pulumi-plugin.json +1 -1
  34. pulumi_alicloud/pvtz/get_zone_records.py +66 -35
  35. pulumi_alicloud/pvtz/get_zones.py +49 -32
  36. pulumi_alicloud/pvtz/outputs.py +60 -56
  37. pulumi_alicloud/ram/policy.py +21 -35
  38. pulumi_alicloud/ram/role_attachment.py +6 -2
  39. pulumi_alicloud/rds/__init__.py +1 -0
  40. pulumi_alicloud/rds/db_proxy_public.py +512 -0
  41. pulumi_alicloud/rds/instance.py +35 -35
  42. pulumi_alicloud/sls/__init__.py +1 -0
  43. pulumi_alicloud/sls/get_alerts.py +463 -0
  44. pulumi_alicloud/sls/outputs.py +975 -0
  45. {pulumi_alicloud-3.78.0a1747367664.dist-info → pulumi_alicloud-3.79.0.dist-info}/METADATA +1 -1
  46. {pulumi_alicloud-3.78.0a1747367664.dist-info → pulumi_alicloud-3.79.0.dist-info}/RECORD +48 -41
  47. {pulumi_alicloud-3.78.0a1747367664.dist-info → pulumi_alicloud-3.79.0.dist-info}/WHEEL +1 -1
  48. {pulumi_alicloud-3.78.0a1747367664.dist-info → pulumi_alicloud-3.79.0.dist-info}/top_level.txt +0 -0
@@ -116,9 +116,6 @@ class GetDedicatedHostsResult:
116
116
  @property
117
117
  @pulumi.getter
118
118
  def ids(self) -> Sequence[builtins.str]:
119
- """
120
- A list of ECS Dedicated Host ids.
121
- """
122
119
  return pulumi.get(self, "ids")
123
120
 
124
121
  @property
@@ -138,7 +135,7 @@ class GetDedicatedHostsResult:
138
135
  @pulumi.getter(name="operationLocks")
139
136
  def operation_locks(self) -> Optional[Sequence['outputs.GetDedicatedHostsOperationLockResult']]:
140
137
  """
141
- (Available in 1.123.1+) The operation_locks. contains the following attribute:
138
+ (Available since v1.123.1) The operation_locks. contains the following attribute:
142
139
  """
143
140
  return pulumi.get(self, "operation_locks")
144
141
 
@@ -166,11 +163,17 @@ class GetDedicatedHostsResult:
166
163
  @property
167
164
  @pulumi.getter
168
165
  def tags(self) -> Optional[Mapping[str, builtins.str]]:
166
+ """
167
+ The tags of the dedicated host.
168
+ """
169
169
  return pulumi.get(self, "tags")
170
170
 
171
171
  @property
172
172
  @pulumi.getter(name="zoneId")
173
173
  def zone_id(self) -> Optional[builtins.str]:
174
+ """
175
+ The zone id of the dedicated host.
176
+ """
174
177
  return pulumi.get(self, "zone_id")
175
178
 
176
179
 
@@ -209,21 +212,33 @@ def get_dedicated_hosts(dedicated_host_id: Optional[builtins.str] = None,
209
212
  zone_id: Optional[builtins.str] = None,
210
213
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDedicatedHostsResult:
211
214
  """
212
- This data source provides a list of ECS Dedicated Hosts in an Alibaba Cloud account according to the specified filters.
215
+ This data source provides the ECS Dedicated Hosts of the current Alibaba Cloud user.
213
216
 
214
- > **NOTE:** Available in v1.91.0+.
217
+ > **NOTE:** Available since v1.91.0.
215
218
 
216
219
  ## Example Usage
217
220
 
221
+ Basic Usage
222
+
218
223
  ```python
219
224
  import pulumi
220
225
  import pulumi_alicloud as alicloud
221
226
 
222
- # Declare the data source
223
- dedicated_hosts_ds = alicloud.ecs.get_dedicated_hosts(name_regex="tf-testAcc",
224
- dedicated_host_type="ddh.g5",
225
- status="Available")
226
- pulumi.export("firstDedicatedHostsId", dedicated_hosts_ds.hosts[0].id)
227
+ config = pulumi.Config()
228
+ name = config.get("name")
229
+ if name is None:
230
+ name = "terraform-example"
231
+ default = alicloud.ecs.DedicatedHost("default",
232
+ dedicated_host_type="ddh.c5",
233
+ description="From_Terraform",
234
+ dedicated_host_name=name,
235
+ action_on_maintenance="Migrate",
236
+ tags={
237
+ "Create": "TF",
238
+ "For": "ddh-test",
239
+ })
240
+ ids = alicloud.ecs.get_dedicated_hosts_output(ids=[default.id])
241
+ pulumi.export("ecsDedicatedHostId0", ids.hosts[0].id)
227
242
  ```
228
243
 
229
244
 
@@ -232,10 +247,10 @@ def get_dedicated_hosts(dedicated_host_id: Optional[builtins.str] = None,
232
247
  :param builtins.str dedicated_host_type: The type of the dedicated host.
233
248
  :param Sequence[builtins.str] ids: A list of ECS Dedicated Host ids.
234
249
  :param builtins.str name_regex: A regex string to filter results by the ECS Dedicated Host name.
235
- :param Sequence[Union['GetDedicatedHostsOperationLockArgs', 'GetDedicatedHostsOperationLockArgsDict']] operation_locks: The reason why the dedicated host resource is locked.
250
+ :param Sequence[Union['GetDedicatedHostsOperationLockArgs', 'GetDedicatedHostsOperationLockArgsDict']] operation_locks: The reason why the dedicated host resource is locked. See `operation_locks` below.
236
251
  :param builtins.str output_file: Save the result to the file.
237
252
  :param builtins.str resource_group_id: The ID of the resource group to which the ECS Dedicated Host belongs.
238
- :param builtins.str status: The status of the ECS Dedicated Host. validate value: `Available`, `Creating`, `PermanentFailure`, `Released`, `UnderAssessment`.
253
+ :param builtins.str status: The status of the ECS Dedicated Host. Valid Value: `Available`, `Creating`, `PermanentFailure`, `Released`, `UnderAssessment`.
239
254
  :param Mapping[str, builtins.str] tags: A mapping of tags to assign to the resource.
240
255
  :param builtins.str zone_id: The zone ID of the ECS Dedicated Host.
241
256
  """
@@ -282,21 +297,33 @@ def get_dedicated_hosts_output(dedicated_host_id: Optional[pulumi.Input[Optional
282
297
  zone_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
283
298
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDedicatedHostsResult]:
284
299
  """
285
- This data source provides a list of ECS Dedicated Hosts in an Alibaba Cloud account according to the specified filters.
300
+ This data source provides the ECS Dedicated Hosts of the current Alibaba Cloud user.
286
301
 
287
- > **NOTE:** Available in v1.91.0+.
302
+ > **NOTE:** Available since v1.91.0.
288
303
 
289
304
  ## Example Usage
290
305
 
306
+ Basic Usage
307
+
291
308
  ```python
292
309
  import pulumi
293
310
  import pulumi_alicloud as alicloud
294
311
 
295
- # Declare the data source
296
- dedicated_hosts_ds = alicloud.ecs.get_dedicated_hosts(name_regex="tf-testAcc",
297
- dedicated_host_type="ddh.g5",
298
- status="Available")
299
- pulumi.export("firstDedicatedHostsId", dedicated_hosts_ds.hosts[0].id)
312
+ config = pulumi.Config()
313
+ name = config.get("name")
314
+ if name is None:
315
+ name = "terraform-example"
316
+ default = alicloud.ecs.DedicatedHost("default",
317
+ dedicated_host_type="ddh.c5",
318
+ description="From_Terraform",
319
+ dedicated_host_name=name,
320
+ action_on_maintenance="Migrate",
321
+ tags={
322
+ "Create": "TF",
323
+ "For": "ddh-test",
324
+ })
325
+ ids = alicloud.ecs.get_dedicated_hosts_output(ids=[default.id])
326
+ pulumi.export("ecsDedicatedHostId0", ids.hosts[0].id)
300
327
  ```
301
328
 
302
329
 
@@ -305,10 +332,10 @@ def get_dedicated_hosts_output(dedicated_host_id: Optional[pulumi.Input[Optional
305
332
  :param builtins.str dedicated_host_type: The type of the dedicated host.
306
333
  :param Sequence[builtins.str] ids: A list of ECS Dedicated Host ids.
307
334
  :param builtins.str name_regex: A regex string to filter results by the ECS Dedicated Host name.
308
- :param Sequence[Union['GetDedicatedHostsOperationLockArgs', 'GetDedicatedHostsOperationLockArgsDict']] operation_locks: The reason why the dedicated host resource is locked.
335
+ :param Sequence[Union['GetDedicatedHostsOperationLockArgs', 'GetDedicatedHostsOperationLockArgsDict']] operation_locks: The reason why the dedicated host resource is locked. See `operation_locks` below.
309
336
  :param builtins.str output_file: Save the result to the file.
310
337
  :param builtins.str resource_group_id: The ID of the resource group to which the ECS Dedicated Host belongs.
311
- :param builtins.str status: The status of the ECS Dedicated Host. validate value: `Available`, `Creating`, `PermanentFailure`, `Released`, `UnderAssessment`.
338
+ :param builtins.str status: The status of the ECS Dedicated Host. Valid Value: `Available`, `Creating`, `PermanentFailure`, `Released`, `UnderAssessment`.
312
339
  :param Mapping[str, builtins.str] tags: A mapping of tags to assign to the resource.
313
340
  :param builtins.str zone_id: The zone ID of the ECS Dedicated Host.
314
341
  """
@@ -111,9 +111,6 @@ class GetInstancesResult:
111
111
  @property
112
112
  @pulumi.getter
113
113
  def ids(self) -> Sequence[builtins.str]:
114
- """
115
- A list of ECS instance IDs.
116
- """
117
114
  return pulumi.get(self, "ids")
118
115
 
119
116
  @property
@@ -265,6 +262,8 @@ def get_instances(availability_zone: Optional[builtins.str] = None,
265
262
  """
266
263
  The Instances data source list ECS instance resources according to their ID, name regex, image id, status and other fields.
267
264
 
265
+ > **NOTE:** Available since v1.7.0.
266
+
268
267
  ## Example Usage
269
268
 
270
269
  ```python
@@ -359,6 +358,8 @@ def get_instances_output(availability_zone: Optional[pulumi.Input[Optional[built
359
358
  """
360
359
  The Instances data source list ECS instance resources according to their ID, name regex, image id, status and other fields.
361
360
 
361
+ > **NOTE:** Available since v1.7.0.
362
+
362
363
  ## Example Usage
363
364
 
364
365
  ```python
@@ -84,6 +84,7 @@ class InstanceArgs:
84
84
  status: Optional[pulumi.Input[builtins.str]] = None,
85
85
  stopped_mode: Optional[pulumi.Input[builtins.str]] = None,
86
86
  system_disk_auto_snapshot_policy_id: Optional[pulumi.Input[builtins.str]] = None,
87
+ system_disk_bursting_enabled: Optional[pulumi.Input[builtins.bool]] = None,
87
88
  system_disk_category: Optional[pulumi.Input[builtins.str]] = None,
88
89
  system_disk_description: Optional[pulumi.Input[builtins.str]] = None,
89
90
  system_disk_encrypt_algorithm: Optional[pulumi.Input[builtins.str]] = None,
@@ -91,6 +92,7 @@ class InstanceArgs:
91
92
  system_disk_kms_key_id: Optional[pulumi.Input[builtins.str]] = None,
92
93
  system_disk_name: Optional[pulumi.Input[builtins.str]] = None,
93
94
  system_disk_performance_level: Optional[pulumi.Input[builtins.str]] = None,
95
+ system_disk_provisioned_iops: Optional[pulumi.Input[builtins.int]] = None,
94
96
  system_disk_size: Optional[pulumi.Input[builtins.int]] = None,
95
97
  system_disk_storage_cluster_id: Optional[pulumi.Input[builtins.str]] = None,
96
98
  tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
@@ -212,6 +214,7 @@ class InstanceArgs:
212
214
  * `KeepCharging`: standard mode. Billing of the instance continues after the instance is stopped, and resources are retained for the instance.
213
215
  * `StopCharging`: economical mode. Billing of some resources of the instance stops after the instance is stopped. When the instance is stopped, its resources such as vCPUs, memory, and public IP address are released. You may be unable to restart the instance if some types of resources are out of stock in the current region.
214
216
  :param pulumi.Input[builtins.str] system_disk_auto_snapshot_policy_id: The ID of the automatic snapshot policy applied to the system disk.
217
+ :param pulumi.Input[builtins.bool] system_disk_bursting_enabled: Specifies whether to enable the performance burst feature for the system disk. Valid values:
215
218
  :param pulumi.Input[builtins.str] system_disk_category: Valid values are `ephemeral_ssd`, `cloud_efficiency`, `cloud_ssd`, `cloud_essd`, `cloud`, `cloud_auto`, `cloud_essd_entry`. only is used to some none I/O optimized instance. Valid values `cloud_auto` Available since v1.184.0.
216
219
  :param pulumi.Input[builtins.str] system_disk_description: The description of the system disk. The description must be 2 to 256 characters in length and cannot start with http:// or https://.
217
220
  :param pulumi.Input[builtins.str] system_disk_encrypt_algorithm: The algorithm to be used to encrypt the system disk. Valid values are `aes-256`, `sm4-128`. Default value is `aes-256`.
@@ -219,6 +222,7 @@ class InstanceArgs:
219
222
  :param pulumi.Input[builtins.str] system_disk_kms_key_id: The ID of the Key Management Service (KMS) key to be used for the system disk.
220
223
  :param pulumi.Input[builtins.str] system_disk_name: The name of the system disk. The name must be 2 to 128 characters in length and can contain letters, digits, periods (.), colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with http:// or https://.
221
224
  :param pulumi.Input[builtins.str] system_disk_performance_level: The performance level of the ESSD used as the system disk, Valid values: `PL0`, `PL1`, `PL2`, `PL3`, Default to `PL1`;For more information about ESSD, See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/122389.htm).
225
+ :param pulumi.Input[builtins.int] system_disk_provisioned_iops: The provisioned read/write IOPS of the ESSD AutoPL disk to use as the system disk.
222
226
  :param pulumi.Input[builtins.int] system_disk_size: Size of the system disk, measured in GiB. Value range: [20, 500]. The specified value must be equal to or greater than max{20, Imagesize}. Default value: max{40, ImageSize}.
223
227
  :param pulumi.Input[builtins.str] system_disk_storage_cluster_id: The ID of the dedicated block storage cluster. If you want to use disks in a dedicated block storage cluster as system disks when you create instances, you must specify this parameter. For more information about dedicated block storage clusters.
224
228
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: A mapping of tags to assign to the resource.
@@ -364,6 +368,8 @@ class InstanceArgs:
364
368
  pulumi.set(__self__, "stopped_mode", stopped_mode)
365
369
  if system_disk_auto_snapshot_policy_id is not None:
366
370
  pulumi.set(__self__, "system_disk_auto_snapshot_policy_id", system_disk_auto_snapshot_policy_id)
371
+ if system_disk_bursting_enabled is not None:
372
+ pulumi.set(__self__, "system_disk_bursting_enabled", system_disk_bursting_enabled)
367
373
  if system_disk_category is not None:
368
374
  pulumi.set(__self__, "system_disk_category", system_disk_category)
369
375
  if system_disk_description is not None:
@@ -378,6 +384,8 @@ class InstanceArgs:
378
384
  pulumi.set(__self__, "system_disk_name", system_disk_name)
379
385
  if system_disk_performance_level is not None:
380
386
  pulumi.set(__self__, "system_disk_performance_level", system_disk_performance_level)
387
+ if system_disk_provisioned_iops is not None:
388
+ pulumi.set(__self__, "system_disk_provisioned_iops", system_disk_provisioned_iops)
381
389
  if system_disk_size is not None:
382
390
  pulumi.set(__self__, "system_disk_size", system_disk_size)
383
391
  if system_disk_storage_cluster_id is not None:
@@ -1189,6 +1197,18 @@ class InstanceArgs:
1189
1197
  def system_disk_auto_snapshot_policy_id(self, value: Optional[pulumi.Input[builtins.str]]):
1190
1198
  pulumi.set(self, "system_disk_auto_snapshot_policy_id", value)
1191
1199
 
1200
+ @property
1201
+ @pulumi.getter(name="systemDiskBurstingEnabled")
1202
+ def system_disk_bursting_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
1203
+ """
1204
+ Specifies whether to enable the performance burst feature for the system disk. Valid values:
1205
+ """
1206
+ return pulumi.get(self, "system_disk_bursting_enabled")
1207
+
1208
+ @system_disk_bursting_enabled.setter
1209
+ def system_disk_bursting_enabled(self, value: Optional[pulumi.Input[builtins.bool]]):
1210
+ pulumi.set(self, "system_disk_bursting_enabled", value)
1211
+
1192
1212
  @property
1193
1213
  @pulumi.getter(name="systemDiskCategory")
1194
1214
  def system_disk_category(self) -> Optional[pulumi.Input[builtins.str]]:
@@ -1273,6 +1293,18 @@ class InstanceArgs:
1273
1293
  def system_disk_performance_level(self, value: Optional[pulumi.Input[builtins.str]]):
1274
1294
  pulumi.set(self, "system_disk_performance_level", value)
1275
1295
 
1296
+ @property
1297
+ @pulumi.getter(name="systemDiskProvisionedIops")
1298
+ def system_disk_provisioned_iops(self) -> Optional[pulumi.Input[builtins.int]]:
1299
+ """
1300
+ The provisioned read/write IOPS of the ESSD AutoPL disk to use as the system disk.
1301
+ """
1302
+ return pulumi.get(self, "system_disk_provisioned_iops")
1303
+
1304
+ @system_disk_provisioned_iops.setter
1305
+ def system_disk_provisioned_iops(self, value: Optional[pulumi.Input[builtins.int]]):
1306
+ pulumi.set(self, "system_disk_provisioned_iops", value)
1307
+
1276
1308
  @property
1277
1309
  @pulumi.getter(name="systemDiskSize")
1278
1310
  def system_disk_size(self) -> Optional[pulumi.Input[builtins.int]]:
@@ -1441,6 +1473,7 @@ class _InstanceState:
1441
1473
  status: Optional[pulumi.Input[builtins.str]] = None,
1442
1474
  stopped_mode: Optional[pulumi.Input[builtins.str]] = None,
1443
1475
  system_disk_auto_snapshot_policy_id: Optional[pulumi.Input[builtins.str]] = None,
1476
+ system_disk_bursting_enabled: Optional[pulumi.Input[builtins.bool]] = None,
1444
1477
  system_disk_category: Optional[pulumi.Input[builtins.str]] = None,
1445
1478
  system_disk_description: Optional[pulumi.Input[builtins.str]] = None,
1446
1479
  system_disk_encrypt_algorithm: Optional[pulumi.Input[builtins.str]] = None,
@@ -1449,6 +1482,7 @@ class _InstanceState:
1449
1482
  system_disk_kms_key_id: Optional[pulumi.Input[builtins.str]] = None,
1450
1483
  system_disk_name: Optional[pulumi.Input[builtins.str]] = None,
1451
1484
  system_disk_performance_level: Optional[pulumi.Input[builtins.str]] = None,
1485
+ system_disk_provisioned_iops: Optional[pulumi.Input[builtins.int]] = None,
1452
1486
  system_disk_size: Optional[pulumi.Input[builtins.int]] = None,
1453
1487
  system_disk_storage_cluster_id: Optional[pulumi.Input[builtins.str]] = None,
1454
1488
  tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
@@ -1581,6 +1615,7 @@ class _InstanceState:
1581
1615
  * `KeepCharging`: standard mode. Billing of the instance continues after the instance is stopped, and resources are retained for the instance.
1582
1616
  * `StopCharging`: economical mode. Billing of some resources of the instance stops after the instance is stopped. When the instance is stopped, its resources such as vCPUs, memory, and public IP address are released. You may be unable to restart the instance if some types of resources are out of stock in the current region.
1583
1617
  :param pulumi.Input[builtins.str] system_disk_auto_snapshot_policy_id: The ID of the automatic snapshot policy applied to the system disk.
1618
+ :param pulumi.Input[builtins.bool] system_disk_bursting_enabled: Specifies whether to enable the performance burst feature for the system disk. Valid values:
1584
1619
  :param pulumi.Input[builtins.str] system_disk_category: Valid values are `ephemeral_ssd`, `cloud_efficiency`, `cloud_ssd`, `cloud_essd`, `cloud`, `cloud_auto`, `cloud_essd_entry`. only is used to some none I/O optimized instance. Valid values `cloud_auto` Available since v1.184.0.
1585
1620
  :param pulumi.Input[builtins.str] system_disk_description: The description of the system disk. The description must be 2 to 256 characters in length and cannot start with http:// or https://.
1586
1621
  :param pulumi.Input[builtins.str] system_disk_encrypt_algorithm: The algorithm to be used to encrypt the system disk. Valid values are `aes-256`, `sm4-128`. Default value is `aes-256`.
@@ -1589,6 +1624,7 @@ class _InstanceState:
1589
1624
  :param pulumi.Input[builtins.str] system_disk_kms_key_id: The ID of the Key Management Service (KMS) key to be used for the system disk.
1590
1625
  :param pulumi.Input[builtins.str] system_disk_name: The name of the system disk. The name must be 2 to 128 characters in length and can contain letters, digits, periods (.), colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with http:// or https://.
1591
1626
  :param pulumi.Input[builtins.str] system_disk_performance_level: The performance level of the ESSD used as the system disk, Valid values: `PL0`, `PL1`, `PL2`, `PL3`, Default to `PL1`;For more information about ESSD, See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/122389.htm).
1627
+ :param pulumi.Input[builtins.int] system_disk_provisioned_iops: The provisioned read/write IOPS of the ESSD AutoPL disk to use as the system disk.
1592
1628
  :param pulumi.Input[builtins.int] system_disk_size: Size of the system disk, measured in GiB. Value range: [20, 500]. The specified value must be equal to or greater than max{20, Imagesize}. Default value: max{40, ImageSize}.
1593
1629
  :param pulumi.Input[builtins.str] system_disk_storage_cluster_id: The ID of the dedicated block storage cluster. If you want to use disks in a dedicated block storage cluster as system disks when you create instances, you must specify this parameter. For more information about dedicated block storage clusters.
1594
1630
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: A mapping of tags to assign to the resource.
@@ -1756,6 +1792,8 @@ class _InstanceState:
1756
1792
  pulumi.set(__self__, "stopped_mode", stopped_mode)
1757
1793
  if system_disk_auto_snapshot_policy_id is not None:
1758
1794
  pulumi.set(__self__, "system_disk_auto_snapshot_policy_id", system_disk_auto_snapshot_policy_id)
1795
+ if system_disk_bursting_enabled is not None:
1796
+ pulumi.set(__self__, "system_disk_bursting_enabled", system_disk_bursting_enabled)
1759
1797
  if system_disk_category is not None:
1760
1798
  pulumi.set(__self__, "system_disk_category", system_disk_category)
1761
1799
  if system_disk_description is not None:
@@ -1772,6 +1810,8 @@ class _InstanceState:
1772
1810
  pulumi.set(__self__, "system_disk_name", system_disk_name)
1773
1811
  if system_disk_performance_level is not None:
1774
1812
  pulumi.set(__self__, "system_disk_performance_level", system_disk_performance_level)
1813
+ if system_disk_provisioned_iops is not None:
1814
+ pulumi.set(__self__, "system_disk_provisioned_iops", system_disk_provisioned_iops)
1775
1815
  if system_disk_size is not None:
1776
1816
  pulumi.set(__self__, "system_disk_size", system_disk_size)
1777
1817
  if system_disk_storage_cluster_id is not None:
@@ -2715,6 +2755,18 @@ class _InstanceState:
2715
2755
  def system_disk_auto_snapshot_policy_id(self, value: Optional[pulumi.Input[builtins.str]]):
2716
2756
  pulumi.set(self, "system_disk_auto_snapshot_policy_id", value)
2717
2757
 
2758
+ @property
2759
+ @pulumi.getter(name="systemDiskBurstingEnabled")
2760
+ def system_disk_bursting_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
2761
+ """
2762
+ Specifies whether to enable the performance burst feature for the system disk. Valid values:
2763
+ """
2764
+ return pulumi.get(self, "system_disk_bursting_enabled")
2765
+
2766
+ @system_disk_bursting_enabled.setter
2767
+ def system_disk_bursting_enabled(self, value: Optional[pulumi.Input[builtins.bool]]):
2768
+ pulumi.set(self, "system_disk_bursting_enabled", value)
2769
+
2718
2770
  @property
2719
2771
  @pulumi.getter(name="systemDiskCategory")
2720
2772
  def system_disk_category(self) -> Optional[pulumi.Input[builtins.str]]:
@@ -2811,6 +2863,18 @@ class _InstanceState:
2811
2863
  def system_disk_performance_level(self, value: Optional[pulumi.Input[builtins.str]]):
2812
2864
  pulumi.set(self, "system_disk_performance_level", value)
2813
2865
 
2866
+ @property
2867
+ @pulumi.getter(name="systemDiskProvisionedIops")
2868
+ def system_disk_provisioned_iops(self) -> Optional[pulumi.Input[builtins.int]]:
2869
+ """
2870
+ The provisioned read/write IOPS of the ESSD AutoPL disk to use as the system disk.
2871
+ """
2872
+ return pulumi.get(self, "system_disk_provisioned_iops")
2873
+
2874
+ @system_disk_provisioned_iops.setter
2875
+ def system_disk_provisioned_iops(self, value: Optional[pulumi.Input[builtins.int]]):
2876
+ pulumi.set(self, "system_disk_provisioned_iops", value)
2877
+
2814
2878
  @property
2815
2879
  @pulumi.getter(name="systemDiskSize")
2816
2880
  def system_disk_size(self) -> Optional[pulumi.Input[builtins.int]]:
@@ -2971,6 +3035,7 @@ class Instance(pulumi.CustomResource):
2971
3035
  status: Optional[pulumi.Input[builtins.str]] = None,
2972
3036
  stopped_mode: Optional[pulumi.Input[builtins.str]] = None,
2973
3037
  system_disk_auto_snapshot_policy_id: Optional[pulumi.Input[builtins.str]] = None,
3038
+ system_disk_bursting_enabled: Optional[pulumi.Input[builtins.bool]] = None,
2974
3039
  system_disk_category: Optional[pulumi.Input[builtins.str]] = None,
2975
3040
  system_disk_description: Optional[pulumi.Input[builtins.str]] = None,
2976
3041
  system_disk_encrypt_algorithm: Optional[pulumi.Input[builtins.str]] = None,
@@ -2978,6 +3043,7 @@ class Instance(pulumi.CustomResource):
2978
3043
  system_disk_kms_key_id: Optional[pulumi.Input[builtins.str]] = None,
2979
3044
  system_disk_name: Optional[pulumi.Input[builtins.str]] = None,
2980
3045
  system_disk_performance_level: Optional[pulumi.Input[builtins.str]] = None,
3046
+ system_disk_provisioned_iops: Optional[pulumi.Input[builtins.int]] = None,
2981
3047
  system_disk_size: Optional[pulumi.Input[builtins.int]] = None,
2982
3048
  system_disk_storage_cluster_id: Optional[pulumi.Input[builtins.str]] = None,
2983
3049
  tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
@@ -3178,6 +3244,7 @@ class Instance(pulumi.CustomResource):
3178
3244
  * `KeepCharging`: standard mode. Billing of the instance continues after the instance is stopped, and resources are retained for the instance.
3179
3245
  * `StopCharging`: economical mode. Billing of some resources of the instance stops after the instance is stopped. When the instance is stopped, its resources such as vCPUs, memory, and public IP address are released. You may be unable to restart the instance if some types of resources are out of stock in the current region.
3180
3246
  :param pulumi.Input[builtins.str] system_disk_auto_snapshot_policy_id: The ID of the automatic snapshot policy applied to the system disk.
3247
+ :param pulumi.Input[builtins.bool] system_disk_bursting_enabled: Specifies whether to enable the performance burst feature for the system disk. Valid values:
3181
3248
  :param pulumi.Input[builtins.str] system_disk_category: Valid values are `ephemeral_ssd`, `cloud_efficiency`, `cloud_ssd`, `cloud_essd`, `cloud`, `cloud_auto`, `cloud_essd_entry`. only is used to some none I/O optimized instance. Valid values `cloud_auto` Available since v1.184.0.
3182
3249
  :param pulumi.Input[builtins.str] system_disk_description: The description of the system disk. The description must be 2 to 256 characters in length and cannot start with http:// or https://.
3183
3250
  :param pulumi.Input[builtins.str] system_disk_encrypt_algorithm: The algorithm to be used to encrypt the system disk. Valid values are `aes-256`, `sm4-128`. Default value is `aes-256`.
@@ -3185,6 +3252,7 @@ class Instance(pulumi.CustomResource):
3185
3252
  :param pulumi.Input[builtins.str] system_disk_kms_key_id: The ID of the Key Management Service (KMS) key to be used for the system disk.
3186
3253
  :param pulumi.Input[builtins.str] system_disk_name: The name of the system disk. The name must be 2 to 128 characters in length and can contain letters, digits, periods (.), colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with http:// or https://.
3187
3254
  :param pulumi.Input[builtins.str] system_disk_performance_level: The performance level of the ESSD used as the system disk, Valid values: `PL0`, `PL1`, `PL2`, `PL3`, Default to `PL1`;For more information about ESSD, See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/122389.htm).
3255
+ :param pulumi.Input[builtins.int] system_disk_provisioned_iops: The provisioned read/write IOPS of the ESSD AutoPL disk to use as the system disk.
3188
3256
  :param pulumi.Input[builtins.int] system_disk_size: Size of the system disk, measured in GiB. Value range: [20, 500]. The specified value must be equal to or greater than max{20, Imagesize}. Default value: max{40, ImageSize}.
3189
3257
  :param pulumi.Input[builtins.str] system_disk_storage_cluster_id: The ID of the dedicated block storage cluster. If you want to use disks in a dedicated block storage cluster as system disks when you create instances, you must specify this parameter. For more information about dedicated block storage clusters.
3190
3258
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: A mapping of tags to assign to the resource.
@@ -3361,6 +3429,7 @@ class Instance(pulumi.CustomResource):
3361
3429
  status: Optional[pulumi.Input[builtins.str]] = None,
3362
3430
  stopped_mode: Optional[pulumi.Input[builtins.str]] = None,
3363
3431
  system_disk_auto_snapshot_policy_id: Optional[pulumi.Input[builtins.str]] = None,
3432
+ system_disk_bursting_enabled: Optional[pulumi.Input[builtins.bool]] = None,
3364
3433
  system_disk_category: Optional[pulumi.Input[builtins.str]] = None,
3365
3434
  system_disk_description: Optional[pulumi.Input[builtins.str]] = None,
3366
3435
  system_disk_encrypt_algorithm: Optional[pulumi.Input[builtins.str]] = None,
@@ -3368,6 +3437,7 @@ class Instance(pulumi.CustomResource):
3368
3437
  system_disk_kms_key_id: Optional[pulumi.Input[builtins.str]] = None,
3369
3438
  system_disk_name: Optional[pulumi.Input[builtins.str]] = None,
3370
3439
  system_disk_performance_level: Optional[pulumi.Input[builtins.str]] = None,
3440
+ system_disk_provisioned_iops: Optional[pulumi.Input[builtins.int]] = None,
3371
3441
  system_disk_size: Optional[pulumi.Input[builtins.int]] = None,
3372
3442
  system_disk_storage_cluster_id: Optional[pulumi.Input[builtins.str]] = None,
3373
3443
  tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
@@ -3446,6 +3516,7 @@ class Instance(pulumi.CustomResource):
3446
3516
  __props__.__dict__["status"] = status
3447
3517
  __props__.__dict__["stopped_mode"] = stopped_mode
3448
3518
  __props__.__dict__["system_disk_auto_snapshot_policy_id"] = system_disk_auto_snapshot_policy_id
3519
+ __props__.__dict__["system_disk_bursting_enabled"] = system_disk_bursting_enabled
3449
3520
  __props__.__dict__["system_disk_category"] = system_disk_category
3450
3521
  __props__.__dict__["system_disk_description"] = system_disk_description
3451
3522
  __props__.__dict__["system_disk_encrypt_algorithm"] = system_disk_encrypt_algorithm
@@ -3453,6 +3524,7 @@ class Instance(pulumi.CustomResource):
3453
3524
  __props__.__dict__["system_disk_kms_key_id"] = system_disk_kms_key_id
3454
3525
  __props__.__dict__["system_disk_name"] = system_disk_name
3455
3526
  __props__.__dict__["system_disk_performance_level"] = system_disk_performance_level
3527
+ __props__.__dict__["system_disk_provisioned_iops"] = system_disk_provisioned_iops
3456
3528
  __props__.__dict__["system_disk_size"] = system_disk_size
3457
3529
  __props__.__dict__["system_disk_storage_cluster_id"] = system_disk_storage_cluster_id
3458
3530
  __props__.__dict__["tags"] = tags
@@ -3557,6 +3629,7 @@ class Instance(pulumi.CustomResource):
3557
3629
  status: Optional[pulumi.Input[builtins.str]] = None,
3558
3630
  stopped_mode: Optional[pulumi.Input[builtins.str]] = None,
3559
3631
  system_disk_auto_snapshot_policy_id: Optional[pulumi.Input[builtins.str]] = None,
3632
+ system_disk_bursting_enabled: Optional[pulumi.Input[builtins.bool]] = None,
3560
3633
  system_disk_category: Optional[pulumi.Input[builtins.str]] = None,
3561
3634
  system_disk_description: Optional[pulumi.Input[builtins.str]] = None,
3562
3635
  system_disk_encrypt_algorithm: Optional[pulumi.Input[builtins.str]] = None,
@@ -3565,6 +3638,7 @@ class Instance(pulumi.CustomResource):
3565
3638
  system_disk_kms_key_id: Optional[pulumi.Input[builtins.str]] = None,
3566
3639
  system_disk_name: Optional[pulumi.Input[builtins.str]] = None,
3567
3640
  system_disk_performance_level: Optional[pulumi.Input[builtins.str]] = None,
3641
+ system_disk_provisioned_iops: Optional[pulumi.Input[builtins.int]] = None,
3568
3642
  system_disk_size: Optional[pulumi.Input[builtins.int]] = None,
3569
3643
  system_disk_storage_cluster_id: Optional[pulumi.Input[builtins.str]] = None,
3570
3644
  tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
@@ -3702,6 +3776,7 @@ class Instance(pulumi.CustomResource):
3702
3776
  * `KeepCharging`: standard mode. Billing of the instance continues after the instance is stopped, and resources are retained for the instance.
3703
3777
  * `StopCharging`: economical mode. Billing of some resources of the instance stops after the instance is stopped. When the instance is stopped, its resources such as vCPUs, memory, and public IP address are released. You may be unable to restart the instance if some types of resources are out of stock in the current region.
3704
3778
  :param pulumi.Input[builtins.str] system_disk_auto_snapshot_policy_id: The ID of the automatic snapshot policy applied to the system disk.
3779
+ :param pulumi.Input[builtins.bool] system_disk_bursting_enabled: Specifies whether to enable the performance burst feature for the system disk. Valid values:
3705
3780
  :param pulumi.Input[builtins.str] system_disk_category: Valid values are `ephemeral_ssd`, `cloud_efficiency`, `cloud_ssd`, `cloud_essd`, `cloud`, `cloud_auto`, `cloud_essd_entry`. only is used to some none I/O optimized instance. Valid values `cloud_auto` Available since v1.184.0.
3706
3781
  :param pulumi.Input[builtins.str] system_disk_description: The description of the system disk. The description must be 2 to 256 characters in length and cannot start with http:// or https://.
3707
3782
  :param pulumi.Input[builtins.str] system_disk_encrypt_algorithm: The algorithm to be used to encrypt the system disk. Valid values are `aes-256`, `sm4-128`. Default value is `aes-256`.
@@ -3710,6 +3785,7 @@ class Instance(pulumi.CustomResource):
3710
3785
  :param pulumi.Input[builtins.str] system_disk_kms_key_id: The ID of the Key Management Service (KMS) key to be used for the system disk.
3711
3786
  :param pulumi.Input[builtins.str] system_disk_name: The name of the system disk. The name must be 2 to 128 characters in length and can contain letters, digits, periods (.), colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with http:// or https://.
3712
3787
  :param pulumi.Input[builtins.str] system_disk_performance_level: The performance level of the ESSD used as the system disk, Valid values: `PL0`, `PL1`, `PL2`, `PL3`, Default to `PL1`;For more information about ESSD, See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/122389.htm).
3788
+ :param pulumi.Input[builtins.int] system_disk_provisioned_iops: The provisioned read/write IOPS of the ESSD AutoPL disk to use as the system disk.
3713
3789
  :param pulumi.Input[builtins.int] system_disk_size: Size of the system disk, measured in GiB. Value range: [20, 500]. The specified value must be equal to or greater than max{20, Imagesize}. Default value: max{40, ImageSize}.
3714
3790
  :param pulumi.Input[builtins.str] system_disk_storage_cluster_id: The ID of the dedicated block storage cluster. If you want to use disks in a dedicated block storage cluster as system disks when you create instances, you must specify this parameter. For more information about dedicated block storage clusters.
3715
3791
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: A mapping of tags to assign to the resource.
@@ -3802,6 +3878,7 @@ class Instance(pulumi.CustomResource):
3802
3878
  __props__.__dict__["status"] = status
3803
3879
  __props__.__dict__["stopped_mode"] = stopped_mode
3804
3880
  __props__.__dict__["system_disk_auto_snapshot_policy_id"] = system_disk_auto_snapshot_policy_id
3881
+ __props__.__dict__["system_disk_bursting_enabled"] = system_disk_bursting_enabled
3805
3882
  __props__.__dict__["system_disk_category"] = system_disk_category
3806
3883
  __props__.__dict__["system_disk_description"] = system_disk_description
3807
3884
  __props__.__dict__["system_disk_encrypt_algorithm"] = system_disk_encrypt_algorithm
@@ -3810,6 +3887,7 @@ class Instance(pulumi.CustomResource):
3810
3887
  __props__.__dict__["system_disk_kms_key_id"] = system_disk_kms_key_id
3811
3888
  __props__.__dict__["system_disk_name"] = system_disk_name
3812
3889
  __props__.__dict__["system_disk_performance_level"] = system_disk_performance_level
3890
+ __props__.__dict__["system_disk_provisioned_iops"] = system_disk_provisioned_iops
3813
3891
  __props__.__dict__["system_disk_size"] = system_disk_size
3814
3892
  __props__.__dict__["system_disk_storage_cluster_id"] = system_disk_storage_cluster_id
3815
3893
  __props__.__dict__["tags"] = tags
@@ -4455,6 +4533,14 @@ class Instance(pulumi.CustomResource):
4455
4533
  """
4456
4534
  return pulumi.get(self, "system_disk_auto_snapshot_policy_id")
4457
4535
 
4536
+ @property
4537
+ @pulumi.getter(name="systemDiskBurstingEnabled")
4538
+ def system_disk_bursting_enabled(self) -> pulumi.Output[Optional[builtins.bool]]:
4539
+ """
4540
+ Specifies whether to enable the performance burst feature for the system disk. Valid values:
4541
+ """
4542
+ return pulumi.get(self, "system_disk_bursting_enabled")
4543
+
4458
4544
  @property
4459
4545
  @pulumi.getter(name="systemDiskCategory")
4460
4546
  def system_disk_category(self) -> pulumi.Output[builtins.str]:
@@ -4519,6 +4605,14 @@ class Instance(pulumi.CustomResource):
4519
4605
  """
4520
4606
  return pulumi.get(self, "system_disk_performance_level")
4521
4607
 
4608
+ @property
4609
+ @pulumi.getter(name="systemDiskProvisionedIops")
4610
+ def system_disk_provisioned_iops(self) -> pulumi.Output[Optional[builtins.int]]:
4611
+ """
4612
+ The provisioned read/write IOPS of the ESSD AutoPL disk to use as the system disk.
4613
+ """
4614
+ return pulumi.get(self, "system_disk_provisioned_iops")
4615
+
4522
4616
  @property
4523
4617
  @pulumi.getter(name="systemDiskSize")
4524
4618
  def system_disk_size(self) -> pulumi.Output[builtins.int]: