pulumi-alicloud 3.74.0a1737989015__py3-none-any.whl → 3.75.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-alicloud might be problematic. Click here for more details.
- pulumi_alicloud/__init__.py +230 -0
- pulumi_alicloud/_inputs.py +33 -0
- pulumi_alicloud/_utilities.py +8 -4
- 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.74.0a1737989015.dist-info → pulumi_alicloud-3.75.0.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.74.0a1737989015.dist-info → pulumi_alicloud-3.75.0.dist-info}/RECORD +165 -128
- {pulumi_alicloud-3.74.0a1737989015.dist-info → pulumi_alicloud-3.75.0.dist-info}/WHEEL +1 -1
- {pulumi_alicloud-3.74.0a1737989015.dist-info → pulumi_alicloud-3.75.0.dist-info}/top_level.txt +0 -0
|
@@ -27,21 +27,27 @@ class EcsDeploymentSetArgs:
|
|
|
27
27
|
strategy: Optional[pulumi.Input[str]] = None):
|
|
28
28
|
"""
|
|
29
29
|
The set of arguments for constructing a EcsDeploymentSet resource.
|
|
30
|
-
:param pulumi.Input[str] deployment_set_name: The name of the deployment set. The name must be 2 to 128 characters in length and can contain letters, digits, colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
31
|
-
:param pulumi.Input[str] description: The description of the deployment set. The description must be 2 to 256 characters in length and cannot start with `http://` or `https://`.
|
|
32
|
-
:param pulumi.Input[str] domain:
|
|
33
|
-
:param pulumi.Input[str] granularity:
|
|
34
|
-
:param pulumi.Input[str] on_unable_to_redeploy_failed_instance: The
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
:param pulumi.Input[str] strategy: The deployment strategy. Valid values: `Availability
|
|
30
|
+
:param pulumi.Input[str] deployment_set_name: The name of the deployment set. The name must be `2` to `128` characters in length and can contain letters, digits, colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
31
|
+
:param pulumi.Input[str] description: The description of the deployment set. The description must be `2` to `256` characters in length and cannot start with `http://` or `https://`.
|
|
32
|
+
:param pulumi.Input[str] domain: Field `domain` has been deprecated from provider version 1.243.0.
|
|
33
|
+
:param pulumi.Input[str] granularity: Field `granularity` has been deprecated from provider version 1.243.0.
|
|
34
|
+
:param pulumi.Input[str] on_unable_to_redeploy_failed_instance: The emergency solution to use in the situation where instances in the deployment set cannot be evenly distributed to different zones due to resource insufficiency after the instances failover. Valid values:
|
|
35
|
+
- `CancelMembershipAndStart` - Removes the instances from the deployment set and starts the instances immediately after they are failed over.
|
|
36
|
+
- `KeepStopped`- Leaves the instances in the Stopped state and starts them after resources are replenished.
|
|
37
|
+
:param pulumi.Input[str] strategy: The deployment strategy. Default value: `Availability`. Valid values: `Availability`, `AvailabilityGroup`, `LowLatency`.
|
|
38
38
|
"""
|
|
39
39
|
if deployment_set_name is not None:
|
|
40
40
|
pulumi.set(__self__, "deployment_set_name", deployment_set_name)
|
|
41
41
|
if description is not None:
|
|
42
42
|
pulumi.set(__self__, "description", description)
|
|
43
|
+
if domain is not None:
|
|
44
|
+
warnings.warn("""Field `domain` has been deprecated from provider version 1.243.0.""", DeprecationWarning)
|
|
45
|
+
pulumi.log.warn("""domain is deprecated: Field `domain` has been deprecated from provider version 1.243.0.""")
|
|
43
46
|
if domain is not None:
|
|
44
47
|
pulumi.set(__self__, "domain", domain)
|
|
48
|
+
if granularity is not None:
|
|
49
|
+
warnings.warn("""Field `granularity` has been deprecated from provider version 1.243.0.""", DeprecationWarning)
|
|
50
|
+
pulumi.log.warn("""granularity is deprecated: Field `granularity` has been deprecated from provider version 1.243.0.""")
|
|
45
51
|
if granularity is not None:
|
|
46
52
|
pulumi.set(__self__, "granularity", granularity)
|
|
47
53
|
if on_unable_to_redeploy_failed_instance is not None:
|
|
@@ -53,7 +59,7 @@ class EcsDeploymentSetArgs:
|
|
|
53
59
|
@pulumi.getter(name="deploymentSetName")
|
|
54
60
|
def deployment_set_name(self) -> Optional[pulumi.Input[str]]:
|
|
55
61
|
"""
|
|
56
|
-
The name of the deployment set. The name must be 2 to 128 characters in length and can contain letters, digits, colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
62
|
+
The name of the deployment set. The name must be `2` to `128` characters in length and can contain letters, digits, colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
57
63
|
"""
|
|
58
64
|
return pulumi.get(self, "deployment_set_name")
|
|
59
65
|
|
|
@@ -65,7 +71,7 @@ class EcsDeploymentSetArgs:
|
|
|
65
71
|
@pulumi.getter
|
|
66
72
|
def description(self) -> Optional[pulumi.Input[str]]:
|
|
67
73
|
"""
|
|
68
|
-
The description of the deployment set. The description must be 2 to 256 characters in length and cannot start with `http://` or `https://`.
|
|
74
|
+
The description of the deployment set. The description must be `2` to `256` characters in length and cannot start with `http://` or `https://`.
|
|
69
75
|
"""
|
|
70
76
|
return pulumi.get(self, "description")
|
|
71
77
|
|
|
@@ -75,9 +81,10 @@ class EcsDeploymentSetArgs:
|
|
|
75
81
|
|
|
76
82
|
@property
|
|
77
83
|
@pulumi.getter
|
|
84
|
+
@_utilities.deprecated("""Field `domain` has been deprecated from provider version 1.243.0.""")
|
|
78
85
|
def domain(self) -> Optional[pulumi.Input[str]]:
|
|
79
86
|
"""
|
|
80
|
-
|
|
87
|
+
Field `domain` has been deprecated from provider version 1.243.0.
|
|
81
88
|
"""
|
|
82
89
|
return pulumi.get(self, "domain")
|
|
83
90
|
|
|
@@ -87,9 +94,10 @@ class EcsDeploymentSetArgs:
|
|
|
87
94
|
|
|
88
95
|
@property
|
|
89
96
|
@pulumi.getter
|
|
97
|
+
@_utilities.deprecated("""Field `granularity` has been deprecated from provider version 1.243.0.""")
|
|
90
98
|
def granularity(self) -> Optional[pulumi.Input[str]]:
|
|
91
99
|
"""
|
|
92
|
-
|
|
100
|
+
Field `granularity` has been deprecated from provider version 1.243.0.
|
|
93
101
|
"""
|
|
94
102
|
return pulumi.get(self, "granularity")
|
|
95
103
|
|
|
@@ -101,9 +109,9 @@ class EcsDeploymentSetArgs:
|
|
|
101
109
|
@pulumi.getter(name="onUnableToRedeployFailedInstance")
|
|
102
110
|
def on_unable_to_redeploy_failed_instance(self) -> Optional[pulumi.Input[str]]:
|
|
103
111
|
"""
|
|
104
|
-
The
|
|
105
|
-
|
|
106
|
-
|
|
112
|
+
The emergency solution to use in the situation where instances in the deployment set cannot be evenly distributed to different zones due to resource insufficiency after the instances failover. Valid values:
|
|
113
|
+
- `CancelMembershipAndStart` - Removes the instances from the deployment set and starts the instances immediately after they are failed over.
|
|
114
|
+
- `KeepStopped`- Leaves the instances in the Stopped state and starts them after resources are replenished.
|
|
107
115
|
"""
|
|
108
116
|
return pulumi.get(self, "on_unable_to_redeploy_failed_instance")
|
|
109
117
|
|
|
@@ -115,7 +123,7 @@ class EcsDeploymentSetArgs:
|
|
|
115
123
|
@pulumi.getter
|
|
116
124
|
def strategy(self) -> Optional[pulumi.Input[str]]:
|
|
117
125
|
"""
|
|
118
|
-
The deployment strategy. Valid values: `Availability
|
|
126
|
+
The deployment strategy. Default value: `Availability`. Valid values: `Availability`, `AvailabilityGroup`, `LowLatency`.
|
|
119
127
|
"""
|
|
120
128
|
return pulumi.get(self, "strategy")
|
|
121
129
|
|
|
@@ -135,21 +143,27 @@ class _EcsDeploymentSetState:
|
|
|
135
143
|
strategy: Optional[pulumi.Input[str]] = None):
|
|
136
144
|
"""
|
|
137
145
|
Input properties used for looking up and filtering EcsDeploymentSet resources.
|
|
138
|
-
:param pulumi.Input[str] deployment_set_name: The name of the deployment set. The name must be 2 to 128 characters in length and can contain letters, digits, colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
139
|
-
:param pulumi.Input[str] description: The description of the deployment set. The description must be 2 to 256 characters in length and cannot start with `http://` or `https://`.
|
|
140
|
-
:param pulumi.Input[str] domain:
|
|
141
|
-
:param pulumi.Input[str] granularity:
|
|
142
|
-
:param pulumi.Input[str] on_unable_to_redeploy_failed_instance: The
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
:param pulumi.Input[str] strategy: The deployment strategy. Valid values: `Availability
|
|
146
|
+
:param pulumi.Input[str] deployment_set_name: The name of the deployment set. The name must be `2` to `128` characters in length and can contain letters, digits, colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
147
|
+
:param pulumi.Input[str] description: The description of the deployment set. The description must be `2` to `256` characters in length and cannot start with `http://` or `https://`.
|
|
148
|
+
:param pulumi.Input[str] domain: Field `domain` has been deprecated from provider version 1.243.0.
|
|
149
|
+
:param pulumi.Input[str] granularity: Field `granularity` has been deprecated from provider version 1.243.0.
|
|
150
|
+
:param pulumi.Input[str] on_unable_to_redeploy_failed_instance: The emergency solution to use in the situation where instances in the deployment set cannot be evenly distributed to different zones due to resource insufficiency after the instances failover. Valid values:
|
|
151
|
+
- `CancelMembershipAndStart` - Removes the instances from the deployment set and starts the instances immediately after they are failed over.
|
|
152
|
+
- `KeepStopped`- Leaves the instances in the Stopped state and starts them after resources are replenished.
|
|
153
|
+
:param pulumi.Input[str] strategy: The deployment strategy. Default value: `Availability`. Valid values: `Availability`, `AvailabilityGroup`, `LowLatency`.
|
|
146
154
|
"""
|
|
147
155
|
if deployment_set_name is not None:
|
|
148
156
|
pulumi.set(__self__, "deployment_set_name", deployment_set_name)
|
|
149
157
|
if description is not None:
|
|
150
158
|
pulumi.set(__self__, "description", description)
|
|
159
|
+
if domain is not None:
|
|
160
|
+
warnings.warn("""Field `domain` has been deprecated from provider version 1.243.0.""", DeprecationWarning)
|
|
161
|
+
pulumi.log.warn("""domain is deprecated: Field `domain` has been deprecated from provider version 1.243.0.""")
|
|
151
162
|
if domain is not None:
|
|
152
163
|
pulumi.set(__self__, "domain", domain)
|
|
164
|
+
if granularity is not None:
|
|
165
|
+
warnings.warn("""Field `granularity` has been deprecated from provider version 1.243.0.""", DeprecationWarning)
|
|
166
|
+
pulumi.log.warn("""granularity is deprecated: Field `granularity` has been deprecated from provider version 1.243.0.""")
|
|
153
167
|
if granularity is not None:
|
|
154
168
|
pulumi.set(__self__, "granularity", granularity)
|
|
155
169
|
if on_unable_to_redeploy_failed_instance is not None:
|
|
@@ -161,7 +175,7 @@ class _EcsDeploymentSetState:
|
|
|
161
175
|
@pulumi.getter(name="deploymentSetName")
|
|
162
176
|
def deployment_set_name(self) -> Optional[pulumi.Input[str]]:
|
|
163
177
|
"""
|
|
164
|
-
The name of the deployment set. The name must be 2 to 128 characters in length and can contain letters, digits, colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
178
|
+
The name of the deployment set. The name must be `2` to `128` characters in length and can contain letters, digits, colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
165
179
|
"""
|
|
166
180
|
return pulumi.get(self, "deployment_set_name")
|
|
167
181
|
|
|
@@ -173,7 +187,7 @@ class _EcsDeploymentSetState:
|
|
|
173
187
|
@pulumi.getter
|
|
174
188
|
def description(self) -> Optional[pulumi.Input[str]]:
|
|
175
189
|
"""
|
|
176
|
-
The description of the deployment set. The description must be 2 to 256 characters in length and cannot start with `http://` or `https://`.
|
|
190
|
+
The description of the deployment set. The description must be `2` to `256` characters in length and cannot start with `http://` or `https://`.
|
|
177
191
|
"""
|
|
178
192
|
return pulumi.get(self, "description")
|
|
179
193
|
|
|
@@ -183,9 +197,10 @@ class _EcsDeploymentSetState:
|
|
|
183
197
|
|
|
184
198
|
@property
|
|
185
199
|
@pulumi.getter
|
|
200
|
+
@_utilities.deprecated("""Field `domain` has been deprecated from provider version 1.243.0.""")
|
|
186
201
|
def domain(self) -> Optional[pulumi.Input[str]]:
|
|
187
202
|
"""
|
|
188
|
-
|
|
203
|
+
Field `domain` has been deprecated from provider version 1.243.0.
|
|
189
204
|
"""
|
|
190
205
|
return pulumi.get(self, "domain")
|
|
191
206
|
|
|
@@ -195,9 +210,10 @@ class _EcsDeploymentSetState:
|
|
|
195
210
|
|
|
196
211
|
@property
|
|
197
212
|
@pulumi.getter
|
|
213
|
+
@_utilities.deprecated("""Field `granularity` has been deprecated from provider version 1.243.0.""")
|
|
198
214
|
def granularity(self) -> Optional[pulumi.Input[str]]:
|
|
199
215
|
"""
|
|
200
|
-
|
|
216
|
+
Field `granularity` has been deprecated from provider version 1.243.0.
|
|
201
217
|
"""
|
|
202
218
|
return pulumi.get(self, "granularity")
|
|
203
219
|
|
|
@@ -209,9 +225,9 @@ class _EcsDeploymentSetState:
|
|
|
209
225
|
@pulumi.getter(name="onUnableToRedeployFailedInstance")
|
|
210
226
|
def on_unable_to_redeploy_failed_instance(self) -> Optional[pulumi.Input[str]]:
|
|
211
227
|
"""
|
|
212
|
-
The
|
|
213
|
-
|
|
214
|
-
|
|
228
|
+
The emergency solution to use in the situation where instances in the deployment set cannot be evenly distributed to different zones due to resource insufficiency after the instances failover. Valid values:
|
|
229
|
+
- `CancelMembershipAndStart` - Removes the instances from the deployment set and starts the instances immediately after they are failed over.
|
|
230
|
+
- `KeepStopped`- Leaves the instances in the Stopped state and starts them after resources are replenished.
|
|
215
231
|
"""
|
|
216
232
|
return pulumi.get(self, "on_unable_to_redeploy_failed_instance")
|
|
217
233
|
|
|
@@ -223,7 +239,7 @@ class _EcsDeploymentSetState:
|
|
|
223
239
|
@pulumi.getter
|
|
224
240
|
def strategy(self) -> Optional[pulumi.Input[str]]:
|
|
225
241
|
"""
|
|
226
|
-
The deployment strategy. Valid values: `Availability
|
|
242
|
+
The deployment strategy. Default value: `Availability`. Valid values: `Availability`, `AvailabilityGroup`, `LowLatency`.
|
|
227
243
|
"""
|
|
228
244
|
return pulumi.get(self, "strategy")
|
|
229
245
|
|
|
@@ -259,12 +275,14 @@ class EcsDeploymentSet(pulumi.CustomResource):
|
|
|
259
275
|
import pulumi
|
|
260
276
|
import pulumi_alicloud as alicloud
|
|
261
277
|
|
|
278
|
+
config = pulumi.Config()
|
|
279
|
+
name = config.get("name")
|
|
280
|
+
if name is None:
|
|
281
|
+
name = "terraform-example"
|
|
262
282
|
default = alicloud.ecs.EcsDeploymentSet("default",
|
|
263
283
|
strategy="Availability",
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
deployment_set_name="example_value",
|
|
267
|
-
description="example_value")
|
|
284
|
+
deployment_set_name=name,
|
|
285
|
+
description=name)
|
|
268
286
|
```
|
|
269
287
|
|
|
270
288
|
## Import
|
|
@@ -277,14 +295,14 @@ class EcsDeploymentSet(pulumi.CustomResource):
|
|
|
277
295
|
|
|
278
296
|
:param str resource_name: The name of the resource.
|
|
279
297
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
280
|
-
:param pulumi.Input[str] deployment_set_name: The name of the deployment set. The name must be 2 to 128 characters in length and can contain letters, digits, colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
281
|
-
:param pulumi.Input[str] description: The description of the deployment set. The description must be 2 to 256 characters in length and cannot start with `http://` or `https://`.
|
|
282
|
-
:param pulumi.Input[str] domain:
|
|
283
|
-
:param pulumi.Input[str] granularity:
|
|
284
|
-
:param pulumi.Input[str] on_unable_to_redeploy_failed_instance: The
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
:param pulumi.Input[str] strategy: The deployment strategy. Valid values: `Availability
|
|
298
|
+
:param pulumi.Input[str] deployment_set_name: The name of the deployment set. The name must be `2` to `128` characters in length and can contain letters, digits, colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
299
|
+
:param pulumi.Input[str] description: The description of the deployment set. The description must be `2` to `256` characters in length and cannot start with `http://` or `https://`.
|
|
300
|
+
:param pulumi.Input[str] domain: Field `domain` has been deprecated from provider version 1.243.0.
|
|
301
|
+
:param pulumi.Input[str] granularity: Field `granularity` has been deprecated from provider version 1.243.0.
|
|
302
|
+
:param pulumi.Input[str] on_unable_to_redeploy_failed_instance: The emergency solution to use in the situation where instances in the deployment set cannot be evenly distributed to different zones due to resource insufficiency after the instances failover. Valid values:
|
|
303
|
+
- `CancelMembershipAndStart` - Removes the instances from the deployment set and starts the instances immediately after they are failed over.
|
|
304
|
+
- `KeepStopped`- Leaves the instances in the Stopped state and starts them after resources are replenished.
|
|
305
|
+
:param pulumi.Input[str] strategy: The deployment strategy. Default value: `Availability`. Valid values: `Availability`, `AvailabilityGroup`, `LowLatency`.
|
|
288
306
|
"""
|
|
289
307
|
...
|
|
290
308
|
@overload
|
|
@@ -307,12 +325,14 @@ class EcsDeploymentSet(pulumi.CustomResource):
|
|
|
307
325
|
import pulumi
|
|
308
326
|
import pulumi_alicloud as alicloud
|
|
309
327
|
|
|
328
|
+
config = pulumi.Config()
|
|
329
|
+
name = config.get("name")
|
|
330
|
+
if name is None:
|
|
331
|
+
name = "terraform-example"
|
|
310
332
|
default = alicloud.ecs.EcsDeploymentSet("default",
|
|
311
333
|
strategy="Availability",
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
deployment_set_name="example_value",
|
|
315
|
-
description="example_value")
|
|
334
|
+
deployment_set_name=name,
|
|
335
|
+
description=name)
|
|
316
336
|
```
|
|
317
337
|
|
|
318
338
|
## Import
|
|
@@ -382,14 +402,14 @@ class EcsDeploymentSet(pulumi.CustomResource):
|
|
|
382
402
|
:param str resource_name: The unique name of the resulting resource.
|
|
383
403
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
384
404
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
385
|
-
:param pulumi.Input[str] deployment_set_name: The name of the deployment set. The name must be 2 to 128 characters in length and can contain letters, digits, colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
386
|
-
:param pulumi.Input[str] description: The description of the deployment set. The description must be 2 to 256 characters in length and cannot start with `http://` or `https://`.
|
|
387
|
-
:param pulumi.Input[str] domain:
|
|
388
|
-
:param pulumi.Input[str] granularity:
|
|
389
|
-
:param pulumi.Input[str] on_unable_to_redeploy_failed_instance: The
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
:param pulumi.Input[str] strategy: The deployment strategy. Valid values: `Availability
|
|
405
|
+
:param pulumi.Input[str] deployment_set_name: The name of the deployment set. The name must be `2` to `128` characters in length and can contain letters, digits, colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
406
|
+
:param pulumi.Input[str] description: The description of the deployment set. The description must be `2` to `256` characters in length and cannot start with `http://` or `https://`.
|
|
407
|
+
:param pulumi.Input[str] domain: Field `domain` has been deprecated from provider version 1.243.0.
|
|
408
|
+
:param pulumi.Input[str] granularity: Field `granularity` has been deprecated from provider version 1.243.0.
|
|
409
|
+
:param pulumi.Input[str] on_unable_to_redeploy_failed_instance: The emergency solution to use in the situation where instances in the deployment set cannot be evenly distributed to different zones due to resource insufficiency after the instances failover. Valid values:
|
|
410
|
+
- `CancelMembershipAndStart` - Removes the instances from the deployment set and starts the instances immediately after they are failed over.
|
|
411
|
+
- `KeepStopped`- Leaves the instances in the Stopped state and starts them after resources are replenished.
|
|
412
|
+
:param pulumi.Input[str] strategy: The deployment strategy. Default value: `Availability`. Valid values: `Availability`, `AvailabilityGroup`, `LowLatency`.
|
|
393
413
|
"""
|
|
394
414
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
395
415
|
|
|
@@ -407,7 +427,7 @@ class EcsDeploymentSet(pulumi.CustomResource):
|
|
|
407
427
|
@pulumi.getter(name="deploymentSetName")
|
|
408
428
|
def deployment_set_name(self) -> pulumi.Output[Optional[str]]:
|
|
409
429
|
"""
|
|
410
|
-
The name of the deployment set. The name must be 2 to 128 characters in length and can contain letters, digits, colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
430
|
+
The name of the deployment set. The name must be `2` to `128` characters in length and can contain letters, digits, colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
411
431
|
"""
|
|
412
432
|
return pulumi.get(self, "deployment_set_name")
|
|
413
433
|
|
|
@@ -415,23 +435,25 @@ class EcsDeploymentSet(pulumi.CustomResource):
|
|
|
415
435
|
@pulumi.getter
|
|
416
436
|
def description(self) -> pulumi.Output[Optional[str]]:
|
|
417
437
|
"""
|
|
418
|
-
The description of the deployment set. The description must be 2 to 256 characters in length and cannot start with `http://` or `https://`.
|
|
438
|
+
The description of the deployment set. The description must be `2` to `256` characters in length and cannot start with `http://` or `https://`.
|
|
419
439
|
"""
|
|
420
440
|
return pulumi.get(self, "description")
|
|
421
441
|
|
|
422
442
|
@property
|
|
423
443
|
@pulumi.getter
|
|
424
|
-
|
|
444
|
+
@_utilities.deprecated("""Field `domain` has been deprecated from provider version 1.243.0.""")
|
|
445
|
+
def domain(self) -> pulumi.Output[str]:
|
|
425
446
|
"""
|
|
426
|
-
|
|
447
|
+
Field `domain` has been deprecated from provider version 1.243.0.
|
|
427
448
|
"""
|
|
428
449
|
return pulumi.get(self, "domain")
|
|
429
450
|
|
|
430
451
|
@property
|
|
431
452
|
@pulumi.getter
|
|
432
|
-
|
|
453
|
+
@_utilities.deprecated("""Field `granularity` has been deprecated from provider version 1.243.0.""")
|
|
454
|
+
def granularity(self) -> pulumi.Output[str]:
|
|
433
455
|
"""
|
|
434
|
-
|
|
456
|
+
Field `granularity` has been deprecated from provider version 1.243.0.
|
|
435
457
|
"""
|
|
436
458
|
return pulumi.get(self, "granularity")
|
|
437
459
|
|
|
@@ -439,17 +461,17 @@ class EcsDeploymentSet(pulumi.CustomResource):
|
|
|
439
461
|
@pulumi.getter(name="onUnableToRedeployFailedInstance")
|
|
440
462
|
def on_unable_to_redeploy_failed_instance(self) -> pulumi.Output[Optional[str]]:
|
|
441
463
|
"""
|
|
442
|
-
The
|
|
443
|
-
|
|
444
|
-
|
|
464
|
+
The emergency solution to use in the situation where instances in the deployment set cannot be evenly distributed to different zones due to resource insufficiency after the instances failover. Valid values:
|
|
465
|
+
- `CancelMembershipAndStart` - Removes the instances from the deployment set and starts the instances immediately after they are failed over.
|
|
466
|
+
- `KeepStopped`- Leaves the instances in the Stopped state and starts them after resources are replenished.
|
|
445
467
|
"""
|
|
446
468
|
return pulumi.get(self, "on_unable_to_redeploy_failed_instance")
|
|
447
469
|
|
|
448
470
|
@property
|
|
449
471
|
@pulumi.getter
|
|
450
|
-
def strategy(self) -> pulumi.Output[
|
|
472
|
+
def strategy(self) -> pulumi.Output[str]:
|
|
451
473
|
"""
|
|
452
|
-
The deployment strategy. Valid values: `Availability
|
|
474
|
+
The deployment strategy. Default value: `Availability`. Valid values: `Availability`, `AvailabilityGroup`, `LowLatency`.
|
|
453
475
|
"""
|
|
454
476
|
return pulumi.get(self, "strategy")
|
|
455
477
|
|
pulumi_alicloud/ecs/eip.py
CHANGED
|
@@ -1143,7 +1143,7 @@ class Eip(pulumi.CustomResource):
|
|
|
1143
1143
|
|
|
1144
1144
|
@property
|
|
1145
1145
|
@pulumi.getter
|
|
1146
|
-
def description(self) -> pulumi.Output[
|
|
1146
|
+
def description(self) -> pulumi.Output[str]:
|
|
1147
1147
|
"""
|
|
1148
1148
|
Description of the EIP instance, This description can have a string of 2 to 256 characters, It cannot begin with http:// or https://. Default value is null.
|
|
1149
1149
|
"""
|