pulumi-alicloud 3.75.0a1741324537__py3-none-any.whl → 3.75.0a1741376340__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.
- pulumi_alicloud/__init__.py +230 -0
- pulumi_alicloud/_inputs.py +33 -0
- pulumi_alicloud/ackone/__init__.py +1 -0
- pulumi_alicloud/ackone/cluster.py +73 -8
- pulumi_alicloud/ackone/membership_attachment.py +223 -0
- pulumi_alicloud/alb/_inputs.py +217 -17
- pulumi_alicloud/alb/load_balancer.py +7 -35
- pulumi_alicloud/alb/load_balancer_security_group_attachment.py +69 -22
- pulumi_alicloud/alb/outputs.py +150 -12
- pulumi_alicloud/alb/server_group.py +197 -42
- pulumi_alicloud/aligreen/audit_callback.py +2 -2
- pulumi_alicloud/aligreen/biz_type.py +2 -2
- pulumi_alicloud/aligreen/callback.py +2 -2
- pulumi_alicloud/aligreen/image_lib.py +2 -2
- pulumi_alicloud/aligreen/keyword_lib.py +2 -2
- pulumi_alicloud/aligreen/oss_stock_task.py +77 -14
- pulumi_alicloud/apigateway/instance.py +51 -4
- pulumi_alicloud/cfg/aggregate_compliance_pack.py +6 -4
- pulumi_alicloud/cfg/aggregate_config_rule.py +6 -4
- pulumi_alicloud/cfg/aggregator.py +6 -4
- pulumi_alicloud/cloudcontrol/get_prices.py +2 -2
- pulumi_alicloud/cloudcontrol/get_products.py +2 -2
- pulumi_alicloud/cloudcontrol/get_resource_types.py +2 -2
- pulumi_alicloud/cloudcontrol/resource.py +2 -2
- pulumi_alicloud/cloudfirewall/__init__.py +2 -0
- pulumi_alicloud/cloudfirewall/get_nat_firewalls.py +315 -0
- pulumi_alicloud/cloudfirewall/get_vpc_cen_tr_firewalls.py +569 -0
- pulumi_alicloud/cloudfirewall/outputs.py +362 -0
- pulumi_alicloud/cloudphone/__init__.py +12 -0
- pulumi_alicloud/cloudphone/_inputs.py +175 -0
- pulumi_alicloud/cloudphone/image.py +323 -0
- pulumi_alicloud/cloudphone/key_pair.py +294 -0
- pulumi_alicloud/cloudphone/outputs.py +138 -0
- pulumi_alicloud/cloudphone/policy.py +522 -0
- pulumi_alicloud/cloudphoneinstance/__init__.py +9 -0
- pulumi_alicloud/cloudphoneinstance/cloud_phone_instance.py +209 -0
- pulumi_alicloud/cloudphoneinstance/group.py +961 -0
- pulumi_alicloud/cms/get_site_monitors.py +2 -2
- pulumi_alicloud/config/outputs.py +20 -0
- pulumi_alicloud/cs/_inputs.py +9 -9
- pulumi_alicloud/cs/get_kubernetes_clusters.py +5 -4
- pulumi_alicloud/cs/get_managed_kubernetes_clusters.py +5 -4
- pulumi_alicloud/cs/get_serverless_kubernetes_clusters.py +5 -4
- pulumi_alicloud/cs/managed_kubernetes.py +47 -35
- pulumi_alicloud/cs/node_pool.py +49 -21
- pulumi_alicloud/cs/outputs.py +6 -6
- pulumi_alicloud/ddos/ddos_bgp_instance.py +0 -4
- pulumi_alicloud/dfs/vsc_mount_point.py +28 -28
- pulumi_alicloud/dns/ddos_bgp_instance.py +0 -4
- pulumi_alicloud/ebs/replica_group_drill.py +2 -2
- pulumi_alicloud/ebs/replica_pair_drill.py +2 -2
- pulumi_alicloud/ecs/ecs_deployment_set.py +89 -67
- pulumi_alicloud/ecs/eip.py +1 -1
- pulumi_alicloud/ecs/eip_address.py +1 -1
- pulumi_alicloud/ecs/instance.py +43 -30
- pulumi_alicloud/eds/command.py +10 -2
- pulumi_alicloud/emrv2/__init__.py +1 -0
- pulumi_alicloud/emrv2/_inputs.py +47 -7
- pulumi_alicloud/emrv2/get_cluster_instances.py +537 -0
- pulumi_alicloud/emrv2/outputs.py +195 -5
- pulumi_alicloud/ens/instance_security_group_attachment.py +8 -4
- pulumi_alicloud/ens/nat_gateway.py +6 -6
- pulumi_alicloud/ens/vswitch.py +36 -36
- pulumi_alicloud/esa/__init__.py +19 -0
- pulumi_alicloud/esa/_inputs.py +431 -0
- pulumi_alicloud/esa/cache_rule.py +1405 -0
- pulumi_alicloud/esa/certificate.py +724 -0
- pulumi_alicloud/esa/client_ca_certificate.py +388 -0
- pulumi_alicloud/esa/client_certificate.py +452 -0
- pulumi_alicloud/esa/compression_rule.py +582 -0
- pulumi_alicloud/esa/get_sites.py +421 -0
- pulumi_alicloud/esa/http_request_header_modification_rule.py +2 -2
- pulumi_alicloud/esa/http_response_header_modification_rule.py +560 -0
- pulumi_alicloud/esa/https_application_configuration.py +925 -0
- pulumi_alicloud/esa/https_basic_configuration.py +1027 -0
- pulumi_alicloud/esa/image_transform.py +484 -0
- pulumi_alicloud/esa/kv_namespace.py +276 -0
- pulumi_alicloud/esa/list.py +2 -2
- pulumi_alicloud/esa/network_optimization.py +750 -0
- pulumi_alicloud/esa/origin_pool.py +485 -0
- pulumi_alicloud/esa/origin_rule.py +768 -0
- pulumi_alicloud/esa/outputs.py +425 -0
- pulumi_alicloud/esa/page.py +2 -2
- pulumi_alicloud/esa/rate_plan_instance.py +2 -2
- pulumi_alicloud/esa/record.py +2 -2
- pulumi_alicloud/esa/redirect_rule.py +734 -0
- pulumi_alicloud/esa/rewrite_url_rule.py +702 -0
- pulumi_alicloud/esa/site.py +307 -2
- pulumi_alicloud/esa/waiting_room.py +1257 -0
- pulumi_alicloud/esa/waiting_room_event.py +1392 -0
- pulumi_alicloud/esa/waiting_room_rule.py +504 -0
- pulumi_alicloud/ess/scaling_configuration.py +7 -7
- pulumi_alicloud/expressconnect/ec_failover_test_job.py +0 -2
- pulumi_alicloud/expressconnect/vbr_pconn_association.py +2 -2
- pulumi_alicloud/ga/get_basic_accelerators.py +31 -9
- pulumi_alicloud/ga/outputs.py +10 -4
- pulumi_alicloud/gpdb/db_resource_group.py +6 -6
- pulumi_alicloud/gpdb/external_data_service.py +6 -6
- pulumi_alicloud/gpdb/streaming_data_service.py +2 -2
- pulumi_alicloud/hbr/policy.py +67 -6
- pulumi_alicloud/hbr/vault.py +210 -9
- pulumi_alicloud/kms/get_keys.py +10 -0
- pulumi_alicloud/message/__init__.py +3 -0
- pulumi_alicloud/message/_inputs.py +149 -0
- pulumi_alicloud/message/outputs.py +112 -0
- pulumi_alicloud/message/service_endpoint.py +218 -0
- pulumi_alicloud/message/service_endpoint_acl.py +306 -0
- pulumi_alicloud/message/service_queue.py +49 -0
- pulumi_alicloud/message/service_subscription.py +91 -14
- pulumi_alicloud/mse/nacos_config.py +4 -0
- pulumi_alicloud/nlb/_inputs.py +114 -24
- pulumi_alicloud/nlb/listener.py +87 -20
- pulumi_alicloud/nlb/outputs.py +93 -16
- pulumi_alicloud/nlb/server_group.py +55 -20
- pulumi_alicloud/ots/_inputs.py +3 -3
- pulumi_alicloud/ots/outputs.py +2 -2
- pulumi_alicloud/pai/workspace_code_source.py +2 -2
- pulumi_alicloud/pai/workspace_dataset.py +2 -2
- pulumi_alicloud/pai/workspace_datasetversion.py +2 -4
- pulumi_alicloud/pai/workspace_experiment.py +2 -2
- pulumi_alicloud/pai/workspace_run.py +2 -2
- pulumi_alicloud/pai/workspace_workspace.py +2 -2
- pulumi_alicloud/privatelink/get_vpc_endpoints.py +21 -1
- pulumi_alicloud/privatelink/outputs.py +11 -0
- pulumi_alicloud/privatelink/vpc_endpoint.py +1 -1
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/ram/access_key.py +20 -4
- pulumi_alicloud/ram/user.py +10 -2
- pulumi_alicloud/rds/instance.py +7 -0
- pulumi_alicloud/simpleapplicationserver/get_server_plans.py +7 -7
- pulumi_alicloud/simpleapplicationserver/outputs.py +3 -3
- pulumi_alicloud/tag/__init__.py +1 -0
- pulumi_alicloud/tag/associated_rule.py +306 -0
- pulumi_alicloud/tag/policy.py +27 -36
- pulumi_alicloud/vpc/__init__.py +1 -0
- pulumi_alicloud/vpc/common_bandwith_package.py +107 -44
- pulumi_alicloud/vpc/common_bandwith_package_attachment.py +2 -2
- pulumi_alicloud/vpc/flow_log.py +184 -49
- pulumi_alicloud/vpc/forward_entry.py +8 -4
- pulumi_alicloud/vpc/get_enhanced_nat_available_zones.py +38 -2
- pulumi_alicloud/vpc/get_forward_entries.py +2 -2
- pulumi_alicloud/vpc/get_ipsec_servers.py +14 -2
- pulumi_alicloud/vpc/get_nat_gateways.py +48 -2
- pulumi_alicloud/vpc/get_prefix_lists.py +11 -2
- pulumi_alicloud/vpc/get_snat_entries.py +5 -2
- pulumi_alicloud/vpc/get_traffic_mirror_filters.py +14 -2
- pulumi_alicloud/vpc/ipam_ipam.py +2 -9
- pulumi_alicloud/vpc/ipam_ipam_pool.py +2 -30
- pulumi_alicloud/vpc/ipam_ipam_pool_allocation.py +6 -16
- pulumi_alicloud/vpc/ipam_ipam_pool_cidr.py +2 -2
- pulumi_alicloud/vpc/ipam_ipam_resource_discovery.py +489 -0
- pulumi_alicloud/vpc/ipam_ipam_scope.py +2 -9
- pulumi_alicloud/vpc/nat_gateway.py +8 -0
- pulumi_alicloud/vpc/outputs.py +12 -2
- pulumi_alicloud/vpc/router_interface_connection.py +4 -4
- pulumi_alicloud/vpc/traffic_mirror_filter.py +2 -2
- pulumi_alicloud/vpn/get_gateway_vco_routes.py +11 -2
- pulumi_alicloud/vpn/get_gateway_vpn_attachments.py +11 -2
- pulumi_alicloud/vpn/get_gateways.py +21 -1
- pulumi_alicloud/vpn/outputs.py +23 -12
- {pulumi_alicloud-3.75.0a1741324537.dist-info → pulumi_alicloud-3.75.0a1741376340.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.75.0a1741324537.dist-info → pulumi_alicloud-3.75.0a1741376340.dist-info}/RECORD +164 -127
- {pulumi_alicloud-3.75.0a1741324537.dist-info → pulumi_alicloud-3.75.0a1741376340.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.75.0a1741324537.dist-info → pulumi_alicloud-3.75.0a1741376340.dist-info}/top_level.txt +0 -0
pulumi_alicloud/cs/node_pool.py
CHANGED
|
@@ -175,8 +175,8 @@ class NodePoolArgs:
|
|
|
175
175
|
- `SpotWithPriceLimit` : Set the upper limit of the preemptible instance price.
|
|
176
176
|
- `SpotAsPriceGo` : The system automatically bids, following the actual price of the current market.
|
|
177
177
|
:param pulumi.Input[bool] system_disk_bursting_enabled: Specifies whether to enable the burst feature for system disks. Valid values:`true`: enables the burst feature. `false`: disables the burst feature. This parameter is supported only when `system_disk_category` is set to `cloud_auto`.
|
|
178
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] system_disk_categories: The multi-disk categories of the system disk. When a high-priority disk type cannot be used, Auto Scaling automatically tries to create a system disk with the next priority disk category. Valid values
|
|
179
|
-
:param pulumi.Input[str] system_disk_category: The
|
|
178
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] system_disk_categories: The multi-disk categories of the system disk. When a high-priority disk type cannot be used, Auto Scaling automatically tries to create a system disk with the next priority disk category. Valid values see `system_disk_category`.
|
|
179
|
+
:param pulumi.Input[str] system_disk_category: The category of the system disk for nodes. Default value: `cloud_efficiency`. Valid values:
|
|
180
180
|
:param pulumi.Input[str] system_disk_encrypt_algorithm: The encryption algorithm used by the system disk. Value range: aes-256.
|
|
181
181
|
:param pulumi.Input[bool] system_disk_encrypted: Whether to encrypt the system disk. Value range: `true`: encryption. `false`: Do not encrypt.
|
|
182
182
|
:param pulumi.Input[str] system_disk_kms_key: The ID of the KMS key used by the system disk.
|
|
@@ -186,7 +186,11 @@ class NodePoolArgs:
|
|
|
186
186
|
- `PL2`: highest random read/write IOPS 100000 for a single disk.
|
|
187
187
|
- `PL3`: maximum random read/write IOPS 1 million for a single disk.
|
|
188
188
|
:param pulumi.Input[int] system_disk_provisioned_iops: The predefined IOPS of a system disk. Valid values: 0 to min{50,000, 1,000 × Capacity - Baseline IOPS}. Baseline IOPS = min{1,800 + 50 × Capacity, 50,000}. This parameter is supported only when `system_disk_category` is set to `cloud_auto`.
|
|
189
|
-
:param pulumi.Input[int] system_disk_size: The system disk
|
|
189
|
+
:param pulumi.Input[int] system_disk_size: The size of the system disk. Unit: GiB. The value of this parameter must be at least 1 and greater than or equal to the image size. Default value: 40 or the size of the image, whichever is larger.
|
|
190
|
+
- Basic disk: 20 to 500.
|
|
191
|
+
- ESSD (cloud_essd): The valid values vary based on the performance level of the ESSD. PL0 ESSD: 1 to 2048. PL1 ESSD: 20 to 2048. PL2 ESSD: 461 to 2048. PL3 ESSD: 1261 to 2048.
|
|
192
|
+
- ESSD AutoPL disk (cloud_auto): 1 to 2048.
|
|
193
|
+
- Other disk categories: 20 to 2048.
|
|
190
194
|
:param pulumi.Input[str] system_disk_snapshot_policy_id: The ID of the automatic snapshot policy used by the system disk.
|
|
191
195
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Add tags only for ECS instances. The maximum length of the tag key is 128 characters. The tag key and value cannot start with aliyun or acs:, or contain https:// or http://.
|
|
192
196
|
:param pulumi.Input[Sequence[pulumi.Input['NodePoolTaintArgs']]] taints: A List of Kubernetes taints to assign to the nodes. Detailed below. More information in [Taints and Toleration](https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/). See `taints` below.
|
|
@@ -1080,7 +1084,7 @@ class NodePoolArgs:
|
|
|
1080
1084
|
@pulumi.getter(name="systemDiskCategories")
|
|
1081
1085
|
def system_disk_categories(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
1082
1086
|
"""
|
|
1083
|
-
The multi-disk categories of the system disk. When a high-priority disk type cannot be used, Auto Scaling automatically tries to create a system disk with the next priority disk category. Valid values
|
|
1087
|
+
The multi-disk categories of the system disk. When a high-priority disk type cannot be used, Auto Scaling automatically tries to create a system disk with the next priority disk category. Valid values see `system_disk_category`.
|
|
1084
1088
|
"""
|
|
1085
1089
|
return pulumi.get(self, "system_disk_categories")
|
|
1086
1090
|
|
|
@@ -1092,7 +1096,7 @@ class NodePoolArgs:
|
|
|
1092
1096
|
@pulumi.getter(name="systemDiskCategory")
|
|
1093
1097
|
def system_disk_category(self) -> Optional[pulumi.Input[str]]:
|
|
1094
1098
|
"""
|
|
1095
|
-
The
|
|
1099
|
+
The category of the system disk for nodes. Default value: `cloud_efficiency`. Valid values:
|
|
1096
1100
|
"""
|
|
1097
1101
|
return pulumi.get(self, "system_disk_category")
|
|
1098
1102
|
|
|
@@ -1168,7 +1172,11 @@ class NodePoolArgs:
|
|
|
1168
1172
|
@pulumi.getter(name="systemDiskSize")
|
|
1169
1173
|
def system_disk_size(self) -> Optional[pulumi.Input[int]]:
|
|
1170
1174
|
"""
|
|
1171
|
-
The system disk
|
|
1175
|
+
The size of the system disk. Unit: GiB. The value of this parameter must be at least 1 and greater than or equal to the image size. Default value: 40 or the size of the image, whichever is larger.
|
|
1176
|
+
- Basic disk: 20 to 500.
|
|
1177
|
+
- ESSD (cloud_essd): The valid values vary based on the performance level of the ESSD. PL0 ESSD: 1 to 2048. PL1 ESSD: 20 to 2048. PL2 ESSD: 461 to 2048. PL3 ESSD: 1261 to 2048.
|
|
1178
|
+
- ESSD AutoPL disk (cloud_auto): 1 to 2048.
|
|
1179
|
+
- Other disk categories: 20 to 2048.
|
|
1172
1180
|
"""
|
|
1173
1181
|
return pulumi.get(self, "system_disk_size")
|
|
1174
1182
|
|
|
@@ -1421,8 +1429,8 @@ class _NodePoolState:
|
|
|
1421
1429
|
- `SpotWithPriceLimit` : Set the upper limit of the preemptible instance price.
|
|
1422
1430
|
- `SpotAsPriceGo` : The system automatically bids, following the actual price of the current market.
|
|
1423
1431
|
:param pulumi.Input[bool] system_disk_bursting_enabled: Specifies whether to enable the burst feature for system disks. Valid values:`true`: enables the burst feature. `false`: disables the burst feature. This parameter is supported only when `system_disk_category` is set to `cloud_auto`.
|
|
1424
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] system_disk_categories: The multi-disk categories of the system disk. When a high-priority disk type cannot be used, Auto Scaling automatically tries to create a system disk with the next priority disk category. Valid values
|
|
1425
|
-
:param pulumi.Input[str] system_disk_category: The
|
|
1432
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] system_disk_categories: The multi-disk categories of the system disk. When a high-priority disk type cannot be used, Auto Scaling automatically tries to create a system disk with the next priority disk category. Valid values see `system_disk_category`.
|
|
1433
|
+
:param pulumi.Input[str] system_disk_category: The category of the system disk for nodes. Default value: `cloud_efficiency`. Valid values:
|
|
1426
1434
|
:param pulumi.Input[str] system_disk_encrypt_algorithm: The encryption algorithm used by the system disk. Value range: aes-256.
|
|
1427
1435
|
:param pulumi.Input[bool] system_disk_encrypted: Whether to encrypt the system disk. Value range: `true`: encryption. `false`: Do not encrypt.
|
|
1428
1436
|
:param pulumi.Input[str] system_disk_kms_key: The ID of the KMS key used by the system disk.
|
|
@@ -1432,7 +1440,11 @@ class _NodePoolState:
|
|
|
1432
1440
|
- `PL2`: highest random read/write IOPS 100000 for a single disk.
|
|
1433
1441
|
- `PL3`: maximum random read/write IOPS 1 million for a single disk.
|
|
1434
1442
|
:param pulumi.Input[int] system_disk_provisioned_iops: The predefined IOPS of a system disk. Valid values: 0 to min{50,000, 1,000 × Capacity - Baseline IOPS}. Baseline IOPS = min{1,800 + 50 × Capacity, 50,000}. This parameter is supported only when `system_disk_category` is set to `cloud_auto`.
|
|
1435
|
-
:param pulumi.Input[int] system_disk_size: The system disk
|
|
1443
|
+
:param pulumi.Input[int] system_disk_size: The size of the system disk. Unit: GiB. The value of this parameter must be at least 1 and greater than or equal to the image size. Default value: 40 or the size of the image, whichever is larger.
|
|
1444
|
+
- Basic disk: 20 to 500.
|
|
1445
|
+
- ESSD (cloud_essd): The valid values vary based on the performance level of the ESSD. PL0 ESSD: 1 to 2048. PL1 ESSD: 20 to 2048. PL2 ESSD: 461 to 2048. PL3 ESSD: 1261 to 2048.
|
|
1446
|
+
- ESSD AutoPL disk (cloud_auto): 1 to 2048.
|
|
1447
|
+
- Other disk categories: 20 to 2048.
|
|
1436
1448
|
:param pulumi.Input[str] system_disk_snapshot_policy_id: The ID of the automatic snapshot policy used by the system disk.
|
|
1437
1449
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Add tags only for ECS instances. The maximum length of the tag key is 128 characters. The tag key and value cannot start with aliyun or acs:, or contain https:// or http://.
|
|
1438
1450
|
:param pulumi.Input[Sequence[pulumi.Input['NodePoolTaintArgs']]] taints: A List of Kubernetes taints to assign to the nodes. Detailed below. More information in [Taints and Toleration](https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/). See `taints` below.
|
|
@@ -2346,7 +2358,7 @@ class _NodePoolState:
|
|
|
2346
2358
|
@pulumi.getter(name="systemDiskCategories")
|
|
2347
2359
|
def system_disk_categories(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
2348
2360
|
"""
|
|
2349
|
-
The multi-disk categories of the system disk. When a high-priority disk type cannot be used, Auto Scaling automatically tries to create a system disk with the next priority disk category. Valid values
|
|
2361
|
+
The multi-disk categories of the system disk. When a high-priority disk type cannot be used, Auto Scaling automatically tries to create a system disk with the next priority disk category. Valid values see `system_disk_category`.
|
|
2350
2362
|
"""
|
|
2351
2363
|
return pulumi.get(self, "system_disk_categories")
|
|
2352
2364
|
|
|
@@ -2358,7 +2370,7 @@ class _NodePoolState:
|
|
|
2358
2370
|
@pulumi.getter(name="systemDiskCategory")
|
|
2359
2371
|
def system_disk_category(self) -> Optional[pulumi.Input[str]]:
|
|
2360
2372
|
"""
|
|
2361
|
-
The
|
|
2373
|
+
The category of the system disk for nodes. Default value: `cloud_efficiency`. Valid values:
|
|
2362
2374
|
"""
|
|
2363
2375
|
return pulumi.get(self, "system_disk_category")
|
|
2364
2376
|
|
|
@@ -2434,7 +2446,11 @@ class _NodePoolState:
|
|
|
2434
2446
|
@pulumi.getter(name="systemDiskSize")
|
|
2435
2447
|
def system_disk_size(self) -> Optional[pulumi.Input[int]]:
|
|
2436
2448
|
"""
|
|
2437
|
-
The system disk
|
|
2449
|
+
The size of the system disk. Unit: GiB. The value of this parameter must be at least 1 and greater than or equal to the image size. Default value: 40 or the size of the image, whichever is larger.
|
|
2450
|
+
- Basic disk: 20 to 500.
|
|
2451
|
+
- ESSD (cloud_essd): The valid values vary based on the performance level of the ESSD. PL0 ESSD: 1 to 2048. PL1 ESSD: 20 to 2048. PL2 ESSD: 461 to 2048. PL3 ESSD: 1261 to 2048.
|
|
2452
|
+
- ESSD AutoPL disk (cloud_auto): 1 to 2048.
|
|
2453
|
+
- Other disk categories: 20 to 2048.
|
|
2438
2454
|
"""
|
|
2439
2455
|
return pulumi.get(self, "system_disk_size")
|
|
2440
2456
|
|
|
@@ -2711,8 +2727,8 @@ class NodePool(pulumi.CustomResource):
|
|
|
2711
2727
|
- `SpotWithPriceLimit` : Set the upper limit of the preemptible instance price.
|
|
2712
2728
|
- `SpotAsPriceGo` : The system automatically bids, following the actual price of the current market.
|
|
2713
2729
|
:param pulumi.Input[bool] system_disk_bursting_enabled: Specifies whether to enable the burst feature for system disks. Valid values:`true`: enables the burst feature. `false`: disables the burst feature. This parameter is supported only when `system_disk_category` is set to `cloud_auto`.
|
|
2714
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] system_disk_categories: The multi-disk categories of the system disk. When a high-priority disk type cannot be used, Auto Scaling automatically tries to create a system disk with the next priority disk category. Valid values
|
|
2715
|
-
:param pulumi.Input[str] system_disk_category: The
|
|
2730
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] system_disk_categories: The multi-disk categories of the system disk. When a high-priority disk type cannot be used, Auto Scaling automatically tries to create a system disk with the next priority disk category. Valid values see `system_disk_category`.
|
|
2731
|
+
:param pulumi.Input[str] system_disk_category: The category of the system disk for nodes. Default value: `cloud_efficiency`. Valid values:
|
|
2716
2732
|
:param pulumi.Input[str] system_disk_encrypt_algorithm: The encryption algorithm used by the system disk. Value range: aes-256.
|
|
2717
2733
|
:param pulumi.Input[bool] system_disk_encrypted: Whether to encrypt the system disk. Value range: `true`: encryption. `false`: Do not encrypt.
|
|
2718
2734
|
:param pulumi.Input[str] system_disk_kms_key: The ID of the KMS key used by the system disk.
|
|
@@ -2722,7 +2738,11 @@ class NodePool(pulumi.CustomResource):
|
|
|
2722
2738
|
- `PL2`: highest random read/write IOPS 100000 for a single disk.
|
|
2723
2739
|
- `PL3`: maximum random read/write IOPS 1 million for a single disk.
|
|
2724
2740
|
:param pulumi.Input[int] system_disk_provisioned_iops: The predefined IOPS of a system disk. Valid values: 0 to min{50,000, 1,000 × Capacity - Baseline IOPS}. Baseline IOPS = min{1,800 + 50 × Capacity, 50,000}. This parameter is supported only when `system_disk_category` is set to `cloud_auto`.
|
|
2725
|
-
:param pulumi.Input[int] system_disk_size: The system disk
|
|
2741
|
+
:param pulumi.Input[int] system_disk_size: The size of the system disk. Unit: GiB. The value of this parameter must be at least 1 and greater than or equal to the image size. Default value: 40 or the size of the image, whichever is larger.
|
|
2742
|
+
- Basic disk: 20 to 500.
|
|
2743
|
+
- ESSD (cloud_essd): The valid values vary based on the performance level of the ESSD. PL0 ESSD: 1 to 2048. PL1 ESSD: 20 to 2048. PL2 ESSD: 461 to 2048. PL3 ESSD: 1261 to 2048.
|
|
2744
|
+
- ESSD AutoPL disk (cloud_auto): 1 to 2048.
|
|
2745
|
+
- Other disk categories: 20 to 2048.
|
|
2726
2746
|
:param pulumi.Input[str] system_disk_snapshot_policy_id: The ID of the automatic snapshot policy used by the system disk.
|
|
2727
2747
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Add tags only for ECS instances. The maximum length of the tag key is 128 characters. The tag key and value cannot start with aliyun or acs:, or contain https:// or http://.
|
|
2728
2748
|
:param pulumi.Input[Sequence[pulumi.Input[Union['NodePoolTaintArgs', 'NodePoolTaintArgsDict']]]] taints: A List of Kubernetes taints to assign to the nodes. Detailed below. More information in [Taints and Toleration](https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/). See `taints` below.
|
|
@@ -3103,8 +3123,8 @@ class NodePool(pulumi.CustomResource):
|
|
|
3103
3123
|
- `SpotWithPriceLimit` : Set the upper limit of the preemptible instance price.
|
|
3104
3124
|
- `SpotAsPriceGo` : The system automatically bids, following the actual price of the current market.
|
|
3105
3125
|
:param pulumi.Input[bool] system_disk_bursting_enabled: Specifies whether to enable the burst feature for system disks. Valid values:`true`: enables the burst feature. `false`: disables the burst feature. This parameter is supported only when `system_disk_category` is set to `cloud_auto`.
|
|
3106
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] system_disk_categories: The multi-disk categories of the system disk. When a high-priority disk type cannot be used, Auto Scaling automatically tries to create a system disk with the next priority disk category. Valid values
|
|
3107
|
-
:param pulumi.Input[str] system_disk_category: The
|
|
3126
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] system_disk_categories: The multi-disk categories of the system disk. When a high-priority disk type cannot be used, Auto Scaling automatically tries to create a system disk with the next priority disk category. Valid values see `system_disk_category`.
|
|
3127
|
+
:param pulumi.Input[str] system_disk_category: The category of the system disk for nodes. Default value: `cloud_efficiency`. Valid values:
|
|
3108
3128
|
:param pulumi.Input[str] system_disk_encrypt_algorithm: The encryption algorithm used by the system disk. Value range: aes-256.
|
|
3109
3129
|
:param pulumi.Input[bool] system_disk_encrypted: Whether to encrypt the system disk. Value range: `true`: encryption. `false`: Do not encrypt.
|
|
3110
3130
|
:param pulumi.Input[str] system_disk_kms_key: The ID of the KMS key used by the system disk.
|
|
@@ -3114,7 +3134,11 @@ class NodePool(pulumi.CustomResource):
|
|
|
3114
3134
|
- `PL2`: highest random read/write IOPS 100000 for a single disk.
|
|
3115
3135
|
- `PL3`: maximum random read/write IOPS 1 million for a single disk.
|
|
3116
3136
|
:param pulumi.Input[int] system_disk_provisioned_iops: The predefined IOPS of a system disk. Valid values: 0 to min{50,000, 1,000 × Capacity - Baseline IOPS}. Baseline IOPS = min{1,800 + 50 × Capacity, 50,000}. This parameter is supported only when `system_disk_category` is set to `cloud_auto`.
|
|
3117
|
-
:param pulumi.Input[int] system_disk_size: The system disk
|
|
3137
|
+
:param pulumi.Input[int] system_disk_size: The size of the system disk. Unit: GiB. The value of this parameter must be at least 1 and greater than or equal to the image size. Default value: 40 or the size of the image, whichever is larger.
|
|
3138
|
+
- Basic disk: 20 to 500.
|
|
3139
|
+
- ESSD (cloud_essd): The valid values vary based on the performance level of the ESSD. PL0 ESSD: 1 to 2048. PL1 ESSD: 20 to 2048. PL2 ESSD: 461 to 2048. PL3 ESSD: 1261 to 2048.
|
|
3140
|
+
- ESSD AutoPL disk (cloud_auto): 1 to 2048.
|
|
3141
|
+
- Other disk categories: 20 to 2048.
|
|
3118
3142
|
:param pulumi.Input[str] system_disk_snapshot_policy_id: The ID of the automatic snapshot policy used by the system disk.
|
|
3119
3143
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Add tags only for ECS instances. The maximum length of the tag key is 128 characters. The tag key and value cannot start with aliyun or acs:, or contain https:// or http://.
|
|
3120
3144
|
:param pulumi.Input[Sequence[pulumi.Input[Union['NodePoolTaintArgs', 'NodePoolTaintArgsDict']]]] taints: A List of Kubernetes taints to assign to the nodes. Detailed below. More information in [Taints and Toleration](https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/). See `taints` below.
|
|
@@ -3707,7 +3731,7 @@ class NodePool(pulumi.CustomResource):
|
|
|
3707
3731
|
@pulumi.getter(name="systemDiskCategories")
|
|
3708
3732
|
def system_disk_categories(self) -> pulumi.Output[Sequence[str]]:
|
|
3709
3733
|
"""
|
|
3710
|
-
The multi-disk categories of the system disk. When a high-priority disk type cannot be used, Auto Scaling automatically tries to create a system disk with the next priority disk category. Valid values
|
|
3734
|
+
The multi-disk categories of the system disk. When a high-priority disk type cannot be used, Auto Scaling automatically tries to create a system disk with the next priority disk category. Valid values see `system_disk_category`.
|
|
3711
3735
|
"""
|
|
3712
3736
|
return pulumi.get(self, "system_disk_categories")
|
|
3713
3737
|
|
|
@@ -3715,7 +3739,7 @@ class NodePool(pulumi.CustomResource):
|
|
|
3715
3739
|
@pulumi.getter(name="systemDiskCategory")
|
|
3716
3740
|
def system_disk_category(self) -> pulumi.Output[str]:
|
|
3717
3741
|
"""
|
|
3718
|
-
The
|
|
3742
|
+
The category of the system disk for nodes. Default value: `cloud_efficiency`. Valid values:
|
|
3719
3743
|
"""
|
|
3720
3744
|
return pulumi.get(self, "system_disk_category")
|
|
3721
3745
|
|
|
@@ -3767,7 +3791,11 @@ class NodePool(pulumi.CustomResource):
|
|
|
3767
3791
|
@pulumi.getter(name="systemDiskSize")
|
|
3768
3792
|
def system_disk_size(self) -> pulumi.Output[Optional[int]]:
|
|
3769
3793
|
"""
|
|
3770
|
-
The system disk
|
|
3794
|
+
The size of the system disk. Unit: GiB. The value of this parameter must be at least 1 and greater than or equal to the image size. Default value: 40 or the size of the image, whichever is larger.
|
|
3795
|
+
- Basic disk: 20 to 500.
|
|
3796
|
+
- ESSD (cloud_essd): The valid values vary based on the performance level of the ESSD. PL0 ESSD: 1 to 2048. PL1 ESSD: 20 to 2048. PL2 ESSD: 461 to 2048. PL3 ESSD: 1261 to 2048.
|
|
3797
|
+
- ESSD AutoPL disk (cloud_auto): 1 to 2048.
|
|
3798
|
+
- Other disk categories: 20 to 2048.
|
|
3771
3799
|
"""
|
|
3772
3800
|
return pulumi.get(self, "system_disk_size")
|
|
3773
3801
|
|
pulumi_alicloud/cs/outputs.py
CHANGED
|
@@ -1906,12 +1906,12 @@ class NodePoolDataDisk(dict):
|
|
|
1906
1906
|
:param str auto_format: Whether to automatically mount the data disk. Valid values: true and false.
|
|
1907
1907
|
:param str auto_snapshot_policy_id: The ID of the automatic snapshot policy that you want to apply to the system disk.
|
|
1908
1908
|
:param bool bursting_enabled: Whether the data disk is enabled with Burst (performance Burst). This is configured when the disk type is cloud_auto.
|
|
1909
|
-
:param str category: The type of
|
|
1909
|
+
:param str category: The type of data disk. Default value: `cloud_efficiency`. Valid values:
|
|
1910
1910
|
:param str device: The mount target of data disk N. Valid values of N: 1 to 16. If you do not specify this parameter, the system automatically assigns a mount target when Auto Scaling creates ECS instances. The name of the mount target ranges from /dev/xvdb to /dev/xvdz.
|
|
1911
1911
|
:param str encrypted: Specifies whether to encrypt data disks. Valid values: true and false. Default to `false`.
|
|
1912
|
-
:param str file_system: The
|
|
1912
|
+
:param str file_system: The type of the mounted file system. Works when auto_format is true. Optional value: `ext4`, `xfs`.
|
|
1913
1913
|
:param str kms_key_id: The kms key id used to encrypt the data disk. It takes effect when `encrypted` is true.
|
|
1914
|
-
:param str mount_target: The
|
|
1914
|
+
:param str mount_target: The Mount path. Works when auto_format is true.
|
|
1915
1915
|
:param str name: The length is 2~128 English or Chinese characters. It must start with an uppercase or lowr letter or a Chinese character and cannot start with http:// or https. Can contain numbers, colons (:), underscores (_), or dashes (-). It will be overwritten if auto_format is set.
|
|
1916
1916
|
:param str performance_level: Worker node data disk performance level, when `category` values `cloud_essd`, the optional values are `PL0`, `PL1`, `PL2` or `PL3`, but the specific performance level is related to the disk capacity. For more information, see [Enhanced SSDs](https://www.alibabacloud.com/help/doc-detail/122389.htm). Default is `PL1`.
|
|
1917
1917
|
:param int provisioned_iops: The read/write IOPS preconfigured for the data disk, which is configured when the disk type is cloud_auto.
|
|
@@ -1975,7 +1975,7 @@ class NodePoolDataDisk(dict):
|
|
|
1975
1975
|
@pulumi.getter
|
|
1976
1976
|
def category(self) -> Optional[str]:
|
|
1977
1977
|
"""
|
|
1978
|
-
The type of
|
|
1978
|
+
The type of data disk. Default value: `cloud_efficiency`. Valid values:
|
|
1979
1979
|
"""
|
|
1980
1980
|
return pulumi.get(self, "category")
|
|
1981
1981
|
|
|
@@ -1999,7 +1999,7 @@ class NodePoolDataDisk(dict):
|
|
|
1999
1999
|
@pulumi.getter(name="fileSystem")
|
|
2000
2000
|
def file_system(self) -> Optional[str]:
|
|
2001
2001
|
"""
|
|
2002
|
-
The
|
|
2002
|
+
The type of the mounted file system. Works when auto_format is true. Optional value: `ext4`, `xfs`.
|
|
2003
2003
|
"""
|
|
2004
2004
|
return pulumi.get(self, "file_system")
|
|
2005
2005
|
|
|
@@ -2015,7 +2015,7 @@ class NodePoolDataDisk(dict):
|
|
|
2015
2015
|
@pulumi.getter(name="mountTarget")
|
|
2016
2016
|
def mount_target(self) -> Optional[str]:
|
|
2017
2017
|
"""
|
|
2018
|
-
The
|
|
2018
|
+
The Mount path. Works when auto_format is true.
|
|
2019
2019
|
"""
|
|
2020
2020
|
return pulumi.get(self, "mount_target")
|
|
2021
2021
|
|
|
@@ -301,8 +301,6 @@ class DdosBgpInstance(pulumi.CustomResource):
|
|
|
301
301
|
"""
|
|
302
302
|
Anti-DDoS Advanced instance resource. "Ddosbgp" is the short term of this product.
|
|
303
303
|
|
|
304
|
-
> **NOTE:** The endpoint of bssopenapi used only support "business.aliyuncs.com" at present.
|
|
305
|
-
|
|
306
304
|
> **NOTE:** Available since v1.183.0.
|
|
307
305
|
|
|
308
306
|
## Example Usage
|
|
@@ -355,8 +353,6 @@ class DdosBgpInstance(pulumi.CustomResource):
|
|
|
355
353
|
"""
|
|
356
354
|
Anti-DDoS Advanced instance resource. "Ddosbgp" is the short term of this product.
|
|
357
355
|
|
|
358
|
-
> **NOTE:** The endpoint of bssopenapi used only support "business.aliyuncs.com" at present.
|
|
359
|
-
|
|
360
356
|
> **NOTE:** Available since v1.183.0.
|
|
361
357
|
|
|
362
358
|
## Example Usage
|
|
@@ -171,9 +171,9 @@ class VscMountPoint(pulumi.CustomResource):
|
|
|
171
171
|
file_system_id: Optional[pulumi.Input[str]] = None,
|
|
172
172
|
__props__=None):
|
|
173
173
|
"""
|
|
174
|
-
Provides a DFS Vsc Mount Point resource.
|
|
174
|
+
Provides a Apsara File Storage for HDFS (DFS) Vsc Mount Point resource.
|
|
175
175
|
|
|
176
|
-
For information about DFS Vsc Mount Point and how to use it, see [What is Vsc Mount Point](https://www.alibabacloud.com/help/en/aibaba-cloud-storage-services/latest/apsara-file-storage-for-hdfs).
|
|
176
|
+
For information about Apsara File Storage for HDFS (DFS) Vsc Mount Point and how to use it, see [What is Vsc Mount Point](https://www.alibabacloud.com/help/en/aibaba-cloud-storage-services/latest/apsara-file-storage-for-hdfs).
|
|
177
177
|
|
|
178
178
|
> **NOTE:** Available since v1.218.0.
|
|
179
179
|
|
|
@@ -190,26 +190,26 @@ class VscMountPoint(pulumi.CustomResource):
|
|
|
190
190
|
name = config.get("name")
|
|
191
191
|
if name is None:
|
|
192
192
|
name = "terraform-example"
|
|
193
|
-
|
|
193
|
+
default = random.index.Integer("default",
|
|
194
194
|
min=10000,
|
|
195
195
|
max=99999)
|
|
196
|
-
default = alicloud.dfs.get_zones()
|
|
197
|
-
zone_id = default.zones[0].zone_id
|
|
198
|
-
storage_type = default.zones[0].options[0].storage_type
|
|
199
196
|
default_file_system = alicloud.dfs.FileSystem("default",
|
|
200
|
-
protocol_type="HDFS",
|
|
201
|
-
description=name,
|
|
202
|
-
file_system_name=f"{name}-{default_integer['result']}",
|
|
203
197
|
space_capacity=1024,
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
198
|
+
description="for vsc mountpoint RMC test",
|
|
199
|
+
storage_type="PERFORMANCE",
|
|
200
|
+
zone_id="cn-hangzhou-b",
|
|
201
|
+
protocol_type="PANGU",
|
|
202
|
+
data_redundancy_type="LRS",
|
|
203
|
+
file_system_name=name)
|
|
204
|
+
default_fs_for_rmcvsc_mp = alicloud.dfs.VscMountPoint("DefaultFsForRMCVscMp",
|
|
205
|
+
file_system_id=default_file_system.id,
|
|
206
|
+
alias_prefix=name,
|
|
207
|
+
description=name)
|
|
208
208
|
```
|
|
209
209
|
|
|
210
210
|
## Import
|
|
211
211
|
|
|
212
|
-
DFS Vsc Mount Point can be imported using the id, e.g.
|
|
212
|
+
Apsara File Storage for HDFS (DFS) Vsc Mount Point can be imported using the id, e.g.
|
|
213
213
|
|
|
214
214
|
```sh
|
|
215
215
|
$ pulumi import alicloud:dfs/vscMountPoint:VscMountPoint example <file_system_id>:<mount_point_id>
|
|
@@ -228,9 +228,9 @@ class VscMountPoint(pulumi.CustomResource):
|
|
|
228
228
|
args: VscMountPointArgs,
|
|
229
229
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
230
230
|
"""
|
|
231
|
-
Provides a DFS Vsc Mount Point resource.
|
|
231
|
+
Provides a Apsara File Storage for HDFS (DFS) Vsc Mount Point resource.
|
|
232
232
|
|
|
233
|
-
For information about DFS Vsc Mount Point and how to use it, see [What is Vsc Mount Point](https://www.alibabacloud.com/help/en/aibaba-cloud-storage-services/latest/apsara-file-storage-for-hdfs).
|
|
233
|
+
For information about Apsara File Storage for HDFS (DFS) Vsc Mount Point and how to use it, see [What is Vsc Mount Point](https://www.alibabacloud.com/help/en/aibaba-cloud-storage-services/latest/apsara-file-storage-for-hdfs).
|
|
234
234
|
|
|
235
235
|
> **NOTE:** Available since v1.218.0.
|
|
236
236
|
|
|
@@ -247,26 +247,26 @@ class VscMountPoint(pulumi.CustomResource):
|
|
|
247
247
|
name = config.get("name")
|
|
248
248
|
if name is None:
|
|
249
249
|
name = "terraform-example"
|
|
250
|
-
|
|
250
|
+
default = random.index.Integer("default",
|
|
251
251
|
min=10000,
|
|
252
252
|
max=99999)
|
|
253
|
-
default = alicloud.dfs.get_zones()
|
|
254
|
-
zone_id = default.zones[0].zone_id
|
|
255
|
-
storage_type = default.zones[0].options[0].storage_type
|
|
256
253
|
default_file_system = alicloud.dfs.FileSystem("default",
|
|
257
|
-
protocol_type="HDFS",
|
|
258
|
-
description=name,
|
|
259
|
-
file_system_name=f"{name}-{default_integer['result']}",
|
|
260
254
|
space_capacity=1024,
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
255
|
+
description="for vsc mountpoint RMC test",
|
|
256
|
+
storage_type="PERFORMANCE",
|
|
257
|
+
zone_id="cn-hangzhou-b",
|
|
258
|
+
protocol_type="PANGU",
|
|
259
|
+
data_redundancy_type="LRS",
|
|
260
|
+
file_system_name=name)
|
|
261
|
+
default_fs_for_rmcvsc_mp = alicloud.dfs.VscMountPoint("DefaultFsForRMCVscMp",
|
|
262
|
+
file_system_id=default_file_system.id,
|
|
263
|
+
alias_prefix=name,
|
|
264
|
+
description=name)
|
|
265
265
|
```
|
|
266
266
|
|
|
267
267
|
## Import
|
|
268
268
|
|
|
269
|
-
DFS Vsc Mount Point can be imported using the id, e.g.
|
|
269
|
+
Apsara File Storage for HDFS (DFS) Vsc Mount Point can be imported using the id, e.g.
|
|
270
270
|
|
|
271
271
|
```sh
|
|
272
272
|
$ pulumi import alicloud:dfs/vscMountPoint:VscMountPoint example <file_system_id>:<mount_point_id>
|
|
@@ -306,8 +306,6 @@ class DdosBgpInstance(pulumi.CustomResource):
|
|
|
306
306
|
"""
|
|
307
307
|
Anti-DDoS Advanced instance resource. "Ddosbgp" is the short term of this product.
|
|
308
308
|
|
|
309
|
-
> **NOTE:** The endpoint of bssopenapi used only support "business.aliyuncs.com" at present.
|
|
310
|
-
|
|
311
309
|
> **NOTE:** Available since v1.183.0.
|
|
312
310
|
|
|
313
311
|
## Example Usage
|
|
@@ -360,8 +358,6 @@ class DdosBgpInstance(pulumi.CustomResource):
|
|
|
360
358
|
"""
|
|
361
359
|
Anti-DDoS Advanced instance resource. "Ddosbgp" is the short term of this product.
|
|
362
360
|
|
|
363
|
-
> **NOTE:** The endpoint of bssopenapi used only support "business.aliyuncs.com" at present.
|
|
364
|
-
|
|
365
361
|
> **NOTE:** Available since v1.183.0.
|
|
366
362
|
|
|
367
363
|
## Example Usage
|
|
@@ -105,7 +105,7 @@ class ReplicaGroupDrill(pulumi.CustomResource):
|
|
|
105
105
|
"""
|
|
106
106
|
Provides a EBS Replica Group Drill resource.
|
|
107
107
|
|
|
108
|
-
For information about EBS Replica Group Drill and how to use it, see [What is Replica Group Drill](https://
|
|
108
|
+
For information about Elastic Block Storage(EBS) Replica Group Drill and how to use it, see [What is Replica Group Drill](https://next.api.alibabacloud.com/document/ebs/2021-07-30/StartReplicaGroupDrill).
|
|
109
109
|
|
|
110
110
|
> **NOTE:** Available since v1.215.0.
|
|
111
111
|
|
|
@@ -145,7 +145,7 @@ class ReplicaGroupDrill(pulumi.CustomResource):
|
|
|
145
145
|
"""
|
|
146
146
|
Provides a EBS Replica Group Drill resource.
|
|
147
147
|
|
|
148
|
-
For information about EBS Replica Group Drill and how to use it, see [What is Replica Group Drill](https://
|
|
148
|
+
For information about Elastic Block Storage(EBS) Replica Group Drill and how to use it, see [What is Replica Group Drill](https://next.api.alibabacloud.com/document/ebs/2021-07-30/StartReplicaGroupDrill).
|
|
149
149
|
|
|
150
150
|
> **NOTE:** Available since v1.215.0.
|
|
151
151
|
|
|
@@ -105,7 +105,7 @@ class ReplicaPairDrill(pulumi.CustomResource):
|
|
|
105
105
|
"""
|
|
106
106
|
Provides a EBS Replica Pair Drill resource.
|
|
107
107
|
|
|
108
|
-
For information about EBS Replica Pair Drill and how to use it, see [What is Replica Pair Drill](https://
|
|
108
|
+
For information about Elastic Block Storage(EBS) Replica Pair Drill and how to use it, see [What is Replica Pair Drill](https://next.api.alibabacloud.com/document/ebs/2021-07-30/StartPairDrill).
|
|
109
109
|
|
|
110
110
|
> **NOTE:** Available since v1.215.0.
|
|
111
111
|
|
|
@@ -145,7 +145,7 @@ class ReplicaPairDrill(pulumi.CustomResource):
|
|
|
145
145
|
"""
|
|
146
146
|
Provides a EBS Replica Pair Drill resource.
|
|
147
147
|
|
|
148
|
-
For information about EBS Replica Pair Drill and how to use it, see [What is Replica Pair Drill](https://
|
|
148
|
+
For information about Elastic Block Storage(EBS) Replica Pair Drill and how to use it, see [What is Replica Pair Drill](https://next.api.alibabacloud.com/document/ebs/2021-07-30/StartPairDrill).
|
|
149
149
|
|
|
150
150
|
> **NOTE:** Available since v1.215.0.
|
|
151
151
|
|