pulumi-alicloud 3.59.0__py3-none-any.whl → 3.59.0a1720502311__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 -48
- pulumi_alicloud/adb/resource_group.py +119 -115
- pulumi_alicloud/clickhouse/get_regions.py +2 -2
- pulumi_alicloud/cloudstoragegateway/gateway_cache_disk.py +27 -150
- pulumi_alicloud/dfs/file_system.py +19 -52
- pulumi_alicloud/ecs/_inputs.py +8 -132
- pulumi_alicloud/ecs/image.py +121 -607
- pulumi_alicloud/ecs/outputs.py +8 -131
- pulumi_alicloud/emrv2/_inputs.py +0 -490
- pulumi_alicloud/emrv2/cluster.py +14 -14
- pulumi_alicloud/emrv2/outputs.py +0 -500
- pulumi_alicloud/ens/__init__.py +0 -2
- pulumi_alicloud/ens/instance.py +17 -16
- pulumi_alicloud/ess/eci_scaling_configuration.py +0 -94
- pulumi_alicloud/ess/scaling_group.py +0 -94
- pulumi_alicloud/ga/bandwidth_package_attachment.py +34 -34
- pulumi_alicloud/ga/listener.py +0 -122
- pulumi_alicloud/gpdb/__init__.py +0 -4
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/redis/tair_instance.py +67 -161
- {pulumi_alicloud-3.59.0.dist-info → pulumi_alicloud-3.59.0a1720502311.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.59.0.dist-info → pulumi_alicloud-3.59.0a1720502311.dist-info}/RECORD +24 -30
- {pulumi_alicloud-3.59.0.dist-info → pulumi_alicloud-3.59.0a1720502311.dist-info}/WHEEL +1 -1
- pulumi_alicloud/ens/eip_instance_attachment.py +0 -480
- pulumi_alicloud/ens/nat_gateway.py +0 -458
- pulumi_alicloud/gpdb/external_data_service.py +0 -485
- pulumi_alicloud/gpdb/remote_adb_data_source.py +0 -763
- pulumi_alicloud/gpdb/streaming_data_service.py +0 -481
- pulumi_alicloud/gpdb/streaming_data_source.py +0 -645
- {pulumi_alicloud-3.59.0.dist-info → pulumi_alicloud-3.59.0a1720502311.dist-info}/top_level.txt +0 -0
pulumi_alicloud/emrv2/cluster.py
CHANGED
|
@@ -37,13 +37,13 @@ class ClusterArgs:
|
|
|
37
37
|
: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, "-", "_".
|
|
38
38
|
: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.
|
|
39
39
|
:param pulumi.Input[Sequence[pulumi.Input['ClusterNodeAttributeArgs']]] node_attributes: The node attributes of ecs instances which the emr-cluster belongs. See `node_attributes` below.
|
|
40
|
-
:param pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupArgs']]] node_groups: Groups of node, You can specify MASTER as a group, CORE as a group (just like the above example). See `node_groups` below.
|
|
40
|
+
:param pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupArgs']]] node_groups: Groups of node, You can specify MASTER as a group, CORE as a group (just like the above example). See `node_groups` below.
|
|
41
41
|
: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.
|
|
42
42
|
:param pulumi.Input[Sequence[pulumi.Input['ClusterApplicationConfigArgs']]] application_configs: The application configurations of EMR cluster. See `application_configs` below.
|
|
43
43
|
: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.
|
|
44
44
|
:param pulumi.Input[str] deploy_mode: The deploy mode of EMR cluster. Supported value: NORMAL or HA.
|
|
45
45
|
:param pulumi.Input[str] log_collect_strategy: The log collect strategy of EMR cluster.
|
|
46
|
-
:param pulumi.Input[str] payment_type: Payment Type for this cluster. Supported value: PayAsYouGo or Subscription.
|
|
46
|
+
:param pulumi.Input[str] payment_type: Payment Type for this cluster. Supported value: PayAsYouGo or Subscription.
|
|
47
47
|
:param pulumi.Input[str] resource_group_id: The Id of resource group which the emr-cluster belongs.
|
|
48
48
|
:param pulumi.Input[str] security_mode: The security mode of EMR cluster. Supported value: NORMAL or KERBEROS.
|
|
49
49
|
:param pulumi.Input['ClusterSubscriptionConfigArgs'] subscription_config: The detail configuration of subscription payment type. See `subscription_config` below.
|
|
@@ -126,7 +126,7 @@ class ClusterArgs:
|
|
|
126
126
|
@pulumi.getter(name="nodeGroups")
|
|
127
127
|
def node_groups(self) -> pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupArgs']]]:
|
|
128
128
|
"""
|
|
129
|
-
Groups of node, You can specify MASTER as a group, CORE as a group (just like the above example). See `node_groups` below.
|
|
129
|
+
Groups of node, You can specify MASTER as a group, CORE as a group (just like the above example). See `node_groups` below.
|
|
130
130
|
"""
|
|
131
131
|
return pulumi.get(self, "node_groups")
|
|
132
132
|
|
|
@@ -198,7 +198,7 @@ class ClusterArgs:
|
|
|
198
198
|
@pulumi.getter(name="paymentType")
|
|
199
199
|
def payment_type(self) -> Optional[pulumi.Input[str]]:
|
|
200
200
|
"""
|
|
201
|
-
Payment Type for this cluster. Supported value: PayAsYouGo or Subscription.
|
|
201
|
+
Payment Type for this cluster. Supported value: PayAsYouGo or Subscription.
|
|
202
202
|
"""
|
|
203
203
|
return pulumi.get(self, "payment_type")
|
|
204
204
|
|
|
@@ -283,8 +283,8 @@ class _ClusterState:
|
|
|
283
283
|
:param pulumi.Input[str] deploy_mode: The deploy mode of EMR cluster. Supported value: NORMAL or HA.
|
|
284
284
|
:param pulumi.Input[str] log_collect_strategy: The log collect strategy of EMR cluster.
|
|
285
285
|
:param pulumi.Input[Sequence[pulumi.Input['ClusterNodeAttributeArgs']]] node_attributes: The node attributes of ecs instances which the emr-cluster belongs. See `node_attributes` below.
|
|
286
|
-
:param pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupArgs']]] node_groups: Groups of node, You can specify MASTER as a group, CORE as a group (just like the above example). See `node_groups` below.
|
|
287
|
-
:param pulumi.Input[str] payment_type: Payment Type for this cluster. Supported value: PayAsYouGo or Subscription.
|
|
286
|
+
:param pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupArgs']]] node_groups: Groups of node, You can specify MASTER as a group, CORE as a group (just like the above example). See `node_groups` below.
|
|
287
|
+
:param pulumi.Input[str] payment_type: Payment Type for this cluster. Supported value: PayAsYouGo or Subscription.
|
|
288
288
|
: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.
|
|
289
289
|
:param pulumi.Input[str] resource_group_id: The Id of resource group which the emr-cluster belongs.
|
|
290
290
|
:param pulumi.Input[str] security_mode: The security mode of EMR cluster. Supported value: NORMAL or KERBEROS.
|
|
@@ -422,7 +422,7 @@ class _ClusterState:
|
|
|
422
422
|
@pulumi.getter(name="nodeGroups")
|
|
423
423
|
def node_groups(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupArgs']]]]:
|
|
424
424
|
"""
|
|
425
|
-
Groups of node, You can specify MASTER as a group, CORE as a group (just like the above example). See `node_groups` below.
|
|
425
|
+
Groups of node, You can specify MASTER as a group, CORE as a group (just like the above example). See `node_groups` below.
|
|
426
426
|
"""
|
|
427
427
|
return pulumi.get(self, "node_groups")
|
|
428
428
|
|
|
@@ -434,7 +434,7 @@ class _ClusterState:
|
|
|
434
434
|
@pulumi.getter(name="paymentType")
|
|
435
435
|
def payment_type(self) -> Optional[pulumi.Input[str]]:
|
|
436
436
|
"""
|
|
437
|
-
Payment Type for this cluster. Supported value: PayAsYouGo or Subscription.
|
|
437
|
+
Payment Type for this cluster. Supported value: PayAsYouGo or Subscription.
|
|
438
438
|
"""
|
|
439
439
|
return pulumi.get(self, "payment_type")
|
|
440
440
|
|
|
@@ -675,8 +675,8 @@ class Cluster(pulumi.CustomResource):
|
|
|
675
675
|
:param pulumi.Input[str] deploy_mode: The deploy mode of EMR cluster. Supported value: NORMAL or HA.
|
|
676
676
|
:param pulumi.Input[str] log_collect_strategy: The log collect strategy of EMR cluster.
|
|
677
677
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClusterNodeAttributeArgs']]]] node_attributes: The node attributes of ecs instances which the emr-cluster belongs. See `node_attributes` below.
|
|
678
|
-
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClusterNodeGroupArgs']]]] node_groups: Groups of node, You can specify MASTER as a group, CORE as a group (just like the above example). See `node_groups` below.
|
|
679
|
-
:param pulumi.Input[str] payment_type: Payment Type for this cluster. Supported value: PayAsYouGo or Subscription.
|
|
678
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClusterNodeGroupArgs']]]] node_groups: Groups of node, You can specify MASTER as a group, CORE as a group (just like the above example). See `node_groups` below.
|
|
679
|
+
:param pulumi.Input[str] payment_type: Payment Type for this cluster. Supported value: PayAsYouGo or Subscription.
|
|
680
680
|
: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.
|
|
681
681
|
:param pulumi.Input[str] resource_group_id: The Id of resource group which the emr-cluster belongs.
|
|
682
682
|
:param pulumi.Input[str] security_mode: The security mode of EMR cluster. Supported value: NORMAL or KERBEROS.
|
|
@@ -936,8 +936,8 @@ class Cluster(pulumi.CustomResource):
|
|
|
936
936
|
:param pulumi.Input[str] deploy_mode: The deploy mode of EMR cluster. Supported value: NORMAL or HA.
|
|
937
937
|
:param pulumi.Input[str] log_collect_strategy: The log collect strategy of EMR cluster.
|
|
938
938
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClusterNodeAttributeArgs']]]] node_attributes: The node attributes of ecs instances which the emr-cluster belongs. See `node_attributes` below.
|
|
939
|
-
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClusterNodeGroupArgs']]]] node_groups: Groups of node, You can specify MASTER as a group, CORE as a group (just like the above example). See `node_groups` below.
|
|
940
|
-
:param pulumi.Input[str] payment_type: Payment Type for this cluster. Supported value: PayAsYouGo or Subscription.
|
|
939
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClusterNodeGroupArgs']]]] node_groups: Groups of node, You can specify MASTER as a group, CORE as a group (just like the above example). See `node_groups` below.
|
|
940
|
+
:param pulumi.Input[str] payment_type: Payment Type for this cluster. Supported value: PayAsYouGo or Subscription.
|
|
941
941
|
: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.
|
|
942
942
|
:param pulumi.Input[str] resource_group_id: The Id of resource group which the emr-cluster belongs.
|
|
943
943
|
:param pulumi.Input[str] security_mode: The security mode of EMR cluster. Supported value: NORMAL or KERBEROS.
|
|
@@ -1033,7 +1033,7 @@ class Cluster(pulumi.CustomResource):
|
|
|
1033
1033
|
@pulumi.getter(name="nodeGroups")
|
|
1034
1034
|
def node_groups(self) -> pulumi.Output[Sequence['outputs.ClusterNodeGroup']]:
|
|
1035
1035
|
"""
|
|
1036
|
-
Groups of node, You can specify MASTER as a group, CORE as a group (just like the above example). See `node_groups` below.
|
|
1036
|
+
Groups of node, You can specify MASTER as a group, CORE as a group (just like the above example). See `node_groups` below.
|
|
1037
1037
|
"""
|
|
1038
1038
|
return pulumi.get(self, "node_groups")
|
|
1039
1039
|
|
|
@@ -1041,7 +1041,7 @@ class Cluster(pulumi.CustomResource):
|
|
|
1041
1041
|
@pulumi.getter(name="paymentType")
|
|
1042
1042
|
def payment_type(self) -> pulumi.Output[str]:
|
|
1043
1043
|
"""
|
|
1044
|
-
Payment Type for this cluster. Supported value: PayAsYouGo or Subscription.
|
|
1044
|
+
Payment Type for this cluster. Supported value: PayAsYouGo or Subscription.
|
|
1045
1045
|
"""
|
|
1046
1046
|
return pulumi.get(self, "payment_type")
|
|
1047
1047
|
|