pulumi-alicloud 3.61.0a1724217925__py3-none-any.whl → 3.61.0a1724318858__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 +27 -0
- pulumi_alicloud/_inputs.py +16 -0
- pulumi_alicloud/alikafka/instance.py +21 -14
- pulumi_alicloud/amqp/binding.py +7 -0
- pulumi_alicloud/config/outputs.py +12 -0
- pulumi_alicloud/cs/_inputs.py +50 -2
- pulumi_alicloud/cs/node_pool.py +42 -42
- pulumi_alicloud/cs/outputs.py +45 -3
- pulumi_alicloud/dataworks/__init__.py +1 -0
- pulumi_alicloud/dataworks/project.py +450 -0
- pulumi_alicloud/elasticsearch/instance.py +296 -14
- pulumi_alicloud/log/store.py +91 -10
- pulumi_alicloud/mongodb/_inputs.py +12 -12
- pulumi_alicloud/mongodb/instance.py +54 -7
- pulumi_alicloud/mongodb/outputs.py +12 -12
- pulumi_alicloud/mongodb/sharding_instance.py +54 -7
- pulumi_alicloud/mongodb/sharding_network_private_address.py +145 -39
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/selectdb/__init__.py +13 -0
- pulumi_alicloud/selectdb/_inputs.py +446 -0
- pulumi_alicloud/selectdb/db_cluster.py +830 -0
- pulumi_alicloud/selectdb/db_instance.py +1368 -0
- pulumi_alicloud/selectdb/get_db_clusters.py +184 -0
- pulumi_alicloud/selectdb/get_db_instances.py +191 -0
- pulumi_alicloud/selectdb/outputs.py +1122 -0
- {pulumi_alicloud-3.61.0a1724217925.dist-info → pulumi_alicloud-3.61.0a1724318858.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.61.0a1724217925.dist-info → pulumi_alicloud-3.61.0a1724318858.dist-info}/RECORD +29 -21
- {pulumi_alicloud-3.61.0a1724217925.dist-info → pulumi_alicloud-3.61.0a1724318858.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.61.0a1724217925.dist-info → pulumi_alicloud-3.61.0a1724318858.dist-info}/top_level.txt +0 -0
pulumi_alicloud/cs/node_pool.py
CHANGED
|
@@ -114,9 +114,9 @@ class NodePoolArgs:
|
|
|
114
114
|
- `ContainerOS` : container-optimized image.
|
|
115
115
|
:param pulumi.Input[bool] install_cloud_monitor: Whether to install cloud monitoring on the ECS node. After installation, you can view the monitoring information of the created ECS instance in the cloud monitoring console and recommend enable it. Default value: `false`. Valid values:
|
|
116
116
|
:param pulumi.Input[str] instance_charge_type: Node payment type. Valid values: `PostPaid`, `PrePaid`, default is `PostPaid`. If value is `PrePaid`, the arguments `period`, `period_unit`, `auto_renew` and `auto_renew_period` are required.
|
|
117
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] instances: The
|
|
118
|
-
:param pulumi.Input[str] internet_charge_type: The billing method for network usage. Valid values `PayByBandwidth` and `PayByTraffic`. Conflict with `eip_internet_charge_type`, EIP and public network IP can only choose one.
|
|
119
|
-
:param pulumi.Input[int] internet_max_bandwidth_out: The maximum bandwidth of the public IP address of the node. The unit is Mbps(Mega bit per second). The value range is:\\[1,100\\]
|
|
117
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] instances: The instance list. Add existing nodes under the same cluster VPC to the node pool.
|
|
118
|
+
:param pulumi.Input[str] internet_charge_type: The billing method for network usage. Valid values `PayByBandwidth` and `PayByTraffic`. Conflict with `eip_internet_charge_type`, EIP and public network IP can only choose one.
|
|
119
|
+
:param pulumi.Input[int] internet_max_bandwidth_out: The maximum bandwidth of the public IP address of the node. The unit is Mbps(Mega bit per second). The value range is:\\[1,100\\]
|
|
120
120
|
:param pulumi.Input[bool] keep_instance_name: Add an existing instance to the node pool, whether to keep the original instance name. It is recommended to set to `true`.
|
|
121
121
|
:param pulumi.Input[str] key_name: The name of the key pair. When the node pool is a managed node pool, only `key_name` is supported.
|
|
122
122
|
:param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a cs kubernetes. You have to specify one of `password` `key_name` `kms_encrypted_password` fields.
|
|
@@ -141,7 +141,7 @@ class NodePoolArgs:
|
|
|
141
141
|
:param pulumi.Input[str] platform: Operating system release, using `image_type` instead.
|
|
142
142
|
:param pulumi.Input['NodePoolPrivatePoolOptionsArgs'] private_pool_options: Private node pool configuration. See `private_pool_options` below.
|
|
143
143
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] rds_instances: The list of RDS instances.
|
|
144
|
-
:param pulumi.Input[str] resource_group_id: The ID of the resource group
|
|
144
|
+
:param pulumi.Input[str] resource_group_id: The ID of the resource group
|
|
145
145
|
:param pulumi.Input['NodePoolRollingPolicyArgs'] rolling_policy: Rotary configuration. See `rolling_policy` below.
|
|
146
146
|
:param pulumi.Input[str] runtime_name: The runtime name of containers. If not set, the cluster runtime will be used as the node pool runtime. If you select another container runtime, see [Comparison of Docker, containerd, and Sandboxed-Container](https://www.alibabacloud.com/help/doc-detail/160313.htm).
|
|
147
147
|
:param pulumi.Input[str] runtime_version: The runtime version of containers. If not set, the cluster runtime will be used as the node pool runtime.
|
|
@@ -161,7 +161,7 @@ class NodePoolArgs:
|
|
|
161
161
|
- `SpotAsPriceGo` : The system automatically bids, following the actual price of the current market.
|
|
162
162
|
: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`.
|
|
163
163
|
: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: `cloud`: cloud disk. `cloud_efficiency`: a high-efficiency cloud disk. `cloud_ssd`:SSD cloud disk. `cloud_essd`: ESSD cloud disk.
|
|
164
|
-
:param pulumi.Input[str] system_disk_category: The system disk category of worker node. Its valid value are `cloud_ssd`, `cloud_efficiency`, `cloud_essd` and `cloud_auto`.
|
|
164
|
+
:param pulumi.Input[str] system_disk_category: The system disk category of worker node. Its valid value are `cloud_ssd`, `cloud_efficiency`, `cloud_essd` and `cloud_auto`.
|
|
165
165
|
:param pulumi.Input[str] system_disk_encrypt_algorithm: The encryption algorithm used by the system disk. Value range: aes-256.
|
|
166
166
|
:param pulumi.Input[bool] system_disk_encrypted: Whether to encrypt the system disk. Value range: `true`: encryption. `false`: Do not encrypt.
|
|
167
167
|
:param pulumi.Input[str] system_disk_kms_key: The ID of the KMS key used by the system disk.
|
|
@@ -173,7 +173,7 @@ class NodePoolArgs:
|
|
|
173
173
|
: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`.
|
|
174
174
|
:param pulumi.Input[int] system_disk_size: The system disk category of worker node. Its valid value range [40~500] in GB. Default to `120`.
|
|
175
175
|
:param pulumi.Input[str] system_disk_snapshot_policy_id: The ID of the automatic snapshot policy used by the system disk.
|
|
176
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Add tags only for ECS instances.
|
|
176
|
+
: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://".
|
|
177
177
|
: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.
|
|
178
178
|
:param pulumi.Input['NodePoolTeeConfigArgs'] tee_config: The configuration about confidential computing for the cluster. See `tee_config` below.
|
|
179
179
|
:param pulumi.Input[bool] unschedulable: Whether the node after expansion can be scheduled.
|
|
@@ -552,7 +552,7 @@ class NodePoolArgs:
|
|
|
552
552
|
@pulumi.getter
|
|
553
553
|
def instances(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
554
554
|
"""
|
|
555
|
-
The
|
|
555
|
+
The instance list. Add existing nodes under the same cluster VPC to the node pool.
|
|
556
556
|
"""
|
|
557
557
|
return pulumi.get(self, "instances")
|
|
558
558
|
|
|
@@ -564,7 +564,7 @@ class NodePoolArgs:
|
|
|
564
564
|
@pulumi.getter(name="internetChargeType")
|
|
565
565
|
def internet_charge_type(self) -> Optional[pulumi.Input[str]]:
|
|
566
566
|
"""
|
|
567
|
-
The billing method for network usage. Valid values `PayByBandwidth` and `PayByTraffic`. Conflict with `eip_internet_charge_type`, EIP and public network IP can only choose one.
|
|
567
|
+
The billing method for network usage. Valid values `PayByBandwidth` and `PayByTraffic`. Conflict with `eip_internet_charge_type`, EIP and public network IP can only choose one.
|
|
568
568
|
"""
|
|
569
569
|
return pulumi.get(self, "internet_charge_type")
|
|
570
570
|
|
|
@@ -576,7 +576,7 @@ class NodePoolArgs:
|
|
|
576
576
|
@pulumi.getter(name="internetMaxBandwidthOut")
|
|
577
577
|
def internet_max_bandwidth_out(self) -> Optional[pulumi.Input[int]]:
|
|
578
578
|
"""
|
|
579
|
-
The maximum bandwidth of the public IP address of the node. The unit is Mbps(Mega bit per second). The value range is:\\[1,100\\]
|
|
579
|
+
The maximum bandwidth of the public IP address of the node. The unit is Mbps(Mega bit per second). The value range is:\\[1,100\\]
|
|
580
580
|
"""
|
|
581
581
|
return pulumi.get(self, "internet_max_bandwidth_out")
|
|
582
582
|
|
|
@@ -846,7 +846,7 @@ class NodePoolArgs:
|
|
|
846
846
|
@pulumi.getter(name="resourceGroupId")
|
|
847
847
|
def resource_group_id(self) -> Optional[pulumi.Input[str]]:
|
|
848
848
|
"""
|
|
849
|
-
The ID of the resource group
|
|
849
|
+
The ID of the resource group
|
|
850
850
|
"""
|
|
851
851
|
return pulumi.get(self, "resource_group_id")
|
|
852
852
|
|
|
@@ -1043,7 +1043,7 @@ class NodePoolArgs:
|
|
|
1043
1043
|
@pulumi.getter(name="systemDiskCategory")
|
|
1044
1044
|
def system_disk_category(self) -> Optional[pulumi.Input[str]]:
|
|
1045
1045
|
"""
|
|
1046
|
-
The system disk category of worker node. Its valid value are `cloud_ssd`, `cloud_efficiency`, `cloud_essd` and `cloud_auto`.
|
|
1046
|
+
The system disk category of worker node. Its valid value are `cloud_ssd`, `cloud_efficiency`, `cloud_essd` and `cloud_auto`.
|
|
1047
1047
|
"""
|
|
1048
1048
|
return pulumi.get(self, "system_disk_category")
|
|
1049
1049
|
|
|
@@ -1143,7 +1143,7 @@ class NodePoolArgs:
|
|
|
1143
1143
|
@pulumi.getter
|
|
1144
1144
|
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
1145
1145
|
"""
|
|
1146
|
-
Add tags only for ECS instances.
|
|
1146
|
+
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://".
|
|
1147
1147
|
"""
|
|
1148
1148
|
return pulumi.get(self, "tags")
|
|
1149
1149
|
|
|
@@ -1314,9 +1314,9 @@ class _NodePoolState:
|
|
|
1314
1314
|
:param pulumi.Input[bool] install_cloud_monitor: Whether to install cloud monitoring on the ECS node. After installation, you can view the monitoring information of the created ECS instance in the cloud monitoring console and recommend enable it. Default value: `false`. Valid values:
|
|
1315
1315
|
:param pulumi.Input[str] instance_charge_type: Node payment type. Valid values: `PostPaid`, `PrePaid`, default is `PostPaid`. If value is `PrePaid`, the arguments `period`, `period_unit`, `auto_renew` and `auto_renew_period` are required.
|
|
1316
1316
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] instance_types: In the node instance specification list, you can select multiple instance specifications as alternatives. When each node is created, it will try to purchase from the first specification until it is created successfully. The final purchased instance specifications may vary with inventory changes.
|
|
1317
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] instances: The
|
|
1318
|
-
:param pulumi.Input[str] internet_charge_type: The billing method for network usage. Valid values `PayByBandwidth` and `PayByTraffic`. Conflict with `eip_internet_charge_type`, EIP and public network IP can only choose one.
|
|
1319
|
-
:param pulumi.Input[int] internet_max_bandwidth_out: The maximum bandwidth of the public IP address of the node. The unit is Mbps(Mega bit per second). The value range is:\\[1,100\\]
|
|
1317
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] instances: The instance list. Add existing nodes under the same cluster VPC to the node pool.
|
|
1318
|
+
:param pulumi.Input[str] internet_charge_type: The billing method for network usage. Valid values `PayByBandwidth` and `PayByTraffic`. Conflict with `eip_internet_charge_type`, EIP and public network IP can only choose one.
|
|
1319
|
+
:param pulumi.Input[int] internet_max_bandwidth_out: The maximum bandwidth of the public IP address of the node. The unit is Mbps(Mega bit per second). The value range is:\\[1,100\\]
|
|
1320
1320
|
:param pulumi.Input[bool] keep_instance_name: Add an existing instance to the node pool, whether to keep the original instance name. It is recommended to set to `true`.
|
|
1321
1321
|
:param pulumi.Input[str] key_name: The name of the key pair. When the node pool is a managed node pool, only `key_name` is supported.
|
|
1322
1322
|
:param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a cs kubernetes. You have to specify one of `password` `key_name` `kms_encrypted_password` fields.
|
|
@@ -1342,7 +1342,7 @@ class _NodePoolState:
|
|
|
1342
1342
|
:param pulumi.Input[str] platform: Operating system release, using `image_type` instead.
|
|
1343
1343
|
:param pulumi.Input['NodePoolPrivatePoolOptionsArgs'] private_pool_options: Private node pool configuration. See `private_pool_options` below.
|
|
1344
1344
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] rds_instances: The list of RDS instances.
|
|
1345
|
-
:param pulumi.Input[str] resource_group_id: The ID of the resource group
|
|
1345
|
+
:param pulumi.Input[str] resource_group_id: The ID of the resource group
|
|
1346
1346
|
:param pulumi.Input['NodePoolRollingPolicyArgs'] rolling_policy: Rotary configuration. See `rolling_policy` below.
|
|
1347
1347
|
:param pulumi.Input[str] runtime_name: The runtime name of containers. If not set, the cluster runtime will be used as the node pool runtime. If you select another container runtime, see [Comparison of Docker, containerd, and Sandboxed-Container](https://www.alibabacloud.com/help/doc-detail/160313.htm).
|
|
1348
1348
|
:param pulumi.Input[str] runtime_version: The runtime version of containers. If not set, the cluster runtime will be used as the node pool runtime.
|
|
@@ -1363,7 +1363,7 @@ class _NodePoolState:
|
|
|
1363
1363
|
- `SpotAsPriceGo` : The system automatically bids, following the actual price of the current market.
|
|
1364
1364
|
: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`.
|
|
1365
1365
|
: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: `cloud`: cloud disk. `cloud_efficiency`: a high-efficiency cloud disk. `cloud_ssd`:SSD cloud disk. `cloud_essd`: ESSD cloud disk.
|
|
1366
|
-
:param pulumi.Input[str] system_disk_category: The system disk category of worker node. Its valid value are `cloud_ssd`, `cloud_efficiency`, `cloud_essd` and `cloud_auto`.
|
|
1366
|
+
:param pulumi.Input[str] system_disk_category: The system disk category of worker node. Its valid value are `cloud_ssd`, `cloud_efficiency`, `cloud_essd` and `cloud_auto`.
|
|
1367
1367
|
:param pulumi.Input[str] system_disk_encrypt_algorithm: The encryption algorithm used by the system disk. Value range: aes-256.
|
|
1368
1368
|
:param pulumi.Input[bool] system_disk_encrypted: Whether to encrypt the system disk. Value range: `true`: encryption. `false`: Do not encrypt.
|
|
1369
1369
|
:param pulumi.Input[str] system_disk_kms_key: The ID of the KMS key used by the system disk.
|
|
@@ -1375,7 +1375,7 @@ class _NodePoolState:
|
|
|
1375
1375
|
: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`.
|
|
1376
1376
|
:param pulumi.Input[int] system_disk_size: The system disk category of worker node. Its valid value range [40~500] in GB. Default to `120`.
|
|
1377
1377
|
:param pulumi.Input[str] system_disk_snapshot_policy_id: The ID of the automatic snapshot policy used by the system disk.
|
|
1378
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Add tags only for ECS instances.
|
|
1378
|
+
: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://".
|
|
1379
1379
|
: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.
|
|
1380
1380
|
:param pulumi.Input['NodePoolTeeConfigArgs'] tee_config: The configuration about confidential computing for the cluster. See `tee_config` below.
|
|
1381
1381
|
:param pulumi.Input[bool] unschedulable: Whether the node after expansion can be scheduled.
|
|
@@ -1750,7 +1750,7 @@ class _NodePoolState:
|
|
|
1750
1750
|
@pulumi.getter
|
|
1751
1751
|
def instances(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
1752
1752
|
"""
|
|
1753
|
-
The
|
|
1753
|
+
The instance list. Add existing nodes under the same cluster VPC to the node pool.
|
|
1754
1754
|
"""
|
|
1755
1755
|
return pulumi.get(self, "instances")
|
|
1756
1756
|
|
|
@@ -1762,7 +1762,7 @@ class _NodePoolState:
|
|
|
1762
1762
|
@pulumi.getter(name="internetChargeType")
|
|
1763
1763
|
def internet_charge_type(self) -> Optional[pulumi.Input[str]]:
|
|
1764
1764
|
"""
|
|
1765
|
-
The billing method for network usage. Valid values `PayByBandwidth` and `PayByTraffic`. Conflict with `eip_internet_charge_type`, EIP and public network IP can only choose one.
|
|
1765
|
+
The billing method for network usage. Valid values `PayByBandwidth` and `PayByTraffic`. Conflict with `eip_internet_charge_type`, EIP and public network IP can only choose one.
|
|
1766
1766
|
"""
|
|
1767
1767
|
return pulumi.get(self, "internet_charge_type")
|
|
1768
1768
|
|
|
@@ -1774,7 +1774,7 @@ class _NodePoolState:
|
|
|
1774
1774
|
@pulumi.getter(name="internetMaxBandwidthOut")
|
|
1775
1775
|
def internet_max_bandwidth_out(self) -> Optional[pulumi.Input[int]]:
|
|
1776
1776
|
"""
|
|
1777
|
-
The maximum bandwidth of the public IP address of the node. The unit is Mbps(Mega bit per second). The value range is:\\[1,100\\]
|
|
1777
|
+
The maximum bandwidth of the public IP address of the node. The unit is Mbps(Mega bit per second). The value range is:\\[1,100\\]
|
|
1778
1778
|
"""
|
|
1779
1779
|
return pulumi.get(self, "internet_max_bandwidth_out")
|
|
1780
1780
|
|
|
@@ -2056,7 +2056,7 @@ class _NodePoolState:
|
|
|
2056
2056
|
@pulumi.getter(name="resourceGroupId")
|
|
2057
2057
|
def resource_group_id(self) -> Optional[pulumi.Input[str]]:
|
|
2058
2058
|
"""
|
|
2059
|
-
The ID of the resource group
|
|
2059
|
+
The ID of the resource group
|
|
2060
2060
|
"""
|
|
2061
2061
|
return pulumi.get(self, "resource_group_id")
|
|
2062
2062
|
|
|
@@ -2265,7 +2265,7 @@ class _NodePoolState:
|
|
|
2265
2265
|
@pulumi.getter(name="systemDiskCategory")
|
|
2266
2266
|
def system_disk_category(self) -> Optional[pulumi.Input[str]]:
|
|
2267
2267
|
"""
|
|
2268
|
-
The system disk category of worker node. Its valid value are `cloud_ssd`, `cloud_efficiency`, `cloud_essd` and `cloud_auto`.
|
|
2268
|
+
The system disk category of worker node. Its valid value are `cloud_ssd`, `cloud_efficiency`, `cloud_essd` and `cloud_auto`.
|
|
2269
2269
|
"""
|
|
2270
2270
|
return pulumi.get(self, "system_disk_category")
|
|
2271
2271
|
|
|
@@ -2365,7 +2365,7 @@ class _NodePoolState:
|
|
|
2365
2365
|
@pulumi.getter
|
|
2366
2366
|
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
2367
2367
|
"""
|
|
2368
|
-
Add tags only for ECS instances.
|
|
2368
|
+
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://".
|
|
2369
2369
|
"""
|
|
2370
2370
|
return pulumi.get(self, "tags")
|
|
2371
2371
|
|
|
@@ -2562,9 +2562,9 @@ class NodePool(pulumi.CustomResource):
|
|
|
2562
2562
|
:param pulumi.Input[bool] install_cloud_monitor: Whether to install cloud monitoring on the ECS node. After installation, you can view the monitoring information of the created ECS instance in the cloud monitoring console and recommend enable it. Default value: `false`. Valid values:
|
|
2563
2563
|
:param pulumi.Input[str] instance_charge_type: Node payment type. Valid values: `PostPaid`, `PrePaid`, default is `PostPaid`. If value is `PrePaid`, the arguments `period`, `period_unit`, `auto_renew` and `auto_renew_period` are required.
|
|
2564
2564
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] instance_types: In the node instance specification list, you can select multiple instance specifications as alternatives. When each node is created, it will try to purchase from the first specification until it is created successfully. The final purchased instance specifications may vary with inventory changes.
|
|
2565
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] instances: The
|
|
2566
|
-
:param pulumi.Input[str] internet_charge_type: The billing method for network usage. Valid values `PayByBandwidth` and `PayByTraffic`. Conflict with `eip_internet_charge_type`, EIP and public network IP can only choose one.
|
|
2567
|
-
:param pulumi.Input[int] internet_max_bandwidth_out: The maximum bandwidth of the public IP address of the node. The unit is Mbps(Mega bit per second). The value range is:\\[1,100\\]
|
|
2565
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] instances: The instance list. Add existing nodes under the same cluster VPC to the node pool.
|
|
2566
|
+
:param pulumi.Input[str] internet_charge_type: The billing method for network usage. Valid values `PayByBandwidth` and `PayByTraffic`. Conflict with `eip_internet_charge_type`, EIP and public network IP can only choose one.
|
|
2567
|
+
:param pulumi.Input[int] internet_max_bandwidth_out: The maximum bandwidth of the public IP address of the node. The unit is Mbps(Mega bit per second). The value range is:\\[1,100\\]
|
|
2568
2568
|
:param pulumi.Input[bool] keep_instance_name: Add an existing instance to the node pool, whether to keep the original instance name. It is recommended to set to `true`.
|
|
2569
2569
|
:param pulumi.Input[str] key_name: The name of the key pair. When the node pool is a managed node pool, only `key_name` is supported.
|
|
2570
2570
|
:param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a cs kubernetes. You have to specify one of `password` `key_name` `kms_encrypted_password` fields.
|
|
@@ -2589,7 +2589,7 @@ class NodePool(pulumi.CustomResource):
|
|
|
2589
2589
|
:param pulumi.Input[str] platform: Operating system release, using `image_type` instead.
|
|
2590
2590
|
:param pulumi.Input[Union['NodePoolPrivatePoolOptionsArgs', 'NodePoolPrivatePoolOptionsArgsDict']] private_pool_options: Private node pool configuration. See `private_pool_options` below.
|
|
2591
2591
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] rds_instances: The list of RDS instances.
|
|
2592
|
-
:param pulumi.Input[str] resource_group_id: The ID of the resource group
|
|
2592
|
+
:param pulumi.Input[str] resource_group_id: The ID of the resource group
|
|
2593
2593
|
:param pulumi.Input[Union['NodePoolRollingPolicyArgs', 'NodePoolRollingPolicyArgsDict']] rolling_policy: Rotary configuration. See `rolling_policy` below.
|
|
2594
2594
|
:param pulumi.Input[str] runtime_name: The runtime name of containers. If not set, the cluster runtime will be used as the node pool runtime. If you select another container runtime, see [Comparison of Docker, containerd, and Sandboxed-Container](https://www.alibabacloud.com/help/doc-detail/160313.htm).
|
|
2595
2595
|
:param pulumi.Input[str] runtime_version: The runtime version of containers. If not set, the cluster runtime will be used as the node pool runtime.
|
|
@@ -2609,7 +2609,7 @@ class NodePool(pulumi.CustomResource):
|
|
|
2609
2609
|
- `SpotAsPriceGo` : The system automatically bids, following the actual price of the current market.
|
|
2610
2610
|
: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`.
|
|
2611
2611
|
: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: `cloud`: cloud disk. `cloud_efficiency`: a high-efficiency cloud disk. `cloud_ssd`:SSD cloud disk. `cloud_essd`: ESSD cloud disk.
|
|
2612
|
-
:param pulumi.Input[str] system_disk_category: The system disk category of worker node. Its valid value are `cloud_ssd`, `cloud_efficiency`, `cloud_essd` and `cloud_auto`.
|
|
2612
|
+
:param pulumi.Input[str] system_disk_category: The system disk category of worker node. Its valid value are `cloud_ssd`, `cloud_efficiency`, `cloud_essd` and `cloud_auto`.
|
|
2613
2613
|
:param pulumi.Input[str] system_disk_encrypt_algorithm: The encryption algorithm used by the system disk. Value range: aes-256.
|
|
2614
2614
|
:param pulumi.Input[bool] system_disk_encrypted: Whether to encrypt the system disk. Value range: `true`: encryption. `false`: Do not encrypt.
|
|
2615
2615
|
:param pulumi.Input[str] system_disk_kms_key: The ID of the KMS key used by the system disk.
|
|
@@ -2621,7 +2621,7 @@ class NodePool(pulumi.CustomResource):
|
|
|
2621
2621
|
: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`.
|
|
2622
2622
|
:param pulumi.Input[int] system_disk_size: The system disk category of worker node. Its valid value range [40~500] in GB. Default to `120`.
|
|
2623
2623
|
:param pulumi.Input[str] system_disk_snapshot_policy_id: The ID of the automatic snapshot policy used by the system disk.
|
|
2624
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Add tags only for ECS instances.
|
|
2624
|
+
: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://".
|
|
2625
2625
|
: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.
|
|
2626
2626
|
:param pulumi.Input[Union['NodePoolTeeConfigArgs', 'NodePoolTeeConfigArgsDict']] tee_config: The configuration about confidential computing for the cluster. See `tee_config` below.
|
|
2627
2627
|
:param pulumi.Input[bool] unschedulable: Whether the node after expansion can be scheduled.
|
|
@@ -2938,9 +2938,9 @@ class NodePool(pulumi.CustomResource):
|
|
|
2938
2938
|
:param pulumi.Input[bool] install_cloud_monitor: Whether to install cloud monitoring on the ECS node. After installation, you can view the monitoring information of the created ECS instance in the cloud monitoring console and recommend enable it. Default value: `false`. Valid values:
|
|
2939
2939
|
:param pulumi.Input[str] instance_charge_type: Node payment type. Valid values: `PostPaid`, `PrePaid`, default is `PostPaid`. If value is `PrePaid`, the arguments `period`, `period_unit`, `auto_renew` and `auto_renew_period` are required.
|
|
2940
2940
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] instance_types: In the node instance specification list, you can select multiple instance specifications as alternatives. When each node is created, it will try to purchase from the first specification until it is created successfully. The final purchased instance specifications may vary with inventory changes.
|
|
2941
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] instances: The
|
|
2942
|
-
:param pulumi.Input[str] internet_charge_type: The billing method for network usage. Valid values `PayByBandwidth` and `PayByTraffic`. Conflict with `eip_internet_charge_type`, EIP and public network IP can only choose one.
|
|
2943
|
-
:param pulumi.Input[int] internet_max_bandwidth_out: The maximum bandwidth of the public IP address of the node. The unit is Mbps(Mega bit per second). The value range is:\\[1,100\\]
|
|
2941
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] instances: The instance list. Add existing nodes under the same cluster VPC to the node pool.
|
|
2942
|
+
:param pulumi.Input[str] internet_charge_type: The billing method for network usage. Valid values `PayByBandwidth` and `PayByTraffic`. Conflict with `eip_internet_charge_type`, EIP and public network IP can only choose one.
|
|
2943
|
+
:param pulumi.Input[int] internet_max_bandwidth_out: The maximum bandwidth of the public IP address of the node. The unit is Mbps(Mega bit per second). The value range is:\\[1,100\\]
|
|
2944
2944
|
:param pulumi.Input[bool] keep_instance_name: Add an existing instance to the node pool, whether to keep the original instance name. It is recommended to set to `true`.
|
|
2945
2945
|
:param pulumi.Input[str] key_name: The name of the key pair. When the node pool is a managed node pool, only `key_name` is supported.
|
|
2946
2946
|
:param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a cs kubernetes. You have to specify one of `password` `key_name` `kms_encrypted_password` fields.
|
|
@@ -2966,7 +2966,7 @@ class NodePool(pulumi.CustomResource):
|
|
|
2966
2966
|
:param pulumi.Input[str] platform: Operating system release, using `image_type` instead.
|
|
2967
2967
|
:param pulumi.Input[Union['NodePoolPrivatePoolOptionsArgs', 'NodePoolPrivatePoolOptionsArgsDict']] private_pool_options: Private node pool configuration. See `private_pool_options` below.
|
|
2968
2968
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] rds_instances: The list of RDS instances.
|
|
2969
|
-
:param pulumi.Input[str] resource_group_id: The ID of the resource group
|
|
2969
|
+
:param pulumi.Input[str] resource_group_id: The ID of the resource group
|
|
2970
2970
|
:param pulumi.Input[Union['NodePoolRollingPolicyArgs', 'NodePoolRollingPolicyArgsDict']] rolling_policy: Rotary configuration. See `rolling_policy` below.
|
|
2971
2971
|
:param pulumi.Input[str] runtime_name: The runtime name of containers. If not set, the cluster runtime will be used as the node pool runtime. If you select another container runtime, see [Comparison of Docker, containerd, and Sandboxed-Container](https://www.alibabacloud.com/help/doc-detail/160313.htm).
|
|
2972
2972
|
:param pulumi.Input[str] runtime_version: The runtime version of containers. If not set, the cluster runtime will be used as the node pool runtime.
|
|
@@ -2987,7 +2987,7 @@ class NodePool(pulumi.CustomResource):
|
|
|
2987
2987
|
- `SpotAsPriceGo` : The system automatically bids, following the actual price of the current market.
|
|
2988
2988
|
: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`.
|
|
2989
2989
|
: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: `cloud`: cloud disk. `cloud_efficiency`: a high-efficiency cloud disk. `cloud_ssd`:SSD cloud disk. `cloud_essd`: ESSD cloud disk.
|
|
2990
|
-
:param pulumi.Input[str] system_disk_category: The system disk category of worker node. Its valid value are `cloud_ssd`, `cloud_efficiency`, `cloud_essd` and `cloud_auto`.
|
|
2990
|
+
:param pulumi.Input[str] system_disk_category: The system disk category of worker node. Its valid value are `cloud_ssd`, `cloud_efficiency`, `cloud_essd` and `cloud_auto`.
|
|
2991
2991
|
:param pulumi.Input[str] system_disk_encrypt_algorithm: The encryption algorithm used by the system disk. Value range: aes-256.
|
|
2992
2992
|
:param pulumi.Input[bool] system_disk_encrypted: Whether to encrypt the system disk. Value range: `true`: encryption. `false`: Do not encrypt.
|
|
2993
2993
|
:param pulumi.Input[str] system_disk_kms_key: The ID of the KMS key used by the system disk.
|
|
@@ -2999,7 +2999,7 @@ class NodePool(pulumi.CustomResource):
|
|
|
2999
2999
|
: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`.
|
|
3000
3000
|
:param pulumi.Input[int] system_disk_size: The system disk category of worker node. Its valid value range [40~500] in GB. Default to `120`.
|
|
3001
3001
|
:param pulumi.Input[str] system_disk_snapshot_policy_id: The ID of the automatic snapshot policy used by the system disk.
|
|
3002
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Add tags only for ECS instances.
|
|
3002
|
+
: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://".
|
|
3003
3003
|
: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.
|
|
3004
3004
|
:param pulumi.Input[Union['NodePoolTeeConfigArgs', 'NodePoolTeeConfigArgsDict']] tee_config: The configuration about confidential computing for the cluster. See `tee_config` below.
|
|
3005
3005
|
:param pulumi.Input[bool] unschedulable: Whether the node after expansion can be scheduled.
|
|
@@ -3227,7 +3227,7 @@ class NodePool(pulumi.CustomResource):
|
|
|
3227
3227
|
@pulumi.getter
|
|
3228
3228
|
def instances(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
3229
3229
|
"""
|
|
3230
|
-
The
|
|
3230
|
+
The instance list. Add existing nodes under the same cluster VPC to the node pool.
|
|
3231
3231
|
"""
|
|
3232
3232
|
return pulumi.get(self, "instances")
|
|
3233
3233
|
|
|
@@ -3235,7 +3235,7 @@ class NodePool(pulumi.CustomResource):
|
|
|
3235
3235
|
@pulumi.getter(name="internetChargeType")
|
|
3236
3236
|
def internet_charge_type(self) -> pulumi.Output[Optional[str]]:
|
|
3237
3237
|
"""
|
|
3238
|
-
The billing method for network usage. Valid values `PayByBandwidth` and `PayByTraffic`. Conflict with `eip_internet_charge_type`, EIP and public network IP can only choose one.
|
|
3238
|
+
The billing method for network usage. Valid values `PayByBandwidth` and `PayByTraffic`. Conflict with `eip_internet_charge_type`, EIP and public network IP can only choose one.
|
|
3239
3239
|
"""
|
|
3240
3240
|
return pulumi.get(self, "internet_charge_type")
|
|
3241
3241
|
|
|
@@ -3243,7 +3243,7 @@ class NodePool(pulumi.CustomResource):
|
|
|
3243
3243
|
@pulumi.getter(name="internetMaxBandwidthOut")
|
|
3244
3244
|
def internet_max_bandwidth_out(self) -> pulumi.Output[Optional[int]]:
|
|
3245
3245
|
"""
|
|
3246
|
-
The maximum bandwidth of the public IP address of the node. The unit is Mbps(Mega bit per second). The value range is:\\[1,100\\]
|
|
3246
|
+
The maximum bandwidth of the public IP address of the node. The unit is Mbps(Mega bit per second). The value range is:\\[1,100\\]
|
|
3247
3247
|
"""
|
|
3248
3248
|
return pulumi.get(self, "internet_max_bandwidth_out")
|
|
3249
3249
|
|
|
@@ -3433,7 +3433,7 @@ class NodePool(pulumi.CustomResource):
|
|
|
3433
3433
|
@pulumi.getter(name="resourceGroupId")
|
|
3434
3434
|
def resource_group_id(self) -> pulumi.Output[str]:
|
|
3435
3435
|
"""
|
|
3436
|
-
The ID of the resource group
|
|
3436
|
+
The ID of the resource group
|
|
3437
3437
|
"""
|
|
3438
3438
|
return pulumi.get(self, "resource_group_id")
|
|
3439
3439
|
|
|
@@ -3574,7 +3574,7 @@ class NodePool(pulumi.CustomResource):
|
|
|
3574
3574
|
@pulumi.getter(name="systemDiskCategory")
|
|
3575
3575
|
def system_disk_category(self) -> pulumi.Output[str]:
|
|
3576
3576
|
"""
|
|
3577
|
-
The system disk category of worker node. Its valid value are `cloud_ssd`, `cloud_efficiency`, `cloud_essd` and `cloud_auto`.
|
|
3577
|
+
The system disk category of worker node. Its valid value are `cloud_ssd`, `cloud_efficiency`, `cloud_essd` and `cloud_auto`.
|
|
3578
3578
|
"""
|
|
3579
3579
|
return pulumi.get(self, "system_disk_category")
|
|
3580
3580
|
|
|
@@ -3642,7 +3642,7 @@ class NodePool(pulumi.CustomResource):
|
|
|
3642
3642
|
@pulumi.getter
|
|
3643
3643
|
def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
|
3644
3644
|
"""
|
|
3645
|
-
Add tags only for ECS instances.
|
|
3645
|
+
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://".
|
|
3646
3646
|
"""
|
|
3647
3647
|
return pulumi.get(self, "tags")
|
|
3648
3648
|
|
pulumi_alicloud/cs/outputs.py
CHANGED
|
@@ -1753,12 +1753,18 @@ class NodePoolDataDisk(dict):
|
|
|
1753
1753
|
@staticmethod
|
|
1754
1754
|
def __key_warning(key: str):
|
|
1755
1755
|
suggest = None
|
|
1756
|
-
if key == "
|
|
1756
|
+
if key == "autoFormat":
|
|
1757
|
+
suggest = "auto_format"
|
|
1758
|
+
elif key == "autoSnapshotPolicyId":
|
|
1757
1759
|
suggest = "auto_snapshot_policy_id"
|
|
1758
1760
|
elif key == "burstingEnabled":
|
|
1759
1761
|
suggest = "bursting_enabled"
|
|
1762
|
+
elif key == "fileSystem":
|
|
1763
|
+
suggest = "file_system"
|
|
1760
1764
|
elif key == "kmsKeyId":
|
|
1761
1765
|
suggest = "kms_key_id"
|
|
1766
|
+
elif key == "mountTarget":
|
|
1767
|
+
suggest = "mount_target"
|
|
1762
1768
|
elif key == "performanceLevel":
|
|
1763
1769
|
suggest = "performance_level"
|
|
1764
1770
|
elif key == "provisionedIops":
|
|
@@ -1778,30 +1784,38 @@ class NodePoolDataDisk(dict):
|
|
|
1778
1784
|
return super().get(key, default)
|
|
1779
1785
|
|
|
1780
1786
|
def __init__(__self__, *,
|
|
1787
|
+
auto_format: Optional[str] = None,
|
|
1781
1788
|
auto_snapshot_policy_id: Optional[str] = None,
|
|
1782
1789
|
bursting_enabled: Optional[bool] = None,
|
|
1783
1790
|
category: Optional[str] = None,
|
|
1784
1791
|
device: Optional[str] = None,
|
|
1785
1792
|
encrypted: Optional[str] = None,
|
|
1793
|
+
file_system: Optional[str] = None,
|
|
1786
1794
|
kms_key_id: Optional[str] = None,
|
|
1795
|
+
mount_target: Optional[str] = None,
|
|
1787
1796
|
name: Optional[str] = None,
|
|
1788
1797
|
performance_level: Optional[str] = None,
|
|
1789
1798
|
provisioned_iops: Optional[int] = None,
|
|
1790
1799
|
size: Optional[int] = None,
|
|
1791
1800
|
snapshot_id: Optional[str] = None):
|
|
1792
1801
|
"""
|
|
1802
|
+
:param str auto_format: Whether to automatically mount the data disk. Valid values: true and false.
|
|
1793
1803
|
:param str auto_snapshot_policy_id: The ID of the automatic snapshot policy that you want to apply to the system disk.
|
|
1794
1804
|
:param bool bursting_enabled: Whether the data disk is enabled with Burst (performance Burst). This is configured when the disk type is cloud_auto.
|
|
1795
1805
|
:param str category: The type of the data disks. Valid values:`cloud`, `cloud_efficiency`, `cloud_ssd`, `cloud_essd`, `cloud_auto`.
|
|
1796
1806
|
: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.
|
|
1797
1807
|
:param str encrypted: Specifies whether to encrypt data disks. Valid values: true and false. Default to `false`.
|
|
1808
|
+
:param str file_system: The Mount path. Works when auto_format is true.
|
|
1798
1809
|
:param str kms_key_id: The kms key id used to encrypt the data disk. It takes effect when `encrypted` is true.
|
|
1799
|
-
:param str
|
|
1810
|
+
:param str mount_target: The type of the mounted file system. Works when auto_format is true. Optional value: `ext4`, `xfs`.
|
|
1811
|
+
: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.
|
|
1800
1812
|
: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`.
|
|
1801
1813
|
:param int provisioned_iops: The read/write IOPS preconfigured for the data disk, which is configured when the disk type is cloud_auto.
|
|
1802
1814
|
:param int size: The size of a data disk, Its valid value range [40~32768] in GB. Default to `40`.
|
|
1803
1815
|
:param str snapshot_id: The ID of the snapshot that you want to use to create data disk N. Valid values of N: 1 to 16. If you specify this parameter, DataDisk.N.Size is ignored. The size of the disk is the same as the size of the specified snapshot. If you specify a snapshot that is created on or before July 15, 2013, the operation fails and InvalidSnapshot.TooOld is returned.
|
|
1804
1816
|
"""
|
|
1817
|
+
if auto_format is not None:
|
|
1818
|
+
pulumi.set(__self__, "auto_format", auto_format)
|
|
1805
1819
|
if auto_snapshot_policy_id is not None:
|
|
1806
1820
|
pulumi.set(__self__, "auto_snapshot_policy_id", auto_snapshot_policy_id)
|
|
1807
1821
|
if bursting_enabled is not None:
|
|
@@ -1812,8 +1826,12 @@ class NodePoolDataDisk(dict):
|
|
|
1812
1826
|
pulumi.set(__self__, "device", device)
|
|
1813
1827
|
if encrypted is not None:
|
|
1814
1828
|
pulumi.set(__self__, "encrypted", encrypted)
|
|
1829
|
+
if file_system is not None:
|
|
1830
|
+
pulumi.set(__self__, "file_system", file_system)
|
|
1815
1831
|
if kms_key_id is not None:
|
|
1816
1832
|
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
|
1833
|
+
if mount_target is not None:
|
|
1834
|
+
pulumi.set(__self__, "mount_target", mount_target)
|
|
1817
1835
|
if name is not None:
|
|
1818
1836
|
pulumi.set(__self__, "name", name)
|
|
1819
1837
|
if performance_level is not None:
|
|
@@ -1825,6 +1843,14 @@ class NodePoolDataDisk(dict):
|
|
|
1825
1843
|
if snapshot_id is not None:
|
|
1826
1844
|
pulumi.set(__self__, "snapshot_id", snapshot_id)
|
|
1827
1845
|
|
|
1846
|
+
@property
|
|
1847
|
+
@pulumi.getter(name="autoFormat")
|
|
1848
|
+
def auto_format(self) -> Optional[str]:
|
|
1849
|
+
"""
|
|
1850
|
+
Whether to automatically mount the data disk. Valid values: true and false.
|
|
1851
|
+
"""
|
|
1852
|
+
return pulumi.get(self, "auto_format")
|
|
1853
|
+
|
|
1828
1854
|
@property
|
|
1829
1855
|
@pulumi.getter(name="autoSnapshotPolicyId")
|
|
1830
1856
|
def auto_snapshot_policy_id(self) -> Optional[str]:
|
|
@@ -1865,6 +1891,14 @@ class NodePoolDataDisk(dict):
|
|
|
1865
1891
|
"""
|
|
1866
1892
|
return pulumi.get(self, "encrypted")
|
|
1867
1893
|
|
|
1894
|
+
@property
|
|
1895
|
+
@pulumi.getter(name="fileSystem")
|
|
1896
|
+
def file_system(self) -> Optional[str]:
|
|
1897
|
+
"""
|
|
1898
|
+
The Mount path. Works when auto_format is true.
|
|
1899
|
+
"""
|
|
1900
|
+
return pulumi.get(self, "file_system")
|
|
1901
|
+
|
|
1868
1902
|
@property
|
|
1869
1903
|
@pulumi.getter(name="kmsKeyId")
|
|
1870
1904
|
def kms_key_id(self) -> Optional[str]:
|
|
@@ -1873,11 +1907,19 @@ class NodePoolDataDisk(dict):
|
|
|
1873
1907
|
"""
|
|
1874
1908
|
return pulumi.get(self, "kms_key_id")
|
|
1875
1909
|
|
|
1910
|
+
@property
|
|
1911
|
+
@pulumi.getter(name="mountTarget")
|
|
1912
|
+
def mount_target(self) -> Optional[str]:
|
|
1913
|
+
"""
|
|
1914
|
+
The type of the mounted file system. Works when auto_format is true. Optional value: `ext4`, `xfs`.
|
|
1915
|
+
"""
|
|
1916
|
+
return pulumi.get(self, "mount_target")
|
|
1917
|
+
|
|
1876
1918
|
@property
|
|
1877
1919
|
@pulumi.getter
|
|
1878
1920
|
def name(self) -> Optional[str]:
|
|
1879
1921
|
"""
|
|
1880
|
-
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 (-).
|
|
1922
|
+
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.
|
|
1881
1923
|
"""
|
|
1882
1924
|
return pulumi.get(self, "name")
|
|
1883
1925
|
|