pulumi-alicloud 3.62.0a1725945881__py3-none-any.whl → 3.62.1__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 +80 -0
- pulumi_alicloud/actiontrail/trail.py +2 -2
- pulumi_alicloud/adb/cluster.py +34 -0
- pulumi_alicloud/adb/db_cluster.py +47 -0
- pulumi_alicloud/amqp/binding.py +30 -36
- pulumi_alicloud/amqp/static_account.py +12 -12
- pulumi_alicloud/cen/_inputs.py +180 -14
- pulumi_alicloud/cen/outputs.py +173 -12
- pulumi_alicloud/cen/traffic_marking_policy.py +116 -53
- pulumi_alicloud/cen/transit_router_peer_attachment.py +38 -20
- pulumi_alicloud/cen/transit_router_vpc_attachment.py +338 -119
- pulumi_alicloud/cen/transit_router_vpn_attachment.py +2 -2
- pulumi_alicloud/cr/chart_namespace.py +14 -6
- pulumi_alicloud/cr/endpoint_acl_policy.py +10 -2
- pulumi_alicloud/cr/namespace.py +10 -2
- pulumi_alicloud/cs/registry_enterprise_repo.py +4 -4
- pulumi_alicloud/cs/registry_enterprise_sync_rule.py +10 -10
- pulumi_alicloud/ddos/_inputs.py +24 -0
- pulumi_alicloud/ddos/bgp_ip.py +1 -1
- pulumi_alicloud/ddos/outputs.py +37 -0
- pulumi_alicloud/ddos/port.py +110 -40
- pulumi_alicloud/ecs/_inputs.py +28 -0
- pulumi_alicloud/ecs/outputs.py +20 -0
- pulumi_alicloud/emrv2/_inputs.py +20 -20
- pulumi_alicloud/emrv2/get_clusters.py +25 -4
- pulumi_alicloud/emrv2/outputs.py +24 -24
- pulumi_alicloud/ens/_inputs.py +137 -2
- pulumi_alicloud/ens/instance.py +428 -184
- pulumi_alicloud/ens/load_balancer.py +74 -25
- pulumi_alicloud/ens/outputs.py +141 -2
- pulumi_alicloud/expressconnect/physical_connection.py +321 -185
- pulumi_alicloud/fc/__init__.py +3 -0
- pulumi_alicloud/fc/_inputs.py +320 -8
- pulumi_alicloud/fc/outputs.py +321 -8
- pulumi_alicloud/fc/trigger.py +22 -24
- pulumi_alicloud/fc/v3_layer_version.py +511 -0
- pulumi_alicloud/fc/v3_provision_config.py +676 -0
- pulumi_alicloud/fc/v3_vpc_binding.py +283 -0
- pulumi_alicloud/ga/endpoint_group.py +68 -14
- pulumi_alicloud/ga/get_endpoint_group_ip_address_cidr_blocks.py +18 -3
- pulumi_alicloud/gpdb/__init__.py +2 -0
- pulumi_alicloud/gpdb/account.py +172 -83
- pulumi_alicloud/gpdb/db_resource_group.py +54 -9
- pulumi_alicloud/gpdb/hadoop_data_source.py +1135 -0
- pulumi_alicloud/gpdb/jdbc_data_source.py +643 -0
- pulumi_alicloud/hbr/_inputs.py +14 -14
- pulumi_alicloud/hbr/outputs.py +14 -14
- pulumi_alicloud/hbr/policy.py +18 -18
- pulumi_alicloud/hbr/policy_binding.py +203 -62
- pulumi_alicloud/mongodb/instance.py +94 -0
- pulumi_alicloud/nlb/_inputs.py +120 -64
- pulumi_alicloud/nlb/get_listeners.py +32 -2
- pulumi_alicloud/nlb/get_server_group_server_attachments.py +8 -2
- pulumi_alicloud/nlb/listener.py +315 -245
- pulumi_alicloud/nlb/listener_additional_certificate_attachment.py +25 -25
- pulumi_alicloud/nlb/load_balancer.py +181 -212
- pulumi_alicloud/nlb/load_balancer_security_group_attachment.py +29 -39
- pulumi_alicloud/nlb/loadbalancer_common_bandwidth_package_attachment.py +22 -18
- pulumi_alicloud/nlb/outputs.py +122 -66
- pulumi_alicloud/nlb/security_policy.py +53 -25
- pulumi_alicloud/nlb/server_group.py +196 -133
- pulumi_alicloud/ocean/base_instance.py +498 -163
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/quotas/__init__.py +1 -0
- pulumi_alicloud/quotas/template_service.py +165 -0
- pulumi_alicloud/rds/rds_db_proxy.py +61 -0
- pulumi_alicloud/servicecatalog/__init__.py +4 -0
- pulumi_alicloud/servicecatalog/portfolio.py +31 -31
- pulumi_alicloud/servicecatalog/principal_portfolio_association.py +354 -0
- pulumi_alicloud/servicecatalog/product.py +383 -0
- pulumi_alicloud/servicecatalog/product_portfolio_association.py +222 -0
- pulumi_alicloud/servicecatalog/product_version.py +539 -0
- pulumi_alicloud/servicemesh/extension_provider.py +2 -2
- pulumi_alicloud/vpc/common_bandwith_package_attachment.py +2 -2
- pulumi_alicloud/vpc/get_route_tables.py +28 -5
- pulumi_alicloud/vpc/outputs.py +2 -2
- {pulumi_alicloud-3.62.0a1725945881.dist-info → pulumi_alicloud-3.62.1.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.62.0a1725945881.dist-info → pulumi_alicloud-3.62.1.dist-info}/RECORD +80 -70
- {pulumi_alicloud-3.62.0a1725945881.dist-info → pulumi_alicloud-3.62.1.dist-info}/WHEEL +1 -1
- {pulumi_alicloud-3.62.0a1725945881.dist-info → pulumi_alicloud-3.62.1.dist-info}/top_level.txt +0 -0
pulumi_alicloud/emrv2/_inputs.py
CHANGED
|
@@ -534,23 +534,23 @@ class ClusterNodeGroupArgs:
|
|
|
534
534
|
with_public_ip: Optional[pulumi.Input[bool]] = None):
|
|
535
535
|
"""
|
|
536
536
|
:param pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupDataDiskArgs']]] data_disks: Host Ecs data disks information in this node group. See `data_disks` below.
|
|
537
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] instance_types: Host Ecs instance types.
|
|
537
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] instance_types: Host Ecs instance types. **NOTE:** From version 1.230.1, `instance_types` can not be modified.
|
|
538
538
|
:param pulumi.Input[int] node_count: Host Ecs number in this node group.
|
|
539
539
|
:param pulumi.Input[str] node_group_name: The node group name of emr cluster.
|
|
540
540
|
: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.
|
|
541
541
|
:param pulumi.Input['ClusterNodeGroupSystemDiskArgs'] system_disk: Host Ecs system disk information in this node group. See `system_disk` below.
|
|
542
|
-
: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.
|
|
542
|
+
: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.230.1, `additional_security_group_ids` can not be modified.
|
|
543
543
|
:param pulumi.Input['ClusterNodeGroupAutoScalingPolicyArgs'] auto_scaling_policy: The node group auto scaling policy for emr cluster. See `auto_scaling_policy` below.
|
|
544
|
-
:param pulumi.Input['ClusterNodeGroupCostOptimizedConfigArgs'] cost_optimized_config: The detail cost optimized configuration of emr cluster. See `cost_optimized_config` below.
|
|
545
|
-
:param pulumi.Input[str] deployment_set_strategy: Deployment set strategy for this cluster node group. Supported value: NONE, CLUSTER or NODE_GROUP.
|
|
544
|
+
:param pulumi.Input['ClusterNodeGroupCostOptimizedConfigArgs'] cost_optimized_config: The detail cost optimized configuration of emr cluster. See `cost_optimized_config` below. **NOTE:** From version 1.230.1, `cost_optimized_config` can not be modified.
|
|
545
|
+
:param pulumi.Input[str] deployment_set_strategy: Deployment set strategy for this cluster node group. Supported value: NONE, CLUSTER or NODE_GROUP. **NOTE:** From version 1.230.1, `deployment_set_strategy` can not be modified.
|
|
546
546
|
:param pulumi.Input[bool] graceful_shutdown: Enable emr cluster of task node graceful decommission, ’true’ or ‘false’ .
|
|
547
547
|
:param pulumi.Input[str] node_resize_strategy: Node resize strategy for this cluster node group. Supported value: PRIORITY, COST_OPTIMIZED.
|
|
548
548
|
:param pulumi.Input[str] payment_type: Payment Type for this cluster. Supported value: PayAsYouGo or Subscription.
|
|
549
549
|
:param pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupSpotBidPriceArgs']]] spot_bid_prices: The spot bid prices of a PayAsYouGo instance. See `spot_bid_prices` below.
|
|
550
550
|
:param pulumi.Input[bool] spot_instance_remedy: Whether to replace spot instances with newly created spot/onDemand instance when receive a spot recycling message.
|
|
551
551
|
:param pulumi.Input['ClusterNodeGroupSubscriptionConfigArgs'] subscription_config: The detail configuration of subscription payment type. See `subscription_config` below.
|
|
552
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] vswitch_ids: Global vSwitch ids, you can also specify it in node group.
|
|
553
|
-
:param pulumi.Input[bool] with_public_ip: Whether the node has a public IP address enabled.
|
|
552
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] vswitch_ids: Global vSwitch ids, you can also specify it in node group. **NOTE:** From version 1.230.1, `vswitch_ids` can not be modified.
|
|
553
|
+
:param pulumi.Input[bool] with_public_ip: Whether the node has a public IP address enabled. **NOTE:** From version 1.230.1, `with_public_ip` can not be modified.
|
|
554
554
|
"""
|
|
555
555
|
pulumi.set(__self__, "data_disks", data_disks)
|
|
556
556
|
pulumi.set(__self__, "instance_types", instance_types)
|
|
@@ -599,7 +599,7 @@ class ClusterNodeGroupArgs:
|
|
|
599
599
|
@pulumi.getter(name="instanceTypes")
|
|
600
600
|
def instance_types(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
|
601
601
|
"""
|
|
602
|
-
Host Ecs instance types.
|
|
602
|
+
Host Ecs instance types. **NOTE:** From version 1.230.1, `instance_types` can not be modified.
|
|
603
603
|
"""
|
|
604
604
|
return pulumi.get(self, "instance_types")
|
|
605
605
|
|
|
@@ -659,7 +659,7 @@ class ClusterNodeGroupArgs:
|
|
|
659
659
|
@pulumi.getter(name="additionalSecurityGroupIds")
|
|
660
660
|
def additional_security_group_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
661
661
|
"""
|
|
662
|
-
Additional security Group IDS for Cluster, you can also specify this key for each node group.
|
|
662
|
+
Additional security Group IDS for Cluster, you can also specify this key for each node group. **NOTE:** From version 1.230.1, `additional_security_group_ids` can not be modified.
|
|
663
663
|
"""
|
|
664
664
|
return pulumi.get(self, "additional_security_group_ids")
|
|
665
665
|
|
|
@@ -683,7 +683,7 @@ class ClusterNodeGroupArgs:
|
|
|
683
683
|
@pulumi.getter(name="costOptimizedConfig")
|
|
684
684
|
def cost_optimized_config(self) -> Optional[pulumi.Input['ClusterNodeGroupCostOptimizedConfigArgs']]:
|
|
685
685
|
"""
|
|
686
|
-
The detail cost optimized configuration of emr cluster. See `cost_optimized_config` below.
|
|
686
|
+
The detail cost optimized configuration of emr cluster. See `cost_optimized_config` below. **NOTE:** From version 1.230.1, `cost_optimized_config` can not be modified.
|
|
687
687
|
"""
|
|
688
688
|
return pulumi.get(self, "cost_optimized_config")
|
|
689
689
|
|
|
@@ -695,7 +695,7 @@ class ClusterNodeGroupArgs:
|
|
|
695
695
|
@pulumi.getter(name="deploymentSetStrategy")
|
|
696
696
|
def deployment_set_strategy(self) -> Optional[pulumi.Input[str]]:
|
|
697
697
|
"""
|
|
698
|
-
Deployment set strategy for this cluster node group. Supported value: NONE, CLUSTER or NODE_GROUP.
|
|
698
|
+
Deployment set strategy for this cluster node group. Supported value: NONE, CLUSTER or NODE_GROUP. **NOTE:** From version 1.230.1, `deployment_set_strategy` can not be modified.
|
|
699
699
|
"""
|
|
700
700
|
return pulumi.get(self, "deployment_set_strategy")
|
|
701
701
|
|
|
@@ -779,7 +779,7 @@ class ClusterNodeGroupArgs:
|
|
|
779
779
|
@pulumi.getter(name="vswitchIds")
|
|
780
780
|
def vswitch_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
781
781
|
"""
|
|
782
|
-
Global vSwitch ids, you can also specify it in node group.
|
|
782
|
+
Global vSwitch ids, you can also specify it in node group. **NOTE:** From version 1.230.1, `vswitch_ids` can not be modified.
|
|
783
783
|
"""
|
|
784
784
|
return pulumi.get(self, "vswitch_ids")
|
|
785
785
|
|
|
@@ -791,7 +791,7 @@ class ClusterNodeGroupArgs:
|
|
|
791
791
|
@pulumi.getter(name="withPublicIp")
|
|
792
792
|
def with_public_ip(self) -> Optional[pulumi.Input[bool]]:
|
|
793
793
|
"""
|
|
794
|
-
Whether the node has a public IP address enabled.
|
|
794
|
+
Whether the node has a public IP address enabled. **NOTE:** From version 1.230.1, `with_public_ip` can not be modified.
|
|
795
795
|
"""
|
|
796
796
|
return pulumi.get(self, "with_public_ip")
|
|
797
797
|
|
|
@@ -1432,7 +1432,7 @@ class ClusterNodeGroupDataDiskArgs:
|
|
|
1432
1432
|
count: Optional[pulumi.Input[int]] = None,
|
|
1433
1433
|
performance_level: Optional[pulumi.Input[str]] = None):
|
|
1434
1434
|
"""
|
|
1435
|
-
:param pulumi.Input[str] category: The type of the data disk. Valid values: `cloud_efficiency`
|
|
1435
|
+
:param pulumi.Input[str] category: The type of the data disk. Valid values: `cloud_efficiency`, `cloud_essd`, `cloud`, `local_hdd_pro`, `local_disk`, `local_ssd_pro`. **NOTE:** Since version v1.230.0, the categories `cloud`, `local_hdd_pro`, `local_disk`, `local_ssd_pro` are available.
|
|
1436
1436
|
:param pulumi.Input[int] size: The size of a data disk, at least 40. Unit: GiB.
|
|
1437
1437
|
:param pulumi.Input[int] count: The count of a data disk.
|
|
1438
1438
|
:param pulumi.Input[str] performance_level: Worker node data disk performance level, when `category` values `cloud_essd`, the optional values are `PL0`, `PL1`, `PL2` or `PL3`, but the specific performance level is related to the disk capacity.
|
|
@@ -1448,7 +1448,7 @@ class ClusterNodeGroupDataDiskArgs:
|
|
|
1448
1448
|
@pulumi.getter
|
|
1449
1449
|
def category(self) -> pulumi.Input[str]:
|
|
1450
1450
|
"""
|
|
1451
|
-
The type of the data disk. Valid values: `cloud_efficiency`
|
|
1451
|
+
The type of the data disk. Valid values: `cloud_efficiency`, `cloud_essd`, `cloud`, `local_hdd_pro`, `local_disk`, `local_ssd_pro`. **NOTE:** Since version v1.230.0, the categories `cloud`, `local_hdd_pro`, `local_disk`, `local_ssd_pro` are available.
|
|
1452
1452
|
"""
|
|
1453
1453
|
return pulumi.get(self, "category")
|
|
1454
1454
|
|
|
@@ -1542,7 +1542,7 @@ class ClusterNodeGroupSubscriptionConfigArgs:
|
|
|
1542
1542
|
"""
|
|
1543
1543
|
:param pulumi.Input[int] payment_duration: If paymentType is Subscription, this should be specified. Supported value: 1、2、3、4、5、6、7、8、9、12、24、36、48.
|
|
1544
1544
|
:param pulumi.Input[str] payment_duration_unit: If paymentType is Subscription, this should be specified. Supported value: Month or Year.
|
|
1545
|
-
:param pulumi.Input[bool] auto_pay_order: Auto pay order for payment type of subscription, ’true’ or ‘false’ .
|
|
1545
|
+
:param pulumi.Input[bool] auto_pay_order: Auto pay order for payment type of subscription, ’true’ or ‘false’ . Default value is ’true’.
|
|
1546
1546
|
:param pulumi.Input[bool] auto_renew: Auto renew for prepaid, ’true’ or ‘false’ . Default value: false.
|
|
1547
1547
|
:param pulumi.Input[int] auto_renew_duration: If paymentType is Subscription, this should be specified. Supported value: 1、2、3、4、5、6、7、8、9、12、24、36、48.
|
|
1548
1548
|
:param pulumi.Input[str] auto_renew_duration_unit: If paymentType is Subscription, this should be specified. Supported value: Month or Year.
|
|
@@ -1586,7 +1586,7 @@ class ClusterNodeGroupSubscriptionConfigArgs:
|
|
|
1586
1586
|
@pulumi.getter(name="autoPayOrder")
|
|
1587
1587
|
def auto_pay_order(self) -> Optional[pulumi.Input[bool]]:
|
|
1588
1588
|
"""
|
|
1589
|
-
Auto pay order for payment type of subscription, ’true’ or ‘false’ .
|
|
1589
|
+
Auto pay order for payment type of subscription, ’true’ or ‘false’ . Default value is ’true’.
|
|
1590
1590
|
"""
|
|
1591
1591
|
return pulumi.get(self, "auto_pay_order")
|
|
1592
1592
|
|
|
@@ -1639,7 +1639,7 @@ class ClusterNodeGroupSystemDiskArgs:
|
|
|
1639
1639
|
count: Optional[pulumi.Input[int]] = None,
|
|
1640
1640
|
performance_level: Optional[pulumi.Input[str]] = None):
|
|
1641
1641
|
"""
|
|
1642
|
-
:param pulumi.Input[str] category: The type of the data disk. Valid values: `cloud_efficiency`
|
|
1642
|
+
:param pulumi.Input[str] category: The type of the data disk. Valid values: `cloud_efficiency`, `cloud_essd`, `cloud`, `local_hdd_pro`, `local_disk`, `local_ssd_pro`. **NOTE:** Since version v1.230.0, the categories `cloud`, `local_hdd_pro`, `local_disk`, `local_ssd_pro` are available.
|
|
1643
1643
|
:param pulumi.Input[int] size: The size of a data disk, at least 40. Unit: GiB.
|
|
1644
1644
|
:param pulumi.Input[int] count: The count of a data disk.
|
|
1645
1645
|
:param pulumi.Input[str] performance_level: Worker node data disk performance level, when `category` values `cloud_essd`, the optional values are `PL0`, `PL1`, `PL2` or `PL3`, but the specific performance level is related to the disk capacity.
|
|
@@ -1655,7 +1655,7 @@ class ClusterNodeGroupSystemDiskArgs:
|
|
|
1655
1655
|
@pulumi.getter
|
|
1656
1656
|
def category(self) -> pulumi.Input[str]:
|
|
1657
1657
|
"""
|
|
1658
|
-
The type of the data disk. Valid values: `cloud_efficiency`
|
|
1658
|
+
The type of the data disk. Valid values: `cloud_efficiency`, `cloud_essd`, `cloud`, `local_hdd_pro`, `local_disk`, `local_ssd_pro`. **NOTE:** Since version v1.230.0, the categories `cloud`, `local_hdd_pro`, `local_disk`, `local_ssd_pro` are available.
|
|
1659
1659
|
"""
|
|
1660
1660
|
return pulumi.get(self, "category")
|
|
1661
1661
|
|
|
@@ -1712,7 +1712,7 @@ class ClusterSubscriptionConfigArgs:
|
|
|
1712
1712
|
"""
|
|
1713
1713
|
:param pulumi.Input[int] payment_duration: If paymentType is Subscription, this should be specified. Supported value: 1、2、3、4、5、6、7、8、9、12、24、36、48.
|
|
1714
1714
|
:param pulumi.Input[str] payment_duration_unit: If paymentType is Subscription, this should be specified. Supported value: Month or Year.
|
|
1715
|
-
:param pulumi.Input[bool] auto_pay_order: Auto pay order for payment type of subscription, ’true’ or ‘false’ .
|
|
1715
|
+
:param pulumi.Input[bool] auto_pay_order: Auto pay order for payment type of subscription, ’true’ or ‘false’ . Default value is ’true’.
|
|
1716
1716
|
:param pulumi.Input[bool] auto_renew: Auto renew for prepaid, ’true’ or ‘false’ . Default value: false.
|
|
1717
1717
|
:param pulumi.Input[int] auto_renew_duration: If paymentType is Subscription, this should be specified. Supported value: 1、2、3、4、5、6、7、8、9、12、24、36、48.
|
|
1718
1718
|
:param pulumi.Input[str] auto_renew_duration_unit: If paymentType is Subscription, this should be specified. Supported value: Month or Year.
|
|
@@ -1756,7 +1756,7 @@ class ClusterSubscriptionConfigArgs:
|
|
|
1756
1756
|
@pulumi.getter(name="autoPayOrder")
|
|
1757
1757
|
def auto_pay_order(self) -> Optional[pulumi.Input[bool]]:
|
|
1758
1758
|
"""
|
|
1759
|
-
Auto pay order for payment type of subscription, ’true’ or ‘false’ .
|
|
1759
|
+
Auto pay order for payment type of subscription, ’true’ or ‘false’ . Default value is ’true’.
|
|
1760
1760
|
"""
|
|
1761
1761
|
return pulumi.get(self, "auto_pay_order")
|
|
1762
1762
|
|
|
@@ -72,6 +72,9 @@ class GetClustersResult:
|
|
|
72
72
|
@property
|
|
73
73
|
@pulumi.getter(name="clusterName")
|
|
74
74
|
def cluster_name(self) -> Optional[str]:
|
|
75
|
+
"""
|
|
76
|
+
The name of the emr cluster.
|
|
77
|
+
"""
|
|
75
78
|
return pulumi.get(self, "cluster_name")
|
|
76
79
|
|
|
77
80
|
@property
|
|
@@ -87,6 +90,9 @@ class GetClustersResult:
|
|
|
87
90
|
@property
|
|
88
91
|
@pulumi.getter
|
|
89
92
|
def clusters(self) -> Sequence['outputs.GetClustersClusterResult']:
|
|
93
|
+
"""
|
|
94
|
+
A list of Emr Clusters. Each element contains the following attributes:
|
|
95
|
+
"""
|
|
90
96
|
return pulumi.get(self, "clusters")
|
|
91
97
|
|
|
92
98
|
@property
|
|
@@ -100,6 +106,9 @@ class GetClustersResult:
|
|
|
100
106
|
@property
|
|
101
107
|
@pulumi.getter
|
|
102
108
|
def ids(self) -> Sequence[str]:
|
|
109
|
+
"""
|
|
110
|
+
A list of Cluster IDS.
|
|
111
|
+
"""
|
|
103
112
|
return pulumi.get(self, "ids")
|
|
104
113
|
|
|
105
114
|
@property
|
|
@@ -115,6 +124,9 @@ class GetClustersResult:
|
|
|
115
124
|
@property
|
|
116
125
|
@pulumi.getter
|
|
117
126
|
def names(self) -> Sequence[str]:
|
|
127
|
+
"""
|
|
128
|
+
A list of Cluster names.
|
|
129
|
+
"""
|
|
118
130
|
return pulumi.get(self, "names")
|
|
119
131
|
|
|
120
132
|
@property
|
|
@@ -135,16 +147,25 @@ class GetClustersResult:
|
|
|
135
147
|
@property
|
|
136
148
|
@pulumi.getter(name="resourceGroupId")
|
|
137
149
|
def resource_group_id(self) -> Optional[str]:
|
|
150
|
+
"""
|
|
151
|
+
The resource group id of the resource.
|
|
152
|
+
"""
|
|
138
153
|
return pulumi.get(self, "resource_group_id")
|
|
139
154
|
|
|
140
155
|
@property
|
|
141
156
|
@pulumi.getter
|
|
142
157
|
def tags(self) -> Optional[Mapping[str, str]]:
|
|
158
|
+
"""
|
|
159
|
+
A mapping of tags to assign to the resource.
|
|
160
|
+
"""
|
|
143
161
|
return pulumi.get(self, "tags")
|
|
144
162
|
|
|
145
163
|
@property
|
|
146
164
|
@pulumi.getter(name="totalCount")
|
|
147
165
|
def total_count(self) -> int:
|
|
166
|
+
"""
|
|
167
|
+
The total count of list clusters.
|
|
168
|
+
"""
|
|
148
169
|
return pulumi.get(self, "total_count")
|
|
149
170
|
|
|
150
171
|
|
|
@@ -186,13 +207,13 @@ def get_clusters(cluster_name: Optional[str] = None,
|
|
|
186
207
|
"""
|
|
187
208
|
This data source provides the Emr Clusters of the current Alibaba Cloud user.
|
|
188
209
|
|
|
189
|
-
> **NOTE:** Available
|
|
210
|
+
> **NOTE:** Available since v1.199.0.
|
|
190
211
|
|
|
191
212
|
|
|
192
213
|
:param str cluster_name: The cluster name.
|
|
193
214
|
:param Sequence[str] cluster_states: The cluster states.
|
|
194
215
|
:param Sequence[str] cluster_types: The cluster types.
|
|
195
|
-
:param Sequence[str] ids: A list of Cluster
|
|
216
|
+
:param Sequence[str] ids: A list of Cluster IDs.
|
|
196
217
|
:param int max_results: The max results is used to list clusters for next page.
|
|
197
218
|
:param str name_regex: A regex string to filter results by Cluster name.
|
|
198
219
|
:param str next_token: The next token is used to list clusters for next page.
|
|
@@ -250,13 +271,13 @@ def get_clusters_output(cluster_name: Optional[pulumi.Input[Optional[str]]] = No
|
|
|
250
271
|
"""
|
|
251
272
|
This data source provides the Emr Clusters of the current Alibaba Cloud user.
|
|
252
273
|
|
|
253
|
-
> **NOTE:** Available
|
|
274
|
+
> **NOTE:** Available since v1.199.0.
|
|
254
275
|
|
|
255
276
|
|
|
256
277
|
:param str cluster_name: The cluster name.
|
|
257
278
|
:param Sequence[str] cluster_states: The cluster states.
|
|
258
279
|
:param Sequence[str] cluster_types: The cluster types.
|
|
259
|
-
:param Sequence[str] ids: A list of Cluster
|
|
280
|
+
:param Sequence[str] ids: A list of Cluster IDs.
|
|
260
281
|
:param int max_results: The max results is used to list clusters for next page.
|
|
261
282
|
:param str name_regex: A regex string to filter results by Cluster name.
|
|
262
283
|
:param str next_token: The next token is used to list clusters for next page.
|
pulumi_alicloud/emrv2/outputs.py
CHANGED
|
@@ -579,23 +579,23 @@ class ClusterNodeGroup(dict):
|
|
|
579
579
|
with_public_ip: Optional[bool] = None):
|
|
580
580
|
"""
|
|
581
581
|
:param Sequence['ClusterNodeGroupDataDiskArgs'] data_disks: Host Ecs data disks information in this node group. See `data_disks` below.
|
|
582
|
-
:param Sequence[str] instance_types: Host Ecs instance types.
|
|
582
|
+
:param Sequence[str] instance_types: Host Ecs instance types. **NOTE:** From version 1.230.1, `instance_types` can not be modified.
|
|
583
583
|
:param int node_count: Host Ecs number in this node group.
|
|
584
584
|
:param str node_group_name: The node group name of emr cluster.
|
|
585
585
|
:param 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.
|
|
586
586
|
:param 'ClusterNodeGroupSystemDiskArgs' system_disk: Host Ecs system disk information in this node group. See `system_disk` below.
|
|
587
|
-
:param Sequence[str] additional_security_group_ids: Additional security Group IDS for Cluster, you can also specify this key for each node group.
|
|
587
|
+
:param Sequence[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.230.1, `additional_security_group_ids` can not be modified.
|
|
588
588
|
:param 'ClusterNodeGroupAutoScalingPolicyArgs' auto_scaling_policy: The node group auto scaling policy for emr cluster. See `auto_scaling_policy` below.
|
|
589
|
-
:param 'ClusterNodeGroupCostOptimizedConfigArgs' cost_optimized_config: The detail cost optimized configuration of emr cluster. See `cost_optimized_config` below.
|
|
590
|
-
:param str deployment_set_strategy: Deployment set strategy for this cluster node group. Supported value: NONE, CLUSTER or NODE_GROUP.
|
|
589
|
+
:param 'ClusterNodeGroupCostOptimizedConfigArgs' cost_optimized_config: The detail cost optimized configuration of emr cluster. See `cost_optimized_config` below. **NOTE:** From version 1.230.1, `cost_optimized_config` can not be modified.
|
|
590
|
+
:param str deployment_set_strategy: Deployment set strategy for this cluster node group. Supported value: NONE, CLUSTER or NODE_GROUP. **NOTE:** From version 1.230.1, `deployment_set_strategy` can not be modified.
|
|
591
591
|
:param bool graceful_shutdown: Enable emr cluster of task node graceful decommission, ’true’ or ‘false’ .
|
|
592
592
|
:param str node_resize_strategy: Node resize strategy for this cluster node group. Supported value: PRIORITY, COST_OPTIMIZED.
|
|
593
593
|
:param str payment_type: Payment Type for this cluster. Supported value: PayAsYouGo or Subscription.
|
|
594
594
|
:param Sequence['ClusterNodeGroupSpotBidPriceArgs'] spot_bid_prices: The spot bid prices of a PayAsYouGo instance. See `spot_bid_prices` below.
|
|
595
595
|
:param bool spot_instance_remedy: Whether to replace spot instances with newly created spot/onDemand instance when receive a spot recycling message.
|
|
596
596
|
:param 'ClusterNodeGroupSubscriptionConfigArgs' subscription_config: The detail configuration of subscription payment type. See `subscription_config` below.
|
|
597
|
-
:param Sequence[str] vswitch_ids: Global vSwitch ids, you can also specify it in node group.
|
|
598
|
-
:param bool with_public_ip: Whether the node has a public IP address enabled.
|
|
597
|
+
:param Sequence[str] vswitch_ids: Global vSwitch ids, you can also specify it in node group. **NOTE:** From version 1.230.1, `vswitch_ids` can not be modified.
|
|
598
|
+
:param bool with_public_ip: Whether the node has a public IP address enabled. **NOTE:** From version 1.230.1, `with_public_ip` can not be modified.
|
|
599
599
|
"""
|
|
600
600
|
pulumi.set(__self__, "data_disks", data_disks)
|
|
601
601
|
pulumi.set(__self__, "instance_types", instance_types)
|
|
@@ -640,7 +640,7 @@ class ClusterNodeGroup(dict):
|
|
|
640
640
|
@pulumi.getter(name="instanceTypes")
|
|
641
641
|
def instance_types(self) -> Sequence[str]:
|
|
642
642
|
"""
|
|
643
|
-
Host Ecs instance types.
|
|
643
|
+
Host Ecs instance types. **NOTE:** From version 1.230.1, `instance_types` can not be modified.
|
|
644
644
|
"""
|
|
645
645
|
return pulumi.get(self, "instance_types")
|
|
646
646
|
|
|
@@ -680,7 +680,7 @@ class ClusterNodeGroup(dict):
|
|
|
680
680
|
@pulumi.getter(name="additionalSecurityGroupIds")
|
|
681
681
|
def additional_security_group_ids(self) -> Optional[Sequence[str]]:
|
|
682
682
|
"""
|
|
683
|
-
Additional security Group IDS for Cluster, you can also specify this key for each node group.
|
|
683
|
+
Additional security Group IDS for Cluster, you can also specify this key for each node group. **NOTE:** From version 1.230.1, `additional_security_group_ids` can not be modified.
|
|
684
684
|
"""
|
|
685
685
|
return pulumi.get(self, "additional_security_group_ids")
|
|
686
686
|
|
|
@@ -696,7 +696,7 @@ class ClusterNodeGroup(dict):
|
|
|
696
696
|
@pulumi.getter(name="costOptimizedConfig")
|
|
697
697
|
def cost_optimized_config(self) -> Optional['outputs.ClusterNodeGroupCostOptimizedConfig']:
|
|
698
698
|
"""
|
|
699
|
-
The detail cost optimized configuration of emr cluster. See `cost_optimized_config` below.
|
|
699
|
+
The detail cost optimized configuration of emr cluster. See `cost_optimized_config` below. **NOTE:** From version 1.230.1, `cost_optimized_config` can not be modified.
|
|
700
700
|
"""
|
|
701
701
|
return pulumi.get(self, "cost_optimized_config")
|
|
702
702
|
|
|
@@ -704,7 +704,7 @@ class ClusterNodeGroup(dict):
|
|
|
704
704
|
@pulumi.getter(name="deploymentSetStrategy")
|
|
705
705
|
def deployment_set_strategy(self) -> Optional[str]:
|
|
706
706
|
"""
|
|
707
|
-
Deployment set strategy for this cluster node group. Supported value: NONE, CLUSTER or NODE_GROUP.
|
|
707
|
+
Deployment set strategy for this cluster node group. Supported value: NONE, CLUSTER or NODE_GROUP. **NOTE:** From version 1.230.1, `deployment_set_strategy` can not be modified.
|
|
708
708
|
"""
|
|
709
709
|
return pulumi.get(self, "deployment_set_strategy")
|
|
710
710
|
|
|
@@ -760,7 +760,7 @@ class ClusterNodeGroup(dict):
|
|
|
760
760
|
@pulumi.getter(name="vswitchIds")
|
|
761
761
|
def vswitch_ids(self) -> Optional[Sequence[str]]:
|
|
762
762
|
"""
|
|
763
|
-
Global vSwitch ids, you can also specify it in node group.
|
|
763
|
+
Global vSwitch ids, you can also specify it in node group. **NOTE:** From version 1.230.1, `vswitch_ids` can not be modified.
|
|
764
764
|
"""
|
|
765
765
|
return pulumi.get(self, "vswitch_ids")
|
|
766
766
|
|
|
@@ -768,7 +768,7 @@ class ClusterNodeGroup(dict):
|
|
|
768
768
|
@pulumi.getter(name="withPublicIp")
|
|
769
769
|
def with_public_ip(self) -> Optional[bool]:
|
|
770
770
|
"""
|
|
771
|
-
Whether the node has a public IP address enabled.
|
|
771
|
+
Whether the node has a public IP address enabled. **NOTE:** From version 1.230.1, `with_public_ip` can not be modified.
|
|
772
772
|
"""
|
|
773
773
|
return pulumi.get(self, "with_public_ip")
|
|
774
774
|
|
|
@@ -1456,7 +1456,7 @@ class ClusterNodeGroupDataDisk(dict):
|
|
|
1456
1456
|
count: Optional[int] = None,
|
|
1457
1457
|
performance_level: Optional[str] = None):
|
|
1458
1458
|
"""
|
|
1459
|
-
:param str category: The type of the data disk. Valid values: `cloud_efficiency`
|
|
1459
|
+
:param str category: The type of the data disk. Valid values: `cloud_efficiency`, `cloud_essd`, `cloud`, `local_hdd_pro`, `local_disk`, `local_ssd_pro`. **NOTE:** Since version v1.230.0, the categories `cloud`, `local_hdd_pro`, `local_disk`, `local_ssd_pro` are available.
|
|
1460
1460
|
:param int size: The size of a data disk, at least 40. Unit: GiB.
|
|
1461
1461
|
:param int count: The count of a data disk.
|
|
1462
1462
|
:param str performance_level: Worker node data disk performance level, when `category` values `cloud_essd`, the optional values are `PL0`, `PL1`, `PL2` or `PL3`, but the specific performance level is related to the disk capacity.
|
|
@@ -1472,7 +1472,7 @@ class ClusterNodeGroupDataDisk(dict):
|
|
|
1472
1472
|
@pulumi.getter
|
|
1473
1473
|
def category(self) -> str:
|
|
1474
1474
|
"""
|
|
1475
|
-
The type of the data disk. Valid values: `cloud_efficiency`
|
|
1475
|
+
The type of the data disk. Valid values: `cloud_efficiency`, `cloud_essd`, `cloud`, `local_hdd_pro`, `local_disk`, `local_ssd_pro`. **NOTE:** Since version v1.230.0, the categories `cloud`, `local_hdd_pro`, `local_disk`, `local_ssd_pro` are available.
|
|
1476
1476
|
"""
|
|
1477
1477
|
return pulumi.get(self, "category")
|
|
1478
1478
|
|
|
@@ -1588,7 +1588,7 @@ class ClusterNodeGroupSubscriptionConfig(dict):
|
|
|
1588
1588
|
"""
|
|
1589
1589
|
:param int payment_duration: If paymentType is Subscription, this should be specified. Supported value: 1、2、3、4、5、6、7、8、9、12、24、36、48.
|
|
1590
1590
|
:param str payment_duration_unit: If paymentType is Subscription, this should be specified. Supported value: Month or Year.
|
|
1591
|
-
:param bool auto_pay_order: Auto pay order for payment type of subscription, ’true’ or ‘false’ .
|
|
1591
|
+
:param bool auto_pay_order: Auto pay order for payment type of subscription, ’true’ or ‘false’ . Default value is ’true’.
|
|
1592
1592
|
:param bool auto_renew: Auto renew for prepaid, ’true’ or ‘false’ . Default value: false.
|
|
1593
1593
|
:param int auto_renew_duration: If paymentType is Subscription, this should be specified. Supported value: 1、2、3、4、5、6、7、8、9、12、24、36、48.
|
|
1594
1594
|
:param str auto_renew_duration_unit: If paymentType is Subscription, this should be specified. Supported value: Month or Year.
|
|
@@ -1624,7 +1624,7 @@ class ClusterNodeGroupSubscriptionConfig(dict):
|
|
|
1624
1624
|
@pulumi.getter(name="autoPayOrder")
|
|
1625
1625
|
def auto_pay_order(self) -> Optional[bool]:
|
|
1626
1626
|
"""
|
|
1627
|
-
Auto pay order for payment type of subscription, ’true’ or ‘false’ .
|
|
1627
|
+
Auto pay order for payment type of subscription, ’true’ or ‘false’ . Default value is ’true’.
|
|
1628
1628
|
"""
|
|
1629
1629
|
return pulumi.get(self, "auto_pay_order")
|
|
1630
1630
|
|
|
@@ -1678,7 +1678,7 @@ class ClusterNodeGroupSystemDisk(dict):
|
|
|
1678
1678
|
count: Optional[int] = None,
|
|
1679
1679
|
performance_level: Optional[str] = None):
|
|
1680
1680
|
"""
|
|
1681
|
-
:param str category: The type of the data disk. Valid values: `cloud_efficiency`
|
|
1681
|
+
:param str category: The type of the data disk. Valid values: `cloud_efficiency`, `cloud_essd`, `cloud`, `local_hdd_pro`, `local_disk`, `local_ssd_pro`. **NOTE:** Since version v1.230.0, the categories `cloud`, `local_hdd_pro`, `local_disk`, `local_ssd_pro` are available.
|
|
1682
1682
|
:param int size: The size of a data disk, at least 40. Unit: GiB.
|
|
1683
1683
|
:param int count: The count of a data disk.
|
|
1684
1684
|
:param str performance_level: Worker node data disk performance level, when `category` values `cloud_essd`, the optional values are `PL0`, `PL1`, `PL2` or `PL3`, but the specific performance level is related to the disk capacity.
|
|
@@ -1694,7 +1694,7 @@ class ClusterNodeGroupSystemDisk(dict):
|
|
|
1694
1694
|
@pulumi.getter
|
|
1695
1695
|
def category(self) -> str:
|
|
1696
1696
|
"""
|
|
1697
|
-
The type of the data disk. Valid values: `cloud_efficiency`
|
|
1697
|
+
The type of the data disk. Valid values: `cloud_efficiency`, `cloud_essd`, `cloud`, `local_hdd_pro`, `local_disk`, `local_ssd_pro`. **NOTE:** Since version v1.230.0, the categories `cloud`, `local_hdd_pro`, `local_disk`, `local_ssd_pro` are available.
|
|
1698
1698
|
"""
|
|
1699
1699
|
return pulumi.get(self, "category")
|
|
1700
1700
|
|
|
@@ -1762,7 +1762,7 @@ class ClusterSubscriptionConfig(dict):
|
|
|
1762
1762
|
"""
|
|
1763
1763
|
:param int payment_duration: If paymentType is Subscription, this should be specified. Supported value: 1、2、3、4、5、6、7、8、9、12、24、36、48.
|
|
1764
1764
|
:param str payment_duration_unit: If paymentType is Subscription, this should be specified. Supported value: Month or Year.
|
|
1765
|
-
:param bool auto_pay_order: Auto pay order for payment type of subscription, ’true’ or ‘false’ .
|
|
1765
|
+
:param bool auto_pay_order: Auto pay order for payment type of subscription, ’true’ or ‘false’ . Default value is ’true’.
|
|
1766
1766
|
:param bool auto_renew: Auto renew for prepaid, ’true’ or ‘false’ . Default value: false.
|
|
1767
1767
|
:param int auto_renew_duration: If paymentType is Subscription, this should be specified. Supported value: 1、2、3、4、5、6、7、8、9、12、24、36、48.
|
|
1768
1768
|
:param str auto_renew_duration_unit: If paymentType is Subscription, this should be specified. Supported value: Month or Year.
|
|
@@ -1798,7 +1798,7 @@ class ClusterSubscriptionConfig(dict):
|
|
|
1798
1798
|
@pulumi.getter(name="autoPayOrder")
|
|
1799
1799
|
def auto_pay_order(self) -> Optional[bool]:
|
|
1800
1800
|
"""
|
|
1801
|
-
Auto pay order for payment type of subscription, ’true’ or ‘false’ .
|
|
1801
|
+
Auto pay order for payment type of subscription, ’true’ or ‘false’ . Default value is ’true’.
|
|
1802
1802
|
"""
|
|
1803
1803
|
return pulumi.get(self, "auto_pay_order")
|
|
1804
1804
|
|
|
@@ -1846,7 +1846,7 @@ class GetClustersClusterResult(dict):
|
|
|
1846
1846
|
tags: Sequence['outputs.GetClustersClusterTagResult']):
|
|
1847
1847
|
"""
|
|
1848
1848
|
:param str cluster_id: The first ID of the resource.
|
|
1849
|
-
:param str cluster_name: The name
|
|
1849
|
+
:param str cluster_name: The cluster name.
|
|
1850
1850
|
:param str cluster_state: The state of the emr cluster.
|
|
1851
1851
|
:param str cluster_type: The type of the emr cluster.
|
|
1852
1852
|
:param str create_time: The creation time of the resource.
|
|
@@ -1856,7 +1856,7 @@ class GetClustersClusterResult(dict):
|
|
|
1856
1856
|
:param str payment_type: The payment type of the emr cluster.
|
|
1857
1857
|
:param str ready_time: The ready time of the resource.
|
|
1858
1858
|
:param str release_version: The release version of the resource.
|
|
1859
|
-
:param str resource_group_id: The
|
|
1859
|
+
:param str resource_group_id: The Resource Group ID.
|
|
1860
1860
|
:param Mapping[str, str] state_change_reason: The cluster state change reason.
|
|
1861
1861
|
:param Sequence['GetClustersClusterTagArgs'] tags: A mapping of tags to assign to the resource.
|
|
1862
1862
|
"""
|
|
@@ -1887,7 +1887,7 @@ class GetClustersClusterResult(dict):
|
|
|
1887
1887
|
@pulumi.getter(name="clusterName")
|
|
1888
1888
|
def cluster_name(self) -> str:
|
|
1889
1889
|
"""
|
|
1890
|
-
The name
|
|
1890
|
+
The cluster name.
|
|
1891
1891
|
"""
|
|
1892
1892
|
return pulumi.get(self, "cluster_name")
|
|
1893
1893
|
|
|
@@ -1967,7 +1967,7 @@ class GetClustersClusterResult(dict):
|
|
|
1967
1967
|
@pulumi.getter(name="resourceGroupId")
|
|
1968
1968
|
def resource_group_id(self) -> str:
|
|
1969
1969
|
"""
|
|
1970
|
-
The
|
|
1970
|
+
The Resource Group ID.
|
|
1971
1971
|
"""
|
|
1972
1972
|
return pulumi.get(self, "resource_group_id")
|
|
1973
1973
|
|
pulumi_alicloud/ens/_inputs.py
CHANGED
|
@@ -12,12 +12,16 @@ from .. import _utilities
|
|
|
12
12
|
__all__ = [
|
|
13
13
|
'InstanceDataDiskArgs',
|
|
14
14
|
'InstanceSystemDiskArgs',
|
|
15
|
+
'LoadBalancerBackendServerArgs',
|
|
15
16
|
]
|
|
16
17
|
|
|
17
18
|
@pulumi.input_type
|
|
18
19
|
class InstanceDataDiskArgs:
|
|
19
20
|
def __init__(__self__, *,
|
|
20
21
|
category: Optional[pulumi.Input[str]] = None,
|
|
22
|
+
disk_id: Optional[pulumi.Input[str]] = None,
|
|
23
|
+
encrypt_key_id: Optional[pulumi.Input[str]] = None,
|
|
24
|
+
encrypted: Optional[pulumi.Input[bool]] = None,
|
|
21
25
|
size: Optional[pulumi.Input[int]] = None):
|
|
22
26
|
"""
|
|
23
27
|
:param pulumi.Input[str] category: Data disk type. Optional values:
|
|
@@ -25,10 +29,19 @@ class InstanceDataDiskArgs:
|
|
|
25
29
|
- cloud_ssd: Full Flash cloud disk
|
|
26
30
|
- local_hdd: local hdd disk
|
|
27
31
|
- local_ssd: local disk ssd.
|
|
32
|
+
:param pulumi.Input[str] disk_id: Cloud Disk ID.
|
|
33
|
+
:param pulumi.Input[str] encrypt_key_id: The ID of the KMS key used by the cloud disk.
|
|
34
|
+
:param pulumi.Input[bool] encrypted: Whether to encrypt the cloud disk. Value range: true: Yes false (default): No.
|
|
28
35
|
:param pulumi.Input[int] size: Data disk size, unit: GB.
|
|
29
36
|
"""
|
|
30
37
|
if category is not None:
|
|
31
38
|
pulumi.set(__self__, "category", category)
|
|
39
|
+
if disk_id is not None:
|
|
40
|
+
pulumi.set(__self__, "disk_id", disk_id)
|
|
41
|
+
if encrypt_key_id is not None:
|
|
42
|
+
pulumi.set(__self__, "encrypt_key_id", encrypt_key_id)
|
|
43
|
+
if encrypted is not None:
|
|
44
|
+
pulumi.set(__self__, "encrypted", encrypted)
|
|
32
45
|
if size is not None:
|
|
33
46
|
pulumi.set(__self__, "size", size)
|
|
34
47
|
|
|
@@ -48,6 +61,42 @@ class InstanceDataDiskArgs:
|
|
|
48
61
|
def category(self, value: Optional[pulumi.Input[str]]):
|
|
49
62
|
pulumi.set(self, "category", value)
|
|
50
63
|
|
|
64
|
+
@property
|
|
65
|
+
@pulumi.getter(name="diskId")
|
|
66
|
+
def disk_id(self) -> Optional[pulumi.Input[str]]:
|
|
67
|
+
"""
|
|
68
|
+
Cloud Disk ID.
|
|
69
|
+
"""
|
|
70
|
+
return pulumi.get(self, "disk_id")
|
|
71
|
+
|
|
72
|
+
@disk_id.setter
|
|
73
|
+
def disk_id(self, value: Optional[pulumi.Input[str]]):
|
|
74
|
+
pulumi.set(self, "disk_id", value)
|
|
75
|
+
|
|
76
|
+
@property
|
|
77
|
+
@pulumi.getter(name="encryptKeyId")
|
|
78
|
+
def encrypt_key_id(self) -> Optional[pulumi.Input[str]]:
|
|
79
|
+
"""
|
|
80
|
+
The ID of the KMS key used by the cloud disk.
|
|
81
|
+
"""
|
|
82
|
+
return pulumi.get(self, "encrypt_key_id")
|
|
83
|
+
|
|
84
|
+
@encrypt_key_id.setter
|
|
85
|
+
def encrypt_key_id(self, value: Optional[pulumi.Input[str]]):
|
|
86
|
+
pulumi.set(self, "encrypt_key_id", value)
|
|
87
|
+
|
|
88
|
+
@property
|
|
89
|
+
@pulumi.getter
|
|
90
|
+
def encrypted(self) -> Optional[pulumi.Input[bool]]:
|
|
91
|
+
"""
|
|
92
|
+
Whether to encrypt the cloud disk. Value range: true: Yes false (default): No.
|
|
93
|
+
"""
|
|
94
|
+
return pulumi.get(self, "encrypted")
|
|
95
|
+
|
|
96
|
+
@encrypted.setter
|
|
97
|
+
def encrypted(self, value: Optional[pulumi.Input[bool]]):
|
|
98
|
+
pulumi.set(self, "encrypted", value)
|
|
99
|
+
|
|
51
100
|
@property
|
|
52
101
|
@pulumi.getter
|
|
53
102
|
def size(self) -> Optional[pulumi.Input[int]]:
|
|
@@ -67,7 +116,7 @@ class InstanceSystemDiskArgs:
|
|
|
67
116
|
category: Optional[pulumi.Input[str]] = None,
|
|
68
117
|
size: Optional[pulumi.Input[int]] = None):
|
|
69
118
|
"""
|
|
70
|
-
:param pulumi.Input[str] category: System disk type.
|
|
119
|
+
:param pulumi.Input[str] category: System disk type. Value
|
|
71
120
|
- cloud_efficiency: Ultra cloud disk
|
|
72
121
|
- cloud_ssd: Full Flash cloud disk
|
|
73
122
|
- local_hdd: local hdd disk
|
|
@@ -83,7 +132,7 @@ class InstanceSystemDiskArgs:
|
|
|
83
132
|
@pulumi.getter
|
|
84
133
|
def category(self) -> Optional[pulumi.Input[str]]:
|
|
85
134
|
"""
|
|
86
|
-
System disk type.
|
|
135
|
+
System disk type. Value
|
|
87
136
|
- cloud_efficiency: Ultra cloud disk
|
|
88
137
|
- cloud_ssd: Full Flash cloud disk
|
|
89
138
|
- local_hdd: local hdd disk
|
|
@@ -108,3 +157,89 @@ class InstanceSystemDiskArgs:
|
|
|
108
157
|
pulumi.set(self, "size", value)
|
|
109
158
|
|
|
110
159
|
|
|
160
|
+
@pulumi.input_type
|
|
161
|
+
class LoadBalancerBackendServerArgs:
|
|
162
|
+
def __init__(__self__, *,
|
|
163
|
+
server_id: pulumi.Input[str],
|
|
164
|
+
ip: Optional[pulumi.Input[str]] = None,
|
|
165
|
+
port: Optional[pulumi.Input[int]] = None,
|
|
166
|
+
type: Optional[pulumi.Input[str]] = None,
|
|
167
|
+
weight: Optional[pulumi.Input[int]] = None):
|
|
168
|
+
"""
|
|
169
|
+
:param pulumi.Input[str] server_id: Backend server instance ID Example value: i-5vb5h5njxiuhn48a * * * *.
|
|
170
|
+
:param pulumi.Input[str] ip: IP address of the backend server Example value: 192.168.0.5.
|
|
171
|
+
:param pulumi.Input[int] port: Port used by the backend server.
|
|
172
|
+
:param pulumi.Input[str] type: Backend server type Example value: ens.
|
|
173
|
+
:param pulumi.Input[int] weight: Weight of the backend server Example value: 100.
|
|
174
|
+
"""
|
|
175
|
+
pulumi.set(__self__, "server_id", server_id)
|
|
176
|
+
if ip is not None:
|
|
177
|
+
pulumi.set(__self__, "ip", ip)
|
|
178
|
+
if port is not None:
|
|
179
|
+
pulumi.set(__self__, "port", port)
|
|
180
|
+
if type is not None:
|
|
181
|
+
pulumi.set(__self__, "type", type)
|
|
182
|
+
if weight is not None:
|
|
183
|
+
pulumi.set(__self__, "weight", weight)
|
|
184
|
+
|
|
185
|
+
@property
|
|
186
|
+
@pulumi.getter(name="serverId")
|
|
187
|
+
def server_id(self) -> pulumi.Input[str]:
|
|
188
|
+
"""
|
|
189
|
+
Backend server instance ID Example value: i-5vb5h5njxiuhn48a * * * *.
|
|
190
|
+
"""
|
|
191
|
+
return pulumi.get(self, "server_id")
|
|
192
|
+
|
|
193
|
+
@server_id.setter
|
|
194
|
+
def server_id(self, value: pulumi.Input[str]):
|
|
195
|
+
pulumi.set(self, "server_id", value)
|
|
196
|
+
|
|
197
|
+
@property
|
|
198
|
+
@pulumi.getter
|
|
199
|
+
def ip(self) -> Optional[pulumi.Input[str]]:
|
|
200
|
+
"""
|
|
201
|
+
IP address of the backend server Example value: 192.168.0.5.
|
|
202
|
+
"""
|
|
203
|
+
return pulumi.get(self, "ip")
|
|
204
|
+
|
|
205
|
+
@ip.setter
|
|
206
|
+
def ip(self, value: Optional[pulumi.Input[str]]):
|
|
207
|
+
pulumi.set(self, "ip", value)
|
|
208
|
+
|
|
209
|
+
@property
|
|
210
|
+
@pulumi.getter
|
|
211
|
+
def port(self) -> Optional[pulumi.Input[int]]:
|
|
212
|
+
"""
|
|
213
|
+
Port used by the backend server.
|
|
214
|
+
"""
|
|
215
|
+
return pulumi.get(self, "port")
|
|
216
|
+
|
|
217
|
+
@port.setter
|
|
218
|
+
def port(self, value: Optional[pulumi.Input[int]]):
|
|
219
|
+
pulumi.set(self, "port", value)
|
|
220
|
+
|
|
221
|
+
@property
|
|
222
|
+
@pulumi.getter
|
|
223
|
+
def type(self) -> Optional[pulumi.Input[str]]:
|
|
224
|
+
"""
|
|
225
|
+
Backend server type Example value: ens.
|
|
226
|
+
"""
|
|
227
|
+
return pulumi.get(self, "type")
|
|
228
|
+
|
|
229
|
+
@type.setter
|
|
230
|
+
def type(self, value: Optional[pulumi.Input[str]]):
|
|
231
|
+
pulumi.set(self, "type", value)
|
|
232
|
+
|
|
233
|
+
@property
|
|
234
|
+
@pulumi.getter
|
|
235
|
+
def weight(self) -> Optional[pulumi.Input[int]]:
|
|
236
|
+
"""
|
|
237
|
+
Weight of the backend server Example value: 100.
|
|
238
|
+
"""
|
|
239
|
+
return pulumi.get(self, "weight")
|
|
240
|
+
|
|
241
|
+
@weight.setter
|
|
242
|
+
def weight(self, value: Optional[pulumi.Input[int]]):
|
|
243
|
+
pulumi.set(self, "weight", value)
|
|
244
|
+
|
|
245
|
+
|