pulumi-alicloud 3.75.0a1741238153__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.0a1741238153.dist-info → pulumi_alicloud-3.75.0a1741376340.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.75.0a1741238153.dist-info → pulumi_alicloud-3.75.0a1741376340.dist-info}/RECORD +164 -127
- {pulumi_alicloud-3.75.0a1741238153.dist-info → pulumi_alicloud-3.75.0a1741376340.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.75.0a1741238153.dist-info → pulumi_alicloud-3.75.0a1741376340.dist-info}/top_level.txt +0 -0
pulumi_alicloud/ecs/instance.py
CHANGED
|
@@ -146,17 +146,18 @@ class InstanceArgs:
|
|
|
146
146
|
|
|
147
147
|
> **NOTE:** From version 1.7.0, instance's type can be changed. When it is changed, the instance will reboot to make the change take effect.
|
|
148
148
|
:param pulumi.Input[bool] include_data_disks: Whether to change instance disks charge type when changing instance charge type.
|
|
149
|
-
:param pulumi.Input[str] instance_charge_type: Valid values are `PrePaid`, `PostPaid
|
|
149
|
+
:param pulumi.Input[str] instance_charge_type: Valid values are `PrePaid`, `PostPaid`. **NOTE:** From version 1.243.0, the default value `PostPaid` will be removed.
|
|
150
150
|
**NOTE:** Since 1.9.6, it can be changed each other between `PostPaid` and `PrePaid`.
|
|
151
151
|
However, since [some limitation about CPU core count in one month](https://www.alibabacloud.com/help/en/elastic-compute-service/latest/modifyinstancechargetype),
|
|
152
152
|
there strongly recommends that `Don't change instance_charge_type frequentlly in one month`.
|
|
153
|
+
:param pulumi.Input[str] instance_name: The name of the ECS. This instance_name can have a string of 2 to 128 characters, must contain only alphanumeric characters or hyphens, such as "-",".","_", and must not begin with a hyphen, and must not begin with http:// or https://. **NOTE:** From version 1.243.0, the default value `ECS-Instance` will be removed.
|
|
153
154
|
:param pulumi.Input[str] instance_type: The type of instance to start. When it is changed, the instance will reboot to make the change take effect. If you do not use `launch_template_id` or `launch_template_name` to specify a launch template, you must specify `instance_type`.
|
|
154
|
-
:param pulumi.Input[str] internet_charge_type: Internet charge type of the instance, Valid values are `PayByBandwidth`, `PayByTraffic`.
|
|
155
|
+
:param pulumi.Input[str] internet_charge_type: Internet charge type of the instance, Valid values are `PayByBandwidth`, `PayByTraffic`. At present, 'PrePaid' instance cannot change the value to "PayByBandwidth" from "PayByTraffic". **NOTE:** From version 1.243.0, the default value `PayByTraffic` will be removed.
|
|
155
156
|
:param pulumi.Input[int] internet_max_bandwidth_in: Maximum incoming bandwidth from the public network, measured in Mbps (Mega bit per second). Value range: [1, 200]. If this value is not specified, then automatically sets it to 200 Mbps.
|
|
156
|
-
:param pulumi.Input[int] internet_max_bandwidth_out: Maximum outgoing bandwidth to the public network, measured in Mbps (Mega bit per second). Value range: [0, 100].
|
|
157
|
+
:param pulumi.Input[int] internet_max_bandwidth_out: Maximum outgoing bandwidth to the public network, measured in Mbps (Mega bit per second). Value range: [0, 100]. **NOTE:** From version 1.243.0, the default value `0` will be removed.
|
|
157
158
|
:param pulumi.Input[int] ipv6_address_count: The number of IPv6 addresses to randomly generate for the primary ENI. Valid values: 1 to 10. **NOTE:** You cannot specify both the `ipv6_addresses` and `ipv6_address_count` parameters.
|
|
158
159
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ipv6_addresses: A list of IPv6 address to be assigned to the primary ENI. Support up to 10. **NOTE:** From version 1.241.0, `ipv6_addresses` can be modified.
|
|
159
|
-
:param pulumi.Input[bool] is_outdated: Whether to use outdated instance type.
|
|
160
|
+
:param pulumi.Input[bool] is_outdated: Whether to use outdated instance type.
|
|
160
161
|
:param pulumi.Input[str] key_name: The name of key pair that can login ECS instance successfully without password. If it is specified, the password would be invalid.
|
|
161
162
|
:param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to an instance. If the `password` is filled in, this field will be ignored. When it is changed, the instance will reboot to make the change take effect.
|
|
162
163
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating an instance with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set. When it is changed, the instance will reboot to make the change take effect.
|
|
@@ -674,7 +675,7 @@ class InstanceArgs:
|
|
|
674
675
|
@pulumi.getter(name="instanceChargeType")
|
|
675
676
|
def instance_charge_type(self) -> Optional[pulumi.Input[str]]:
|
|
676
677
|
"""
|
|
677
|
-
Valid values are `PrePaid`, `PostPaid
|
|
678
|
+
Valid values are `PrePaid`, `PostPaid`. **NOTE:** From version 1.243.0, the default value `PostPaid` will be removed.
|
|
678
679
|
**NOTE:** Since 1.9.6, it can be changed each other between `PostPaid` and `PrePaid`.
|
|
679
680
|
However, since [some limitation about CPU core count in one month](https://www.alibabacloud.com/help/en/elastic-compute-service/latest/modifyinstancechargetype),
|
|
680
681
|
there strongly recommends that `Don't change instance_charge_type frequentlly in one month`.
|
|
@@ -688,6 +689,9 @@ class InstanceArgs:
|
|
|
688
689
|
@property
|
|
689
690
|
@pulumi.getter(name="instanceName")
|
|
690
691
|
def instance_name(self) -> Optional[pulumi.Input[str]]:
|
|
692
|
+
"""
|
|
693
|
+
The name of the ECS. This instance_name can have a string of 2 to 128 characters, must contain only alphanumeric characters or hyphens, such as "-",".","_", and must not begin with a hyphen, and must not begin with http:// or https://. **NOTE:** From version 1.243.0, the default value `ECS-Instance` will be removed.
|
|
694
|
+
"""
|
|
691
695
|
return pulumi.get(self, "instance_name")
|
|
692
696
|
|
|
693
697
|
@instance_name.setter
|
|
@@ -710,7 +714,7 @@ class InstanceArgs:
|
|
|
710
714
|
@pulumi.getter(name="internetChargeType")
|
|
711
715
|
def internet_charge_type(self) -> Optional[pulumi.Input[str]]:
|
|
712
716
|
"""
|
|
713
|
-
Internet charge type of the instance, Valid values are `PayByBandwidth`, `PayByTraffic`.
|
|
717
|
+
Internet charge type of the instance, Valid values are `PayByBandwidth`, `PayByTraffic`. At present, 'PrePaid' instance cannot change the value to "PayByBandwidth" from "PayByTraffic". **NOTE:** From version 1.243.0, the default value `PayByTraffic` will be removed.
|
|
714
718
|
"""
|
|
715
719
|
return pulumi.get(self, "internet_charge_type")
|
|
716
720
|
|
|
@@ -735,7 +739,7 @@ class InstanceArgs:
|
|
|
735
739
|
@pulumi.getter(name="internetMaxBandwidthOut")
|
|
736
740
|
def internet_max_bandwidth_out(self) -> Optional[pulumi.Input[int]]:
|
|
737
741
|
"""
|
|
738
|
-
Maximum outgoing bandwidth to the public network, measured in Mbps (Mega bit per second). Value range: [0, 100].
|
|
742
|
+
Maximum outgoing bandwidth to the public network, measured in Mbps (Mega bit per second). Value range: [0, 100]. **NOTE:** From version 1.243.0, the default value `0` will be removed.
|
|
739
743
|
"""
|
|
740
744
|
return pulumi.get(self, "internet_max_bandwidth_out")
|
|
741
745
|
|
|
@@ -771,7 +775,7 @@ class InstanceArgs:
|
|
|
771
775
|
@pulumi.getter(name="isOutdated")
|
|
772
776
|
def is_outdated(self) -> Optional[pulumi.Input[bool]]:
|
|
773
777
|
"""
|
|
774
|
-
Whether to use outdated instance type.
|
|
778
|
+
Whether to use outdated instance type.
|
|
775
779
|
"""
|
|
776
780
|
return pulumi.get(self, "is_outdated")
|
|
777
781
|
|
|
@@ -1504,17 +1508,18 @@ class _InstanceState:
|
|
|
1504
1508
|
|
|
1505
1509
|
> **NOTE:** From version 1.7.0, instance's type can be changed. When it is changed, the instance will reboot to make the change take effect.
|
|
1506
1510
|
:param pulumi.Input[bool] include_data_disks: Whether to change instance disks charge type when changing instance charge type.
|
|
1507
|
-
:param pulumi.Input[str] instance_charge_type: Valid values are `PrePaid`, `PostPaid
|
|
1511
|
+
:param pulumi.Input[str] instance_charge_type: Valid values are `PrePaid`, `PostPaid`. **NOTE:** From version 1.243.0, the default value `PostPaid` will be removed.
|
|
1508
1512
|
**NOTE:** Since 1.9.6, it can be changed each other between `PostPaid` and `PrePaid`.
|
|
1509
1513
|
However, since [some limitation about CPU core count in one month](https://www.alibabacloud.com/help/en/elastic-compute-service/latest/modifyinstancechargetype),
|
|
1510
1514
|
there strongly recommends that `Don't change instance_charge_type frequentlly in one month`.
|
|
1515
|
+
:param pulumi.Input[str] instance_name: The name of the ECS. This instance_name can have a string of 2 to 128 characters, must contain only alphanumeric characters or hyphens, such as "-",".","_", and must not begin with a hyphen, and must not begin with http:// or https://. **NOTE:** From version 1.243.0, the default value `ECS-Instance` will be removed.
|
|
1511
1516
|
:param pulumi.Input[str] instance_type: The type of instance to start. When it is changed, the instance will reboot to make the change take effect. If you do not use `launch_template_id` or `launch_template_name` to specify a launch template, you must specify `instance_type`.
|
|
1512
|
-
:param pulumi.Input[str] internet_charge_type: Internet charge type of the instance, Valid values are `PayByBandwidth`, `PayByTraffic`.
|
|
1517
|
+
:param pulumi.Input[str] internet_charge_type: Internet charge type of the instance, Valid values are `PayByBandwidth`, `PayByTraffic`. At present, 'PrePaid' instance cannot change the value to "PayByBandwidth" from "PayByTraffic". **NOTE:** From version 1.243.0, the default value `PayByTraffic` will be removed.
|
|
1513
1518
|
:param pulumi.Input[int] internet_max_bandwidth_in: Maximum incoming bandwidth from the public network, measured in Mbps (Mega bit per second). Value range: [1, 200]. If this value is not specified, then automatically sets it to 200 Mbps.
|
|
1514
|
-
:param pulumi.Input[int] internet_max_bandwidth_out: Maximum outgoing bandwidth to the public network, measured in Mbps (Mega bit per second). Value range: [0, 100].
|
|
1519
|
+
:param pulumi.Input[int] internet_max_bandwidth_out: Maximum outgoing bandwidth to the public network, measured in Mbps (Mega bit per second). Value range: [0, 100]. **NOTE:** From version 1.243.0, the default value `0` will be removed.
|
|
1515
1520
|
:param pulumi.Input[int] ipv6_address_count: The number of IPv6 addresses to randomly generate for the primary ENI. Valid values: 1 to 10. **NOTE:** You cannot specify both the `ipv6_addresses` and `ipv6_address_count` parameters.
|
|
1516
1521
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ipv6_addresses: A list of IPv6 address to be assigned to the primary ENI. Support up to 10. **NOTE:** From version 1.241.0, `ipv6_addresses` can be modified.
|
|
1517
|
-
:param pulumi.Input[bool] is_outdated: Whether to use outdated instance type.
|
|
1522
|
+
:param pulumi.Input[bool] is_outdated: Whether to use outdated instance type.
|
|
1518
1523
|
:param pulumi.Input[str] key_name: The name of key pair that can login ECS instance successfully without password. If it is specified, the password would be invalid.
|
|
1519
1524
|
:param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to an instance. If the `password` is filled in, this field will be ignored. When it is changed, the instance will reboot to make the change take effect.
|
|
1520
1525
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating an instance with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set. When it is changed, the instance will reboot to make the change take effect.
|
|
@@ -2112,7 +2117,7 @@ class _InstanceState:
|
|
|
2112
2117
|
@pulumi.getter(name="instanceChargeType")
|
|
2113
2118
|
def instance_charge_type(self) -> Optional[pulumi.Input[str]]:
|
|
2114
2119
|
"""
|
|
2115
|
-
Valid values are `PrePaid`, `PostPaid
|
|
2120
|
+
Valid values are `PrePaid`, `PostPaid`. **NOTE:** From version 1.243.0, the default value `PostPaid` will be removed.
|
|
2116
2121
|
**NOTE:** Since 1.9.6, it can be changed each other between `PostPaid` and `PrePaid`.
|
|
2117
2122
|
However, since [some limitation about CPU core count in one month](https://www.alibabacloud.com/help/en/elastic-compute-service/latest/modifyinstancechargetype),
|
|
2118
2123
|
there strongly recommends that `Don't change instance_charge_type frequentlly in one month`.
|
|
@@ -2126,6 +2131,9 @@ class _InstanceState:
|
|
|
2126
2131
|
@property
|
|
2127
2132
|
@pulumi.getter(name="instanceName")
|
|
2128
2133
|
def instance_name(self) -> Optional[pulumi.Input[str]]:
|
|
2134
|
+
"""
|
|
2135
|
+
The name of the ECS. This instance_name can have a string of 2 to 128 characters, must contain only alphanumeric characters or hyphens, such as "-",".","_", and must not begin with a hyphen, and must not begin with http:// or https://. **NOTE:** From version 1.243.0, the default value `ECS-Instance` will be removed.
|
|
2136
|
+
"""
|
|
2129
2137
|
return pulumi.get(self, "instance_name")
|
|
2130
2138
|
|
|
2131
2139
|
@instance_name.setter
|
|
@@ -2148,7 +2156,7 @@ class _InstanceState:
|
|
|
2148
2156
|
@pulumi.getter(name="internetChargeType")
|
|
2149
2157
|
def internet_charge_type(self) -> Optional[pulumi.Input[str]]:
|
|
2150
2158
|
"""
|
|
2151
|
-
Internet charge type of the instance, Valid values are `PayByBandwidth`, `PayByTraffic`.
|
|
2159
|
+
Internet charge type of the instance, Valid values are `PayByBandwidth`, `PayByTraffic`. At present, 'PrePaid' instance cannot change the value to "PayByBandwidth" from "PayByTraffic". **NOTE:** From version 1.243.0, the default value `PayByTraffic` will be removed.
|
|
2152
2160
|
"""
|
|
2153
2161
|
return pulumi.get(self, "internet_charge_type")
|
|
2154
2162
|
|
|
@@ -2173,7 +2181,7 @@ class _InstanceState:
|
|
|
2173
2181
|
@pulumi.getter(name="internetMaxBandwidthOut")
|
|
2174
2182
|
def internet_max_bandwidth_out(self) -> Optional[pulumi.Input[int]]:
|
|
2175
2183
|
"""
|
|
2176
|
-
Maximum outgoing bandwidth to the public network, measured in Mbps (Mega bit per second). Value range: [0, 100].
|
|
2184
|
+
Maximum outgoing bandwidth to the public network, measured in Mbps (Mega bit per second). Value range: [0, 100]. **NOTE:** From version 1.243.0, the default value `0` will be removed.
|
|
2177
2185
|
"""
|
|
2178
2186
|
return pulumi.get(self, "internet_max_bandwidth_out")
|
|
2179
2187
|
|
|
@@ -2209,7 +2217,7 @@ class _InstanceState:
|
|
|
2209
2217
|
@pulumi.getter(name="isOutdated")
|
|
2210
2218
|
def is_outdated(self) -> Optional[pulumi.Input[bool]]:
|
|
2211
2219
|
"""
|
|
2212
|
-
Whether to use outdated instance type.
|
|
2220
|
+
Whether to use outdated instance type.
|
|
2213
2221
|
"""
|
|
2214
2222
|
return pulumi.get(self, "is_outdated")
|
|
2215
2223
|
|
|
@@ -3005,7 +3013,7 @@ class Instance(pulumi.CustomResource):
|
|
|
3005
3013
|
cidr_block="172.16.0.0/16")
|
|
3006
3014
|
# Create a new ECS instance for a VPC
|
|
3007
3015
|
group = alicloud.ecs.SecurityGroup("group",
|
|
3008
|
-
|
|
3016
|
+
security_group_name=name,
|
|
3009
3017
|
description="foo",
|
|
3010
3018
|
vpc_id=vpc.id)
|
|
3011
3019
|
key = alicloud.kms.Key("key",
|
|
@@ -3103,17 +3111,18 @@ class Instance(pulumi.CustomResource):
|
|
|
3103
3111
|
|
|
3104
3112
|
> **NOTE:** From version 1.7.0, instance's type can be changed. When it is changed, the instance will reboot to make the change take effect.
|
|
3105
3113
|
:param pulumi.Input[bool] include_data_disks: Whether to change instance disks charge type when changing instance charge type.
|
|
3106
|
-
:param pulumi.Input[str] instance_charge_type: Valid values are `PrePaid`, `PostPaid
|
|
3114
|
+
:param pulumi.Input[str] instance_charge_type: Valid values are `PrePaid`, `PostPaid`. **NOTE:** From version 1.243.0, the default value `PostPaid` will be removed.
|
|
3107
3115
|
**NOTE:** Since 1.9.6, it can be changed each other between `PostPaid` and `PrePaid`.
|
|
3108
3116
|
However, since [some limitation about CPU core count in one month](https://www.alibabacloud.com/help/en/elastic-compute-service/latest/modifyinstancechargetype),
|
|
3109
3117
|
there strongly recommends that `Don't change instance_charge_type frequentlly in one month`.
|
|
3118
|
+
:param pulumi.Input[str] instance_name: The name of the ECS. This instance_name can have a string of 2 to 128 characters, must contain only alphanumeric characters or hyphens, such as "-",".","_", and must not begin with a hyphen, and must not begin with http:// or https://. **NOTE:** From version 1.243.0, the default value `ECS-Instance` will be removed.
|
|
3110
3119
|
:param pulumi.Input[str] instance_type: The type of instance to start. When it is changed, the instance will reboot to make the change take effect. If you do not use `launch_template_id` or `launch_template_name` to specify a launch template, you must specify `instance_type`.
|
|
3111
|
-
:param pulumi.Input[str] internet_charge_type: Internet charge type of the instance, Valid values are `PayByBandwidth`, `PayByTraffic`.
|
|
3120
|
+
:param pulumi.Input[str] internet_charge_type: Internet charge type of the instance, Valid values are `PayByBandwidth`, `PayByTraffic`. At present, 'PrePaid' instance cannot change the value to "PayByBandwidth" from "PayByTraffic". **NOTE:** From version 1.243.0, the default value `PayByTraffic` will be removed.
|
|
3112
3121
|
:param pulumi.Input[int] internet_max_bandwidth_in: Maximum incoming bandwidth from the public network, measured in Mbps (Mega bit per second). Value range: [1, 200]. If this value is not specified, then automatically sets it to 200 Mbps.
|
|
3113
|
-
:param pulumi.Input[int] internet_max_bandwidth_out: Maximum outgoing bandwidth to the public network, measured in Mbps (Mega bit per second). Value range: [0, 100].
|
|
3122
|
+
:param pulumi.Input[int] internet_max_bandwidth_out: Maximum outgoing bandwidth to the public network, measured in Mbps (Mega bit per second). Value range: [0, 100]. **NOTE:** From version 1.243.0, the default value `0` will be removed.
|
|
3114
3123
|
:param pulumi.Input[int] ipv6_address_count: The number of IPv6 addresses to randomly generate for the primary ENI. Valid values: 1 to 10. **NOTE:** You cannot specify both the `ipv6_addresses` and `ipv6_address_count` parameters.
|
|
3115
3124
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ipv6_addresses: A list of IPv6 address to be assigned to the primary ENI. Support up to 10. **NOTE:** From version 1.241.0, `ipv6_addresses` can be modified.
|
|
3116
|
-
:param pulumi.Input[bool] is_outdated: Whether to use outdated instance type.
|
|
3125
|
+
:param pulumi.Input[bool] is_outdated: Whether to use outdated instance type.
|
|
3117
3126
|
:param pulumi.Input[str] key_name: The name of key pair that can login ECS instance successfully without password. If it is specified, the password would be invalid.
|
|
3118
3127
|
:param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to an instance. If the `password` is filled in, this field will be ignored. When it is changed, the instance will reboot to make the change take effect.
|
|
3119
3128
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating an instance with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set. When it is changed, the instance will reboot to make the change take effect.
|
|
@@ -3224,7 +3233,7 @@ class Instance(pulumi.CustomResource):
|
|
|
3224
3233
|
cidr_block="172.16.0.0/16")
|
|
3225
3234
|
# Create a new ECS instance for a VPC
|
|
3226
3235
|
group = alicloud.ecs.SecurityGroup("group",
|
|
3227
|
-
|
|
3236
|
+
security_group_name=name,
|
|
3228
3237
|
description="foo",
|
|
3229
3238
|
vpc_id=vpc.id)
|
|
3230
3239
|
key = alicloud.kms.Key("key",
|
|
@@ -3619,17 +3628,18 @@ class Instance(pulumi.CustomResource):
|
|
|
3619
3628
|
|
|
3620
3629
|
> **NOTE:** From version 1.7.0, instance's type can be changed. When it is changed, the instance will reboot to make the change take effect.
|
|
3621
3630
|
:param pulumi.Input[bool] include_data_disks: Whether to change instance disks charge type when changing instance charge type.
|
|
3622
|
-
:param pulumi.Input[str] instance_charge_type: Valid values are `PrePaid`, `PostPaid
|
|
3631
|
+
:param pulumi.Input[str] instance_charge_type: Valid values are `PrePaid`, `PostPaid`. **NOTE:** From version 1.243.0, the default value `PostPaid` will be removed.
|
|
3623
3632
|
**NOTE:** Since 1.9.6, it can be changed each other between `PostPaid` and `PrePaid`.
|
|
3624
3633
|
However, since [some limitation about CPU core count in one month](https://www.alibabacloud.com/help/en/elastic-compute-service/latest/modifyinstancechargetype),
|
|
3625
3634
|
there strongly recommends that `Don't change instance_charge_type frequentlly in one month`.
|
|
3635
|
+
:param pulumi.Input[str] instance_name: The name of the ECS. This instance_name can have a string of 2 to 128 characters, must contain only alphanumeric characters or hyphens, such as "-",".","_", and must not begin with a hyphen, and must not begin with http:// or https://. **NOTE:** From version 1.243.0, the default value `ECS-Instance` will be removed.
|
|
3626
3636
|
:param pulumi.Input[str] instance_type: The type of instance to start. When it is changed, the instance will reboot to make the change take effect. If you do not use `launch_template_id` or `launch_template_name` to specify a launch template, you must specify `instance_type`.
|
|
3627
|
-
:param pulumi.Input[str] internet_charge_type: Internet charge type of the instance, Valid values are `PayByBandwidth`, `PayByTraffic`.
|
|
3637
|
+
:param pulumi.Input[str] internet_charge_type: Internet charge type of the instance, Valid values are `PayByBandwidth`, `PayByTraffic`. At present, 'PrePaid' instance cannot change the value to "PayByBandwidth" from "PayByTraffic". **NOTE:** From version 1.243.0, the default value `PayByTraffic` will be removed.
|
|
3628
3638
|
:param pulumi.Input[int] internet_max_bandwidth_in: Maximum incoming bandwidth from the public network, measured in Mbps (Mega bit per second). Value range: [1, 200]. If this value is not specified, then automatically sets it to 200 Mbps.
|
|
3629
|
-
:param pulumi.Input[int] internet_max_bandwidth_out: Maximum outgoing bandwidth to the public network, measured in Mbps (Mega bit per second). Value range: [0, 100].
|
|
3639
|
+
:param pulumi.Input[int] internet_max_bandwidth_out: Maximum outgoing bandwidth to the public network, measured in Mbps (Mega bit per second). Value range: [0, 100]. **NOTE:** From version 1.243.0, the default value `0` will be removed.
|
|
3630
3640
|
:param pulumi.Input[int] ipv6_address_count: The number of IPv6 addresses to randomly generate for the primary ENI. Valid values: 1 to 10. **NOTE:** You cannot specify both the `ipv6_addresses` and `ipv6_address_count` parameters.
|
|
3631
3641
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ipv6_addresses: A list of IPv6 address to be assigned to the primary ENI. Support up to 10. **NOTE:** From version 1.241.0, `ipv6_addresses` can be modified.
|
|
3632
|
-
:param pulumi.Input[bool] is_outdated: Whether to use outdated instance type.
|
|
3642
|
+
:param pulumi.Input[bool] is_outdated: Whether to use outdated instance type.
|
|
3633
3643
|
:param pulumi.Input[str] key_name: The name of key pair that can login ECS instance successfully without password. If it is specified, the password would be invalid.
|
|
3634
3644
|
:param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to an instance. If the `password` is filled in, this field will be ignored. When it is changed, the instance will reboot to make the change take effect.
|
|
3635
3645
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating an instance with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set. When it is changed, the instance will reboot to make the change take effect.
|
|
@@ -4038,7 +4048,7 @@ class Instance(pulumi.CustomResource):
|
|
|
4038
4048
|
@pulumi.getter(name="instanceChargeType")
|
|
4039
4049
|
def instance_charge_type(self) -> pulumi.Output[str]:
|
|
4040
4050
|
"""
|
|
4041
|
-
Valid values are `PrePaid`, `PostPaid
|
|
4051
|
+
Valid values are `PrePaid`, `PostPaid`. **NOTE:** From version 1.243.0, the default value `PostPaid` will be removed.
|
|
4042
4052
|
**NOTE:** Since 1.9.6, it can be changed each other between `PostPaid` and `PrePaid`.
|
|
4043
4053
|
However, since [some limitation about CPU core count in one month](https://www.alibabacloud.com/help/en/elastic-compute-service/latest/modifyinstancechargetype),
|
|
4044
4054
|
there strongly recommends that `Don't change instance_charge_type frequentlly in one month`.
|
|
@@ -4048,6 +4058,9 @@ class Instance(pulumi.CustomResource):
|
|
|
4048
4058
|
@property
|
|
4049
4059
|
@pulumi.getter(name="instanceName")
|
|
4050
4060
|
def instance_name(self) -> pulumi.Output[str]:
|
|
4061
|
+
"""
|
|
4062
|
+
The name of the ECS. This instance_name can have a string of 2 to 128 characters, must contain only alphanumeric characters or hyphens, such as "-",".","_", and must not begin with a hyphen, and must not begin with http:// or https://. **NOTE:** From version 1.243.0, the default value `ECS-Instance` will be removed.
|
|
4063
|
+
"""
|
|
4051
4064
|
return pulumi.get(self, "instance_name")
|
|
4052
4065
|
|
|
4053
4066
|
@property
|
|
@@ -4062,7 +4075,7 @@ class Instance(pulumi.CustomResource):
|
|
|
4062
4075
|
@pulumi.getter(name="internetChargeType")
|
|
4063
4076
|
def internet_charge_type(self) -> pulumi.Output[str]:
|
|
4064
4077
|
"""
|
|
4065
|
-
Internet charge type of the instance, Valid values are `PayByBandwidth`, `PayByTraffic`.
|
|
4078
|
+
Internet charge type of the instance, Valid values are `PayByBandwidth`, `PayByTraffic`. At present, 'PrePaid' instance cannot change the value to "PayByBandwidth" from "PayByTraffic". **NOTE:** From version 1.243.0, the default value `PayByTraffic` will be removed.
|
|
4066
4079
|
"""
|
|
4067
4080
|
return pulumi.get(self, "internet_charge_type")
|
|
4068
4081
|
|
|
@@ -4079,7 +4092,7 @@ class Instance(pulumi.CustomResource):
|
|
|
4079
4092
|
@pulumi.getter(name="internetMaxBandwidthOut")
|
|
4080
4093
|
def internet_max_bandwidth_out(self) -> pulumi.Output[int]:
|
|
4081
4094
|
"""
|
|
4082
|
-
Maximum outgoing bandwidth to the public network, measured in Mbps (Mega bit per second). Value range: [0, 100].
|
|
4095
|
+
Maximum outgoing bandwidth to the public network, measured in Mbps (Mega bit per second). Value range: [0, 100]. **NOTE:** From version 1.243.0, the default value `0` will be removed.
|
|
4083
4096
|
"""
|
|
4084
4097
|
return pulumi.get(self, "internet_max_bandwidth_out")
|
|
4085
4098
|
|
|
@@ -4103,7 +4116,7 @@ class Instance(pulumi.CustomResource):
|
|
|
4103
4116
|
@pulumi.getter(name="isOutdated")
|
|
4104
4117
|
def is_outdated(self) -> pulumi.Output[Optional[bool]]:
|
|
4105
4118
|
"""
|
|
4106
|
-
Whether to use outdated instance type.
|
|
4119
|
+
Whether to use outdated instance type.
|
|
4107
4120
|
"""
|
|
4108
4121
|
return pulumi.get(self, "is_outdated")
|
|
4109
4122
|
|
pulumi_alicloud/eds/command.py
CHANGED
|
@@ -263,7 +263,11 @@ class Command(pulumi.CustomResource):
|
|
|
263
263
|
"priority": "1",
|
|
264
264
|
"cidr_ip": "1.2.3.4/24",
|
|
265
265
|
}])
|
|
266
|
-
default = alicloud.eds.get_bundles(bundle_type="SYSTEM"
|
|
266
|
+
default = alicloud.eds.get_bundles(bundle_type="SYSTEM",
|
|
267
|
+
bundle_ids=[
|
|
268
|
+
"bundle_eds_enterprise_office_4c8g_s8d2_win2019_edu",
|
|
269
|
+
"bundle_eds_enterprise_office_8c16g_s8d2_win2019_edu",
|
|
270
|
+
])
|
|
267
271
|
default_desktop = alicloud.eds.Desktop("default",
|
|
268
272
|
office_site_id=default_simple_office_site.id,
|
|
269
273
|
policy_group_id=default_ecd_policy_group.id,
|
|
@@ -344,7 +348,11 @@ class Command(pulumi.CustomResource):
|
|
|
344
348
|
"priority": "1",
|
|
345
349
|
"cidr_ip": "1.2.3.4/24",
|
|
346
350
|
}])
|
|
347
|
-
default = alicloud.eds.get_bundles(bundle_type="SYSTEM"
|
|
351
|
+
default = alicloud.eds.get_bundles(bundle_type="SYSTEM",
|
|
352
|
+
bundle_ids=[
|
|
353
|
+
"bundle_eds_enterprise_office_4c8g_s8d2_win2019_edu",
|
|
354
|
+
"bundle_eds_enterprise_office_8c16g_s8d2_win2019_edu",
|
|
355
|
+
])
|
|
348
356
|
default_desktop = alicloud.eds.Desktop("default",
|
|
349
357
|
office_site_id=default_simple_office_site.id,
|
|
350
358
|
policy_group_id=default_ecd_policy_group.id,
|
pulumi_alicloud/emrv2/_inputs.py
CHANGED
|
@@ -249,7 +249,7 @@ if not MYPY:
|
|
|
249
249
|
"""
|
|
250
250
|
execution_moment: pulumi.Input[str]
|
|
251
251
|
"""
|
|
252
|
-
The bootstrap scripts execution moment, ’BEFORE_INSTALL’ or ‘
|
|
252
|
+
The bootstrap scripts execution moment, ’BEFORE_INSTALL’, ‘AFTER_STARTED’ or ‘BEFORE_START’. The execution moment of BEFORE_START is available since v1.243.0.
|
|
253
253
|
"""
|
|
254
254
|
node_selector: pulumi.Input['ClusterBootstrapScriptNodeSelectorArgsDict']
|
|
255
255
|
"""
|
|
@@ -286,7 +286,7 @@ class ClusterBootstrapScriptArgs:
|
|
|
286
286
|
priority: Optional[pulumi.Input[int]] = None):
|
|
287
287
|
"""
|
|
288
288
|
:param pulumi.Input[str] execution_fail_strategy: The bootstrap scripts execution fail strategy, ’FAILED_BLOCK’ or ‘FAILED_CONTINUE’ .
|
|
289
|
-
:param pulumi.Input[str] execution_moment: The bootstrap scripts execution moment, ’BEFORE_INSTALL’ or ‘
|
|
289
|
+
:param pulumi.Input[str] execution_moment: The bootstrap scripts execution moment, ’BEFORE_INSTALL’, ‘AFTER_STARTED’ or ‘BEFORE_START’. The execution moment of BEFORE_START is available since v1.243.0.
|
|
290
290
|
:param pulumi.Input['ClusterBootstrapScriptNodeSelectorArgs'] node_selector: The bootstrap scripts execution target. See `node_selector` below.
|
|
291
291
|
:param pulumi.Input[str] script_args: The bootstrap script args, e.g. "--a=b".
|
|
292
292
|
:param pulumi.Input[str] script_name: The bootstrap script name.
|
|
@@ -321,7 +321,7 @@ class ClusterBootstrapScriptArgs:
|
|
|
321
321
|
@pulumi.getter(name="executionMoment")
|
|
322
322
|
def execution_moment(self) -> pulumi.Input[str]:
|
|
323
323
|
"""
|
|
324
|
-
The bootstrap scripts execution moment, ’BEFORE_INSTALL’ or ‘
|
|
324
|
+
The bootstrap scripts execution moment, ’BEFORE_INSTALL’, ‘AFTER_STARTED’ or ‘BEFORE_START’. The execution moment of BEFORE_START is available since v1.243.0.
|
|
325
325
|
"""
|
|
326
326
|
return pulumi.get(self, "execution_moment")
|
|
327
327
|
|
|
@@ -566,6 +566,14 @@ if not MYPY:
|
|
|
566
566
|
"""
|
|
567
567
|
The kms key id used to encrypt the data disk. It takes effect when data_disk_encrypted is true.
|
|
568
568
|
"""
|
|
569
|
+
system_disk_encrypted: NotRequired[pulumi.Input[bool]]
|
|
570
|
+
"""
|
|
571
|
+
Whether to enable system disk encryption.
|
|
572
|
+
"""
|
|
573
|
+
system_disk_kms_key_id: NotRequired[pulumi.Input[str]]
|
|
574
|
+
"""
|
|
575
|
+
The kms key id used to encrypt the system disk. It takes effect when system_disk_encrypted is true.
|
|
576
|
+
"""
|
|
569
577
|
elif False:
|
|
570
578
|
ClusterNodeAttributeArgsDict: TypeAlias = Mapping[str, Any]
|
|
571
579
|
|
|
@@ -578,7 +586,9 @@ class ClusterNodeAttributeArgs:
|
|
|
578
586
|
vpc_id: pulumi.Input[str],
|
|
579
587
|
zone_id: pulumi.Input[str],
|
|
580
588
|
data_disk_encrypted: Optional[pulumi.Input[bool]] = None,
|
|
581
|
-
data_disk_kms_key_id: Optional[pulumi.Input[str]] = None
|
|
589
|
+
data_disk_kms_key_id: Optional[pulumi.Input[str]] = None,
|
|
590
|
+
system_disk_encrypted: Optional[pulumi.Input[bool]] = None,
|
|
591
|
+
system_disk_kms_key_id: Optional[pulumi.Input[str]] = None):
|
|
582
592
|
"""
|
|
583
593
|
:param pulumi.Input[str] key_pair_name: The name of the key pair.
|
|
584
594
|
:param pulumi.Input[str] ram_role: Alicloud EMR uses roles to perform actions on your behalf when provisioning cluster resources, running applications, dynamically scaling resources. EMR uses the following roles when interacting with other Alicloud services. Default value is AliyunEmrEcsDefaultRole.
|
|
@@ -587,6 +597,8 @@ class ClusterNodeAttributeArgs:
|
|
|
587
597
|
:param pulumi.Input[str] zone_id: Zone ID, e.g. cn-hangzhou-i
|
|
588
598
|
:param pulumi.Input[bool] data_disk_encrypted: Whether to enable data disk encryption.
|
|
589
599
|
:param pulumi.Input[str] data_disk_kms_key_id: The kms key id used to encrypt the data disk. It takes effect when data_disk_encrypted is true.
|
|
600
|
+
:param pulumi.Input[bool] system_disk_encrypted: Whether to enable system disk encryption.
|
|
601
|
+
:param pulumi.Input[str] system_disk_kms_key_id: The kms key id used to encrypt the system disk. It takes effect when system_disk_encrypted is true.
|
|
590
602
|
"""
|
|
591
603
|
pulumi.set(__self__, "key_pair_name", key_pair_name)
|
|
592
604
|
pulumi.set(__self__, "ram_role", ram_role)
|
|
@@ -597,6 +609,10 @@ class ClusterNodeAttributeArgs:
|
|
|
597
609
|
pulumi.set(__self__, "data_disk_encrypted", data_disk_encrypted)
|
|
598
610
|
if data_disk_kms_key_id is not None:
|
|
599
611
|
pulumi.set(__self__, "data_disk_kms_key_id", data_disk_kms_key_id)
|
|
612
|
+
if system_disk_encrypted is not None:
|
|
613
|
+
pulumi.set(__self__, "system_disk_encrypted", system_disk_encrypted)
|
|
614
|
+
if system_disk_kms_key_id is not None:
|
|
615
|
+
pulumi.set(__self__, "system_disk_kms_key_id", system_disk_kms_key_id)
|
|
600
616
|
|
|
601
617
|
@property
|
|
602
618
|
@pulumi.getter(name="keyPairName")
|
|
@@ -682,6 +698,30 @@ class ClusterNodeAttributeArgs:
|
|
|
682
698
|
def data_disk_kms_key_id(self, value: Optional[pulumi.Input[str]]):
|
|
683
699
|
pulumi.set(self, "data_disk_kms_key_id", value)
|
|
684
700
|
|
|
701
|
+
@property
|
|
702
|
+
@pulumi.getter(name="systemDiskEncrypted")
|
|
703
|
+
def system_disk_encrypted(self) -> Optional[pulumi.Input[bool]]:
|
|
704
|
+
"""
|
|
705
|
+
Whether to enable system disk encryption.
|
|
706
|
+
"""
|
|
707
|
+
return pulumi.get(self, "system_disk_encrypted")
|
|
708
|
+
|
|
709
|
+
@system_disk_encrypted.setter
|
|
710
|
+
def system_disk_encrypted(self, value: Optional[pulumi.Input[bool]]):
|
|
711
|
+
pulumi.set(self, "system_disk_encrypted", value)
|
|
712
|
+
|
|
713
|
+
@property
|
|
714
|
+
@pulumi.getter(name="systemDiskKmsKeyId")
|
|
715
|
+
def system_disk_kms_key_id(self) -> Optional[pulumi.Input[str]]:
|
|
716
|
+
"""
|
|
717
|
+
The kms key id used to encrypt the system disk. It takes effect when system_disk_encrypted is true.
|
|
718
|
+
"""
|
|
719
|
+
return pulumi.get(self, "system_disk_kms_key_id")
|
|
720
|
+
|
|
721
|
+
@system_disk_kms_key_id.setter
|
|
722
|
+
def system_disk_kms_key_id(self, value: Optional[pulumi.Input[str]]):
|
|
723
|
+
pulumi.set(self, "system_disk_kms_key_id", value)
|
|
724
|
+
|
|
685
725
|
|
|
686
726
|
if not MYPY:
|
|
687
727
|
class ClusterNodeGroupArgsDict(TypedDict):
|
|
@@ -703,7 +743,7 @@ if not MYPY:
|
|
|
703
743
|
"""
|
|
704
744
|
node_group_type: pulumi.Input[str]
|
|
705
745
|
"""
|
|
706
|
-
The node group type of emr cluster, supported value: MASTER, CORE or TASK. Node group type of GATEWAY is available since v1.219.0.
|
|
746
|
+
The node group type of emr cluster, supported value: MASTER, CORE or TASK. Node group type of GATEWAY is available since v1.219.0. Node group type of MASTER-EXTEND is available since v1.243.0.
|
|
707
747
|
"""
|
|
708
748
|
system_disk: pulumi.Input['ClusterNodeGroupSystemDiskArgsDict']
|
|
709
749
|
"""
|
|
@@ -796,7 +836,7 @@ class ClusterNodeGroupArgs:
|
|
|
796
836
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] instance_types: Host Ecs instance types. **NOTE:** From version 1.236.0, `instance_types` can be modified.
|
|
797
837
|
:param pulumi.Input[int] node_count: Host Ecs number in this node group.
|
|
798
838
|
:param pulumi.Input[str] node_group_name: The node group name of emr cluster.
|
|
799
|
-
:param pulumi.Input[str] node_group_type: The node group type of emr cluster, supported value: MASTER, CORE or TASK. Node group type of GATEWAY is available since v1.219.0.
|
|
839
|
+
:param pulumi.Input[str] node_group_type: The node group type of emr cluster, supported value: MASTER, CORE or TASK. Node group type of GATEWAY is available since v1.219.0. Node group type of MASTER-EXTEND is available since v1.243.0.
|
|
800
840
|
:param pulumi.Input['ClusterNodeGroupSystemDiskArgs'] system_disk: Host Ecs system disk information in this node group. See `system_disk` below.
|
|
801
841
|
:param pulumi.Input['ClusterNodeGroupAckConfigArgs'] ack_config: The node group of ack configuration for emr cluster to deploying on kubernetes. See `ack_config` below.
|
|
802
842
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] additional_security_group_ids: Additional security Group IDS for Cluster, you can also specify this key for each node group. **NOTE:** From version 1.236.0, `additional_security_group_ids` can be modified.
|
|
@@ -900,7 +940,7 @@ class ClusterNodeGroupArgs:
|
|
|
900
940
|
@pulumi.getter(name="nodeGroupType")
|
|
901
941
|
def node_group_type(self) -> pulumi.Input[str]:
|
|
902
942
|
"""
|
|
903
|
-
The node group type of emr cluster, supported value: MASTER, CORE or TASK. Node group type of GATEWAY is available since v1.219.0.
|
|
943
|
+
The node group type of emr cluster, supported value: MASTER, CORE or TASK. Node group type of GATEWAY is available since v1.219.0. Node group type of MASTER-EXTEND is available since v1.243.0.
|
|
904
944
|
"""
|
|
905
945
|
return pulumi.get(self, "node_group_type")
|
|
906
946
|
|