pulumi-alicloud 3.68.0__py3-none-any.whl → 3.68.0a1732598392__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.

Files changed (45) hide show
  1. pulumi_alicloud/__init__.py +0 -40
  2. pulumi_alicloud/cdn/_inputs.py +23 -3
  3. pulumi_alicloud/cdn/domain_new.py +51 -93
  4. pulumi_alicloud/cdn/outputs.py +16 -2
  5. pulumi_alicloud/cdn/real_time_log_delivery.py +46 -97
  6. pulumi_alicloud/cen/get_flowlogs.py +35 -250
  7. pulumi_alicloud/cen/outputs.py +17 -116
  8. pulumi_alicloud/cs/node_pool.py +0 -7
  9. pulumi_alicloud/ecs/_inputs.py +0 -92
  10. pulumi_alicloud/ecs/auto_snapshot_policy.py +129 -323
  11. pulumi_alicloud/ecs/outputs.py +0 -88
  12. pulumi_alicloud/ecs/snapshot_policy.py +1 -154
  13. pulumi_alicloud/emrv2/_inputs.py +21 -875
  14. pulumi_alicloud/emrv2/cluster.py +0 -47
  15. pulumi_alicloud/emrv2/outputs.py +14 -580
  16. pulumi_alicloud/gwlb/__init__.py +0 -1
  17. pulumi_alicloud/gwlb/_inputs.py +126 -147
  18. pulumi_alicloud/gwlb/listener.py +50 -50
  19. pulumi_alicloud/gwlb/load_balancer.py +71 -78
  20. pulumi_alicloud/gwlb/outputs.py +84 -139
  21. pulumi_alicloud/gwlb/server_group.py +113 -162
  22. pulumi_alicloud/kvstore/audit_log_config.py +7 -7
  23. pulumi_alicloud/kvstore/backup_policy.py +9 -9
  24. pulumi_alicloud/kvstore/get_instance_classes.py +8 -8
  25. pulumi_alicloud/kvstore/get_instances.py +7 -9
  26. pulumi_alicloud/kvstore/instance.py +21 -21
  27. pulumi_alicloud/kvstore/outputs.py +6 -6
  28. pulumi_alicloud/nas/_inputs.py +0 -148
  29. pulumi_alicloud/nas/file_system.py +222 -482
  30. pulumi_alicloud/nas/outputs.py +0 -109
  31. pulumi_alicloud/pai/__init__.py +0 -7
  32. pulumi_alicloud/pai/workspace_workspace.py +6 -6
  33. pulumi_alicloud/pulumi-plugin.json +1 -1
  34. {pulumi_alicloud-3.68.0.dist-info → pulumi_alicloud-3.68.0a1732598392.dist-info}/METADATA +1 -1
  35. {pulumi_alicloud-3.68.0.dist-info → pulumi_alicloud-3.68.0a1732598392.dist-info}/RECORD +37 -45
  36. pulumi_alicloud/gwlb/get_zones.py +0 -173
  37. pulumi_alicloud/pai/_inputs.py +0 -129
  38. pulumi_alicloud/pai/outputs.py +0 -83
  39. pulumi_alicloud/pai/workspace_code_source.py +0 -702
  40. pulumi_alicloud/pai/workspace_dataset.py +0 -1081
  41. pulumi_alicloud/pai/workspace_datasetversion.py +0 -818
  42. pulumi_alicloud/pai/workspace_experiment.py +0 -394
  43. pulumi_alicloud/pai/workspace_run.py +0 -344
  44. {pulumi_alicloud-3.68.0.dist-info → pulumi_alicloud-3.68.0a1732598392.dist-info}/WHEEL +0 -0
  45. {pulumi_alicloud-3.68.0.dist-info → pulumi_alicloud-3.68.0a1732598392.dist-info}/top_level.txt +0 -0
@@ -25,22 +25,6 @@ __all__ = [
25
25
  'ClusterNodeAttributeArgsDict',
26
26
  'ClusterNodeGroupArgs',
27
27
  'ClusterNodeGroupArgsDict',
28
- 'ClusterNodeGroupAckConfigArgs',
29
- 'ClusterNodeGroupAckConfigArgsDict',
30
- 'ClusterNodeGroupAckConfigCustomAnnotationArgs',
31
- 'ClusterNodeGroupAckConfigCustomAnnotationArgsDict',
32
- 'ClusterNodeGroupAckConfigCustomLabelArgs',
33
- 'ClusterNodeGroupAckConfigCustomLabelArgsDict',
34
- 'ClusterNodeGroupAckConfigNodeSelectorArgs',
35
- 'ClusterNodeGroupAckConfigNodeSelectorArgsDict',
36
- 'ClusterNodeGroupAckConfigPvcArgs',
37
- 'ClusterNodeGroupAckConfigPvcArgsDict',
38
- 'ClusterNodeGroupAckConfigTolerationArgs',
39
- 'ClusterNodeGroupAckConfigTolerationArgsDict',
40
- 'ClusterNodeGroupAckConfigVolumeArgs',
41
- 'ClusterNodeGroupAckConfigVolumeArgsDict',
42
- 'ClusterNodeGroupAckConfigVolumeMountArgs',
43
- 'ClusterNodeGroupAckConfigVolumeMountArgsDict',
44
28
  'ClusterNodeGroupAutoScalingPolicyArgs',
45
29
  'ClusterNodeGroupAutoScalingPolicyArgsDict',
46
30
  'ClusterNodeGroupAutoScalingPolicyConstraintsArgs',
@@ -245,7 +229,7 @@ if not MYPY:
245
229
  class ClusterBootstrapScriptArgsDict(TypedDict):
246
230
  execution_fail_strategy: pulumi.Input[str]
247
231
  """
248
- The bootstrap scripts execution fail strategy, ’FAILED_BLOCK’ or ‘FAILED_CONTINUE’ .
232
+ The bootstrap scripts execution fail strategy, ’FAILED_BLOCKED’ or ‘FAILED_CONTINUE’ .
249
233
  """
250
234
  execution_moment: pulumi.Input[str]
251
235
  """
@@ -285,7 +269,7 @@ class ClusterBootstrapScriptArgs:
285
269
  script_path: pulumi.Input[str],
286
270
  priority: Optional[pulumi.Input[int]] = None):
287
271
  """
288
- :param pulumi.Input[str] execution_fail_strategy: The bootstrap scripts execution fail strategy, ’FAILED_BLOCK’ or ‘FAILED_CONTINUE’ .
272
+ :param pulumi.Input[str] execution_fail_strategy: The bootstrap scripts execution fail strategy, ’FAILED_BLOCKED’ or ‘FAILED_CONTINUE’ .
289
273
  :param pulumi.Input[str] execution_moment: The bootstrap scripts execution moment, ’BEFORE_INSTALL’ or ‘AFTER_STARTED’ .
290
274
  :param pulumi.Input['ClusterBootstrapScriptNodeSelectorArgs'] node_selector: The bootstrap scripts execution target. See `node_selector` below.
291
275
  :param pulumi.Input[str] script_args: The bootstrap script args, e.g. "--a=b".
@@ -309,7 +293,7 @@ class ClusterBootstrapScriptArgs:
309
293
  @pulumi.getter(name="executionFailStrategy")
310
294
  def execution_fail_strategy(self) -> pulumi.Input[str]:
311
295
  """
312
- The bootstrap scripts execution fail strategy, ’FAILED_BLOCK’ or ‘FAILED_CONTINUE’ .
296
+ The bootstrap scripts execution fail strategy, ’FAILED_BLOCKED’ or ‘FAILED_CONTINUE’ .
313
297
  """
314
298
  return pulumi.get(self, "execution_fail_strategy")
315
299
 
@@ -691,7 +675,7 @@ if not MYPY:
691
675
  """
692
676
  instance_types: pulumi.Input[Sequence[pulumi.Input[str]]]
693
677
  """
694
- Host Ecs instance types. **NOTE:** From version 1.236.0, `instance_types` can be modified.
678
+ Host Ecs instance types. **NOTE:** From version 1.230.1, `instance_types` can not be modified.
695
679
  """
696
680
  node_count: pulumi.Input[int]
697
681
  """
@@ -709,13 +693,9 @@ if not MYPY:
709
693
  """
710
694
  Host Ecs system disk information in this node group. See `system_disk` below.
711
695
  """
712
- ack_config: NotRequired[pulumi.Input['ClusterNodeGroupAckConfigArgsDict']]
713
- """
714
- The node group of ack configuration for emr cluster to deploying on kubernetes. See `ack_config` below.
715
- """
716
696
  additional_security_group_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
717
697
  """
718
- Additional security Group IDS for Cluster, you can also specify this key for each node group. **NOTE:** From version 1.236.0, `additional_security_group_ids` can be modified.
698
+ 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.
719
699
  """
720
700
  auto_scaling_policy: NotRequired[pulumi.Input['ClusterNodeGroupAutoScalingPolicyArgsDict']]
721
701
  """
@@ -723,11 +703,11 @@ if not MYPY:
723
703
  """
724
704
  cost_optimized_config: NotRequired[pulumi.Input['ClusterNodeGroupCostOptimizedConfigArgsDict']]
725
705
  """
726
- The detail cost optimized configuration of emr cluster. See `cost_optimized_config` below. **NOTE:** From version 1.236.0, `cost_optimized_config` can be modified.
706
+ 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.
727
707
  """
728
708
  deployment_set_strategy: NotRequired[pulumi.Input[str]]
729
709
  """
730
- Deployment set strategy for this cluster node group. Supported value: NONE, CLUSTER or NODE_GROUP. **NOTE:** From version 1.236.0, `deployment_set_strategy` can be modified.
710
+ 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.
731
711
  """
732
712
  graceful_shutdown: NotRequired[pulumi.Input[bool]]
733
713
  """
@@ -749,21 +729,17 @@ if not MYPY:
749
729
  """
750
730
  Whether to replace spot instances with newly created spot/onDemand instance when receive a spot recycling message.
751
731
  """
752
- spot_strategy: NotRequired[pulumi.Input[str]]
753
- """
754
- The spot strategy configuration of emr cluster. Valid values: `NoSpot`, `SpotWithPriceLimit`, `SpotAsPriceGo`.
755
- """
756
732
  subscription_config: NotRequired[pulumi.Input['ClusterNodeGroupSubscriptionConfigArgsDict']]
757
733
  """
758
734
  The detail configuration of subscription payment type. See `subscription_config` below.
759
735
  """
760
736
  vswitch_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
761
737
  """
762
- Global vSwitch ids, you can also specify it in node group. **NOTE:** From version 1.236.0, `vswitch_ids` can be modified.
738
+ Global vSwitch ids, you can also specify it in node group. **NOTE:** From version 1.230.1, `vswitch_ids` can not be modified.
763
739
  """
764
740
  with_public_ip: NotRequired[pulumi.Input[bool]]
765
741
  """
766
- Whether the node has a public IP address enabled. **NOTE:** From version 1.236.0, `with_public_ip` can be modified.
742
+ Whether the node has a public IP address enabled. **NOTE:** From version 1.230.1, `with_public_ip` can not be modified.
767
743
  """
768
744
  elif False:
769
745
  ClusterNodeGroupArgsDict: TypeAlias = Mapping[str, Any]
@@ -777,7 +753,6 @@ class ClusterNodeGroupArgs:
777
753
  node_group_name: pulumi.Input[str],
778
754
  node_group_type: pulumi.Input[str],
779
755
  system_disk: pulumi.Input['ClusterNodeGroupSystemDiskArgs'],
780
- ack_config: Optional[pulumi.Input['ClusterNodeGroupAckConfigArgs']] = None,
781
756
  additional_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
782
757
  auto_scaling_policy: Optional[pulumi.Input['ClusterNodeGroupAutoScalingPolicyArgs']] = None,
783
758
  cost_optimized_config: Optional[pulumi.Input['ClusterNodeGroupCostOptimizedConfigArgs']] = None,
@@ -787,31 +762,28 @@ class ClusterNodeGroupArgs:
787
762
  payment_type: Optional[pulumi.Input[str]] = None,
788
763
  spot_bid_prices: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupSpotBidPriceArgs']]]] = None,
789
764
  spot_instance_remedy: Optional[pulumi.Input[bool]] = None,
790
- spot_strategy: Optional[pulumi.Input[str]] = None,
791
765
  subscription_config: Optional[pulumi.Input['ClusterNodeGroupSubscriptionConfigArgs']] = None,
792
766
  vswitch_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
793
767
  with_public_ip: Optional[pulumi.Input[bool]] = None):
794
768
  """
795
769
  :param pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupDataDiskArgs']]] data_disks: Host Ecs data disks information in this node group. See `data_disks` below.
796
- :param pulumi.Input[Sequence[pulumi.Input[str]]] instance_types: Host Ecs instance types. **NOTE:** From version 1.236.0, `instance_types` can be modified.
770
+ :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.
797
771
  :param pulumi.Input[int] node_count: Host Ecs number in this node group.
798
772
  :param pulumi.Input[str] node_group_name: The node group name of emr cluster.
799
773
  :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.
800
774
  :param pulumi.Input['ClusterNodeGroupSystemDiskArgs'] system_disk: Host Ecs system disk information in this node group. See `system_disk` below.
801
- :param pulumi.Input['ClusterNodeGroupAckConfigArgs'] ack_config: The node group of ack configuration for emr cluster to deploying on kubernetes. See `ack_config` below.
802
- :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.236.0, `additional_security_group_ids` can be modified.
775
+ :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.
803
776
  :param pulumi.Input['ClusterNodeGroupAutoScalingPolicyArgs'] auto_scaling_policy: The node group auto scaling policy for emr cluster. See `auto_scaling_policy` below.
804
- :param pulumi.Input['ClusterNodeGroupCostOptimizedConfigArgs'] cost_optimized_config: The detail cost optimized configuration of emr cluster. See `cost_optimized_config` below. **NOTE:** From version 1.236.0, `cost_optimized_config` can be modified.
805
- :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.236.0, `deployment_set_strategy` can be modified.
777
+ :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.
778
+ :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.
806
779
  :param pulumi.Input[bool] graceful_shutdown: Enable emr cluster of task node graceful decommission, ’true’ or ‘false’ .
807
780
  :param pulumi.Input[str] node_resize_strategy: Node resize strategy for this cluster node group. Supported value: PRIORITY, COST_OPTIMIZED.
808
781
  :param pulumi.Input[str] payment_type: Payment Type for this cluster. Supported value: PayAsYouGo or Subscription.
809
782
  :param pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupSpotBidPriceArgs']]] spot_bid_prices: The spot bid prices of a PayAsYouGo instance. See `spot_bid_prices` below.
810
783
  :param pulumi.Input[bool] spot_instance_remedy: Whether to replace spot instances with newly created spot/onDemand instance when receive a spot recycling message.
811
- :param pulumi.Input[str] spot_strategy: The spot strategy configuration of emr cluster. Valid values: `NoSpot`, `SpotWithPriceLimit`, `SpotAsPriceGo`.
812
784
  :param pulumi.Input['ClusterNodeGroupSubscriptionConfigArgs'] subscription_config: The detail configuration of subscription payment type. See `subscription_config` below.
813
- :param pulumi.Input[Sequence[pulumi.Input[str]]] vswitch_ids: Global vSwitch ids, you can also specify it in node group. **NOTE:** From version 1.236.0, `vswitch_ids` can be modified.
814
- :param pulumi.Input[bool] with_public_ip: Whether the node has a public IP address enabled. **NOTE:** From version 1.236.0, `with_public_ip` can be modified.
785
+ :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.
786
+ :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.
815
787
  """
816
788
  pulumi.set(__self__, "data_disks", data_disks)
817
789
  pulumi.set(__self__, "instance_types", instance_types)
@@ -819,8 +791,6 @@ class ClusterNodeGroupArgs:
819
791
  pulumi.set(__self__, "node_group_name", node_group_name)
820
792
  pulumi.set(__self__, "node_group_type", node_group_type)
821
793
  pulumi.set(__self__, "system_disk", system_disk)
822
- if ack_config is not None:
823
- pulumi.set(__self__, "ack_config", ack_config)
824
794
  if additional_security_group_ids is not None:
825
795
  pulumi.set(__self__, "additional_security_group_ids", additional_security_group_ids)
826
796
  if auto_scaling_policy is not None:
@@ -839,8 +809,6 @@ class ClusterNodeGroupArgs:
839
809
  pulumi.set(__self__, "spot_bid_prices", spot_bid_prices)
840
810
  if spot_instance_remedy is not None:
841
811
  pulumi.set(__self__, "spot_instance_remedy", spot_instance_remedy)
842
- if spot_strategy is not None:
843
- pulumi.set(__self__, "spot_strategy", spot_strategy)
844
812
  if subscription_config is not None:
845
813
  pulumi.set(__self__, "subscription_config", subscription_config)
846
814
  if vswitch_ids is not None:
@@ -864,7 +832,7 @@ class ClusterNodeGroupArgs:
864
832
  @pulumi.getter(name="instanceTypes")
865
833
  def instance_types(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
866
834
  """
867
- Host Ecs instance types. **NOTE:** From version 1.236.0, `instance_types` can be modified.
835
+ Host Ecs instance types. **NOTE:** From version 1.230.1, `instance_types` can not be modified.
868
836
  """
869
837
  return pulumi.get(self, "instance_types")
870
838
 
@@ -920,23 +888,11 @@ class ClusterNodeGroupArgs:
920
888
  def system_disk(self, value: pulumi.Input['ClusterNodeGroupSystemDiskArgs']):
921
889
  pulumi.set(self, "system_disk", value)
922
890
 
923
- @property
924
- @pulumi.getter(name="ackConfig")
925
- def ack_config(self) -> Optional[pulumi.Input['ClusterNodeGroupAckConfigArgs']]:
926
- """
927
- The node group of ack configuration for emr cluster to deploying on kubernetes. See `ack_config` below.
928
- """
929
- return pulumi.get(self, "ack_config")
930
-
931
- @ack_config.setter
932
- def ack_config(self, value: Optional[pulumi.Input['ClusterNodeGroupAckConfigArgs']]):
933
- pulumi.set(self, "ack_config", value)
934
-
935
891
  @property
936
892
  @pulumi.getter(name="additionalSecurityGroupIds")
937
893
  def additional_security_group_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
938
894
  """
939
- Additional security Group IDS for Cluster, you can also specify this key for each node group. **NOTE:** From version 1.236.0, `additional_security_group_ids` can be modified.
895
+ 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.
940
896
  """
941
897
  return pulumi.get(self, "additional_security_group_ids")
942
898
 
@@ -960,7 +916,7 @@ class ClusterNodeGroupArgs:
960
916
  @pulumi.getter(name="costOptimizedConfig")
961
917
  def cost_optimized_config(self) -> Optional[pulumi.Input['ClusterNodeGroupCostOptimizedConfigArgs']]:
962
918
  """
963
- The detail cost optimized configuration of emr cluster. See `cost_optimized_config` below. **NOTE:** From version 1.236.0, `cost_optimized_config` can be modified.
919
+ 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.
964
920
  """
965
921
  return pulumi.get(self, "cost_optimized_config")
966
922
 
@@ -972,7 +928,7 @@ class ClusterNodeGroupArgs:
972
928
  @pulumi.getter(name="deploymentSetStrategy")
973
929
  def deployment_set_strategy(self) -> Optional[pulumi.Input[str]]:
974
930
  """
975
- Deployment set strategy for this cluster node group. Supported value: NONE, CLUSTER or NODE_GROUP. **NOTE:** From version 1.236.0, `deployment_set_strategy` can be modified.
931
+ 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.
976
932
  """
977
933
  return pulumi.get(self, "deployment_set_strategy")
978
934
 
@@ -1040,18 +996,6 @@ class ClusterNodeGroupArgs:
1040
996
  def spot_instance_remedy(self, value: Optional[pulumi.Input[bool]]):
1041
997
  pulumi.set(self, "spot_instance_remedy", value)
1042
998
 
1043
- @property
1044
- @pulumi.getter(name="spotStrategy")
1045
- def spot_strategy(self) -> Optional[pulumi.Input[str]]:
1046
- """
1047
- The spot strategy configuration of emr cluster. Valid values: `NoSpot`, `SpotWithPriceLimit`, `SpotAsPriceGo`.
1048
- """
1049
- return pulumi.get(self, "spot_strategy")
1050
-
1051
- @spot_strategy.setter
1052
- def spot_strategy(self, value: Optional[pulumi.Input[str]]):
1053
- pulumi.set(self, "spot_strategy", value)
1054
-
1055
999
  @property
1056
1000
  @pulumi.getter(name="subscriptionConfig")
1057
1001
  def subscription_config(self) -> Optional[pulumi.Input['ClusterNodeGroupSubscriptionConfigArgs']]:
@@ -1068,7 +1012,7 @@ class ClusterNodeGroupArgs:
1068
1012
  @pulumi.getter(name="vswitchIds")
1069
1013
  def vswitch_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
1070
1014
  """
1071
- Global vSwitch ids, you can also specify it in node group. **NOTE:** From version 1.236.0, `vswitch_ids` can be modified.
1015
+ Global vSwitch ids, you can also specify it in node group. **NOTE:** From version 1.230.1, `vswitch_ids` can not be modified.
1072
1016
  """
1073
1017
  return pulumi.get(self, "vswitch_ids")
1074
1018
 
@@ -1080,7 +1024,7 @@ class ClusterNodeGroupArgs:
1080
1024
  @pulumi.getter(name="withPublicIp")
1081
1025
  def with_public_ip(self) -> Optional[pulumi.Input[bool]]:
1082
1026
  """
1083
- Whether the node has a public IP address enabled. **NOTE:** From version 1.236.0, `with_public_ip` can be modified.
1027
+ Whether the node has a public IP address enabled. **NOTE:** From version 1.230.1, `with_public_ip` can not be modified.
1084
1028
  """
1085
1029
  return pulumi.get(self, "with_public_ip")
1086
1030
 
@@ -1089,804 +1033,6 @@ class ClusterNodeGroupArgs:
1089
1033
  pulumi.set(self, "with_public_ip", value)
1090
1034
 
1091
1035
 
1092
- if not MYPY:
1093
- class ClusterNodeGroupAckConfigArgsDict(TypedDict):
1094
- ack_instance_id: pulumi.Input[str]
1095
- """
1096
- The ack cluster instance id.
1097
- """
1098
- limit_cpu: pulumi.Input[float]
1099
- """
1100
- The job pod resource of limit cpu.
1101
- """
1102
- limit_memory: pulumi.Input[float]
1103
- """
1104
- The job pod resource of limit memory.
1105
- """
1106
- namespace: pulumi.Input[str]
1107
- """
1108
- The ack cluster namespace.
1109
- """
1110
- request_cpu: pulumi.Input[float]
1111
- """
1112
- The job pod resource of request cpu.
1113
- """
1114
- request_memory: pulumi.Input[float]
1115
- """
1116
- The job pod resource of request memory.
1117
- """
1118
- custom_annotations: NotRequired[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigCustomAnnotationArgsDict']]]]
1119
- """
1120
- The ack cluster custom annotations. See `custom_annotations` below.
1121
- """
1122
- custom_labels: NotRequired[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigCustomLabelArgsDict']]]]
1123
- """
1124
- The ack cluster custom labels. See `custom_labels` below.
1125
- """
1126
- node_affinity: NotRequired[pulumi.Input[str]]
1127
- """
1128
- The ack cluster node affinity.
1129
- """
1130
- node_selectors: NotRequired[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigNodeSelectorArgsDict']]]]
1131
- """
1132
- The ack cluster node selectors for job pods scheduling. See `node_selectors` below.
1133
- """
1134
- pod_affinity: NotRequired[pulumi.Input[str]]
1135
- """
1136
- The job pod affinity.
1137
- """
1138
- pod_anti_affinity: NotRequired[pulumi.Input[str]]
1139
- """
1140
- The job pod anti-affinity.
1141
- """
1142
- pre_start_commands: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
1143
- """
1144
- The job pod pre start command.
1145
- """
1146
- pvcs: NotRequired[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigPvcArgsDict']]]]
1147
- """
1148
- The ack cluster persistent volume claim. See `pvcs` below.
1149
- """
1150
- tolerations: NotRequired[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigTolerationArgsDict']]]]
1151
- """
1152
- The ack cluster tolerations. See `tolerations` below.
1153
- """
1154
- volume_mounts: NotRequired[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigVolumeMountArgsDict']]]]
1155
- """
1156
- The ack cluster volume mounts. See `volume_mounts` below.
1157
- """
1158
- volumes: NotRequired[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigVolumeArgsDict']]]]
1159
- """
1160
- The ack cluster volumes. See `volumes` below.
1161
- """
1162
- elif False:
1163
- ClusterNodeGroupAckConfigArgsDict: TypeAlias = Mapping[str, Any]
1164
-
1165
- @pulumi.input_type
1166
- class ClusterNodeGroupAckConfigArgs:
1167
- def __init__(__self__, *,
1168
- ack_instance_id: pulumi.Input[str],
1169
- limit_cpu: pulumi.Input[float],
1170
- limit_memory: pulumi.Input[float],
1171
- namespace: pulumi.Input[str],
1172
- request_cpu: pulumi.Input[float],
1173
- request_memory: pulumi.Input[float],
1174
- custom_annotations: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigCustomAnnotationArgs']]]] = None,
1175
- custom_labels: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigCustomLabelArgs']]]] = None,
1176
- node_affinity: Optional[pulumi.Input[str]] = None,
1177
- node_selectors: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigNodeSelectorArgs']]]] = None,
1178
- pod_affinity: Optional[pulumi.Input[str]] = None,
1179
- pod_anti_affinity: Optional[pulumi.Input[str]] = None,
1180
- pre_start_commands: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1181
- pvcs: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigPvcArgs']]]] = None,
1182
- tolerations: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigTolerationArgs']]]] = None,
1183
- volume_mounts: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigVolumeMountArgs']]]] = None,
1184
- volumes: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigVolumeArgs']]]] = None):
1185
- """
1186
- :param pulumi.Input[str] ack_instance_id: The ack cluster instance id.
1187
- :param pulumi.Input[float] limit_cpu: The job pod resource of limit cpu.
1188
- :param pulumi.Input[float] limit_memory: The job pod resource of limit memory.
1189
- :param pulumi.Input[str] namespace: The ack cluster namespace.
1190
- :param pulumi.Input[float] request_cpu: The job pod resource of request cpu.
1191
- :param pulumi.Input[float] request_memory: The job pod resource of request memory.
1192
- :param pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigCustomAnnotationArgs']]] custom_annotations: The ack cluster custom annotations. See `custom_annotations` below.
1193
- :param pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigCustomLabelArgs']]] custom_labels: The ack cluster custom labels. See `custom_labels` below.
1194
- :param pulumi.Input[str] node_affinity: The ack cluster node affinity.
1195
- :param pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigNodeSelectorArgs']]] node_selectors: The ack cluster node selectors for job pods scheduling. See `node_selectors` below.
1196
- :param pulumi.Input[str] pod_affinity: The job pod affinity.
1197
- :param pulumi.Input[str] pod_anti_affinity: The job pod anti-affinity.
1198
- :param pulumi.Input[Sequence[pulumi.Input[str]]] pre_start_commands: The job pod pre start command.
1199
- :param pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigPvcArgs']]] pvcs: The ack cluster persistent volume claim. See `pvcs` below.
1200
- :param pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigTolerationArgs']]] tolerations: The ack cluster tolerations. See `tolerations` below.
1201
- :param pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigVolumeMountArgs']]] volume_mounts: The ack cluster volume mounts. See `volume_mounts` below.
1202
- :param pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigVolumeArgs']]] volumes: The ack cluster volumes. See `volumes` below.
1203
- """
1204
- pulumi.set(__self__, "ack_instance_id", ack_instance_id)
1205
- pulumi.set(__self__, "limit_cpu", limit_cpu)
1206
- pulumi.set(__self__, "limit_memory", limit_memory)
1207
- pulumi.set(__self__, "namespace", namespace)
1208
- pulumi.set(__self__, "request_cpu", request_cpu)
1209
- pulumi.set(__self__, "request_memory", request_memory)
1210
- if custom_annotations is not None:
1211
- pulumi.set(__self__, "custom_annotations", custom_annotations)
1212
- if custom_labels is not None:
1213
- pulumi.set(__self__, "custom_labels", custom_labels)
1214
- if node_affinity is not None:
1215
- pulumi.set(__self__, "node_affinity", node_affinity)
1216
- if node_selectors is not None:
1217
- pulumi.set(__self__, "node_selectors", node_selectors)
1218
- if pod_affinity is not None:
1219
- pulumi.set(__self__, "pod_affinity", pod_affinity)
1220
- if pod_anti_affinity is not None:
1221
- pulumi.set(__self__, "pod_anti_affinity", pod_anti_affinity)
1222
- if pre_start_commands is not None:
1223
- pulumi.set(__self__, "pre_start_commands", pre_start_commands)
1224
- if pvcs is not None:
1225
- pulumi.set(__self__, "pvcs", pvcs)
1226
- if tolerations is not None:
1227
- pulumi.set(__self__, "tolerations", tolerations)
1228
- if volume_mounts is not None:
1229
- pulumi.set(__self__, "volume_mounts", volume_mounts)
1230
- if volumes is not None:
1231
- pulumi.set(__self__, "volumes", volumes)
1232
-
1233
- @property
1234
- @pulumi.getter(name="ackInstanceId")
1235
- def ack_instance_id(self) -> pulumi.Input[str]:
1236
- """
1237
- The ack cluster instance id.
1238
- """
1239
- return pulumi.get(self, "ack_instance_id")
1240
-
1241
- @ack_instance_id.setter
1242
- def ack_instance_id(self, value: pulumi.Input[str]):
1243
- pulumi.set(self, "ack_instance_id", value)
1244
-
1245
- @property
1246
- @pulumi.getter(name="limitCpu")
1247
- def limit_cpu(self) -> pulumi.Input[float]:
1248
- """
1249
- The job pod resource of limit cpu.
1250
- """
1251
- return pulumi.get(self, "limit_cpu")
1252
-
1253
- @limit_cpu.setter
1254
- def limit_cpu(self, value: pulumi.Input[float]):
1255
- pulumi.set(self, "limit_cpu", value)
1256
-
1257
- @property
1258
- @pulumi.getter(name="limitMemory")
1259
- def limit_memory(self) -> pulumi.Input[float]:
1260
- """
1261
- The job pod resource of limit memory.
1262
- """
1263
- return pulumi.get(self, "limit_memory")
1264
-
1265
- @limit_memory.setter
1266
- def limit_memory(self, value: pulumi.Input[float]):
1267
- pulumi.set(self, "limit_memory", value)
1268
-
1269
- @property
1270
- @pulumi.getter
1271
- def namespace(self) -> pulumi.Input[str]:
1272
- """
1273
- The ack cluster namespace.
1274
- """
1275
- return pulumi.get(self, "namespace")
1276
-
1277
- @namespace.setter
1278
- def namespace(self, value: pulumi.Input[str]):
1279
- pulumi.set(self, "namespace", value)
1280
-
1281
- @property
1282
- @pulumi.getter(name="requestCpu")
1283
- def request_cpu(self) -> pulumi.Input[float]:
1284
- """
1285
- The job pod resource of request cpu.
1286
- """
1287
- return pulumi.get(self, "request_cpu")
1288
-
1289
- @request_cpu.setter
1290
- def request_cpu(self, value: pulumi.Input[float]):
1291
- pulumi.set(self, "request_cpu", value)
1292
-
1293
- @property
1294
- @pulumi.getter(name="requestMemory")
1295
- def request_memory(self) -> pulumi.Input[float]:
1296
- """
1297
- The job pod resource of request memory.
1298
- """
1299
- return pulumi.get(self, "request_memory")
1300
-
1301
- @request_memory.setter
1302
- def request_memory(self, value: pulumi.Input[float]):
1303
- pulumi.set(self, "request_memory", value)
1304
-
1305
- @property
1306
- @pulumi.getter(name="customAnnotations")
1307
- def custom_annotations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigCustomAnnotationArgs']]]]:
1308
- """
1309
- The ack cluster custom annotations. See `custom_annotations` below.
1310
- """
1311
- return pulumi.get(self, "custom_annotations")
1312
-
1313
- @custom_annotations.setter
1314
- def custom_annotations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigCustomAnnotationArgs']]]]):
1315
- pulumi.set(self, "custom_annotations", value)
1316
-
1317
- @property
1318
- @pulumi.getter(name="customLabels")
1319
- def custom_labels(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigCustomLabelArgs']]]]:
1320
- """
1321
- The ack cluster custom labels. See `custom_labels` below.
1322
- """
1323
- return pulumi.get(self, "custom_labels")
1324
-
1325
- @custom_labels.setter
1326
- def custom_labels(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigCustomLabelArgs']]]]):
1327
- pulumi.set(self, "custom_labels", value)
1328
-
1329
- @property
1330
- @pulumi.getter(name="nodeAffinity")
1331
- def node_affinity(self) -> Optional[pulumi.Input[str]]:
1332
- """
1333
- The ack cluster node affinity.
1334
- """
1335
- return pulumi.get(self, "node_affinity")
1336
-
1337
- @node_affinity.setter
1338
- def node_affinity(self, value: Optional[pulumi.Input[str]]):
1339
- pulumi.set(self, "node_affinity", value)
1340
-
1341
- @property
1342
- @pulumi.getter(name="nodeSelectors")
1343
- def node_selectors(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigNodeSelectorArgs']]]]:
1344
- """
1345
- The ack cluster node selectors for job pods scheduling. See `node_selectors` below.
1346
- """
1347
- return pulumi.get(self, "node_selectors")
1348
-
1349
- @node_selectors.setter
1350
- def node_selectors(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigNodeSelectorArgs']]]]):
1351
- pulumi.set(self, "node_selectors", value)
1352
-
1353
- @property
1354
- @pulumi.getter(name="podAffinity")
1355
- def pod_affinity(self) -> Optional[pulumi.Input[str]]:
1356
- """
1357
- The job pod affinity.
1358
- """
1359
- return pulumi.get(self, "pod_affinity")
1360
-
1361
- @pod_affinity.setter
1362
- def pod_affinity(self, value: Optional[pulumi.Input[str]]):
1363
- pulumi.set(self, "pod_affinity", value)
1364
-
1365
- @property
1366
- @pulumi.getter(name="podAntiAffinity")
1367
- def pod_anti_affinity(self) -> Optional[pulumi.Input[str]]:
1368
- """
1369
- The job pod anti-affinity.
1370
- """
1371
- return pulumi.get(self, "pod_anti_affinity")
1372
-
1373
- @pod_anti_affinity.setter
1374
- def pod_anti_affinity(self, value: Optional[pulumi.Input[str]]):
1375
- pulumi.set(self, "pod_anti_affinity", value)
1376
-
1377
- @property
1378
- @pulumi.getter(name="preStartCommands")
1379
- def pre_start_commands(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
1380
- """
1381
- The job pod pre start command.
1382
- """
1383
- return pulumi.get(self, "pre_start_commands")
1384
-
1385
- @pre_start_commands.setter
1386
- def pre_start_commands(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
1387
- pulumi.set(self, "pre_start_commands", value)
1388
-
1389
- @property
1390
- @pulumi.getter
1391
- def pvcs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigPvcArgs']]]]:
1392
- """
1393
- The ack cluster persistent volume claim. See `pvcs` below.
1394
- """
1395
- return pulumi.get(self, "pvcs")
1396
-
1397
- @pvcs.setter
1398
- def pvcs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigPvcArgs']]]]):
1399
- pulumi.set(self, "pvcs", value)
1400
-
1401
- @property
1402
- @pulumi.getter
1403
- def tolerations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigTolerationArgs']]]]:
1404
- """
1405
- The ack cluster tolerations. See `tolerations` below.
1406
- """
1407
- return pulumi.get(self, "tolerations")
1408
-
1409
- @tolerations.setter
1410
- def tolerations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigTolerationArgs']]]]):
1411
- pulumi.set(self, "tolerations", value)
1412
-
1413
- @property
1414
- @pulumi.getter(name="volumeMounts")
1415
- def volume_mounts(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigVolumeMountArgs']]]]:
1416
- """
1417
- The ack cluster volume mounts. See `volume_mounts` below.
1418
- """
1419
- return pulumi.get(self, "volume_mounts")
1420
-
1421
- @volume_mounts.setter
1422
- def volume_mounts(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigVolumeMountArgs']]]]):
1423
- pulumi.set(self, "volume_mounts", value)
1424
-
1425
- @property
1426
- @pulumi.getter
1427
- def volumes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigVolumeArgs']]]]:
1428
- """
1429
- The ack cluster volumes. See `volumes` below.
1430
- """
1431
- return pulumi.get(self, "volumes")
1432
-
1433
- @volumes.setter
1434
- def volumes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupAckConfigVolumeArgs']]]]):
1435
- pulumi.set(self, "volumes", value)
1436
-
1437
-
1438
- if not MYPY:
1439
- class ClusterNodeGroupAckConfigCustomAnnotationArgsDict(TypedDict):
1440
- key: pulumi.Input[str]
1441
- """
1442
- The tag key for this scaling rule specific metrics trigger.
1443
- """
1444
- value: NotRequired[pulumi.Input[str]]
1445
- """
1446
- The tag value for this scaling rule specific metrics trigger.
1447
- """
1448
- elif False:
1449
- ClusterNodeGroupAckConfigCustomAnnotationArgsDict: TypeAlias = Mapping[str, Any]
1450
-
1451
- @pulumi.input_type
1452
- class ClusterNodeGroupAckConfigCustomAnnotationArgs:
1453
- def __init__(__self__, *,
1454
- key: pulumi.Input[str],
1455
- value: Optional[pulumi.Input[str]] = None):
1456
- """
1457
- :param pulumi.Input[str] key: The tag key for this scaling rule specific metrics trigger.
1458
- :param pulumi.Input[str] value: The tag value for this scaling rule specific metrics trigger.
1459
- """
1460
- pulumi.set(__self__, "key", key)
1461
- if value is not None:
1462
- pulumi.set(__self__, "value", value)
1463
-
1464
- @property
1465
- @pulumi.getter
1466
- def key(self) -> pulumi.Input[str]:
1467
- """
1468
- The tag key for this scaling rule specific metrics trigger.
1469
- """
1470
- return pulumi.get(self, "key")
1471
-
1472
- @key.setter
1473
- def key(self, value: pulumi.Input[str]):
1474
- pulumi.set(self, "key", value)
1475
-
1476
- @property
1477
- @pulumi.getter
1478
- def value(self) -> Optional[pulumi.Input[str]]:
1479
- """
1480
- The tag value for this scaling rule specific metrics trigger.
1481
- """
1482
- return pulumi.get(self, "value")
1483
-
1484
- @value.setter
1485
- def value(self, value: Optional[pulumi.Input[str]]):
1486
- pulumi.set(self, "value", value)
1487
-
1488
-
1489
- if not MYPY:
1490
- class ClusterNodeGroupAckConfigCustomLabelArgsDict(TypedDict):
1491
- key: pulumi.Input[str]
1492
- """
1493
- The tag key for this scaling rule specific metrics trigger.
1494
- """
1495
- value: NotRequired[pulumi.Input[str]]
1496
- """
1497
- The tag value for this scaling rule specific metrics trigger.
1498
- """
1499
- elif False:
1500
- ClusterNodeGroupAckConfigCustomLabelArgsDict: TypeAlias = Mapping[str, Any]
1501
-
1502
- @pulumi.input_type
1503
- class ClusterNodeGroupAckConfigCustomLabelArgs:
1504
- def __init__(__self__, *,
1505
- key: pulumi.Input[str],
1506
- value: Optional[pulumi.Input[str]] = None):
1507
- """
1508
- :param pulumi.Input[str] key: The tag key for this scaling rule specific metrics trigger.
1509
- :param pulumi.Input[str] value: The tag value for this scaling rule specific metrics trigger.
1510
- """
1511
- pulumi.set(__self__, "key", key)
1512
- if value is not None:
1513
- pulumi.set(__self__, "value", value)
1514
-
1515
- @property
1516
- @pulumi.getter
1517
- def key(self) -> pulumi.Input[str]:
1518
- """
1519
- The tag key for this scaling rule specific metrics trigger.
1520
- """
1521
- return pulumi.get(self, "key")
1522
-
1523
- @key.setter
1524
- def key(self, value: pulumi.Input[str]):
1525
- pulumi.set(self, "key", value)
1526
-
1527
- @property
1528
- @pulumi.getter
1529
- def value(self) -> Optional[pulumi.Input[str]]:
1530
- """
1531
- The tag value for this scaling rule specific metrics trigger.
1532
- """
1533
- return pulumi.get(self, "value")
1534
-
1535
- @value.setter
1536
- def value(self, value: Optional[pulumi.Input[str]]):
1537
- pulumi.set(self, "value", value)
1538
-
1539
-
1540
- if not MYPY:
1541
- class ClusterNodeGroupAckConfigNodeSelectorArgsDict(TypedDict):
1542
- key: pulumi.Input[str]
1543
- """
1544
- The tag key for this scaling rule specific metrics trigger.
1545
- """
1546
- value: NotRequired[pulumi.Input[str]]
1547
- """
1548
- The tag value for this scaling rule specific metrics trigger.
1549
- """
1550
- elif False:
1551
- ClusterNodeGroupAckConfigNodeSelectorArgsDict: TypeAlias = Mapping[str, Any]
1552
-
1553
- @pulumi.input_type
1554
- class ClusterNodeGroupAckConfigNodeSelectorArgs:
1555
- def __init__(__self__, *,
1556
- key: pulumi.Input[str],
1557
- value: Optional[pulumi.Input[str]] = None):
1558
- """
1559
- :param pulumi.Input[str] key: The tag key for this scaling rule specific metrics trigger.
1560
- :param pulumi.Input[str] value: The tag value for this scaling rule specific metrics trigger.
1561
- """
1562
- pulumi.set(__self__, "key", key)
1563
- if value is not None:
1564
- pulumi.set(__self__, "value", value)
1565
-
1566
- @property
1567
- @pulumi.getter
1568
- def key(self) -> pulumi.Input[str]:
1569
- """
1570
- The tag key for this scaling rule specific metrics trigger.
1571
- """
1572
- return pulumi.get(self, "key")
1573
-
1574
- @key.setter
1575
- def key(self, value: pulumi.Input[str]):
1576
- pulumi.set(self, "key", value)
1577
-
1578
- @property
1579
- @pulumi.getter
1580
- def value(self) -> Optional[pulumi.Input[str]]:
1581
- """
1582
- The tag value for this scaling rule specific metrics trigger.
1583
- """
1584
- return pulumi.get(self, "value")
1585
-
1586
- @value.setter
1587
- def value(self, value: Optional[pulumi.Input[str]]):
1588
- pulumi.set(self, "value", value)
1589
-
1590
-
1591
- if not MYPY:
1592
- class ClusterNodeGroupAckConfigPvcArgsDict(TypedDict):
1593
- data_disk_size: pulumi.Input[int]
1594
- """
1595
- The ack cluster job pod data disk size of persistent volume claim.
1596
- """
1597
- data_disk_storage_class: pulumi.Input[str]
1598
- """
1599
- The ack cluster job pod data disk storage class of persistent volume claim.
1600
- """
1601
- name: pulumi.Input[str]
1602
- """
1603
- The name of ack cluster job pod volume mounts.
1604
- """
1605
- path: pulumi.Input[str]
1606
- """
1607
- The path of ack cluster job pod volume mounts.
1608
- """
1609
- elif False:
1610
- ClusterNodeGroupAckConfigPvcArgsDict: TypeAlias = Mapping[str, Any]
1611
-
1612
- @pulumi.input_type
1613
- class ClusterNodeGroupAckConfigPvcArgs:
1614
- def __init__(__self__, *,
1615
- data_disk_size: pulumi.Input[int],
1616
- data_disk_storage_class: pulumi.Input[str],
1617
- name: pulumi.Input[str],
1618
- path: pulumi.Input[str]):
1619
- """
1620
- :param pulumi.Input[int] data_disk_size: The ack cluster job pod data disk size of persistent volume claim.
1621
- :param pulumi.Input[str] data_disk_storage_class: The ack cluster job pod data disk storage class of persistent volume claim.
1622
- :param pulumi.Input[str] name: The name of ack cluster job pod volume mounts.
1623
- :param pulumi.Input[str] path: The path of ack cluster job pod volume mounts.
1624
- """
1625
- pulumi.set(__self__, "data_disk_size", data_disk_size)
1626
- pulumi.set(__self__, "data_disk_storage_class", data_disk_storage_class)
1627
- pulumi.set(__self__, "name", name)
1628
- pulumi.set(__self__, "path", path)
1629
-
1630
- @property
1631
- @pulumi.getter(name="dataDiskSize")
1632
- def data_disk_size(self) -> pulumi.Input[int]:
1633
- """
1634
- The ack cluster job pod data disk size of persistent volume claim.
1635
- """
1636
- return pulumi.get(self, "data_disk_size")
1637
-
1638
- @data_disk_size.setter
1639
- def data_disk_size(self, value: pulumi.Input[int]):
1640
- pulumi.set(self, "data_disk_size", value)
1641
-
1642
- @property
1643
- @pulumi.getter(name="dataDiskStorageClass")
1644
- def data_disk_storage_class(self) -> pulumi.Input[str]:
1645
- """
1646
- The ack cluster job pod data disk storage class of persistent volume claim.
1647
- """
1648
- return pulumi.get(self, "data_disk_storage_class")
1649
-
1650
- @data_disk_storage_class.setter
1651
- def data_disk_storage_class(self, value: pulumi.Input[str]):
1652
- pulumi.set(self, "data_disk_storage_class", value)
1653
-
1654
- @property
1655
- @pulumi.getter
1656
- def name(self) -> pulumi.Input[str]:
1657
- """
1658
- The name of ack cluster job pod volume mounts.
1659
- """
1660
- return pulumi.get(self, "name")
1661
-
1662
- @name.setter
1663
- def name(self, value: pulumi.Input[str]):
1664
- pulumi.set(self, "name", value)
1665
-
1666
- @property
1667
- @pulumi.getter
1668
- def path(self) -> pulumi.Input[str]:
1669
- """
1670
- The path of ack cluster job pod volume mounts.
1671
- """
1672
- return pulumi.get(self, "path")
1673
-
1674
- @path.setter
1675
- def path(self, value: pulumi.Input[str]):
1676
- pulumi.set(self, "path", value)
1677
-
1678
-
1679
- if not MYPY:
1680
- class ClusterNodeGroupAckConfigTolerationArgsDict(TypedDict):
1681
- effect: NotRequired[pulumi.Input[str]]
1682
- """
1683
- The effect of ack cluster tolerations.
1684
- """
1685
- key: NotRequired[pulumi.Input[str]]
1686
- """
1687
- The tag key for this scaling rule specific metrics trigger.
1688
- """
1689
- operator: NotRequired[pulumi.Input[str]]
1690
- """
1691
- The operator of ack cluster tolerations.
1692
- """
1693
- value: NotRequired[pulumi.Input[str]]
1694
- """
1695
- The tag value for this scaling rule specific metrics trigger.
1696
- """
1697
- elif False:
1698
- ClusterNodeGroupAckConfigTolerationArgsDict: TypeAlias = Mapping[str, Any]
1699
-
1700
- @pulumi.input_type
1701
- class ClusterNodeGroupAckConfigTolerationArgs:
1702
- def __init__(__self__, *,
1703
- effect: Optional[pulumi.Input[str]] = None,
1704
- key: Optional[pulumi.Input[str]] = None,
1705
- operator: Optional[pulumi.Input[str]] = None,
1706
- value: Optional[pulumi.Input[str]] = None):
1707
- """
1708
- :param pulumi.Input[str] effect: The effect of ack cluster tolerations.
1709
- :param pulumi.Input[str] key: The tag key for this scaling rule specific metrics trigger.
1710
- :param pulumi.Input[str] operator: The operator of ack cluster tolerations.
1711
- :param pulumi.Input[str] value: The tag value for this scaling rule specific metrics trigger.
1712
- """
1713
- if effect is not None:
1714
- pulumi.set(__self__, "effect", effect)
1715
- if key is not None:
1716
- pulumi.set(__self__, "key", key)
1717
- if operator is not None:
1718
- pulumi.set(__self__, "operator", operator)
1719
- if value is not None:
1720
- pulumi.set(__self__, "value", value)
1721
-
1722
- @property
1723
- @pulumi.getter
1724
- def effect(self) -> Optional[pulumi.Input[str]]:
1725
- """
1726
- The effect of ack cluster tolerations.
1727
- """
1728
- return pulumi.get(self, "effect")
1729
-
1730
- @effect.setter
1731
- def effect(self, value: Optional[pulumi.Input[str]]):
1732
- pulumi.set(self, "effect", value)
1733
-
1734
- @property
1735
- @pulumi.getter
1736
- def key(self) -> Optional[pulumi.Input[str]]:
1737
- """
1738
- The tag key for this scaling rule specific metrics trigger.
1739
- """
1740
- return pulumi.get(self, "key")
1741
-
1742
- @key.setter
1743
- def key(self, value: Optional[pulumi.Input[str]]):
1744
- pulumi.set(self, "key", value)
1745
-
1746
- @property
1747
- @pulumi.getter
1748
- def operator(self) -> Optional[pulumi.Input[str]]:
1749
- """
1750
- The operator of ack cluster tolerations.
1751
- """
1752
- return pulumi.get(self, "operator")
1753
-
1754
- @operator.setter
1755
- def operator(self, value: Optional[pulumi.Input[str]]):
1756
- pulumi.set(self, "operator", value)
1757
-
1758
- @property
1759
- @pulumi.getter
1760
- def value(self) -> Optional[pulumi.Input[str]]:
1761
- """
1762
- The tag value for this scaling rule specific metrics trigger.
1763
- """
1764
- return pulumi.get(self, "value")
1765
-
1766
- @value.setter
1767
- def value(self, value: Optional[pulumi.Input[str]]):
1768
- pulumi.set(self, "value", value)
1769
-
1770
-
1771
- if not MYPY:
1772
- class ClusterNodeGroupAckConfigVolumeArgsDict(TypedDict):
1773
- name: pulumi.Input[str]
1774
- """
1775
- The name of ack cluster job pod volume mounts.
1776
- """
1777
- path: pulumi.Input[str]
1778
- """
1779
- The path of ack cluster job pod volume mounts.
1780
- """
1781
- type: pulumi.Input[str]
1782
- """
1783
- The ack cluster job pod volumes type.
1784
- """
1785
- elif False:
1786
- ClusterNodeGroupAckConfigVolumeArgsDict: TypeAlias = Mapping[str, Any]
1787
-
1788
- @pulumi.input_type
1789
- class ClusterNodeGroupAckConfigVolumeArgs:
1790
- def __init__(__self__, *,
1791
- name: pulumi.Input[str],
1792
- path: pulumi.Input[str],
1793
- type: pulumi.Input[str]):
1794
- """
1795
- :param pulumi.Input[str] name: The name of ack cluster job pod volume mounts.
1796
- :param pulumi.Input[str] path: The path of ack cluster job pod volume mounts.
1797
- :param pulumi.Input[str] type: The ack cluster job pod volumes type.
1798
- """
1799
- pulumi.set(__self__, "name", name)
1800
- pulumi.set(__self__, "path", path)
1801
- pulumi.set(__self__, "type", type)
1802
-
1803
- @property
1804
- @pulumi.getter
1805
- def name(self) -> pulumi.Input[str]:
1806
- """
1807
- The name of ack cluster job pod volume mounts.
1808
- """
1809
- return pulumi.get(self, "name")
1810
-
1811
- @name.setter
1812
- def name(self, value: pulumi.Input[str]):
1813
- pulumi.set(self, "name", value)
1814
-
1815
- @property
1816
- @pulumi.getter
1817
- def path(self) -> pulumi.Input[str]:
1818
- """
1819
- The path of ack cluster job pod volume mounts.
1820
- """
1821
- return pulumi.get(self, "path")
1822
-
1823
- @path.setter
1824
- def path(self, value: pulumi.Input[str]):
1825
- pulumi.set(self, "path", value)
1826
-
1827
- @property
1828
- @pulumi.getter
1829
- def type(self) -> pulumi.Input[str]:
1830
- """
1831
- The ack cluster job pod volumes type.
1832
- """
1833
- return pulumi.get(self, "type")
1834
-
1835
- @type.setter
1836
- def type(self, value: pulumi.Input[str]):
1837
- pulumi.set(self, "type", value)
1838
-
1839
-
1840
- if not MYPY:
1841
- class ClusterNodeGroupAckConfigVolumeMountArgsDict(TypedDict):
1842
- name: pulumi.Input[str]
1843
- """
1844
- The name of ack cluster job pod volume mounts.
1845
- """
1846
- path: pulumi.Input[str]
1847
- """
1848
- The path of ack cluster job pod volume mounts.
1849
- """
1850
- elif False:
1851
- ClusterNodeGroupAckConfigVolumeMountArgsDict: TypeAlias = Mapping[str, Any]
1852
-
1853
- @pulumi.input_type
1854
- class ClusterNodeGroupAckConfigVolumeMountArgs:
1855
- def __init__(__self__, *,
1856
- name: pulumi.Input[str],
1857
- path: pulumi.Input[str]):
1858
- """
1859
- :param pulumi.Input[str] name: The name of ack cluster job pod volume mounts.
1860
- :param pulumi.Input[str] path: The path of ack cluster job pod volume mounts.
1861
- """
1862
- pulumi.set(__self__, "name", name)
1863
- pulumi.set(__self__, "path", path)
1864
-
1865
- @property
1866
- @pulumi.getter
1867
- def name(self) -> pulumi.Input[str]:
1868
- """
1869
- The name of ack cluster job pod volume mounts.
1870
- """
1871
- return pulumi.get(self, "name")
1872
-
1873
- @name.setter
1874
- def name(self, value: pulumi.Input[str]):
1875
- pulumi.set(self, "name", value)
1876
-
1877
- @property
1878
- @pulumi.getter
1879
- def path(self) -> pulumi.Input[str]:
1880
- """
1881
- The path of ack cluster job pod volume mounts.
1882
- """
1883
- return pulumi.get(self, "path")
1884
-
1885
- @path.setter
1886
- def path(self, value: pulumi.Input[str]):
1887
- pulumi.set(self, "path", value)
1888
-
1889
-
1890
1036
  if not MYPY:
1891
1037
  class ClusterNodeGroupAutoScalingPolicyArgsDict(TypedDict):
1892
1038
  constraints: NotRequired[pulumi.Input['ClusterNodeGroupAutoScalingPolicyConstraintsArgsDict']]