pulumi-alicloud 3.73.0a1736850863__py3-none-any.whl → 3.74.0a1737090935__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 +59 -0
- pulumi_alicloud/alb/__init__.py +1 -0
- pulumi_alicloud/alb/_inputs.py +6 -6
- pulumi_alicloud/alb/a_script.py +116 -98
- pulumi_alicloud/alb/load_balancer_access_log_config_attachment.py +303 -0
- pulumi_alicloud/alb/outputs.py +4 -4
- pulumi_alicloud/alikafka/instance.py +188 -70
- pulumi_alicloud/amqp/instance.py +77 -28
- pulumi_alicloud/bastionhost/_inputs.py +40 -38
- pulumi_alicloud/bastionhost/get_instances.py +6 -22
- pulumi_alicloud/bastionhost/outputs.py +60 -49
- pulumi_alicloud/cen/instance_grant.py +4 -0
- pulumi_alicloud/cloudcontrol/__init__.py +12 -0
- pulumi_alicloud/cloudcontrol/get_prices.py +199 -0
- pulumi_alicloud/cloudcontrol/get_products.py +187 -0
- pulumi_alicloud/cloudcontrol/get_resource_types.py +178 -0
- pulumi_alicloud/cloudcontrol/outputs.py +688 -0
- pulumi_alicloud/cloudcontrol/resource.py +407 -0
- pulumi_alicloud/cms/_inputs.py +21 -15
- pulumi_alicloud/cms/alarm.py +7 -7
- pulumi_alicloud/cms/outputs.py +14 -10
- pulumi_alicloud/cs/get_edge_kubernetes_clusters.py +4 -2
- pulumi_alicloud/cs/get_managed_kubernetes_clusters.py +2 -0
- pulumi_alicloud/cs/kubernetes.py +14 -14
- pulumi_alicloud/cs/managed_kubernetes.py +137 -47
- pulumi_alicloud/dataworks/__init__.py +4 -0
- pulumi_alicloud/dataworks/_inputs.py +1534 -0
- pulumi_alicloud/dataworks/di_alarm_rule.py +708 -0
- pulumi_alicloud/dataworks/di_job.py +1005 -0
- pulumi_alicloud/dataworks/dw_resource_group.py +703 -0
- pulumi_alicloud/dataworks/network.py +331 -0
- pulumi_alicloud/dataworks/outputs.py +1247 -0
- pulumi_alicloud/dcdn/waf_rule.py +14 -14
- pulumi_alicloud/dns/get_alidns_domains.py +7 -2
- pulumi_alicloud/dns/outputs.py +8 -0
- pulumi_alicloud/ecs/ecs_launch_template.py +122 -0
- pulumi_alicloud/ecs/ecs_network_interface.py +14 -14
- pulumi_alicloud/ecs/ecs_session_manager_status.py +18 -18
- pulumi_alicloud/ecs/instance.py +7 -7
- pulumi_alicloud/ecs/launch_template.py +88 -0
- pulumi_alicloud/fc/custom_domain.py +2 -2
- pulumi_alicloud/fc/function.py +32 -4
- pulumi_alicloud/fc/v2_function.py +20 -0
- pulumi_alicloud/hbr/__init__.py +1 -0
- pulumi_alicloud/hbr/cross_account.py +338 -0
- pulumi_alicloud/ims/oidc_provider.py +28 -0
- pulumi_alicloud/log/resource_record.py +42 -26
- pulumi_alicloud/message/service_queue.py +106 -59
- pulumi_alicloud/message/service_topic.py +182 -37
- pulumi_alicloud/mongodb/account.py +138 -163
- pulumi_alicloud/oos/secret_parameter.py +84 -9
- pulumi_alicloud/oss/bucket.py +1 -1
- pulumi_alicloud/oss/bucket_policy.py +2 -4
- pulumi_alicloud/oss/bucket_referer.py +2 -4
- pulumi_alicloud/oss/get_buckets.py +16 -2
- pulumi_alicloud/oss/outputs.py +18 -17
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/sae/application.py +84 -7
- pulumi_alicloud/sls/collection_policy.py +2 -2
- pulumi_alicloud/vpc/__init__.py +5 -0
- pulumi_alicloud/vpc/get_ipam_ipam_pool_allocations.py +295 -0
- pulumi_alicloud/vpc/get_ipam_ipam_pool_cidrs.py +196 -0
- pulumi_alicloud/vpc/get_ipam_ipam_pools.py +353 -0
- pulumi_alicloud/vpc/get_ipam_ipam_scopes.py +333 -0
- pulumi_alicloud/vpc/get_ipam_ipams.py +291 -0
- pulumi_alicloud/vpc/get_networks.py +3 -0
- pulumi_alicloud/vpc/nat_gateway.py +145 -7
- pulumi_alicloud/vpc/outputs.py +777 -0
- pulumi_alicloud/vpc/snat_entry.py +107 -48
- pulumi_alicloud/vpn/_inputs.py +96 -72
- pulumi_alicloud/vpn/connection.py +24 -28
- pulumi_alicloud/vpn/outputs.py +64 -48
- pulumi_alicloud/yundun/_inputs.py +26 -24
- pulumi_alicloud/yundun/outputs.py +37 -22
- {pulumi_alicloud-3.73.0a1736850863.dist-info → pulumi_alicloud-3.74.0a1737090935.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.73.0a1736850863.dist-info → pulumi_alicloud-3.74.0a1737090935.dist-info}/RECORD +78 -61
- {pulumi_alicloud-3.73.0a1736850863.dist-info → pulumi_alicloud-3.74.0a1737090935.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.73.0a1736850863.dist-info → pulumi_alicloud-3.74.0a1737090935.dist-info}/top_level.txt +0 -0
|
@@ -121,7 +121,7 @@ def get_edge_kubernetes_clusters(enable_details: Optional[bool] = None,
|
|
|
121
121
|
"""
|
|
122
122
|
This data source provides a list Container Service Edge Kubernetes Clusters on Alibaba Cloud.
|
|
123
123
|
|
|
124
|
-
> **NOTE:** Available
|
|
124
|
+
> **NOTE:** Available since v1.103.0.
|
|
125
125
|
|
|
126
126
|
## Example Usage
|
|
127
127
|
|
|
@@ -136,6 +136,7 @@ def get_edge_kubernetes_clusters(enable_details: Optional[bool] = None,
|
|
|
136
136
|
```
|
|
137
137
|
|
|
138
138
|
|
|
139
|
+
:param bool enable_details: Boolean, false by default, only `id` and `name` are exported. Set to true if more details are needed, e.g., `master_disk_category`, `slb_internet_enabled`, `connections`. See full list in attributes.
|
|
139
140
|
:param Sequence[str] ids: Cluster IDs to filter.
|
|
140
141
|
:param str name_regex: A regex string to filter results by cluster name.
|
|
141
142
|
:param str output_file: File name where to save data source results (after running `pulumi preview`).
|
|
@@ -164,7 +165,7 @@ def get_edge_kubernetes_clusters_output(enable_details: Optional[pulumi.Input[Op
|
|
|
164
165
|
"""
|
|
165
166
|
This data source provides a list Container Service Edge Kubernetes Clusters on Alibaba Cloud.
|
|
166
167
|
|
|
167
|
-
> **NOTE:** Available
|
|
168
|
+
> **NOTE:** Available since v1.103.0.
|
|
168
169
|
|
|
169
170
|
## Example Usage
|
|
170
171
|
|
|
@@ -179,6 +180,7 @@ def get_edge_kubernetes_clusters_output(enable_details: Optional[pulumi.Input[Op
|
|
|
179
180
|
```
|
|
180
181
|
|
|
181
182
|
|
|
183
|
+
:param bool enable_details: Boolean, false by default, only `id` and `name` are exported. Set to true if more details are needed, e.g., `master_disk_category`, `slb_internet_enabled`, `connections`. See full list in attributes.
|
|
182
184
|
:param Sequence[str] ids: Cluster IDs to filter.
|
|
183
185
|
:param str name_regex: A regex string to filter results by cluster name.
|
|
184
186
|
:param str output_file: File name where to save data source results (after running `pulumi preview`).
|
|
@@ -149,6 +149,7 @@ def get_managed_kubernetes_clusters(enable_details: Optional[bool] = None,
|
|
|
149
149
|
```
|
|
150
150
|
|
|
151
151
|
|
|
152
|
+
:param bool enable_details: Boolean, false by default, only `id` and `name` are exported. Set to true if more details are needed, e.g., `master_disk_category`, `slb_internet_enabled`, `connections`. See full list in attributes.
|
|
152
153
|
:param Sequence[str] ids: Cluster IDs to filter.
|
|
153
154
|
:param str kube_config_file_prefix: The path prefix of kube config. You could store kube config in a specified directory by specifying this field, like `~/.kube/managed`, then it will be named with `~/.kube/managed-clusterID-kubeconfig`. From version 1.187.0+, kube_config will not export kube_config if this field is not set.
|
|
154
155
|
:param str name_regex: A regex string to filter results by cluster name.
|
|
@@ -199,6 +200,7 @@ def get_managed_kubernetes_clusters_output(enable_details: Optional[pulumi.Input
|
|
|
199
200
|
```
|
|
200
201
|
|
|
201
202
|
|
|
203
|
+
:param bool enable_details: Boolean, false by default, only `id` and `name` are exported. Set to true if more details are needed, e.g., `master_disk_category`, `slb_internet_enabled`, `connections`. See full list in attributes.
|
|
202
204
|
:param Sequence[str] ids: Cluster IDs to filter.
|
|
203
205
|
:param str kube_config_file_prefix: The path prefix of kube config. You could store kube config in a specified directory by specifying this field, like `~/.kube/managed`, then it will be named with `~/.kube/managed-clusterID-kubeconfig`. From version 1.187.0+, kube_config will not export kube_config if this field is not set.
|
|
204
206
|
:param str name_regex: A regex string to filter results by cluster name.
|
pulumi_alicloud/cs/kubernetes.py
CHANGED
|
@@ -90,7 +90,7 @@ class KubernetesArgs:
|
|
|
90
90
|
:param pulumi.Input[Sequence[pulumi.Input['KubernetesDeleteOptionArgs']]] delete_options: Delete options, only work for deleting resource. Make sure you have run `pulumi up` to make the configuration applied. See `delete_options` below.
|
|
91
91
|
:param pulumi.Input[bool] deletion_protection: Whether to enable cluster deletion protection.
|
|
92
92
|
:param pulumi.Input[bool] enable_ssh: Enable login to the node through SSH. Default to `false`.
|
|
93
|
-
:param pulumi.Input[str] image_id: Custom Image support. Must based on
|
|
93
|
+
:param pulumi.Input[str] image_id: Custom Image support. Must be based on AliyunLinux or AliyunLinux3.
|
|
94
94
|
:param pulumi.Input[bool] install_cloud_monitor: Install cloud monitor agent on ECS. Default to `true`.
|
|
95
95
|
:param pulumi.Input[bool] is_enterprise_security_group: Enable to create advanced security group. default: false. See [Advanced security group](https://www.alibabacloud.com/help/doc-detail/120621.htm). Only works for **Create** Operation.
|
|
96
96
|
:param pulumi.Input[str] key_name: The keypair of ssh login cluster node, you have to create it first. You have to specify one of `password` `key_name` `kms_encrypted_password` fields.
|
|
@@ -114,7 +114,7 @@ class KubernetesArgs:
|
|
|
114
114
|
:param pulumi.Input[str] node_name_mode: Each node name consists of a prefix, an IP substring, and a suffix, the input format is `customized,<prefix>,IPSubStringLen,<suffix>`. For example "customized,aliyun.com-,5,-test", if the node IP address is 192.168.59.176, the prefix is aliyun.com-, IP substring length is 5, and the suffix is -test, the node name will be aliyun.com-59176-test.
|
|
115
115
|
:param pulumi.Input[str] os_type: The operating system of the nodes that run pods, its valid value is either `Linux` or `Windows`. Default to `Linux`.
|
|
116
116
|
:param pulumi.Input[str] password: The password of ssh login cluster node. You have to specify one of `password` `key_name` `kms_encrypted_password` fields.
|
|
117
|
-
:param pulumi.Input[str] platform: The architecture of the nodes that run pods, its valid value
|
|
117
|
+
:param pulumi.Input[str] platform: The architecture of the nodes that run pods, its valid value `AliyunLinux`, `AliyunLinux3`. Default to `AliyunLinux3`.
|
|
118
118
|
:param pulumi.Input[str] pod_cidr: [Flannel Specific] The CIDR block for the pod network when using Flannel.
|
|
119
119
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] pod_vswitch_ids: [Terway Specific] The vswitches for the pod network when using Terway. It is recommended that `pod_vswitch_ids` is not belong to `worker_vswitch_ids` and `master_vswitch_ids` but must be in same availability zones. Only works for **Create** Operation.
|
|
120
120
|
:param pulumi.Input[str] proxy_mode: Proxy mode is option of kube-proxy. options: iptables | ipvs. default: ipvs.
|
|
@@ -394,7 +394,7 @@ class KubernetesArgs:
|
|
|
394
394
|
@pulumi.getter(name="imageId")
|
|
395
395
|
def image_id(self) -> Optional[pulumi.Input[str]]:
|
|
396
396
|
"""
|
|
397
|
-
Custom Image support. Must based on
|
|
397
|
+
Custom Image support. Must be based on AliyunLinux or AliyunLinux3.
|
|
398
398
|
"""
|
|
399
399
|
return pulumi.get(self, "image_id")
|
|
400
400
|
|
|
@@ -671,7 +671,7 @@ class KubernetesArgs:
|
|
|
671
671
|
@pulumi.getter
|
|
672
672
|
def platform(self) -> Optional[pulumi.Input[str]]:
|
|
673
673
|
"""
|
|
674
|
-
The architecture of the nodes that run pods, its valid value
|
|
674
|
+
The architecture of the nodes that run pods, its valid value `AliyunLinux`, `AliyunLinux3`. Default to `AliyunLinux3`.
|
|
675
675
|
"""
|
|
676
676
|
return pulumi.get(self, "platform")
|
|
677
677
|
|
|
@@ -943,7 +943,7 @@ class _KubernetesState:
|
|
|
943
943
|
:param pulumi.Input[Sequence[pulumi.Input['KubernetesDeleteOptionArgs']]] delete_options: Delete options, only work for deleting resource. Make sure you have run `pulumi up` to make the configuration applied. See `delete_options` below.
|
|
944
944
|
:param pulumi.Input[bool] deletion_protection: Whether to enable cluster deletion protection.
|
|
945
945
|
:param pulumi.Input[bool] enable_ssh: Enable login to the node through SSH. Default to `false`.
|
|
946
|
-
:param pulumi.Input[str] image_id: Custom Image support. Must based on
|
|
946
|
+
:param pulumi.Input[str] image_id: Custom Image support. Must be based on AliyunLinux or AliyunLinux3.
|
|
947
947
|
:param pulumi.Input[bool] install_cloud_monitor: Install cloud monitor agent on ECS. Default to `true`.
|
|
948
948
|
:param pulumi.Input[bool] is_enterprise_security_group: Enable to create advanced security group. default: false. See [Advanced security group](https://www.alibabacloud.com/help/doc-detail/120621.htm). Only works for **Create** Operation.
|
|
949
949
|
:param pulumi.Input[str] key_name: The keypair of ssh login cluster node, you have to create it first. You have to specify one of `password` `key_name` `kms_encrypted_password` fields.
|
|
@@ -971,7 +971,7 @@ class _KubernetesState:
|
|
|
971
971
|
:param pulumi.Input[str] node_name_mode: Each node name consists of a prefix, an IP substring, and a suffix, the input format is `customized,<prefix>,IPSubStringLen,<suffix>`. For example "customized,aliyun.com-,5,-test", if the node IP address is 192.168.59.176, the prefix is aliyun.com-, IP substring length is 5, and the suffix is -test, the node name will be aliyun.com-59176-test.
|
|
972
972
|
:param pulumi.Input[str] os_type: The operating system of the nodes that run pods, its valid value is either `Linux` or `Windows`. Default to `Linux`.
|
|
973
973
|
:param pulumi.Input[str] password: The password of ssh login cluster node. You have to specify one of `password` `key_name` `kms_encrypted_password` fields.
|
|
974
|
-
:param pulumi.Input[str] platform: The architecture of the nodes that run pods, its valid value
|
|
974
|
+
:param pulumi.Input[str] platform: The architecture of the nodes that run pods, its valid value `AliyunLinux`, `AliyunLinux3`. Default to `AliyunLinux3`.
|
|
975
975
|
:param pulumi.Input[str] pod_cidr: [Flannel Specific] The CIDR block for the pod network when using Flannel.
|
|
976
976
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] pod_vswitch_ids: [Terway Specific] The vswitches for the pod network when using Terway. It is recommended that `pod_vswitch_ids` is not belong to `worker_vswitch_ids` and `master_vswitch_ids` but must be in same availability zones. Only works for **Create** Operation.
|
|
977
977
|
:param pulumi.Input[str] proxy_mode: Proxy mode is option of kube-proxy. options: iptables | ipvs. default: ipvs.
|
|
@@ -1276,7 +1276,7 @@ class _KubernetesState:
|
|
|
1276
1276
|
@pulumi.getter(name="imageId")
|
|
1277
1277
|
def image_id(self) -> Optional[pulumi.Input[str]]:
|
|
1278
1278
|
"""
|
|
1279
|
-
Custom Image support. Must based on
|
|
1279
|
+
Custom Image support. Must be based on AliyunLinux or AliyunLinux3.
|
|
1280
1280
|
"""
|
|
1281
1281
|
return pulumi.get(self, "image_id")
|
|
1282
1282
|
|
|
@@ -1601,7 +1601,7 @@ class _KubernetesState:
|
|
|
1601
1601
|
@pulumi.getter
|
|
1602
1602
|
def platform(self) -> Optional[pulumi.Input[str]]:
|
|
1603
1603
|
"""
|
|
1604
|
-
The architecture of the nodes that run pods, its valid value
|
|
1604
|
+
The architecture of the nodes that run pods, its valid value `AliyunLinux`, `AliyunLinux3`. Default to `AliyunLinux3`.
|
|
1605
1605
|
"""
|
|
1606
1606
|
return pulumi.get(self, "platform")
|
|
1607
1607
|
|
|
@@ -1970,7 +1970,7 @@ class Kubernetes(pulumi.CustomResource):
|
|
|
1970
1970
|
:param pulumi.Input[Sequence[pulumi.Input[Union['KubernetesDeleteOptionArgs', 'KubernetesDeleteOptionArgsDict']]]] delete_options: Delete options, only work for deleting resource. Make sure you have run `pulumi up` to make the configuration applied. See `delete_options` below.
|
|
1971
1971
|
:param pulumi.Input[bool] deletion_protection: Whether to enable cluster deletion protection.
|
|
1972
1972
|
:param pulumi.Input[bool] enable_ssh: Enable login to the node through SSH. Default to `false`.
|
|
1973
|
-
:param pulumi.Input[str] image_id: Custom Image support. Must based on
|
|
1973
|
+
:param pulumi.Input[str] image_id: Custom Image support. Must be based on AliyunLinux or AliyunLinux3.
|
|
1974
1974
|
:param pulumi.Input[bool] install_cloud_monitor: Install cloud monitor agent on ECS. Default to `true`.
|
|
1975
1975
|
:param pulumi.Input[bool] is_enterprise_security_group: Enable to create advanced security group. default: false. See [Advanced security group](https://www.alibabacloud.com/help/doc-detail/120621.htm). Only works for **Create** Operation.
|
|
1976
1976
|
:param pulumi.Input[str] key_name: The keypair of ssh login cluster node, you have to create it first. You have to specify one of `password` `key_name` `kms_encrypted_password` fields.
|
|
@@ -1996,7 +1996,7 @@ class Kubernetes(pulumi.CustomResource):
|
|
|
1996
1996
|
:param pulumi.Input[str] node_name_mode: Each node name consists of a prefix, an IP substring, and a suffix, the input format is `customized,<prefix>,IPSubStringLen,<suffix>`. For example "customized,aliyun.com-,5,-test", if the node IP address is 192.168.59.176, the prefix is aliyun.com-, IP substring length is 5, and the suffix is -test, the node name will be aliyun.com-59176-test.
|
|
1997
1997
|
:param pulumi.Input[str] os_type: The operating system of the nodes that run pods, its valid value is either `Linux` or `Windows`. Default to `Linux`.
|
|
1998
1998
|
:param pulumi.Input[str] password: The password of ssh login cluster node. You have to specify one of `password` `key_name` `kms_encrypted_password` fields.
|
|
1999
|
-
:param pulumi.Input[str] platform: The architecture of the nodes that run pods, its valid value
|
|
1999
|
+
:param pulumi.Input[str] platform: The architecture of the nodes that run pods, its valid value `AliyunLinux`, `AliyunLinux3`. Default to `AliyunLinux3`.
|
|
2000
2000
|
:param pulumi.Input[str] pod_cidr: [Flannel Specific] The CIDR block for the pod network when using Flannel.
|
|
2001
2001
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] pod_vswitch_ids: [Terway Specific] The vswitches for the pod network when using Terway. It is recommended that `pod_vswitch_ids` is not belong to `worker_vswitch_ids` and `master_vswitch_ids` but must be in same availability zones. Only works for **Create** Operation.
|
|
2002
2002
|
:param pulumi.Input[str] proxy_mode: Proxy mode is option of kube-proxy. options: iptables | ipvs. default: ipvs.
|
|
@@ -2302,7 +2302,7 @@ class Kubernetes(pulumi.CustomResource):
|
|
|
2302
2302
|
:param pulumi.Input[Sequence[pulumi.Input[Union['KubernetesDeleteOptionArgs', 'KubernetesDeleteOptionArgsDict']]]] delete_options: Delete options, only work for deleting resource. Make sure you have run `pulumi up` to make the configuration applied. See `delete_options` below.
|
|
2303
2303
|
:param pulumi.Input[bool] deletion_protection: Whether to enable cluster deletion protection.
|
|
2304
2304
|
:param pulumi.Input[bool] enable_ssh: Enable login to the node through SSH. Default to `false`.
|
|
2305
|
-
:param pulumi.Input[str] image_id: Custom Image support. Must based on
|
|
2305
|
+
:param pulumi.Input[str] image_id: Custom Image support. Must be based on AliyunLinux or AliyunLinux3.
|
|
2306
2306
|
:param pulumi.Input[bool] install_cloud_monitor: Install cloud monitor agent on ECS. Default to `true`.
|
|
2307
2307
|
:param pulumi.Input[bool] is_enterprise_security_group: Enable to create advanced security group. default: false. See [Advanced security group](https://www.alibabacloud.com/help/doc-detail/120621.htm). Only works for **Create** Operation.
|
|
2308
2308
|
:param pulumi.Input[str] key_name: The keypair of ssh login cluster node, you have to create it first. You have to specify one of `password` `key_name` `kms_encrypted_password` fields.
|
|
@@ -2330,7 +2330,7 @@ class Kubernetes(pulumi.CustomResource):
|
|
|
2330
2330
|
:param pulumi.Input[str] node_name_mode: Each node name consists of a prefix, an IP substring, and a suffix, the input format is `customized,<prefix>,IPSubStringLen,<suffix>`. For example "customized,aliyun.com-,5,-test", if the node IP address is 192.168.59.176, the prefix is aliyun.com-, IP substring length is 5, and the suffix is -test, the node name will be aliyun.com-59176-test.
|
|
2331
2331
|
:param pulumi.Input[str] os_type: The operating system of the nodes that run pods, its valid value is either `Linux` or `Windows`. Default to `Linux`.
|
|
2332
2332
|
:param pulumi.Input[str] password: The password of ssh login cluster node. You have to specify one of `password` `key_name` `kms_encrypted_password` fields.
|
|
2333
|
-
:param pulumi.Input[str] platform: The architecture of the nodes that run pods, its valid value
|
|
2333
|
+
:param pulumi.Input[str] platform: The architecture of the nodes that run pods, its valid value `AliyunLinux`, `AliyunLinux3`. Default to `AliyunLinux3`.
|
|
2334
2334
|
:param pulumi.Input[str] pod_cidr: [Flannel Specific] The CIDR block for the pod network when using Flannel.
|
|
2335
2335
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] pod_vswitch_ids: [Terway Specific] The vswitches for the pod network when using Terway. It is recommended that `pod_vswitch_ids` is not belong to `worker_vswitch_ids` and `master_vswitch_ids` but must be in same availability zones. Only works for **Create** Operation.
|
|
2336
2336
|
:param pulumi.Input[str] proxy_mode: Proxy mode is option of kube-proxy. options: iptables | ipvs. default: ipvs.
|
|
@@ -2526,7 +2526,7 @@ class Kubernetes(pulumi.CustomResource):
|
|
|
2526
2526
|
@pulumi.getter(name="imageId")
|
|
2527
2527
|
def image_id(self) -> pulumi.Output[str]:
|
|
2528
2528
|
"""
|
|
2529
|
-
Custom Image support. Must based on
|
|
2529
|
+
Custom Image support. Must be based on AliyunLinux or AliyunLinux3.
|
|
2530
2530
|
"""
|
|
2531
2531
|
return pulumi.get(self, "image_id")
|
|
2532
2532
|
|
|
@@ -2743,7 +2743,7 @@ class Kubernetes(pulumi.CustomResource):
|
|
|
2743
2743
|
@pulumi.getter
|
|
2744
2744
|
def platform(self) -> pulumi.Output[str]:
|
|
2745
2745
|
"""
|
|
2746
|
-
The architecture of the nodes that run pods, its valid value
|
|
2746
|
+
The architecture of the nodes that run pods, its valid value `AliyunLinux`, `AliyunLinux3`. Default to `AliyunLinux3`.
|
|
2747
2747
|
"""
|
|
2748
2748
|
return pulumi.get(self, "platform")
|
|
2749
2749
|
|