pulumi-alicloud 3.68.0__py3-none-any.whl → 3.68.0a1732277964__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 +0 -40
- pulumi_alicloud/cdn/_inputs.py +23 -3
- pulumi_alicloud/cdn/domain_new.py +51 -93
- pulumi_alicloud/cdn/outputs.py +16 -2
- pulumi_alicloud/cdn/real_time_log_delivery.py +46 -97
- pulumi_alicloud/cen/get_flowlogs.py +35 -250
- pulumi_alicloud/cen/outputs.py +17 -116
- pulumi_alicloud/cs/node_pool.py +0 -7
- pulumi_alicloud/ecs/_inputs.py +0 -92
- pulumi_alicloud/ecs/auto_snapshot_policy.py +129 -323
- pulumi_alicloud/ecs/outputs.py +0 -88
- pulumi_alicloud/ecs/snapshot_policy.py +1 -154
- pulumi_alicloud/emrv2/_inputs.py +21 -875
- pulumi_alicloud/emrv2/cluster.py +0 -47
- pulumi_alicloud/emrv2/outputs.py +14 -580
- pulumi_alicloud/gwlb/__init__.py +0 -1
- pulumi_alicloud/gwlb/_inputs.py +126 -147
- pulumi_alicloud/gwlb/listener.py +50 -50
- pulumi_alicloud/gwlb/load_balancer.py +71 -78
- pulumi_alicloud/gwlb/outputs.py +84 -139
- pulumi_alicloud/gwlb/server_group.py +113 -162
- pulumi_alicloud/kvstore/audit_log_config.py +7 -7
- pulumi_alicloud/kvstore/backup_policy.py +9 -9
- pulumi_alicloud/kvstore/get_instance_classes.py +8 -8
- pulumi_alicloud/kvstore/get_instances.py +7 -9
- pulumi_alicloud/kvstore/instance.py +21 -21
- pulumi_alicloud/kvstore/outputs.py +6 -6
- pulumi_alicloud/nas/_inputs.py +0 -148
- pulumi_alicloud/nas/file_system.py +222 -482
- pulumi_alicloud/nas/outputs.py +0 -109
- pulumi_alicloud/pai/__init__.py +0 -7
- pulumi_alicloud/pai/workspace_workspace.py +6 -6
- pulumi_alicloud/pulumi-plugin.json +1 -1
- {pulumi_alicloud-3.68.0.dist-info → pulumi_alicloud-3.68.0a1732277964.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.68.0.dist-info → pulumi_alicloud-3.68.0a1732277964.dist-info}/RECORD +37 -45
- pulumi_alicloud/gwlb/get_zones.py +0 -173
- pulumi_alicloud/pai/_inputs.py +0 -129
- pulumi_alicloud/pai/outputs.py +0 -83
- pulumi_alicloud/pai/workspace_code_source.py +0 -702
- pulumi_alicloud/pai/workspace_dataset.py +0 -1081
- pulumi_alicloud/pai/workspace_datasetversion.py +0 -818
- pulumi_alicloud/pai/workspace_experiment.py +0 -394
- pulumi_alicloud/pai/workspace_run.py +0 -344
- {pulumi_alicloud-3.68.0.dist-info → pulumi_alicloud-3.68.0a1732277964.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.68.0.dist-info → pulumi_alicloud-3.68.0a1732277964.dist-info}/top_level.txt +0 -0
pulumi_alicloud/emrv2/cluster.py
CHANGED
|
@@ -29,7 +29,6 @@ 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,
|
|
33
32
|
deploy_mode: Optional[pulumi.Input[str]] = None,
|
|
34
33
|
log_collect_strategy: Optional[pulumi.Input[str]] = None,
|
|
35
34
|
payment_type: Optional[pulumi.Input[str]] = None,
|
|
@@ -47,7 +46,6 @@ class ClusterArgs:
|
|
|
47
46
|
: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.
|
|
48
47
|
:param pulumi.Input[Sequence[pulumi.Input['ClusterApplicationConfigArgs']]] application_configs: The application configurations of EMR cluster. See `application_configs` below.
|
|
49
48
|
: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.
|
|
51
49
|
:param pulumi.Input[str] deploy_mode: The deploy mode of EMR cluster. Supported value: NORMAL or HA.
|
|
52
50
|
:param pulumi.Input[str] log_collect_strategy: The log collect strategy of EMR cluster.
|
|
53
51
|
: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.
|
|
@@ -66,8 +64,6 @@ class ClusterArgs:
|
|
|
66
64
|
pulumi.set(__self__, "application_configs", application_configs)
|
|
67
65
|
if bootstrap_scripts is not None:
|
|
68
66
|
pulumi.set(__self__, "bootstrap_scripts", bootstrap_scripts)
|
|
69
|
-
if deletion_protection is not None:
|
|
70
|
-
pulumi.set(__self__, "deletion_protection", deletion_protection)
|
|
71
67
|
if deploy_mode is not None:
|
|
72
68
|
pulumi.set(__self__, "deploy_mode", deploy_mode)
|
|
73
69
|
if log_collect_strategy is not None:
|
|
@@ -179,18 +175,6 @@ class ClusterArgs:
|
|
|
179
175
|
def bootstrap_scripts(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterBootstrapScriptArgs']]]]):
|
|
180
176
|
pulumi.set(self, "bootstrap_scripts", value)
|
|
181
177
|
|
|
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
|
-
|
|
194
178
|
@property
|
|
195
179
|
@pulumi.getter(name="deployMode")
|
|
196
180
|
def deploy_mode(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -284,7 +268,6 @@ class _ClusterState:
|
|
|
284
268
|
bootstrap_scripts: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterBootstrapScriptArgs']]]] = None,
|
|
285
269
|
cluster_name: Optional[pulumi.Input[str]] = None,
|
|
286
270
|
cluster_type: Optional[pulumi.Input[str]] = None,
|
|
287
|
-
deletion_protection: Optional[pulumi.Input[bool]] = None,
|
|
288
271
|
deploy_mode: Optional[pulumi.Input[str]] = None,
|
|
289
272
|
log_collect_strategy: Optional[pulumi.Input[str]] = None,
|
|
290
273
|
node_attributes: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeAttributeArgs']]]] = None,
|
|
@@ -302,7 +285,6 @@ class _ClusterState:
|
|
|
302
285
|
: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.
|
|
303
286
|
: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, "-", "_".
|
|
304
287
|
: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.
|
|
306
288
|
:param pulumi.Input[str] deploy_mode: The deploy mode of EMR cluster. Supported value: NORMAL or HA.
|
|
307
289
|
:param pulumi.Input[str] log_collect_strategy: The log collect strategy of EMR cluster.
|
|
308
290
|
:param pulumi.Input[Sequence[pulumi.Input['ClusterNodeAttributeArgs']]] node_attributes: The node attributes of ecs instances which the emr-cluster belongs. See `node_attributes` below.
|
|
@@ -324,8 +306,6 @@ class _ClusterState:
|
|
|
324
306
|
pulumi.set(__self__, "cluster_name", cluster_name)
|
|
325
307
|
if cluster_type is not None:
|
|
326
308
|
pulumi.set(__self__, "cluster_type", cluster_type)
|
|
327
|
-
if deletion_protection is not None:
|
|
328
|
-
pulumi.set(__self__, "deletion_protection", deletion_protection)
|
|
329
309
|
if deploy_mode is not None:
|
|
330
310
|
pulumi.set(__self__, "deploy_mode", deploy_mode)
|
|
331
311
|
if log_collect_strategy is not None:
|
|
@@ -407,18 +387,6 @@ class _ClusterState:
|
|
|
407
387
|
def cluster_type(self, value: Optional[pulumi.Input[str]]):
|
|
408
388
|
pulumi.set(self, "cluster_type", value)
|
|
409
389
|
|
|
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
|
-
|
|
422
390
|
@property
|
|
423
391
|
@pulumi.getter(name="deployMode")
|
|
424
392
|
def deploy_mode(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -550,7 +518,6 @@ class Cluster(pulumi.CustomResource):
|
|
|
550
518
|
bootstrap_scripts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ClusterBootstrapScriptArgs', 'ClusterBootstrapScriptArgsDict']]]]] = None,
|
|
551
519
|
cluster_name: Optional[pulumi.Input[str]] = None,
|
|
552
520
|
cluster_type: Optional[pulumi.Input[str]] = None,
|
|
553
|
-
deletion_protection: Optional[pulumi.Input[bool]] = None,
|
|
554
521
|
deploy_mode: Optional[pulumi.Input[str]] = None,
|
|
555
522
|
log_collect_strategy: Optional[pulumi.Input[str]] = None,
|
|
556
523
|
node_attributes: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ClusterNodeAttributeArgs', 'ClusterNodeAttributeArgsDict']]]]] = None,
|
|
@@ -710,7 +677,6 @@ class Cluster(pulumi.CustomResource):
|
|
|
710
677
|
: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.
|
|
711
678
|
: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, "-", "_".
|
|
712
679
|
: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.
|
|
714
680
|
:param pulumi.Input[str] deploy_mode: The deploy mode of EMR cluster. Supported value: NORMAL or HA.
|
|
715
681
|
:param pulumi.Input[str] log_collect_strategy: The log collect strategy of EMR cluster.
|
|
716
682
|
: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.
|
|
@@ -889,7 +855,6 @@ class Cluster(pulumi.CustomResource):
|
|
|
889
855
|
bootstrap_scripts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ClusterBootstrapScriptArgs', 'ClusterBootstrapScriptArgsDict']]]]] = None,
|
|
890
856
|
cluster_name: Optional[pulumi.Input[str]] = None,
|
|
891
857
|
cluster_type: Optional[pulumi.Input[str]] = None,
|
|
892
|
-
deletion_protection: Optional[pulumi.Input[bool]] = None,
|
|
893
858
|
deploy_mode: Optional[pulumi.Input[str]] = None,
|
|
894
859
|
log_collect_strategy: Optional[pulumi.Input[str]] = None,
|
|
895
860
|
node_attributes: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ClusterNodeAttributeArgs', 'ClusterNodeAttributeArgsDict']]]]] = None,
|
|
@@ -920,7 +885,6 @@ class Cluster(pulumi.CustomResource):
|
|
|
920
885
|
if cluster_type is None and not opts.urn:
|
|
921
886
|
raise TypeError("Missing required property 'cluster_type'")
|
|
922
887
|
__props__.__dict__["cluster_type"] = cluster_type
|
|
923
|
-
__props__.__dict__["deletion_protection"] = deletion_protection
|
|
924
888
|
__props__.__dict__["deploy_mode"] = deploy_mode
|
|
925
889
|
__props__.__dict__["log_collect_strategy"] = log_collect_strategy
|
|
926
890
|
if node_attributes is None and not opts.urn:
|
|
@@ -952,7 +916,6 @@ class Cluster(pulumi.CustomResource):
|
|
|
952
916
|
bootstrap_scripts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ClusterBootstrapScriptArgs', 'ClusterBootstrapScriptArgsDict']]]]] = None,
|
|
953
917
|
cluster_name: Optional[pulumi.Input[str]] = None,
|
|
954
918
|
cluster_type: Optional[pulumi.Input[str]] = None,
|
|
955
|
-
deletion_protection: Optional[pulumi.Input[bool]] = None,
|
|
956
919
|
deploy_mode: Optional[pulumi.Input[str]] = None,
|
|
957
920
|
log_collect_strategy: Optional[pulumi.Input[str]] = None,
|
|
958
921
|
node_attributes: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ClusterNodeAttributeArgs', 'ClusterNodeAttributeArgsDict']]]]] = None,
|
|
@@ -975,7 +938,6 @@ class Cluster(pulumi.CustomResource):
|
|
|
975
938
|
: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.
|
|
976
939
|
: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, "-", "_".
|
|
977
940
|
: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.
|
|
979
941
|
:param pulumi.Input[str] deploy_mode: The deploy mode of EMR cluster. Supported value: NORMAL or HA.
|
|
980
942
|
:param pulumi.Input[str] log_collect_strategy: The log collect strategy of EMR cluster.
|
|
981
943
|
: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.
|
|
@@ -996,7 +958,6 @@ class Cluster(pulumi.CustomResource):
|
|
|
996
958
|
__props__.__dict__["bootstrap_scripts"] = bootstrap_scripts
|
|
997
959
|
__props__.__dict__["cluster_name"] = cluster_name
|
|
998
960
|
__props__.__dict__["cluster_type"] = cluster_type
|
|
999
|
-
__props__.__dict__["deletion_protection"] = deletion_protection
|
|
1000
961
|
__props__.__dict__["deploy_mode"] = deploy_mode
|
|
1001
962
|
__props__.__dict__["log_collect_strategy"] = log_collect_strategy
|
|
1002
963
|
__props__.__dict__["node_attributes"] = node_attributes
|
|
@@ -1049,14 +1010,6 @@ class Cluster(pulumi.CustomResource):
|
|
|
1049
1010
|
"""
|
|
1050
1011
|
return pulumi.get(self, "cluster_type")
|
|
1051
1012
|
|
|
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
|
-
|
|
1060
1013
|
@property
|
|
1061
1014
|
@pulumi.getter(name="deployMode")
|
|
1062
1015
|
def deploy_mode(self) -> pulumi.Output[str]:
|