pulumi-alicloud 3.67.0a1731734345__py3-none-any.whl → 3.68.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 +56 -0
- pulumi_alicloud/cdn/_inputs.py +3 -23
- pulumi_alicloud/cdn/domain_new.py +93 -51
- pulumi_alicloud/cdn/outputs.py +2 -16
- pulumi_alicloud/cdn/real_time_log_delivery.py +97 -46
- pulumi_alicloud/cen/flow_log.py +373 -58
- pulumi_alicloud/cen/get_flowlogs.py +250 -35
- pulumi_alicloud/cen/outputs.py +116 -17
- pulumi_alicloud/cen/transit_router_ecr_attachment.py +4 -4
- pulumi_alicloud/cr/registry_enterprise_instance.py +474 -90
- pulumi_alicloud/cs/node_pool.py +7 -0
- pulumi_alicloud/ecs/_inputs.py +92 -0
- pulumi_alicloud/ecs/auto_snapshot_policy.py +323 -129
- pulumi_alicloud/ecs/ecs_image_component.py +221 -48
- pulumi_alicloud/ecs/outputs.py +88 -0
- pulumi_alicloud/ecs/snapshot_policy.py +154 -1
- pulumi_alicloud/emrv2/_inputs.py +875 -21
- pulumi_alicloud/emrv2/cluster.py +47 -0
- pulumi_alicloud/emrv2/outputs.py +580 -14
- pulumi_alicloud/ess/_inputs.py +94 -0
- pulumi_alicloud/ess/eci_scaling_configuration.py +42 -14
- pulumi_alicloud/ess/outputs.py +79 -0
- pulumi_alicloud/ess/scaling_configuration.py +47 -0
- pulumi_alicloud/expressconnect/router_vbr_child_instance.py +86 -25
- pulumi_alicloud/gwlb/__init__.py +1 -0
- pulumi_alicloud/gwlb/_inputs.py +147 -126
- pulumi_alicloud/gwlb/get_zones.py +173 -0
- pulumi_alicloud/gwlb/listener.py +50 -50
- pulumi_alicloud/gwlb/load_balancer.py +78 -71
- pulumi_alicloud/gwlb/outputs.py +139 -84
- pulumi_alicloud/gwlb/server_group.py +162 -113
- pulumi_alicloud/kms/key.py +1 -1
- pulumi_alicloud/kvstore/account.py +24 -24
- pulumi_alicloud/kvstore/audit_log_config.py +11 -11
- pulumi_alicloud/kvstore/backup_policy.py +11 -11
- pulumi_alicloud/kvstore/connection.py +8 -8
- pulumi_alicloud/kvstore/get_accounts.py +4 -4
- pulumi_alicloud/kvstore/get_connections.py +5 -5
- pulumi_alicloud/kvstore/get_instance_classes.py +20 -20
- pulumi_alicloud/kvstore/get_instance_engines.py +7 -7
- pulumi_alicloud/kvstore/get_instances.py +9 -7
- pulumi_alicloud/kvstore/get_permission.py +10 -10
- pulumi_alicloud/kvstore/get_zones.py +4 -4
- pulumi_alicloud/kvstore/instance.py +21 -21
- pulumi_alicloud/kvstore/outputs.py +8 -8
- pulumi_alicloud/mongodb/instance.py +47 -0
- pulumi_alicloud/mongodb/sharding_instance.py +47 -0
- pulumi_alicloud/nas/_inputs.py +148 -0
- pulumi_alicloud/nas/file_system.py +482 -222
- pulumi_alicloud/nas/outputs.py +109 -0
- pulumi_alicloud/pai/__init__.py +7 -0
- pulumi_alicloud/pai/_inputs.py +129 -0
- pulumi_alicloud/pai/outputs.py +83 -0
- pulumi_alicloud/pai/workspace_code_source.py +702 -0
- pulumi_alicloud/pai/workspace_dataset.py +1081 -0
- pulumi_alicloud/pai/workspace_datasetversion.py +818 -0
- pulumi_alicloud/pai/workspace_experiment.py +394 -0
- pulumi_alicloud/pai/workspace_run.py +344 -0
- pulumi_alicloud/pai/workspace_workspace.py +6 -6
- pulumi_alicloud/polardb/cluster.py +7 -7
- pulumi_alicloud/privatelink/vpc_endpoint_service.py +42 -91
- pulumi_alicloud/privatelink/vpc_endpoint_service_connection.py +27 -23
- pulumi_alicloud/privatelink/vpc_endpoint_service_resource.py +34 -37
- pulumi_alicloud/privatelink/vpc_endpoint_zone.py +28 -0
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/rds/__init__.py +2 -0
- pulumi_alicloud/rds/_inputs.py +146 -0
- pulumi_alicloud/rds/custom.py +1630 -0
- pulumi_alicloud/rds/custom_deployment_set.py +525 -0
- pulumi_alicloud/rds/outputs.py +105 -0
- pulumi_alicloud/redis/tair_instance.py +76 -1
- pulumi_alicloud/vpc/_inputs.py +54 -0
- pulumi_alicloud/vpc/nat_gateway.py +175 -14
- pulumi_alicloud/vpc/outputs.py +51 -0
- pulumi_alicloud/vpn/gateway_vco_route.py +68 -21
- {pulumi_alicloud-3.67.0a1731734345.dist-info → pulumi_alicloud-3.68.0.dist-info}/METADATA +5 -5
- {pulumi_alicloud-3.67.0a1731734345.dist-info → pulumi_alicloud-3.68.0.dist-info}/RECORD +79 -69
- {pulumi_alicloud-3.67.0a1731734345.dist-info → pulumi_alicloud-3.68.0.dist-info}/WHEEL +1 -1
- {pulumi_alicloud-3.67.0a1731734345.dist-info → pulumi_alicloud-3.68.0.dist-info}/top_level.txt +0 -0
pulumi_alicloud/emrv2/cluster.py
CHANGED
|
@@ -29,6 +29,7 @@ class ClusterArgs:
|
|
|
29
29
|
release_version: pulumi.Input[str],
|
|
30
30
|
application_configs: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterApplicationConfigArgs']]]] = None,
|
|
31
31
|
bootstrap_scripts: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterBootstrapScriptArgs']]]] = None,
|
|
32
|
+
deletion_protection: Optional[pulumi.Input[bool]] = None,
|
|
32
33
|
deploy_mode: Optional[pulumi.Input[str]] = None,
|
|
33
34
|
log_collect_strategy: Optional[pulumi.Input[str]] = None,
|
|
34
35
|
payment_type: Optional[pulumi.Input[str]] = None,
|
|
@@ -46,6 +47,7 @@ class ClusterArgs:
|
|
|
46
47
|
:param pulumi.Input[str] release_version: EMR Version, e.g. EMR-5.10.0. You can find the all valid EMR Version in emr web console.
|
|
47
48
|
:param pulumi.Input[Sequence[pulumi.Input['ClusterApplicationConfigArgs']]] application_configs: The application configurations of EMR cluster. See `application_configs` below.
|
|
48
49
|
:param pulumi.Input[Sequence[pulumi.Input['ClusterBootstrapScriptArgs']]] bootstrap_scripts: The bootstrap scripts to be effected when creating emr-cluster or resize emr-cluster, if priority is not specified, the scripts will execute in the declared order. See `bootstrap_scripts` below.
|
|
50
|
+
:param pulumi.Input[bool] deletion_protection: The deletion protection of EMR cluster.
|
|
49
51
|
:param pulumi.Input[str] deploy_mode: The deploy mode of EMR cluster. Supported value: NORMAL or HA.
|
|
50
52
|
:param pulumi.Input[str] log_collect_strategy: The log collect strategy of EMR cluster.
|
|
51
53
|
:param pulumi.Input[str] payment_type: Payment Type for this cluster. Supported value: PayAsYouGo or Subscription. **NOTE:** From version 1.227.0, `payment_type` can be modified.
|
|
@@ -64,6 +66,8 @@ class ClusterArgs:
|
|
|
64
66
|
pulumi.set(__self__, "application_configs", application_configs)
|
|
65
67
|
if bootstrap_scripts is not None:
|
|
66
68
|
pulumi.set(__self__, "bootstrap_scripts", bootstrap_scripts)
|
|
69
|
+
if deletion_protection is not None:
|
|
70
|
+
pulumi.set(__self__, "deletion_protection", deletion_protection)
|
|
67
71
|
if deploy_mode is not None:
|
|
68
72
|
pulumi.set(__self__, "deploy_mode", deploy_mode)
|
|
69
73
|
if log_collect_strategy is not None:
|
|
@@ -175,6 +179,18 @@ class ClusterArgs:
|
|
|
175
179
|
def bootstrap_scripts(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterBootstrapScriptArgs']]]]):
|
|
176
180
|
pulumi.set(self, "bootstrap_scripts", value)
|
|
177
181
|
|
|
182
|
+
@property
|
|
183
|
+
@pulumi.getter(name="deletionProtection")
|
|
184
|
+
def deletion_protection(self) -> Optional[pulumi.Input[bool]]:
|
|
185
|
+
"""
|
|
186
|
+
The deletion protection of EMR cluster.
|
|
187
|
+
"""
|
|
188
|
+
return pulumi.get(self, "deletion_protection")
|
|
189
|
+
|
|
190
|
+
@deletion_protection.setter
|
|
191
|
+
def deletion_protection(self, value: Optional[pulumi.Input[bool]]):
|
|
192
|
+
pulumi.set(self, "deletion_protection", value)
|
|
193
|
+
|
|
178
194
|
@property
|
|
179
195
|
@pulumi.getter(name="deployMode")
|
|
180
196
|
def deploy_mode(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -268,6 +284,7 @@ class _ClusterState:
|
|
|
268
284
|
bootstrap_scripts: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterBootstrapScriptArgs']]]] = None,
|
|
269
285
|
cluster_name: Optional[pulumi.Input[str]] = None,
|
|
270
286
|
cluster_type: Optional[pulumi.Input[str]] = None,
|
|
287
|
+
deletion_protection: Optional[pulumi.Input[bool]] = None,
|
|
271
288
|
deploy_mode: Optional[pulumi.Input[str]] = None,
|
|
272
289
|
log_collect_strategy: Optional[pulumi.Input[str]] = None,
|
|
273
290
|
node_attributes: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeAttributeArgs']]]] = None,
|
|
@@ -285,6 +302,7 @@ class _ClusterState:
|
|
|
285
302
|
:param pulumi.Input[Sequence[pulumi.Input['ClusterBootstrapScriptArgs']]] bootstrap_scripts: The bootstrap scripts to be effected when creating emr-cluster or resize emr-cluster, if priority is not specified, the scripts will execute in the declared order. See `bootstrap_scripts` below.
|
|
286
303
|
:param pulumi.Input[str] cluster_name: The name of emr cluster. The name length must be less than 64. Supported characters: chinese character, english character, number, "-", "_".
|
|
287
304
|
:param pulumi.Input[str] cluster_type: EMR Cluster Type, e.g. DATALAKE, OLAP, DATAFLOW, DATASERVING, CUSTOM etc. You can find all valid EMR cluster type in emr web console.
|
|
305
|
+
:param pulumi.Input[bool] deletion_protection: The deletion protection of EMR cluster.
|
|
288
306
|
:param pulumi.Input[str] deploy_mode: The deploy mode of EMR cluster. Supported value: NORMAL or HA.
|
|
289
307
|
:param pulumi.Input[str] log_collect_strategy: The log collect strategy of EMR cluster.
|
|
290
308
|
:param pulumi.Input[Sequence[pulumi.Input['ClusterNodeAttributeArgs']]] node_attributes: The node attributes of ecs instances which the emr-cluster belongs. See `node_attributes` below.
|
|
@@ -306,6 +324,8 @@ class _ClusterState:
|
|
|
306
324
|
pulumi.set(__self__, "cluster_name", cluster_name)
|
|
307
325
|
if cluster_type is not None:
|
|
308
326
|
pulumi.set(__self__, "cluster_type", cluster_type)
|
|
327
|
+
if deletion_protection is not None:
|
|
328
|
+
pulumi.set(__self__, "deletion_protection", deletion_protection)
|
|
309
329
|
if deploy_mode is not None:
|
|
310
330
|
pulumi.set(__self__, "deploy_mode", deploy_mode)
|
|
311
331
|
if log_collect_strategy is not None:
|
|
@@ -387,6 +407,18 @@ class _ClusterState:
|
|
|
387
407
|
def cluster_type(self, value: Optional[pulumi.Input[str]]):
|
|
388
408
|
pulumi.set(self, "cluster_type", value)
|
|
389
409
|
|
|
410
|
+
@property
|
|
411
|
+
@pulumi.getter(name="deletionProtection")
|
|
412
|
+
def deletion_protection(self) -> Optional[pulumi.Input[bool]]:
|
|
413
|
+
"""
|
|
414
|
+
The deletion protection of EMR cluster.
|
|
415
|
+
"""
|
|
416
|
+
return pulumi.get(self, "deletion_protection")
|
|
417
|
+
|
|
418
|
+
@deletion_protection.setter
|
|
419
|
+
def deletion_protection(self, value: Optional[pulumi.Input[bool]]):
|
|
420
|
+
pulumi.set(self, "deletion_protection", value)
|
|
421
|
+
|
|
390
422
|
@property
|
|
391
423
|
@pulumi.getter(name="deployMode")
|
|
392
424
|
def deploy_mode(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -518,6 +550,7 @@ class Cluster(pulumi.CustomResource):
|
|
|
518
550
|
bootstrap_scripts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ClusterBootstrapScriptArgs', 'ClusterBootstrapScriptArgsDict']]]]] = None,
|
|
519
551
|
cluster_name: Optional[pulumi.Input[str]] = None,
|
|
520
552
|
cluster_type: Optional[pulumi.Input[str]] = None,
|
|
553
|
+
deletion_protection: Optional[pulumi.Input[bool]] = None,
|
|
521
554
|
deploy_mode: Optional[pulumi.Input[str]] = None,
|
|
522
555
|
log_collect_strategy: Optional[pulumi.Input[str]] = None,
|
|
523
556
|
node_attributes: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ClusterNodeAttributeArgs', 'ClusterNodeAttributeArgsDict']]]]] = None,
|
|
@@ -677,6 +710,7 @@ class Cluster(pulumi.CustomResource):
|
|
|
677
710
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ClusterBootstrapScriptArgs', 'ClusterBootstrapScriptArgsDict']]]] bootstrap_scripts: The bootstrap scripts to be effected when creating emr-cluster or resize emr-cluster, if priority is not specified, the scripts will execute in the declared order. See `bootstrap_scripts` below.
|
|
678
711
|
:param pulumi.Input[str] cluster_name: The name of emr cluster. The name length must be less than 64. Supported characters: chinese character, english character, number, "-", "_".
|
|
679
712
|
:param pulumi.Input[str] cluster_type: EMR Cluster Type, e.g. DATALAKE, OLAP, DATAFLOW, DATASERVING, CUSTOM etc. You can find all valid EMR cluster type in emr web console.
|
|
713
|
+
:param pulumi.Input[bool] deletion_protection: The deletion protection of EMR cluster.
|
|
680
714
|
:param pulumi.Input[str] deploy_mode: The deploy mode of EMR cluster. Supported value: NORMAL or HA.
|
|
681
715
|
:param pulumi.Input[str] log_collect_strategy: The log collect strategy of EMR cluster.
|
|
682
716
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ClusterNodeAttributeArgs', 'ClusterNodeAttributeArgsDict']]]] node_attributes: The node attributes of ecs instances which the emr-cluster belongs. See `node_attributes` below.
|
|
@@ -855,6 +889,7 @@ class Cluster(pulumi.CustomResource):
|
|
|
855
889
|
bootstrap_scripts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ClusterBootstrapScriptArgs', 'ClusterBootstrapScriptArgsDict']]]]] = None,
|
|
856
890
|
cluster_name: Optional[pulumi.Input[str]] = None,
|
|
857
891
|
cluster_type: Optional[pulumi.Input[str]] = None,
|
|
892
|
+
deletion_protection: Optional[pulumi.Input[bool]] = None,
|
|
858
893
|
deploy_mode: Optional[pulumi.Input[str]] = None,
|
|
859
894
|
log_collect_strategy: Optional[pulumi.Input[str]] = None,
|
|
860
895
|
node_attributes: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ClusterNodeAttributeArgs', 'ClusterNodeAttributeArgsDict']]]]] = None,
|
|
@@ -885,6 +920,7 @@ class Cluster(pulumi.CustomResource):
|
|
|
885
920
|
if cluster_type is None and not opts.urn:
|
|
886
921
|
raise TypeError("Missing required property 'cluster_type'")
|
|
887
922
|
__props__.__dict__["cluster_type"] = cluster_type
|
|
923
|
+
__props__.__dict__["deletion_protection"] = deletion_protection
|
|
888
924
|
__props__.__dict__["deploy_mode"] = deploy_mode
|
|
889
925
|
__props__.__dict__["log_collect_strategy"] = log_collect_strategy
|
|
890
926
|
if node_attributes is None and not opts.urn:
|
|
@@ -916,6 +952,7 @@ class Cluster(pulumi.CustomResource):
|
|
|
916
952
|
bootstrap_scripts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ClusterBootstrapScriptArgs', 'ClusterBootstrapScriptArgsDict']]]]] = None,
|
|
917
953
|
cluster_name: Optional[pulumi.Input[str]] = None,
|
|
918
954
|
cluster_type: Optional[pulumi.Input[str]] = None,
|
|
955
|
+
deletion_protection: Optional[pulumi.Input[bool]] = None,
|
|
919
956
|
deploy_mode: Optional[pulumi.Input[str]] = None,
|
|
920
957
|
log_collect_strategy: Optional[pulumi.Input[str]] = None,
|
|
921
958
|
node_attributes: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ClusterNodeAttributeArgs', 'ClusterNodeAttributeArgsDict']]]]] = None,
|
|
@@ -938,6 +975,7 @@ class Cluster(pulumi.CustomResource):
|
|
|
938
975
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ClusterBootstrapScriptArgs', 'ClusterBootstrapScriptArgsDict']]]] bootstrap_scripts: The bootstrap scripts to be effected when creating emr-cluster or resize emr-cluster, if priority is not specified, the scripts will execute in the declared order. See `bootstrap_scripts` below.
|
|
939
976
|
:param pulumi.Input[str] cluster_name: The name of emr cluster. The name length must be less than 64. Supported characters: chinese character, english character, number, "-", "_".
|
|
940
977
|
:param pulumi.Input[str] cluster_type: EMR Cluster Type, e.g. DATALAKE, OLAP, DATAFLOW, DATASERVING, CUSTOM etc. You can find all valid EMR cluster type in emr web console.
|
|
978
|
+
:param pulumi.Input[bool] deletion_protection: The deletion protection of EMR cluster.
|
|
941
979
|
:param pulumi.Input[str] deploy_mode: The deploy mode of EMR cluster. Supported value: NORMAL or HA.
|
|
942
980
|
:param pulumi.Input[str] log_collect_strategy: The log collect strategy of EMR cluster.
|
|
943
981
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ClusterNodeAttributeArgs', 'ClusterNodeAttributeArgsDict']]]] node_attributes: The node attributes of ecs instances which the emr-cluster belongs. See `node_attributes` below.
|
|
@@ -958,6 +996,7 @@ class Cluster(pulumi.CustomResource):
|
|
|
958
996
|
__props__.__dict__["bootstrap_scripts"] = bootstrap_scripts
|
|
959
997
|
__props__.__dict__["cluster_name"] = cluster_name
|
|
960
998
|
__props__.__dict__["cluster_type"] = cluster_type
|
|
999
|
+
__props__.__dict__["deletion_protection"] = deletion_protection
|
|
961
1000
|
__props__.__dict__["deploy_mode"] = deploy_mode
|
|
962
1001
|
__props__.__dict__["log_collect_strategy"] = log_collect_strategy
|
|
963
1002
|
__props__.__dict__["node_attributes"] = node_attributes
|
|
@@ -1010,6 +1049,14 @@ class Cluster(pulumi.CustomResource):
|
|
|
1010
1049
|
"""
|
|
1011
1050
|
return pulumi.get(self, "cluster_type")
|
|
1012
1051
|
|
|
1052
|
+
@property
|
|
1053
|
+
@pulumi.getter(name="deletionProtection")
|
|
1054
|
+
def deletion_protection(self) -> pulumi.Output[Optional[bool]]:
|
|
1055
|
+
"""
|
|
1056
|
+
The deletion protection of EMR cluster.
|
|
1057
|
+
"""
|
|
1058
|
+
return pulumi.get(self, "deletion_protection")
|
|
1059
|
+
|
|
1013
1060
|
@property
|
|
1014
1061
|
@pulumi.getter(name="deployMode")
|
|
1015
1062
|
def deploy_mode(self) -> pulumi.Output[str]:
|