pulumi-alicloud 3.74.0a1737523155__py3-none-any.whl → 3.74.0a1737989015__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 (56) hide show
  1. pulumi_alicloud/__init__.py +80 -0
  2. pulumi_alicloud/alb/__init__.py +1 -0
  3. pulumi_alicloud/alb/_inputs.py +907 -244
  4. pulumi_alicloud/alb/get_server_groups.py +55 -25
  5. pulumi_alicloud/alb/listener.py +269 -174
  6. pulumi_alicloud/alb/load_balancer.py +239 -118
  7. pulumi_alicloud/alb/load_balancer_zone_shifted_attachment.py +303 -0
  8. pulumi_alicloud/alb/outputs.py +716 -218
  9. pulumi_alicloud/alb/server_group.py +532 -122
  10. pulumi_alicloud/cen/_inputs.py +34 -0
  11. pulumi_alicloud/cen/outputs.py +37 -0
  12. pulumi_alicloud/cen/transit_router_multicast_domain.py +123 -36
  13. pulumi_alicloud/cs/_inputs.py +349 -1
  14. pulumi_alicloud/cs/kubernetes.py +15 -15
  15. pulumi_alicloud/cs/node_pool.py +77 -2
  16. pulumi_alicloud/cs/outputs.py +265 -1
  17. pulumi_alicloud/dfs/file_system.py +62 -23
  18. pulumi_alicloud/dfs/mount_point.py +48 -22
  19. pulumi_alicloud/esa/__init__.py +3 -0
  20. pulumi_alicloud/esa/_inputs.py +81 -0
  21. pulumi_alicloud/esa/http_request_header_modification_rule.py +531 -0
  22. pulumi_alicloud/esa/list.py +361 -0
  23. pulumi_alicloud/esa/outputs.py +48 -0
  24. pulumi_alicloud/esa/page.py +376 -0
  25. pulumi_alicloud/esa/rate_plan_instance.py +63 -7
  26. pulumi_alicloud/ess/get_scaling_groups.py +64 -10
  27. pulumi_alicloud/ess/get_scaling_rules.py +74 -10
  28. pulumi_alicloud/ess/outputs.py +357 -17
  29. pulumi_alicloud/eventbridge/get_service.py +2 -6
  30. pulumi_alicloud/fc/_inputs.py +75 -75
  31. pulumi_alicloud/fc/outputs.py +50 -50
  32. pulumi_alicloud/fc/v3_function.py +53 -6
  33. pulumi_alicloud/kms/__init__.py +1 -0
  34. pulumi_alicloud/kms/get_instances.py +160 -0
  35. pulumi_alicloud/kms/instance.py +0 -60
  36. pulumi_alicloud/kms/outputs.py +19 -0
  37. pulumi_alicloud/maxcompute/__init__.py +5 -0
  38. pulumi_alicloud/maxcompute/_inputs.py +615 -42
  39. pulumi_alicloud/maxcompute/outputs.py +486 -28
  40. pulumi_alicloud/maxcompute/project.py +63 -31
  41. pulumi_alicloud/maxcompute/quota_plan.py +412 -0
  42. pulumi_alicloud/maxcompute/quota_schedule.py +260 -0
  43. pulumi_alicloud/maxcompute/role.py +423 -0
  44. pulumi_alicloud/maxcompute/role_user_attachment.py +368 -0
  45. pulumi_alicloud/maxcompute/tunnel_quota_timer.py +287 -0
  46. pulumi_alicloud/pulumi-plugin.json +1 -1
  47. pulumi_alicloud/rds/instance.py +68 -0
  48. pulumi_alicloud/vpc/__init__.py +1 -0
  49. pulumi_alicloud/vpc/ipam_ipam_pool.py +47 -0
  50. pulumi_alicloud/vpc/ipam_ipam_scope.py +47 -0
  51. pulumi_alicloud/vpc/ipam_service.py +144 -0
  52. pulumi_alicloud/vpc/ipv4_cidr_block.py +162 -51
  53. {pulumi_alicloud-3.74.0a1737523155.dist-info → pulumi_alicloud-3.74.0a1737989015.dist-info}/METADATA +1 -1
  54. {pulumi_alicloud-3.74.0a1737523155.dist-info → pulumi_alicloud-3.74.0a1737989015.dist-info}/RECORD +56 -45
  55. {pulumi_alicloud-3.74.0a1737523155.dist-info → pulumi_alicloud-3.74.0a1737989015.dist-info}/WHEEL +0 -0
  56. {pulumi_alicloud-3.74.0a1737523155.dist-info → pulumi_alicloud-3.74.0a1737989015.dist-info}/top_level.txt +0 -0
@@ -69,6 +69,10 @@ __all__ = [
69
69
  'NodePoolDataDiskArgsDict',
70
70
  'NodePoolKubeletConfigurationArgs',
71
71
  'NodePoolKubeletConfigurationArgsDict',
72
+ 'NodePoolKubeletConfigurationReservedMemoryArgs',
73
+ 'NodePoolKubeletConfigurationReservedMemoryArgsDict',
74
+ 'NodePoolKubeletConfigurationTracingArgs',
75
+ 'NodePoolKubeletConfigurationTracingArgsDict',
72
76
  'NodePoolLabelArgs',
73
77
  'NodePoolLabelArgsDict',
74
78
  'NodePoolManagementArgs',
@@ -2772,6 +2776,10 @@ if not MYPY:
2772
2776
  """
2773
2777
  Allowed sysctl mode whitelist.
2774
2778
  """
2779
+ cluster_dns: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
2780
+ """
2781
+ The list of IP addresses of the cluster DNS servers.
2782
+ """
2775
2783
  container_log_max_files: NotRequired[pulumi.Input[str]]
2776
2784
  """
2777
2785
  The maximum number of log files that can exist in each container.
@@ -2780,6 +2788,22 @@ if not MYPY:
2780
2788
  """
2781
2789
  The maximum size that can be reached before a log file is rotated.
2782
2790
  """
2791
+ container_log_max_workers: NotRequired[pulumi.Input[str]]
2792
+ """
2793
+ Specifies the maximum number of concurrent workers required to perform log rotation operations.
2794
+ """
2795
+ container_log_monitor_interval: NotRequired[pulumi.Input[str]]
2796
+ """
2797
+ Specifies the duration for which container logs are monitored for log rotation.
2798
+ """
2799
+ cpu_cfs_quota: NotRequired[pulumi.Input[str]]
2800
+ """
2801
+ CPU CFS quota constraint switch.
2802
+ """
2803
+ cpu_cfs_quota_period: NotRequired[pulumi.Input[str]]
2804
+ """
2805
+ CPU CFS quota period value.
2806
+ """
2783
2807
  cpu_manager_policy: NotRequired[pulumi.Input[str]]
2784
2808
  """
2785
2809
  Same as cpuManagerPolicy. The name of the policy to use. Requires the CPUManager feature gate to be enabled. Valid value is `none` or `static`.
@@ -2808,6 +2832,14 @@ if not MYPY:
2808
2832
  """
2809
2833
  Feature switch to enable configuration of experimental features.
2810
2834
  """
2835
+ image_gc_high_threshold_percent: NotRequired[pulumi.Input[str]]
2836
+ """
2837
+ If the image usage exceeds this threshold, image garbage collection will continue.
2838
+ """
2839
+ image_gc_low_threshold_percent: NotRequired[pulumi.Input[str]]
2840
+ """
2841
+ Image garbage collection is not performed when the image usage is below this threshold.
2842
+ """
2811
2843
  kube_api_burst: NotRequired[pulumi.Input[str]]
2812
2844
  """
2813
2845
  Same as kubeAPIBurst. The burst to allow while talking with kubernetes api-server. Valid value is `[0-100]`.
@@ -2824,6 +2856,14 @@ if not MYPY:
2824
2856
  """
2825
2857
  The maximum number of running pods.
2826
2858
  """
2859
+ memory_manager_policy: NotRequired[pulumi.Input[str]]
2860
+ """
2861
+ The policy to be used by the memory manager.
2862
+ """
2863
+ pod_pids_limit: NotRequired[pulumi.Input[str]]
2864
+ """
2865
+ The maximum number of PIDs that can be used in a Pod.
2866
+ """
2827
2867
  read_only_port: NotRequired[pulumi.Input[str]]
2828
2868
  """
2829
2869
  Read-only port number.
@@ -2836,6 +2876,10 @@ if not MYPY:
2836
2876
  """
2837
2877
  Same as registryPullQPS. The limit of registry pulls per second. Setting it to `0` means no limit. Valid value is `[0-50]`.
2838
2878
  """
2879
+ reserved_memories: NotRequired[pulumi.Input[Sequence[pulumi.Input['NodePoolKubeletConfigurationReservedMemoryArgsDict']]]]
2880
+ """
2881
+ Reserve memory for NUMA nodes. See `reserved_memory` below.
2882
+ """
2839
2883
  serialize_image_pulls: NotRequired[pulumi.Input[str]]
2840
2884
  """
2841
2885
  Same as serializeImagePulls. When enabled, it tells the Kubelet to pull images one at a time. We recommend not changing the default value on nodes that run docker daemon with version < 1.9 or an Aufs storage backend. Valid value is `true` or `false`.
@@ -2844,6 +2888,14 @@ if not MYPY:
2844
2888
  """
2845
2889
  Same as systemReserved. The set of ResourceName=ResourceQuantity (e.g. cpu=200m,memory=150G) pairs that describe resources reserved for non-kubernetes components. Currently, only cpu and memory are supported. See [compute resources](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/) for more details.
2846
2890
  """
2891
+ topology_manager_policy: NotRequired[pulumi.Input[str]]
2892
+ """
2893
+ Name of the Topology Manager policy used.
2894
+ """
2895
+ tracing: NotRequired[pulumi.Input['NodePoolKubeletConfigurationTracingArgsDict']]
2896
+ """
2897
+ OpenTelemetry tracks the configuration information for client settings versioning. See `tracing` below.
2898
+ """
2847
2899
  elif False:
2848
2900
  NodePoolKubeletConfigurationArgsDict: TypeAlias = Mapping[str, Any]
2849
2901
 
@@ -2851,8 +2903,13 @@ elif False:
2851
2903
  class NodePoolKubeletConfigurationArgs:
2852
2904
  def __init__(__self__, *,
2853
2905
  allowed_unsafe_sysctls: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2906
+ cluster_dns: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2854
2907
  container_log_max_files: Optional[pulumi.Input[str]] = None,
2855
2908
  container_log_max_size: Optional[pulumi.Input[str]] = None,
2909
+ container_log_max_workers: Optional[pulumi.Input[str]] = None,
2910
+ container_log_monitor_interval: Optional[pulumi.Input[str]] = None,
2911
+ cpu_cfs_quota: Optional[pulumi.Input[str]] = None,
2912
+ cpu_cfs_quota_period: Optional[pulumi.Input[str]] = None,
2856
2913
  cpu_manager_policy: Optional[pulumi.Input[str]] = None,
2857
2914
  event_burst: Optional[pulumi.Input[str]] = None,
2858
2915
  event_record_qps: Optional[pulumi.Input[str]] = None,
@@ -2860,19 +2917,31 @@ class NodePoolKubeletConfigurationArgs:
2860
2917
  eviction_soft: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
2861
2918
  eviction_soft_grace_period: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
2862
2919
  feature_gates: Optional[pulumi.Input[Mapping[str, pulumi.Input[bool]]]] = None,
2920
+ image_gc_high_threshold_percent: Optional[pulumi.Input[str]] = None,
2921
+ image_gc_low_threshold_percent: Optional[pulumi.Input[str]] = None,
2863
2922
  kube_api_burst: Optional[pulumi.Input[str]] = None,
2864
2923
  kube_api_qps: Optional[pulumi.Input[str]] = None,
2865
2924
  kube_reserved: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
2866
2925
  max_pods: Optional[pulumi.Input[str]] = None,
2926
+ memory_manager_policy: Optional[pulumi.Input[str]] = None,
2927
+ pod_pids_limit: Optional[pulumi.Input[str]] = None,
2867
2928
  read_only_port: Optional[pulumi.Input[str]] = None,
2868
2929
  registry_burst: Optional[pulumi.Input[str]] = None,
2869
2930
  registry_pull_qps: Optional[pulumi.Input[str]] = None,
2931
+ reserved_memories: Optional[pulumi.Input[Sequence[pulumi.Input['NodePoolKubeletConfigurationReservedMemoryArgs']]]] = None,
2870
2932
  serialize_image_pulls: Optional[pulumi.Input[str]] = None,
2871
- system_reserved: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
2933
+ system_reserved: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
2934
+ topology_manager_policy: Optional[pulumi.Input[str]] = None,
2935
+ tracing: Optional[pulumi.Input['NodePoolKubeletConfigurationTracingArgs']] = None):
2872
2936
  """
2873
2937
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_unsafe_sysctls: Allowed sysctl mode whitelist.
2938
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] cluster_dns: The list of IP addresses of the cluster DNS servers.
2874
2939
  :param pulumi.Input[str] container_log_max_files: The maximum number of log files that can exist in each container.
2875
2940
  :param pulumi.Input[str] container_log_max_size: The maximum size that can be reached before a log file is rotated.
2941
+ :param pulumi.Input[str] container_log_max_workers: Specifies the maximum number of concurrent workers required to perform log rotation operations.
2942
+ :param pulumi.Input[str] container_log_monitor_interval: Specifies the duration for which container logs are monitored for log rotation.
2943
+ :param pulumi.Input[str] cpu_cfs_quota: CPU CFS quota constraint switch.
2944
+ :param pulumi.Input[str] cpu_cfs_quota_period: CPU CFS quota period value.
2876
2945
  :param pulumi.Input[str] cpu_manager_policy: Same as cpuManagerPolicy. The name of the policy to use. Requires the CPUManager feature gate to be enabled. Valid value is `none` or `static`.
2877
2946
  :param pulumi.Input[str] event_burst: Same as eventBurst. The maximum size of a burst of event creations, temporarily allows event creations to burst to this number, while still not exceeding `event_record_qps`. It is only used when `event_record_qps` is greater than 0. Valid value is `[0-100]`.
2878
2947
  :param pulumi.Input[str] event_record_qps: Same as eventRecordQPS. The maximum event creations per second. If 0, there is no limit enforced. Valid value is `[0-50]`.
@@ -2880,22 +2949,39 @@ class NodePoolKubeletConfigurationArgs:
2880
2949
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] eviction_soft: Same as evictionSoft. The map of signal names to quantities that defines soft eviction thresholds. For example: `{"memory.available" = "300Mi"}`.
2881
2950
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] eviction_soft_grace_period: Same as evictionSoftGracePeriod. The map of signal names to quantities that defines grace periods for each soft eviction signal. For example: `{"memory.available" = "30s"}`.
2882
2951
  :param pulumi.Input[Mapping[str, pulumi.Input[bool]]] feature_gates: Feature switch to enable configuration of experimental features.
2952
+ :param pulumi.Input[str] image_gc_high_threshold_percent: If the image usage exceeds this threshold, image garbage collection will continue.
2953
+ :param pulumi.Input[str] image_gc_low_threshold_percent: Image garbage collection is not performed when the image usage is below this threshold.
2883
2954
  :param pulumi.Input[str] kube_api_burst: Same as kubeAPIBurst. The burst to allow while talking with kubernetes api-server. Valid value is `[0-100]`.
2884
2955
  :param pulumi.Input[str] kube_api_qps: Same as kubeAPIQPS. The QPS to use while talking with kubernetes api-server. Valid value is `[0-50]`.
2885
2956
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kube_reserved: Same as kubeReserved. The set of ResourceName=ResourceQuantity (e.g. cpu=200m,memory=150G) pairs that describe resources reserved for kubernetes system components. Currently, cpu, memory and local storage for root file system are supported. See [compute resources](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/) for more details.
2886
2957
  :param pulumi.Input[str] max_pods: The maximum number of running pods.
2958
+ :param pulumi.Input[str] memory_manager_policy: The policy to be used by the memory manager.
2959
+ :param pulumi.Input[str] pod_pids_limit: The maximum number of PIDs that can be used in a Pod.
2887
2960
  :param pulumi.Input[str] read_only_port: Read-only port number.
2888
2961
  :param pulumi.Input[str] registry_burst: Same as registryBurst. The maximum size of burst pulls, temporarily allows pulls to burst to this number, while still not exceeding `registry_pull_qps`. Only used if `registry_pull_qps` is greater than 0. Valid value is `[0-100]`.
2889
2962
  :param pulumi.Input[str] registry_pull_qps: Same as registryPullQPS. The limit of registry pulls per second. Setting it to `0` means no limit. Valid value is `[0-50]`.
2963
+ :param pulumi.Input[Sequence[pulumi.Input['NodePoolKubeletConfigurationReservedMemoryArgs']]] reserved_memories: Reserve memory for NUMA nodes. See `reserved_memory` below.
2890
2964
  :param pulumi.Input[str] serialize_image_pulls: Same as serializeImagePulls. When enabled, it tells the Kubelet to pull images one at a time. We recommend not changing the default value on nodes that run docker daemon with version < 1.9 or an Aufs storage backend. Valid value is `true` or `false`.
2891
2965
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_reserved: Same as systemReserved. The set of ResourceName=ResourceQuantity (e.g. cpu=200m,memory=150G) pairs that describe resources reserved for non-kubernetes components. Currently, only cpu and memory are supported. See [compute resources](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/) for more details.
2966
+ :param pulumi.Input[str] topology_manager_policy: Name of the Topology Manager policy used.
2967
+ :param pulumi.Input['NodePoolKubeletConfigurationTracingArgs'] tracing: OpenTelemetry tracks the configuration information for client settings versioning. See `tracing` below.
2892
2968
  """
2893
2969
  if allowed_unsafe_sysctls is not None:
2894
2970
  pulumi.set(__self__, "allowed_unsafe_sysctls", allowed_unsafe_sysctls)
2971
+ if cluster_dns is not None:
2972
+ pulumi.set(__self__, "cluster_dns", cluster_dns)
2895
2973
  if container_log_max_files is not None:
2896
2974
  pulumi.set(__self__, "container_log_max_files", container_log_max_files)
2897
2975
  if container_log_max_size is not None:
2898
2976
  pulumi.set(__self__, "container_log_max_size", container_log_max_size)
2977
+ if container_log_max_workers is not None:
2978
+ pulumi.set(__self__, "container_log_max_workers", container_log_max_workers)
2979
+ if container_log_monitor_interval is not None:
2980
+ pulumi.set(__self__, "container_log_monitor_interval", container_log_monitor_interval)
2981
+ if cpu_cfs_quota is not None:
2982
+ pulumi.set(__self__, "cpu_cfs_quota", cpu_cfs_quota)
2983
+ if cpu_cfs_quota_period is not None:
2984
+ pulumi.set(__self__, "cpu_cfs_quota_period", cpu_cfs_quota_period)
2899
2985
  if cpu_manager_policy is not None:
2900
2986
  pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
2901
2987
  if event_burst is not None:
@@ -2910,6 +2996,10 @@ class NodePoolKubeletConfigurationArgs:
2910
2996
  pulumi.set(__self__, "eviction_soft_grace_period", eviction_soft_grace_period)
2911
2997
  if feature_gates is not None:
2912
2998
  pulumi.set(__self__, "feature_gates", feature_gates)
2999
+ if image_gc_high_threshold_percent is not None:
3000
+ pulumi.set(__self__, "image_gc_high_threshold_percent", image_gc_high_threshold_percent)
3001
+ if image_gc_low_threshold_percent is not None:
3002
+ pulumi.set(__self__, "image_gc_low_threshold_percent", image_gc_low_threshold_percent)
2913
3003
  if kube_api_burst is not None:
2914
3004
  pulumi.set(__self__, "kube_api_burst", kube_api_burst)
2915
3005
  if kube_api_qps is not None:
@@ -2918,16 +3008,26 @@ class NodePoolKubeletConfigurationArgs:
2918
3008
  pulumi.set(__self__, "kube_reserved", kube_reserved)
2919
3009
  if max_pods is not None:
2920
3010
  pulumi.set(__self__, "max_pods", max_pods)
3011
+ if memory_manager_policy is not None:
3012
+ pulumi.set(__self__, "memory_manager_policy", memory_manager_policy)
3013
+ if pod_pids_limit is not None:
3014
+ pulumi.set(__self__, "pod_pids_limit", pod_pids_limit)
2921
3015
  if read_only_port is not None:
2922
3016
  pulumi.set(__self__, "read_only_port", read_only_port)
2923
3017
  if registry_burst is not None:
2924
3018
  pulumi.set(__self__, "registry_burst", registry_burst)
2925
3019
  if registry_pull_qps is not None:
2926
3020
  pulumi.set(__self__, "registry_pull_qps", registry_pull_qps)
3021
+ if reserved_memories is not None:
3022
+ pulumi.set(__self__, "reserved_memories", reserved_memories)
2927
3023
  if serialize_image_pulls is not None:
2928
3024
  pulumi.set(__self__, "serialize_image_pulls", serialize_image_pulls)
2929
3025
  if system_reserved is not None:
2930
3026
  pulumi.set(__self__, "system_reserved", system_reserved)
3027
+ if topology_manager_policy is not None:
3028
+ pulumi.set(__self__, "topology_manager_policy", topology_manager_policy)
3029
+ if tracing is not None:
3030
+ pulumi.set(__self__, "tracing", tracing)
2931
3031
 
2932
3032
  @property
2933
3033
  @pulumi.getter(name="allowedUnsafeSysctls")
@@ -2941,6 +3041,18 @@ class NodePoolKubeletConfigurationArgs:
2941
3041
  def allowed_unsafe_sysctls(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
2942
3042
  pulumi.set(self, "allowed_unsafe_sysctls", value)
2943
3043
 
3044
+ @property
3045
+ @pulumi.getter(name="clusterDns")
3046
+ def cluster_dns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
3047
+ """
3048
+ The list of IP addresses of the cluster DNS servers.
3049
+ """
3050
+ return pulumi.get(self, "cluster_dns")
3051
+
3052
+ @cluster_dns.setter
3053
+ def cluster_dns(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
3054
+ pulumi.set(self, "cluster_dns", value)
3055
+
2944
3056
  @property
2945
3057
  @pulumi.getter(name="containerLogMaxFiles")
2946
3058
  def container_log_max_files(self) -> Optional[pulumi.Input[str]]:
@@ -2965,6 +3077,54 @@ class NodePoolKubeletConfigurationArgs:
2965
3077
  def container_log_max_size(self, value: Optional[pulumi.Input[str]]):
2966
3078
  pulumi.set(self, "container_log_max_size", value)
2967
3079
 
3080
+ @property
3081
+ @pulumi.getter(name="containerLogMaxWorkers")
3082
+ def container_log_max_workers(self) -> Optional[pulumi.Input[str]]:
3083
+ """
3084
+ Specifies the maximum number of concurrent workers required to perform log rotation operations.
3085
+ """
3086
+ return pulumi.get(self, "container_log_max_workers")
3087
+
3088
+ @container_log_max_workers.setter
3089
+ def container_log_max_workers(self, value: Optional[pulumi.Input[str]]):
3090
+ pulumi.set(self, "container_log_max_workers", value)
3091
+
3092
+ @property
3093
+ @pulumi.getter(name="containerLogMonitorInterval")
3094
+ def container_log_monitor_interval(self) -> Optional[pulumi.Input[str]]:
3095
+ """
3096
+ Specifies the duration for which container logs are monitored for log rotation.
3097
+ """
3098
+ return pulumi.get(self, "container_log_monitor_interval")
3099
+
3100
+ @container_log_monitor_interval.setter
3101
+ def container_log_monitor_interval(self, value: Optional[pulumi.Input[str]]):
3102
+ pulumi.set(self, "container_log_monitor_interval", value)
3103
+
3104
+ @property
3105
+ @pulumi.getter(name="cpuCfsQuota")
3106
+ def cpu_cfs_quota(self) -> Optional[pulumi.Input[str]]:
3107
+ """
3108
+ CPU CFS quota constraint switch.
3109
+ """
3110
+ return pulumi.get(self, "cpu_cfs_quota")
3111
+
3112
+ @cpu_cfs_quota.setter
3113
+ def cpu_cfs_quota(self, value: Optional[pulumi.Input[str]]):
3114
+ pulumi.set(self, "cpu_cfs_quota", value)
3115
+
3116
+ @property
3117
+ @pulumi.getter(name="cpuCfsQuotaPeriod")
3118
+ def cpu_cfs_quota_period(self) -> Optional[pulumi.Input[str]]:
3119
+ """
3120
+ CPU CFS quota period value.
3121
+ """
3122
+ return pulumi.get(self, "cpu_cfs_quota_period")
3123
+
3124
+ @cpu_cfs_quota_period.setter
3125
+ def cpu_cfs_quota_period(self, value: Optional[pulumi.Input[str]]):
3126
+ pulumi.set(self, "cpu_cfs_quota_period", value)
3127
+
2968
3128
  @property
2969
3129
  @pulumi.getter(name="cpuManagerPolicy")
2970
3130
  def cpu_manager_policy(self) -> Optional[pulumi.Input[str]]:
@@ -3049,6 +3209,30 @@ class NodePoolKubeletConfigurationArgs:
3049
3209
  def feature_gates(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[bool]]]]):
3050
3210
  pulumi.set(self, "feature_gates", value)
3051
3211
 
3212
+ @property
3213
+ @pulumi.getter(name="imageGcHighThresholdPercent")
3214
+ def image_gc_high_threshold_percent(self) -> Optional[pulumi.Input[str]]:
3215
+ """
3216
+ If the image usage exceeds this threshold, image garbage collection will continue.
3217
+ """
3218
+ return pulumi.get(self, "image_gc_high_threshold_percent")
3219
+
3220
+ @image_gc_high_threshold_percent.setter
3221
+ def image_gc_high_threshold_percent(self, value: Optional[pulumi.Input[str]]):
3222
+ pulumi.set(self, "image_gc_high_threshold_percent", value)
3223
+
3224
+ @property
3225
+ @pulumi.getter(name="imageGcLowThresholdPercent")
3226
+ def image_gc_low_threshold_percent(self) -> Optional[pulumi.Input[str]]:
3227
+ """
3228
+ Image garbage collection is not performed when the image usage is below this threshold.
3229
+ """
3230
+ return pulumi.get(self, "image_gc_low_threshold_percent")
3231
+
3232
+ @image_gc_low_threshold_percent.setter
3233
+ def image_gc_low_threshold_percent(self, value: Optional[pulumi.Input[str]]):
3234
+ pulumi.set(self, "image_gc_low_threshold_percent", value)
3235
+
3052
3236
  @property
3053
3237
  @pulumi.getter(name="kubeApiBurst")
3054
3238
  def kube_api_burst(self) -> Optional[pulumi.Input[str]]:
@@ -3097,6 +3281,30 @@ class NodePoolKubeletConfigurationArgs:
3097
3281
  def max_pods(self, value: Optional[pulumi.Input[str]]):
3098
3282
  pulumi.set(self, "max_pods", value)
3099
3283
 
3284
+ @property
3285
+ @pulumi.getter(name="memoryManagerPolicy")
3286
+ def memory_manager_policy(self) -> Optional[pulumi.Input[str]]:
3287
+ """
3288
+ The policy to be used by the memory manager.
3289
+ """
3290
+ return pulumi.get(self, "memory_manager_policy")
3291
+
3292
+ @memory_manager_policy.setter
3293
+ def memory_manager_policy(self, value: Optional[pulumi.Input[str]]):
3294
+ pulumi.set(self, "memory_manager_policy", value)
3295
+
3296
+ @property
3297
+ @pulumi.getter(name="podPidsLimit")
3298
+ def pod_pids_limit(self) -> Optional[pulumi.Input[str]]:
3299
+ """
3300
+ The maximum number of PIDs that can be used in a Pod.
3301
+ """
3302
+ return pulumi.get(self, "pod_pids_limit")
3303
+
3304
+ @pod_pids_limit.setter
3305
+ def pod_pids_limit(self, value: Optional[pulumi.Input[str]]):
3306
+ pulumi.set(self, "pod_pids_limit", value)
3307
+
3100
3308
  @property
3101
3309
  @pulumi.getter(name="readOnlyPort")
3102
3310
  def read_only_port(self) -> Optional[pulumi.Input[str]]:
@@ -3133,6 +3341,18 @@ class NodePoolKubeletConfigurationArgs:
3133
3341
  def registry_pull_qps(self, value: Optional[pulumi.Input[str]]):
3134
3342
  pulumi.set(self, "registry_pull_qps", value)
3135
3343
 
3344
+ @property
3345
+ @pulumi.getter(name="reservedMemories")
3346
+ def reserved_memories(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['NodePoolKubeletConfigurationReservedMemoryArgs']]]]:
3347
+ """
3348
+ Reserve memory for NUMA nodes. See `reserved_memory` below.
3349
+ """
3350
+ return pulumi.get(self, "reserved_memories")
3351
+
3352
+ @reserved_memories.setter
3353
+ def reserved_memories(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['NodePoolKubeletConfigurationReservedMemoryArgs']]]]):
3354
+ pulumi.set(self, "reserved_memories", value)
3355
+
3136
3356
  @property
3137
3357
  @pulumi.getter(name="serializeImagePulls")
3138
3358
  def serialize_image_pulls(self) -> Optional[pulumi.Input[str]]:
@@ -3157,6 +3377,134 @@ class NodePoolKubeletConfigurationArgs:
3157
3377
  def system_reserved(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
3158
3378
  pulumi.set(self, "system_reserved", value)
3159
3379
 
3380
+ @property
3381
+ @pulumi.getter(name="topologyManagerPolicy")
3382
+ def topology_manager_policy(self) -> Optional[pulumi.Input[str]]:
3383
+ """
3384
+ Name of the Topology Manager policy used.
3385
+ """
3386
+ return pulumi.get(self, "topology_manager_policy")
3387
+
3388
+ @topology_manager_policy.setter
3389
+ def topology_manager_policy(self, value: Optional[pulumi.Input[str]]):
3390
+ pulumi.set(self, "topology_manager_policy", value)
3391
+
3392
+ @property
3393
+ @pulumi.getter
3394
+ def tracing(self) -> Optional[pulumi.Input['NodePoolKubeletConfigurationTracingArgs']]:
3395
+ """
3396
+ OpenTelemetry tracks the configuration information for client settings versioning. See `tracing` below.
3397
+ """
3398
+ return pulumi.get(self, "tracing")
3399
+
3400
+ @tracing.setter
3401
+ def tracing(self, value: Optional[pulumi.Input['NodePoolKubeletConfigurationTracingArgs']]):
3402
+ pulumi.set(self, "tracing", value)
3403
+
3404
+
3405
+ if not MYPY:
3406
+ class NodePoolKubeletConfigurationReservedMemoryArgsDict(TypedDict):
3407
+ limits: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
3408
+ """
3409
+ Memory resource limit.
3410
+ """
3411
+ numa_node: NotRequired[pulumi.Input[int]]
3412
+ """
3413
+ The NUMA node.
3414
+ """
3415
+ elif False:
3416
+ NodePoolKubeletConfigurationReservedMemoryArgsDict: TypeAlias = Mapping[str, Any]
3417
+
3418
+ @pulumi.input_type
3419
+ class NodePoolKubeletConfigurationReservedMemoryArgs:
3420
+ def __init__(__self__, *,
3421
+ limits: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
3422
+ numa_node: Optional[pulumi.Input[int]] = None):
3423
+ """
3424
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] limits: Memory resource limit.
3425
+ :param pulumi.Input[int] numa_node: The NUMA node.
3426
+ """
3427
+ if limits is not None:
3428
+ pulumi.set(__self__, "limits", limits)
3429
+ if numa_node is not None:
3430
+ pulumi.set(__self__, "numa_node", numa_node)
3431
+
3432
+ @property
3433
+ @pulumi.getter
3434
+ def limits(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
3435
+ """
3436
+ Memory resource limit.
3437
+ """
3438
+ return pulumi.get(self, "limits")
3439
+
3440
+ @limits.setter
3441
+ def limits(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
3442
+ pulumi.set(self, "limits", value)
3443
+
3444
+ @property
3445
+ @pulumi.getter(name="numaNode")
3446
+ def numa_node(self) -> Optional[pulumi.Input[int]]:
3447
+ """
3448
+ The NUMA node.
3449
+ """
3450
+ return pulumi.get(self, "numa_node")
3451
+
3452
+ @numa_node.setter
3453
+ def numa_node(self, value: Optional[pulumi.Input[int]]):
3454
+ pulumi.set(self, "numa_node", value)
3455
+
3456
+
3457
+ if not MYPY:
3458
+ class NodePoolKubeletConfigurationTracingArgsDict(TypedDict):
3459
+ endpoint: NotRequired[pulumi.Input[str]]
3460
+ """
3461
+ The endpoint of the collector.
3462
+ """
3463
+ sampling_rate_per_million: NotRequired[pulumi.Input[str]]
3464
+ """
3465
+ Number of samples to be collected per million span.
3466
+ """
3467
+ elif False:
3468
+ NodePoolKubeletConfigurationTracingArgsDict: TypeAlias = Mapping[str, Any]
3469
+
3470
+ @pulumi.input_type
3471
+ class NodePoolKubeletConfigurationTracingArgs:
3472
+ def __init__(__self__, *,
3473
+ endpoint: Optional[pulumi.Input[str]] = None,
3474
+ sampling_rate_per_million: Optional[pulumi.Input[str]] = None):
3475
+ """
3476
+ :param pulumi.Input[str] endpoint: The endpoint of the collector.
3477
+ :param pulumi.Input[str] sampling_rate_per_million: Number of samples to be collected per million span.
3478
+ """
3479
+ if endpoint is not None:
3480
+ pulumi.set(__self__, "endpoint", endpoint)
3481
+ if sampling_rate_per_million is not None:
3482
+ pulumi.set(__self__, "sampling_rate_per_million", sampling_rate_per_million)
3483
+
3484
+ @property
3485
+ @pulumi.getter
3486
+ def endpoint(self) -> Optional[pulumi.Input[str]]:
3487
+ """
3488
+ The endpoint of the collector.
3489
+ """
3490
+ return pulumi.get(self, "endpoint")
3491
+
3492
+ @endpoint.setter
3493
+ def endpoint(self, value: Optional[pulumi.Input[str]]):
3494
+ pulumi.set(self, "endpoint", value)
3495
+
3496
+ @property
3497
+ @pulumi.getter(name="samplingRatePerMillion")
3498
+ def sampling_rate_per_million(self) -> Optional[pulumi.Input[str]]:
3499
+ """
3500
+ Number of samples to be collected per million span.
3501
+ """
3502
+ return pulumi.get(self, "sampling_rate_per_million")
3503
+
3504
+ @sampling_rate_per_million.setter
3505
+ def sampling_rate_per_million(self, value: Optional[pulumi.Input[str]]):
3506
+ pulumi.set(self, "sampling_rate_per_million", value)
3507
+
3160
3508
 
3161
3509
  if not MYPY:
3162
3510
  class NodePoolLabelArgsDict(TypedDict):
@@ -96,7 +96,7 @@ class KubernetesArgs:
96
96
  :param pulumi.Input[str] key_name: The keypair of ssh login cluster node, you have to create it first. You have to specify one of `password` `key_name` `kms_encrypted_password` fields.
97
97
  :param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a cs kubernetes. You have to specify one of `password` `key_name` `kms_encrypted_password` fields.
98
98
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a cs kubernetes with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
99
- :param pulumi.Input[str] load_balancer_spec: The cluster api server load balance instance specification, default `slb.s1.small`. For more information on how to select a LB instance specification, see [SLB instance overview](https://help.aliyun.com/document_detail/85931.html). Only works for **Create** Operation.
99
+ :param pulumi.Input[str] load_balancer_spec: The cluster api server load balancer instance specification. For more information on how to select a LB instance specification, see [SLB instance overview](https://help.aliyun.com/document_detail/85931.html). Only works for **Create** Operation. The spec will not take effect because the charge of the load balancer has been changed to PayByCLCU.
100
100
  :param pulumi.Input[bool] master_auto_renew: Enable master payment auto-renew, defaults to false.
101
101
  :param pulumi.Input[int] master_auto_renew_period: Master payment auto-renew period, it can be one of {1, 2, 3, 6, 12}.
102
102
  :param pulumi.Input[str] master_disk_category: The system disk category of master node. Its valid value are `cloud_ssd`, `cloud_essd` and `cloud_efficiency`. Default to `cloud_efficiency`.
@@ -170,8 +170,8 @@ class KubernetesArgs:
170
170
  if kms_encryption_context is not None:
171
171
  pulumi.set(__self__, "kms_encryption_context", kms_encryption_context)
172
172
  if load_balancer_spec is not None:
173
- warnings.warn("""Field 'load_balancer_spec' has been deprecated from provider version 1.232.0. The load balancer has been changed to PayByCLCU so that the spec is no need anymore.""", DeprecationWarning)
174
- pulumi.log.warn("""load_balancer_spec is deprecated: Field 'load_balancer_spec' has been deprecated from provider version 1.232.0. The load balancer has been changed to PayByCLCU so that the spec is no need anymore.""")
173
+ warnings.warn("""Field 'load_balancer_spec' has been deprecated from provider version 1.232.0. The spec will not take effect because the charge of the load balancer has been changed to PayByCLCU""", DeprecationWarning)
174
+ pulumi.log.warn("""load_balancer_spec is deprecated: Field 'load_balancer_spec' has been deprecated from provider version 1.232.0. The spec will not take effect because the charge of the load balancer has been changed to PayByCLCU""")
175
175
  if load_balancer_spec is not None:
176
176
  pulumi.set(__self__, "load_balancer_spec", load_balancer_spec)
177
177
  if master_auto_renew is not None:
@@ -464,10 +464,10 @@ class KubernetesArgs:
464
464
 
465
465
  @property
466
466
  @pulumi.getter(name="loadBalancerSpec")
467
- @_utilities.deprecated("""Field 'load_balancer_spec' has been deprecated from provider version 1.232.0. The load balancer has been changed to PayByCLCU so that the spec is no need anymore.""")
467
+ @_utilities.deprecated("""Field 'load_balancer_spec' has been deprecated from provider version 1.232.0. The spec will not take effect because the charge of the load balancer has been changed to PayByCLCU""")
468
468
  def load_balancer_spec(self) -> Optional[pulumi.Input[str]]:
469
469
  """
470
- The cluster api server load balance instance specification, default `slb.s1.small`. For more information on how to select a LB instance specification, see [SLB instance overview](https://help.aliyun.com/document_detail/85931.html). Only works for **Create** Operation.
470
+ The cluster api server load balancer instance specification. For more information on how to select a LB instance specification, see [SLB instance overview](https://help.aliyun.com/document_detail/85931.html). Only works for **Create** Operation. The spec will not take effect because the charge of the load balancer has been changed to PayByCLCU.
471
471
  """
472
472
  return pulumi.get(self, "load_balancer_spec")
473
473
 
@@ -949,7 +949,7 @@ class _KubernetesState:
949
949
  :param pulumi.Input[str] key_name: The keypair of ssh login cluster node, you have to create it first. You have to specify one of `password` `key_name` `kms_encrypted_password` fields.
950
950
  :param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a cs kubernetes. You have to specify one of `password` `key_name` `kms_encrypted_password` fields.
951
951
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a cs kubernetes with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
952
- :param pulumi.Input[str] load_balancer_spec: The cluster api server load balance instance specification, default `slb.s1.small`. For more information on how to select a LB instance specification, see [SLB instance overview](https://help.aliyun.com/document_detail/85931.html). Only works for **Create** Operation.
952
+ :param pulumi.Input[str] load_balancer_spec: The cluster api server load balancer instance specification. For more information on how to select a LB instance specification, see [SLB instance overview](https://help.aliyun.com/document_detail/85931.html). Only works for **Create** Operation. The spec will not take effect because the charge of the load balancer has been changed to PayByCLCU.
953
953
  :param pulumi.Input[bool] master_auto_renew: Enable master payment auto-renew, defaults to false.
954
954
  :param pulumi.Input[int] master_auto_renew_period: Master payment auto-renew period, it can be one of {1, 2, 3, 6, 12}.
955
955
  :param pulumi.Input[str] master_disk_category: The system disk category of master node. Its valid value are `cloud_ssd`, `cloud_essd` and `cloud_efficiency`. Default to `cloud_efficiency`.
@@ -1034,8 +1034,8 @@ class _KubernetesState:
1034
1034
  if kms_encryption_context is not None:
1035
1035
  pulumi.set(__self__, "kms_encryption_context", kms_encryption_context)
1036
1036
  if load_balancer_spec is not None:
1037
- warnings.warn("""Field 'load_balancer_spec' has been deprecated from provider version 1.232.0. The load balancer has been changed to PayByCLCU so that the spec is no need anymore.""", DeprecationWarning)
1038
- pulumi.log.warn("""load_balancer_spec is deprecated: Field 'load_balancer_spec' has been deprecated from provider version 1.232.0. The load balancer has been changed to PayByCLCU so that the spec is no need anymore.""")
1037
+ warnings.warn("""Field 'load_balancer_spec' has been deprecated from provider version 1.232.0. The spec will not take effect because the charge of the load balancer has been changed to PayByCLCU""", DeprecationWarning)
1038
+ pulumi.log.warn("""load_balancer_spec is deprecated: Field 'load_balancer_spec' has been deprecated from provider version 1.232.0. The spec will not take effect because the charge of the load balancer has been changed to PayByCLCU""")
1039
1039
  if load_balancer_spec is not None:
1040
1040
  pulumi.set(__self__, "load_balancer_spec", load_balancer_spec)
1041
1041
  if master_auto_renew is not None:
@@ -1346,10 +1346,10 @@ class _KubernetesState:
1346
1346
 
1347
1347
  @property
1348
1348
  @pulumi.getter(name="loadBalancerSpec")
1349
- @_utilities.deprecated("""Field 'load_balancer_spec' has been deprecated from provider version 1.232.0. The load balancer has been changed to PayByCLCU so that the spec is no need anymore.""")
1349
+ @_utilities.deprecated("""Field 'load_balancer_spec' has been deprecated from provider version 1.232.0. The spec will not take effect because the charge of the load balancer has been changed to PayByCLCU""")
1350
1350
  def load_balancer_spec(self) -> Optional[pulumi.Input[str]]:
1351
1351
  """
1352
- The cluster api server load balance instance specification, default `slb.s1.small`. For more information on how to select a LB instance specification, see [SLB instance overview](https://help.aliyun.com/document_detail/85931.html). Only works for **Create** Operation.
1352
+ The cluster api server load balancer instance specification. For more information on how to select a LB instance specification, see [SLB instance overview](https://help.aliyun.com/document_detail/85931.html). Only works for **Create** Operation. The spec will not take effect because the charge of the load balancer has been changed to PayByCLCU.
1353
1353
  """
1354
1354
  return pulumi.get(self, "load_balancer_spec")
1355
1355
 
@@ -1976,7 +1976,7 @@ class Kubernetes(pulumi.CustomResource):
1976
1976
  :param pulumi.Input[str] key_name: The keypair of ssh login cluster node, you have to create it first. You have to specify one of `password` `key_name` `kms_encrypted_password` fields.
1977
1977
  :param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a cs kubernetes. You have to specify one of `password` `key_name` `kms_encrypted_password` fields.
1978
1978
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a cs kubernetes with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
1979
- :param pulumi.Input[str] load_balancer_spec: The cluster api server load balance instance specification, default `slb.s1.small`. For more information on how to select a LB instance specification, see [SLB instance overview](https://help.aliyun.com/document_detail/85931.html). Only works for **Create** Operation.
1979
+ :param pulumi.Input[str] load_balancer_spec: The cluster api server load balancer instance specification. For more information on how to select a LB instance specification, see [SLB instance overview](https://help.aliyun.com/document_detail/85931.html). Only works for **Create** Operation. The spec will not take effect because the charge of the load balancer has been changed to PayByCLCU.
1980
1980
  :param pulumi.Input[bool] master_auto_renew: Enable master payment auto-renew, defaults to false.
1981
1981
  :param pulumi.Input[int] master_auto_renew_period: Master payment auto-renew period, it can be one of {1, 2, 3, 6, 12}.
1982
1982
  :param pulumi.Input[str] master_disk_category: The system disk category of master node. Its valid value are `cloud_ssd`, `cloud_essd` and `cloud_efficiency`. Default to `cloud_efficiency`.
@@ -2308,7 +2308,7 @@ class Kubernetes(pulumi.CustomResource):
2308
2308
  :param pulumi.Input[str] key_name: The keypair of ssh login cluster node, you have to create it first. You have to specify one of `password` `key_name` `kms_encrypted_password` fields.
2309
2309
  :param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a cs kubernetes. You have to specify one of `password` `key_name` `kms_encrypted_password` fields.
2310
2310
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a cs kubernetes with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
2311
- :param pulumi.Input[str] load_balancer_spec: The cluster api server load balance instance specification, default `slb.s1.small`. For more information on how to select a LB instance specification, see [SLB instance overview](https://help.aliyun.com/document_detail/85931.html). Only works for **Create** Operation.
2311
+ :param pulumi.Input[str] load_balancer_spec: The cluster api server load balancer instance specification. For more information on how to select a LB instance specification, see [SLB instance overview](https://help.aliyun.com/document_detail/85931.html). Only works for **Create** Operation. The spec will not take effect because the charge of the load balancer has been changed to PayByCLCU.
2312
2312
  :param pulumi.Input[bool] master_auto_renew: Enable master payment auto-renew, defaults to false.
2313
2313
  :param pulumi.Input[int] master_auto_renew_period: Master payment auto-renew period, it can be one of {1, 2, 3, 6, 12}.
2314
2314
  :param pulumi.Input[str] master_disk_category: The system disk category of master node. Its valid value are `cloud_ssd`, `cloud_essd` and `cloud_efficiency`. Default to `cloud_efficiency`.
@@ -2572,10 +2572,10 @@ class Kubernetes(pulumi.CustomResource):
2572
2572
 
2573
2573
  @property
2574
2574
  @pulumi.getter(name="loadBalancerSpec")
2575
- @_utilities.deprecated("""Field 'load_balancer_spec' has been deprecated from provider version 1.232.0. The load balancer has been changed to PayByCLCU so that the spec is no need anymore.""")
2576
- def load_balancer_spec(self) -> pulumi.Output[Optional[str]]:
2575
+ @_utilities.deprecated("""Field 'load_balancer_spec' has been deprecated from provider version 1.232.0. The spec will not take effect because the charge of the load balancer has been changed to PayByCLCU""")
2576
+ def load_balancer_spec(self) -> pulumi.Output[str]:
2577
2577
  """
2578
- The cluster api server load balance instance specification, default `slb.s1.small`. For more information on how to select a LB instance specification, see [SLB instance overview](https://help.aliyun.com/document_detail/85931.html). Only works for **Create** Operation.
2578
+ The cluster api server load balancer instance specification. For more information on how to select a LB instance specification, see [SLB instance overview](https://help.aliyun.com/document_detail/85931.html). Only works for **Create** Operation. The spec will not take effect because the charge of the load balancer has been changed to PayByCLCU.
2579
2579
  """
2580
2580
  return pulumi.get(self, "load_balancer_spec")
2581
2581