pulumi-alicloud 3.51.0a1710157550__py3-none-any.whl → 3.73.0a1736832142__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 (1909) hide show
  1. pulumi_alicloud/__init__.py +1008 -21
  2. pulumi_alicloud/_inputs.py +1255 -65
  3. pulumi_alicloud/_utilities.py +41 -5
  4. pulumi_alicloud/ackone/_inputs.py +25 -0
  5. pulumi_alicloud/ackone/cluster.py +22 -21
  6. pulumi_alicloud/ackone/outputs.py +5 -0
  7. pulumi_alicloud/actiontrail/get_consumer_groups.py +26 -13
  8. pulumi_alicloud/actiontrail/get_global_events_storage_region.py +12 -9
  9. pulumi_alicloud/actiontrail/get_history_delivery_jobs.py +20 -9
  10. pulumi_alicloud/actiontrail/get_instances.py +33 -19
  11. pulumi_alicloud/actiontrail/get_sasl_acls.py +30 -17
  12. pulumi_alicloud/actiontrail/get_sasl_users.py +19 -9
  13. pulumi_alicloud/actiontrail/get_topics.py +28 -9
  14. pulumi_alicloud/actiontrail/get_trails.py +27 -12
  15. pulumi_alicloud/actiontrail/get_trails_deprecated.py +27 -8
  16. pulumi_alicloud/actiontrail/global_events_storage_region.py +5 -4
  17. pulumi_alicloud/actiontrail/history_delivery_job.py +23 -22
  18. pulumi_alicloud/actiontrail/outputs.py +14 -9
  19. pulumi_alicloud/actiontrail/trail.py +40 -45
  20. pulumi_alicloud/actiontrail/trail_deprecated.py +20 -35
  21. pulumi_alicloud/adb/_inputs.py +43 -0
  22. pulumi_alicloud/adb/account.py +53 -84
  23. pulumi_alicloud/adb/backup_policy.py +5 -0
  24. pulumi_alicloud/adb/cluster.py +205 -46
  25. pulumi_alicloud/adb/connection.py +31 -68
  26. pulumi_alicloud/adb/db_cluster.py +281 -32
  27. pulumi_alicloud/adb/db_cluster_lake_version.py +21 -20
  28. pulumi_alicloud/adb/get_clusters.py +39 -14
  29. pulumi_alicloud/adb/get_db_cluster_lake_versions.py +67 -15
  30. pulumi_alicloud/adb/get_db_clusters.py +39 -14
  31. pulumi_alicloud/adb/get_resource_groups.py +20 -9
  32. pulumi_alicloud/adb/get_zones.py +19 -9
  33. pulumi_alicloud/adb/lake_account.py +74 -73
  34. pulumi_alicloud/adb/outputs.py +117 -8
  35. pulumi_alicloud/adb/resource_group.py +122 -97
  36. pulumi_alicloud/alb/__init__.py +1 -0
  37. pulumi_alicloud/alb/_inputs.py +912 -98
  38. pulumi_alicloud/alb/a_script.py +10 -5
  39. pulumi_alicloud/alb/acl.py +55 -61
  40. pulumi_alicloud/alb/acl_entry_attachment.py +13 -12
  41. pulumi_alicloud/alb/get_acls.py +31 -11
  42. pulumi_alicloud/alb/get_ascripts.py +31 -15
  43. pulumi_alicloud/alb/get_health_check_templates.py +23 -9
  44. pulumi_alicloud/alb/get_listeners.py +28 -11
  45. pulumi_alicloud/alb/get_load_balancers.py +59 -27
  46. pulumi_alicloud/alb/get_rules.py +27 -5
  47. pulumi_alicloud/alb/get_security_policies.py +36 -16
  48. pulumi_alicloud/alb/get_server_groups.py +38 -14
  49. pulumi_alicloud/alb/get_system_security_policies.py +21 -12
  50. pulumi_alicloud/alb/get_zones.py +15 -9
  51. pulumi_alicloud/alb/health_check_template.py +101 -92
  52. pulumi_alicloud/alb/listener.py +52 -53
  53. pulumi_alicloud/alb/listener_acl_attachment.py +5 -0
  54. pulumi_alicloud/alb/listener_additional_certificate_attachment.py +5 -0
  55. pulumi_alicloud/alb/load_balancer.py +144 -153
  56. pulumi_alicloud/alb/load_balancer_common_bandwidth_package_attachment.py +5 -0
  57. pulumi_alicloud/alb/load_balancer_security_group_attachment.py +332 -0
  58. pulumi_alicloud/alb/outputs.py +90 -115
  59. pulumi_alicloud/alb/rule.py +29 -10
  60. pulumi_alicloud/alb/security_policy.py +25 -24
  61. pulumi_alicloud/alb/server_group.py +139 -115
  62. pulumi_alicloud/aligreen/__init__.py +13 -0
  63. pulumi_alicloud/aligreen/audit_callback.py +427 -0
  64. pulumi_alicloud/aligreen/biz_type.py +403 -0
  65. pulumi_alicloud/aligreen/callback.py +454 -0
  66. pulumi_alicloud/aligreen/image_lib.py +411 -0
  67. pulumi_alicloud/aligreen/keyword_lib.py +620 -0
  68. pulumi_alicloud/aligreen/oss_stock_task.py +1666 -0
  69. pulumi_alicloud/alikafka/consumer_group.py +39 -36
  70. pulumi_alicloud/alikafka/instance.py +209 -44
  71. pulumi_alicloud/alikafka/instance_allowed_ip_attachment.py +80 -63
  72. pulumi_alicloud/alikafka/sasl_acl.py +35 -24
  73. pulumi_alicloud/alikafka/sasl_user.py +45 -34
  74. pulumi_alicloud/alikafka/topic.py +39 -36
  75. pulumi_alicloud/amqp/binding.py +88 -94
  76. pulumi_alicloud/amqp/exchange.py +15 -14
  77. pulumi_alicloud/amqp/get_bindings.py +19 -9
  78. pulumi_alicloud/amqp/get_exchanges.py +23 -9
  79. pulumi_alicloud/amqp/get_instances.py +25 -11
  80. pulumi_alicloud/amqp/get_queues.py +23 -9
  81. pulumi_alicloud/amqp/get_static_accounts.py +18 -9
  82. pulumi_alicloud/amqp/get_virtual_hosts.py +21 -9
  83. pulumi_alicloud/amqp/instance.py +462 -184
  84. pulumi_alicloud/amqp/outputs.py +11 -6
  85. pulumi_alicloud/amqp/queue.py +17 -16
  86. pulumi_alicloud/amqp/static_account.py +23 -22
  87. pulumi_alicloud/amqp/virtual_host.py +11 -10
  88. pulumi_alicloud/apig/__init__.py +12 -0
  89. pulumi_alicloud/apig/_inputs.py +263 -0
  90. pulumi_alicloud/apig/environment.py +317 -0
  91. pulumi_alicloud/apig/gateway.py +645 -0
  92. pulumi_alicloud/apig/http_api.py +465 -0
  93. pulumi_alicloud/apig/outputs.py +213 -0
  94. pulumi_alicloud/apigateway/__init__.py +4 -0
  95. pulumi_alicloud/apigateway/_inputs.py +700 -39
  96. pulumi_alicloud/apigateway/access_control_list.py +335 -0
  97. pulumi_alicloud/apigateway/acl_entry_attachment.py +308 -0
  98. pulumi_alicloud/apigateway/api.py +101 -92
  99. pulumi_alicloud/apigateway/app.py +25 -20
  100. pulumi_alicloud/apigateway/app_attachment.py +69 -58
  101. pulumi_alicloud/apigateway/backend.py +5 -4
  102. pulumi_alicloud/apigateway/get_apis.py +119 -32
  103. pulumi_alicloud/apigateway/get_apps.py +26 -14
  104. pulumi_alicloud/apigateway/get_backends.py +23 -9
  105. pulumi_alicloud/apigateway/get_groups.py +19 -9
  106. pulumi_alicloud/apigateway/get_log_configs.py +20 -11
  107. pulumi_alicloud/apigateway/get_models.py +27 -9
  108. pulumi_alicloud/apigateway/get_plugins.py +38 -18
  109. pulumi_alicloud/apigateway/get_service.py +14 -9
  110. pulumi_alicloud/apigateway/group.py +67 -14
  111. pulumi_alicloud/apigateway/instance.py +401 -67
  112. pulumi_alicloud/apigateway/instance_acl_attachment.py +331 -0
  113. pulumi_alicloud/apigateway/log_config.py +21 -20
  114. pulumi_alicloud/apigateway/model.py +15 -10
  115. pulumi_alicloud/apigateway/outputs.py +411 -48
  116. pulumi_alicloud/apigateway/plugin.py +240 -87
  117. pulumi_alicloud/apigateway/plugin_attachment.py +425 -0
  118. pulumi_alicloud/apigateway/vpc_access.py +33 -28
  119. pulumi_alicloud/arms/__init__.py +2 -0
  120. pulumi_alicloud/arms/_inputs.py +903 -23
  121. pulumi_alicloud/arms/addon_release.py +5 -0
  122. pulumi_alicloud/arms/alert_contact.py +5 -4
  123. pulumi_alicloud/arms/alert_contact_group.py +11 -10
  124. pulumi_alicloud/arms/alert_robot.py +421 -0
  125. pulumi_alicloud/arms/dispatch_rule.py +160 -86
  126. pulumi_alicloud/arms/env_custom_job.py +11 -10
  127. pulumi_alicloud/arms/env_feature.py +5 -0
  128. pulumi_alicloud/arms/env_pod_monitor.py +5 -0
  129. pulumi_alicloud/arms/env_service_monitor.py +5 -0
  130. pulumi_alicloud/arms/environment.py +141 -21
  131. pulumi_alicloud/arms/get_alert_contact_groups.py +25 -9
  132. pulumi_alicloud/arms/get_alert_contacts.py +25 -9
  133. pulumi_alicloud/arms/get_alert_robots.py +230 -0
  134. pulumi_alicloud/arms/get_dispatch_rules.py +124 -17
  135. pulumi_alicloud/arms/get_integration_exporters.py +20 -9
  136. pulumi_alicloud/arms/get_prometheis.py +50 -34
  137. pulumi_alicloud/arms/get_prometheus.py +48 -32
  138. pulumi_alicloud/arms/get_prometheus_alert_rules.py +27 -9
  139. pulumi_alicloud/arms/get_prometheus_monitorings.py +25 -9
  140. pulumi_alicloud/arms/get_remote_writes.py +27 -11
  141. pulumi_alicloud/arms/grafana_workspace.py +25 -24
  142. pulumi_alicloud/arms/integration_exporter.py +27 -22
  143. pulumi_alicloud/arms/outputs.py +437 -48
  144. pulumi_alicloud/arms/prometheus.py +39 -34
  145. pulumi_alicloud/arms/prometheus_alert_rule.py +73 -10
  146. pulumi_alicloud/arms/prometheus_monitoring.py +5 -0
  147. pulumi_alicloud/arms/remote_write.py +31 -22
  148. pulumi_alicloud/arms/synthetic_task.py +328 -327
  149. pulumi_alicloud/bastionhost/_inputs.py +115 -0
  150. pulumi_alicloud/bastionhost/get_host_accounts.py +27 -9
  151. pulumi_alicloud/bastionhost/get_host_groups.py +23 -9
  152. pulumi_alicloud/bastionhost/get_host_share_keys.py +23 -9
  153. pulumi_alicloud/bastionhost/get_hosts.py +35 -9
  154. pulumi_alicloud/bastionhost/get_instances.py +30 -22
  155. pulumi_alicloud/bastionhost/get_user_groups.py +23 -9
  156. pulumi_alicloud/bastionhost/get_users.py +37 -13
  157. pulumi_alicloud/bastionhost/host.py +51 -29
  158. pulumi_alicloud/bastionhost/host_account.py +25 -24
  159. pulumi_alicloud/bastionhost/host_account_share_key_attachment.py +29 -28
  160. pulumi_alicloud/bastionhost/host_account_user_attachment.py +29 -28
  161. pulumi_alicloud/bastionhost/host_account_user_group_attachment.py +29 -28
  162. pulumi_alicloud/bastionhost/host_attachment.py +27 -26
  163. pulumi_alicloud/bastionhost/host_group.py +23 -22
  164. pulumi_alicloud/bastionhost/host_group_account_user_attachment.py +31 -30
  165. pulumi_alicloud/bastionhost/host_group_account_user_group_attachment.py +31 -30
  166. pulumi_alicloud/bastionhost/host_share_key.py +91 -0
  167. pulumi_alicloud/bastionhost/instance.py +43 -24
  168. pulumi_alicloud/bastionhost/outputs.py +8 -7
  169. pulumi_alicloud/bastionhost/user.py +31 -28
  170. pulumi_alicloud/bastionhost/user_attachment.py +27 -26
  171. pulumi_alicloud/bastionhost/user_group.py +23 -22
  172. pulumi_alicloud/bp/_inputs.py +25 -0
  173. pulumi_alicloud/bp/get_studio_applications.py +29 -9
  174. pulumi_alicloud/bp/outputs.py +5 -0
  175. pulumi_alicloud/bp/studio_application.py +56 -55
  176. pulumi_alicloud/brain/get_industrial_pid_loops.py +45 -11
  177. pulumi_alicloud/brain/get_industrial_pid_organizations.py +33 -11
  178. pulumi_alicloud/brain/get_industrial_pid_projects.py +41 -11
  179. pulumi_alicloud/brain/get_industrial_serice.py +20 -11
  180. pulumi_alicloud/brain/industrial_pid_loop.py +11 -6
  181. pulumi_alicloud/brain/industrial_pid_organization.py +11 -6
  182. pulumi_alicloud/brain/industrial_pid_project.py +11 -6
  183. pulumi_alicloud/brain/outputs.py +5 -0
  184. pulumi_alicloud/bss/get_open_api_pricing_modules.py +29 -13
  185. pulumi_alicloud/bss/get_open_api_products.py +23 -9
  186. pulumi_alicloud/bss/outputs.py +5 -0
  187. pulumi_alicloud/cas/certificate.py +151 -38
  188. pulumi_alicloud/cas/get_certificates.py +40 -32
  189. pulumi_alicloud/cas/get_service_certificates.py +176 -26
  190. pulumi_alicloud/cas/outputs.py +45 -40
  191. pulumi_alicloud/cas/service_certificate.py +27 -49
  192. pulumi_alicloud/cassandra/backup_plan.py +9 -0
  193. pulumi_alicloud/cassandra/cluster.py +37 -32
  194. pulumi_alicloud/cassandra/data_center.py +15 -10
  195. pulumi_alicloud/cassandra/get_backup_plans.py +21 -9
  196. pulumi_alicloud/cassandra/get_clusters.py +30 -14
  197. pulumi_alicloud/cassandra/get_data_centers.py +29 -13
  198. pulumi_alicloud/cassandra/get_zones.py +23 -11
  199. pulumi_alicloud/cassandra/outputs.py +8 -3
  200. pulumi_alicloud/cddc/_inputs.py +53 -0
  201. pulumi_alicloud/cddc/dedicated_host.py +19 -14
  202. pulumi_alicloud/cddc/dedicated_host_account.py +38 -33
  203. pulumi_alicloud/cddc/dedicated_host_group.py +15 -10
  204. pulumi_alicloud/cddc/dedicated_propre_host.py +31 -26
  205. pulumi_alicloud/cddc/get_dedicated_host_accounts.py +27 -11
  206. pulumi_alicloud/cddc/get_dedicated_host_groups.py +23 -11
  207. pulumi_alicloud/cddc/get_dedicated_hosts.py +49 -24
  208. pulumi_alicloud/cddc/get_host_ecs_level_infos.py +22 -5
  209. pulumi_alicloud/cddc/get_zones.py +15 -9
  210. pulumi_alicloud/cddc/outputs.py +8 -3
  211. pulumi_alicloud/cdn/_inputs.py +154 -18
  212. pulumi_alicloud/cdn/domain.py +131 -216
  213. pulumi_alicloud/cdn/domain_config.py +98 -50
  214. pulumi_alicloud/cdn/domain_new.py +142 -99
  215. pulumi_alicloud/cdn/fc_trigger.py +15 -14
  216. pulumi_alicloud/cdn/get_blocked_regions.py +14 -9
  217. pulumi_alicloud/cdn/get_ip_info.py +18 -9
  218. pulumi_alicloud/cdn/get_real_time_log_deliveries.py +18 -11
  219. pulumi_alicloud/cdn/get_service.py +19 -9
  220. pulumi_alicloud/cdn/outputs.py +7 -16
  221. pulumi_alicloud/cdn/real_time_log_delivery.py +136 -84
  222. pulumi_alicloud/cen/__init__.py +1 -0
  223. pulumi_alicloud/cen/_inputs.py +261 -14
  224. pulumi_alicloud/cen/bandwidth_limit.py +23 -30
  225. pulumi_alicloud/cen/bandwidth_package.py +14 -27
  226. pulumi_alicloud/cen/bandwidth_package_attachment.py +13 -12
  227. pulumi_alicloud/cen/child_instance_route_entry_to_attachment.py +45 -44
  228. pulumi_alicloud/cen/flow_log.py +394 -72
  229. pulumi_alicloud/cen/get_bandwidth_limits.py +16 -9
  230. pulumi_alicloud/cen/get_bandwidth_packages.py +25 -9
  231. pulumi_alicloud/cen/get_child_instance_route_entry_to_attachments.py +24 -9
  232. pulumi_alicloud/cen/get_flowlogs.py +278 -43
  233. pulumi_alicloud/cen/get_instance_attachments.py +23 -9
  234. pulumi_alicloud/cen/get_instances.py +28 -14
  235. pulumi_alicloud/cen/get_inter_region_traffic_qos_policies.py +31 -9
  236. pulumi_alicloud/cen/get_inter_region_traffic_qos_queues.py +25 -13
  237. pulumi_alicloud/cen/get_private_zones.py +22 -9
  238. pulumi_alicloud/cen/get_region_route_entries.py +18 -9
  239. pulumi_alicloud/cen/get_route_entries.py +20 -9
  240. pulumi_alicloud/cen/get_route_maps.py +26 -9
  241. pulumi_alicloud/cen/get_route_services.py +27 -9
  242. pulumi_alicloud/cen/get_traffic_marking_policies.py +27 -13
  243. pulumi_alicloud/cen/get_transit_route_table_aggregations.py +25 -9
  244. pulumi_alicloud/cen/get_transit_router_available_resources.py +48 -20
  245. pulumi_alicloud/cen/get_transit_router_cidrs.py +23 -9
  246. pulumi_alicloud/cen/get_transit_router_multicast_domain_associations.py +28 -9
  247. pulumi_alicloud/cen/get_transit_router_multicast_domain_members.py +20 -9
  248. pulumi_alicloud/cen/get_transit_router_multicast_domain_peer_members.py +26 -9
  249. pulumi_alicloud/cen/get_transit_router_multicast_domain_sources.py +18 -9
  250. pulumi_alicloud/cen/get_transit_router_multicast_domains.py +25 -9
  251. pulumi_alicloud/cen/get_transit_router_peer_attachments.py +27 -5
  252. pulumi_alicloud/cen/get_transit_router_prefix_list_associations.py +32 -11
  253. pulumi_alicloud/cen/get_transit_router_route_entries.py +29 -5
  254. pulumi_alicloud/cen/get_transit_router_route_table_associations.py +34 -9
  255. pulumi_alicloud/cen/get_transit_router_route_table_propagations.py +20 -9
  256. pulumi_alicloud/cen/get_transit_router_route_tables.py +112 -19
  257. pulumi_alicloud/cen/get_transit_router_service.py +16 -11
  258. pulumi_alicloud/cen/get_transit_router_vbr_attachments.py +22 -5
  259. pulumi_alicloud/cen/get_transit_router_vpc_attachments.py +200 -23
  260. pulumi_alicloud/cen/get_transit_router_vpn_attachments.py +27 -11
  261. pulumi_alicloud/cen/get_transit_routers.py +27 -9
  262. pulumi_alicloud/cen/get_vbr_health_checks.py +23 -5
  263. pulumi_alicloud/cen/instance.py +127 -77
  264. pulumi_alicloud/cen/instance_attachment.py +13 -12
  265. pulumi_alicloud/cen/instance_grant.py +23 -70
  266. pulumi_alicloud/cen/inter_region_traffic_qos_policy.py +37 -54
  267. pulumi_alicloud/cen/inter_region_traffic_qos_queue.py +37 -52
  268. pulumi_alicloud/cen/outputs.py +377 -57
  269. pulumi_alicloud/cen/private_zone.py +86 -81
  270. pulumi_alicloud/cen/route_entry.py +41 -36
  271. pulumi_alicloud/cen/route_map.py +27 -34
  272. pulumi_alicloud/cen/route_service.py +17 -16
  273. pulumi_alicloud/cen/traffic_marking_policy.py +129 -65
  274. pulumi_alicloud/cen/transit_route_table_aggregation.py +15 -14
  275. pulumi_alicloud/cen/transit_router.py +25 -24
  276. pulumi_alicloud/cen/transit_router_cidr.py +13 -12
  277. pulumi_alicloud/cen/transit_router_ecr_attachment.py +589 -0
  278. pulumi_alicloud/cen/transit_router_grant_attachment.py +13 -12
  279. pulumi_alicloud/cen/transit_router_multicast_domain.py +27 -26
  280. pulumi_alicloud/cen/transit_router_multicast_domain_association.py +31 -30
  281. pulumi_alicloud/cen/transit_router_multicast_domain_member.py +5 -0
  282. pulumi_alicloud/cen/transit_router_multicast_domain_peer_member.py +39 -54
  283. pulumi_alicloud/cen/transit_router_multicast_domain_source.py +5 -0
  284. pulumi_alicloud/cen/transit_router_peer_attachment.py +162 -70
  285. pulumi_alicloud/cen/transit_router_prefix_list_association.py +49 -20
  286. pulumi_alicloud/cen/transit_router_route_entry.py +25 -24
  287. pulumi_alicloud/cen/transit_router_route_table.py +27 -26
  288. pulumi_alicloud/cen/transit_router_route_table_association.py +89 -84
  289. pulumi_alicloud/cen/transit_router_route_table_propagation.py +43 -42
  290. pulumi_alicloud/cen/transit_router_vbr_attachment.py +123 -100
  291. pulumi_alicloud/cen/transit_router_vpc_attachment.py +404 -196
  292. pulumi_alicloud/cen/transit_router_vpn_attachment.py +108 -105
  293. pulumi_alicloud/cen/vbr_health_check.py +30 -29
  294. pulumi_alicloud/cfg/_inputs.py +115 -0
  295. pulumi_alicloud/cfg/aggregate_compliance_pack.py +42 -47
  296. pulumi_alicloud/cfg/aggregate_config_rule.py +35 -34
  297. pulumi_alicloud/cfg/aggregate_delivery.py +260 -118
  298. pulumi_alicloud/cfg/aggregator.py +38 -23
  299. pulumi_alicloud/cfg/compliance_pack.py +38 -43
  300. pulumi_alicloud/cfg/configuration_recorder.py +5 -4
  301. pulumi_alicloud/cfg/delivery.py +280 -130
  302. pulumi_alicloud/cfg/delivery_channel.py +5 -0
  303. pulumi_alicloud/cfg/get_aggregate_compliance_packs.py +27 -11
  304. pulumi_alicloud/cfg/get_aggregate_config_rules.py +33 -13
  305. pulumi_alicloud/cfg/get_aggregate_deliveries.py +39 -11
  306. pulumi_alicloud/cfg/get_aggregators.py +25 -11
  307. pulumi_alicloud/cfg/get_compliance_packs.py +25 -11
  308. pulumi_alicloud/cfg/get_configuration_recorders.py +18 -17
  309. pulumi_alicloud/cfg/get_deliveries.py +32 -11
  310. pulumi_alicloud/cfg/get_delivery_channels.py +21 -13
  311. pulumi_alicloud/cfg/get_rules.py +33 -19
  312. pulumi_alicloud/cfg/outputs.py +39 -26
  313. pulumi_alicloud/cfg/remediation.py +33 -20
  314. pulumi_alicloud/cfg/rule.py +40 -57
  315. pulumi_alicloud/chatbot/get_agents.py +24 -9
  316. pulumi_alicloud/chatbot/outputs.py +5 -0
  317. pulumi_alicloud/chatbot/publish_task.py +11 -10
  318. pulumi_alicloud/clickhouse/_inputs.py +78 -0
  319. pulumi_alicloud/clickhouse/account.py +88 -42
  320. pulumi_alicloud/clickhouse/backup_policy.py +17 -16
  321. pulumi_alicloud/clickhouse/db_cluster.py +159 -51
  322. pulumi_alicloud/clickhouse/get_accounts.py +85 -31
  323. pulumi_alicloud/clickhouse/get_backup_policies.py +16 -9
  324. pulumi_alicloud/clickhouse/get_db_clusters.py +30 -17
  325. pulumi_alicloud/clickhouse/get_regions.py +22 -13
  326. pulumi_alicloud/clickhouse/outputs.py +57 -2
  327. pulumi_alicloud/cloudauth/face_config.py +5 -0
  328. pulumi_alicloud/cloudauth/get_face_configs.py +25 -15
  329. pulumi_alicloud/cloudauth/outputs.py +5 -0
  330. pulumi_alicloud/cloudconnect/get_networks.py +29 -17
  331. pulumi_alicloud/cloudconnect/network.py +9 -6
  332. pulumi_alicloud/cloudconnect/network_attachment.py +15 -12
  333. pulumi_alicloud/cloudconnect/network_grant.py +27 -44
  334. pulumi_alicloud/cloudconnect/outputs.py +5 -0
  335. pulumi_alicloud/cloudfirewall/__init__.py +3 -0
  336. pulumi_alicloud/cloudfirewall/_inputs.py +351 -0
  337. pulumi_alicloud/cloudfirewall/address_book.py +22 -21
  338. pulumi_alicloud/cloudfirewall/control_policy.py +663 -146
  339. pulumi_alicloud/cloudfirewall/control_policy_order.py +65 -48
  340. pulumi_alicloud/cloudfirewall/firewall_vpc_firewall.py +59 -58
  341. pulumi_alicloud/cloudfirewall/firewall_vpc_firewall_cen.py +26 -23
  342. pulumi_alicloud/cloudfirewall/firewall_vpc_firewall_control_policy.py +13 -12
  343. pulumi_alicloud/cloudfirewall/get_address_books.py +21 -9
  344. pulumi_alicloud/cloudfirewall/get_control_policies.py +33 -9
  345. pulumi_alicloud/cloudfirewall/get_instance_members.py +26 -13
  346. pulumi_alicloud/cloudfirewall/get_instances.py +36 -14
  347. pulumi_alicloud/cloudfirewall/get_vpc_firewall_cens.py +38 -13
  348. pulumi_alicloud/cloudfirewall/get_vpc_firewall_control_policies.py +84 -15
  349. pulumi_alicloud/cloudfirewall/get_vpc_firewalls.py +35 -11
  350. pulumi_alicloud/cloudfirewall/instance.py +248 -175
  351. pulumi_alicloud/cloudfirewall/instance_member.py +49 -0
  352. pulumi_alicloud/cloudfirewall/nat_firewall.py +816 -0
  353. pulumi_alicloud/cloudfirewall/nat_firewall_control_policy.py +1594 -0
  354. pulumi_alicloud/cloudfirewall/outputs.py +96 -4
  355. pulumi_alicloud/cloudfirewall/vpc_cen_tr_firewall.py +934 -0
  356. pulumi_alicloud/cloudmonitor/__init__.py +1 -0
  357. pulumi_alicloud/cloudmonitor/_inputs.py +89 -0
  358. pulumi_alicloud/cloudmonitor/get_service_hybrid_double_writes.py +247 -0
  359. pulumi_alicloud/cloudmonitor/outputs.py +68 -0
  360. pulumi_alicloud/cloudmonitor/service_basic_public.py +5 -4
  361. pulumi_alicloud/cloudmonitor/service_enterprise_public.py +5 -4
  362. pulumi_alicloud/cloudmonitor/service_group_monitoring_agent_process.py +65 -64
  363. pulumi_alicloud/cloudmonitor/service_hybrid_double_write.py +15 -14
  364. pulumi_alicloud/cloudmonitor/service_monitoring_agent_process.py +33 -28
  365. pulumi_alicloud/cloudsso/_inputs.py +45 -6
  366. pulumi_alicloud/cloudsso/access_configuration.py +110 -39
  367. pulumi_alicloud/cloudsso/access_configuration_provisioning.py +5 -0
  368. pulumi_alicloud/cloudsso/access_management.py +5 -0
  369. pulumi_alicloud/cloudsso/directory.py +46 -5
  370. pulumi_alicloud/cloudsso/get_access_assignments.py +30 -13
  371. pulumi_alicloud/cloudsso/get_access_configurations.py +23 -9
  372. pulumi_alicloud/cloudsso/get_directories.py +21 -9
  373. pulumi_alicloud/cloudsso/get_groups.py +25 -11
  374. pulumi_alicloud/cloudsso/get_scim_server_credentials.py +20 -9
  375. pulumi_alicloud/cloudsso/get_service.py +14 -9
  376. pulumi_alicloud/cloudsso/get_users.py +31 -13
  377. pulumi_alicloud/cloudsso/group.py +5 -0
  378. pulumi_alicloud/cloudsso/outputs.py +13 -8
  379. pulumi_alicloud/cloudsso/scim_server_credential.py +5 -0
  380. pulumi_alicloud/cloudsso/user.py +5 -0
  381. pulumi_alicloud/cloudsso/user_attachment.py +5 -0
  382. pulumi_alicloud/cloudstoragegateway/express_sync.py +5 -0
  383. pulumi_alicloud/cloudstoragegateway/express_sync_share_attachment.py +5 -0
  384. pulumi_alicloud/cloudstoragegateway/gateway.py +173 -92
  385. pulumi_alicloud/cloudstoragegateway/gateway_block_volume.py +5 -0
  386. pulumi_alicloud/cloudstoragegateway/gateway_cache_disk.py +79 -27
  387. pulumi_alicloud/cloudstoragegateway/gateway_file_share.py +5 -0
  388. pulumi_alicloud/cloudstoragegateway/gateway_logging.py +5 -0
  389. pulumi_alicloud/cloudstoragegateway/gateway_smb_user.py +5 -0
  390. pulumi_alicloud/cloudstoragegateway/get_express_syncs.py +19 -9
  391. pulumi_alicloud/cloudstoragegateway/get_gateway_block_volumes.py +25 -11
  392. pulumi_alicloud/cloudstoragegateway/get_gateway_cache_disks.py +22 -11
  393. pulumi_alicloud/cloudstoragegateway/get_gateway_file_shares.py +21 -9
  394. pulumi_alicloud/cloudstoragegateway/get_gateway_smb_users.py +30 -19
  395. pulumi_alicloud/cloudstoragegateway/get_gateways.py +28 -9
  396. pulumi_alicloud/cloudstoragegateway/get_service.py +14 -9
  397. pulumi_alicloud/cloudstoragegateway/get_stocks.py +16 -9
  398. pulumi_alicloud/cloudstoragegateway/get_storage_bundles.py +26 -5
  399. pulumi_alicloud/cloudstoragegateway/outputs.py +5 -0
  400. pulumi_alicloud/cloudstoragegateway/storage_bundle.py +5 -4
  401. pulumi_alicloud/cms/__init__.py +1 -0
  402. pulumi_alicloud/cms/_inputs.py +1037 -68
  403. pulumi_alicloud/cms/alarm.py +176 -140
  404. pulumi_alicloud/cms/alarm_contact.py +5 -4
  405. pulumi_alicloud/cms/alarm_contact_group.py +5 -4
  406. pulumi_alicloud/cms/dynamic_tag_group.py +71 -68
  407. pulumi_alicloud/cms/event_rule.py +54 -53
  408. pulumi_alicloud/cms/get_alarm_contact_groups.py +19 -9
  409. pulumi_alicloud/cms/get_alarm_contacts.py +25 -11
  410. pulumi_alicloud/cms/get_dynamic_tag_groups.py +34 -23
  411. pulumi_alicloud/cms/get_event_rules.py +29 -11
  412. pulumi_alicloud/cms/get_group_metric_rules.py +37 -13
  413. pulumi_alicloud/cms/get_hybrid_monitor_datas.py +24 -9
  414. pulumi_alicloud/cms/get_hybrid_monitor_fc_tasks.py +24 -11
  415. pulumi_alicloud/cms/get_hybrid_monitor_sls_tasks.py +26 -11
  416. pulumi_alicloud/cms/get_metric_rule_black_lists.py +35 -13
  417. pulumi_alicloud/cms/get_metric_rule_templates.py +27 -9
  418. pulumi_alicloud/cms/get_monitor_group_instances.py +18 -5
  419. pulumi_alicloud/cms/get_monitor_groups.py +38 -16
  420. pulumi_alicloud/cms/get_namespaces.py +22 -9
  421. pulumi_alicloud/cms/get_service.py +18 -9
  422. pulumi_alicloud/cms/get_site_monitors.py +258 -0
  423. pulumi_alicloud/cms/get_sls_groups.py +25 -9
  424. pulumi_alicloud/cms/group_metric_rule.py +49 -48
  425. pulumi_alicloud/cms/hybrid_monitor_fc_task.py +48 -45
  426. pulumi_alicloud/cms/hybrid_monitor_sls_task.py +15 -10
  427. pulumi_alicloud/cms/metric_rule_black_list.py +44 -39
  428. pulumi_alicloud/cms/metric_rule_template.py +92 -124
  429. pulumi_alicloud/cms/monitor_group.py +19 -18
  430. pulumi_alicloud/cms/monitor_group_instances.py +28 -27
  431. pulumi_alicloud/cms/namespace.py +5 -6
  432. pulumi_alicloud/cms/outputs.py +379 -158
  433. pulumi_alicloud/cms/site_monitor.py +24 -25
  434. pulumi_alicloud/cms/sls_group.py +10 -5
  435. pulumi_alicloud/compute/_inputs.py +59 -2
  436. pulumi_alicloud/compute/get_nest_service_instances.py +34 -18
  437. pulumi_alicloud/compute/nest_service_instance.py +67 -66
  438. pulumi_alicloud/compute/outputs.py +12 -7
  439. pulumi_alicloud/config/__init__.pyi +9 -0
  440. pulumi_alicloud/config/outputs.py +389 -2
  441. pulumi_alicloud/config/vars.py +13 -0
  442. pulumi_alicloud/cr/_inputs.py +253 -0
  443. pulumi_alicloud/cr/chain.py +252 -239
  444. pulumi_alicloud/cr/chart_namespace.py +25 -16
  445. pulumi_alicloud/cr/chart_repository.py +27 -18
  446. pulumi_alicloud/cr/endpoint_acl_policy.py +23 -14
  447. pulumi_alicloud/cr/get_chains.py +27 -9
  448. pulumi_alicloud/cr/get_chart_namespaces.py +23 -7
  449. pulumi_alicloud/cr/get_chart_repositories.py +25 -13
  450. pulumi_alicloud/cr/get_endpoint_acl_policies.py +22 -11
  451. pulumi_alicloud/cr/get_endpoint_acl_service.py +26 -15
  452. pulumi_alicloud/cr/get_namespaces.py +20 -9
  453. pulumi_alicloud/cr/get_repos.py +24 -9
  454. pulumi_alicloud/cr/get_service.py +16 -9
  455. pulumi_alicloud/cr/get_vpc_endpoint_linked_vpcs.py +26 -9
  456. pulumi_alicloud/cr/namespace.py +15 -4
  457. pulumi_alicloud/cr/outputs.py +102 -0
  458. pulumi_alicloud/cr/registry_enterprise_instance.py +516 -104
  459. pulumi_alicloud/cr/repo.py +24 -19
  460. pulumi_alicloud/cr/vpc_endpoint_linked_vpc.py +45 -22
  461. pulumi_alicloud/cs/_inputs.py +2487 -291
  462. pulumi_alicloud/cs/application.py +16 -11
  463. pulumi_alicloud/cs/autoscaling_config.py +56 -0
  464. pulumi_alicloud/cs/cluster.py +9 -10
  465. pulumi_alicloud/cs/edge_kubernetes.py +130 -145
  466. pulumi_alicloud/cs/get_ack_service.py +16 -9
  467. pulumi_alicloud/cs/get_cluster_credential.py +23 -31
  468. pulumi_alicloud/cs/get_edge_kubernetes_clusters.py +23 -9
  469. pulumi_alicloud/cs/get_kubernetes_addon_metadata.py +18 -33
  470. pulumi_alicloud/cs/get_kubernetes_addons.py +19 -5
  471. pulumi_alicloud/cs/get_kubernetes_clusters.py +35 -17
  472. pulumi_alicloud/cs/get_kubernetes_permission.py +30 -27
  473. pulumi_alicloud/cs/get_kubernetes_version.py +26 -21
  474. pulumi_alicloud/cs/get_managed_kubernetes_clusters.py +31 -15
  475. pulumi_alicloud/cs/get_registry_enterprise_instances.py +23 -9
  476. pulumi_alicloud/cs/get_registry_enterprise_namespaces.py +23 -9
  477. pulumi_alicloud/cs/get_registry_enterprise_repos.py +27 -9
  478. pulumi_alicloud/cs/get_registry_enterprise_sync_rules.py +29 -9
  479. pulumi_alicloud/cs/get_serverless_kubernetes_clusters.py +33 -15
  480. pulumi_alicloud/cs/kubernetes.py +175 -125
  481. pulumi_alicloud/cs/kubernetes_addon.py +75 -28
  482. pulumi_alicloud/cs/kubernetes_autoscaler.py +10 -5
  483. pulumi_alicloud/cs/kubernetes_permission.py +10 -5
  484. pulumi_alicloud/cs/managed_kubernetes.py +281 -133
  485. pulumi_alicloud/cs/node_pool.py +1330 -495
  486. pulumi_alicloud/cs/outputs.py +1375 -180
  487. pulumi_alicloud/cs/registry_enterprise_namespace.py +97 -74
  488. pulumi_alicloud/cs/registry_enterprise_repo.py +101 -74
  489. pulumi_alicloud/cs/registry_enterprise_sync_rule.py +446 -138
  490. pulumi_alicloud/cs/serverless_kubernetes.py +371 -324
  491. pulumi_alicloud/cs/swarm.py +9 -10
  492. pulumi_alicloud/das/switch_das_pro.py +29 -28
  493. pulumi_alicloud/databasefilesystem/_inputs.py +17 -4
  494. pulumi_alicloud/databasefilesystem/auto_snap_shot_policy.py +9 -8
  495. pulumi_alicloud/databasefilesystem/get_auto_snap_shot_policies.py +25 -11
  496. pulumi_alicloud/databasefilesystem/get_instances.py +23 -11
  497. pulumi_alicloud/databasefilesystem/get_snapshots.py +23 -11
  498. pulumi_alicloud/databasefilesystem/instance.py +50 -43
  499. pulumi_alicloud/databasefilesystem/instance_attachment.py +70 -69
  500. pulumi_alicloud/databasefilesystem/outputs.py +5 -4
  501. pulumi_alicloud/databasefilesystem/service_linked_role.py +7 -6
  502. pulumi_alicloud/databasefilesystem/snapshot.py +58 -109
  503. pulumi_alicloud/databasegateway/gateway.py +5 -4
  504. pulumi_alicloud/databasegateway/get_gateways.py +25 -9
  505. pulumi_alicloud/databasegateway/outputs.py +5 -0
  506. pulumi_alicloud/datahub/get_service.py +14 -9
  507. pulumi_alicloud/datahub/project.py +11 -6
  508. pulumi_alicloud/datahub/subscription.py +21 -14
  509. pulumi_alicloud/datahub/topic.py +33 -24
  510. pulumi_alicloud/dataworks/__init__.py +5 -0
  511. pulumi_alicloud/dataworks/_inputs.py +95 -0
  512. pulumi_alicloud/dataworks/data_source.py +686 -0
  513. pulumi_alicloud/dataworks/data_source_shared_rule.py +378 -0
  514. pulumi_alicloud/dataworks/folder.py +9 -8
  515. pulumi_alicloud/dataworks/get_folders.py +32 -13
  516. pulumi_alicloud/dataworks/get_service.py +14 -9
  517. pulumi_alicloud/dataworks/outputs.py +49 -0
  518. pulumi_alicloud/dataworks/project.py +609 -0
  519. pulumi_alicloud/dataworks/project_member.py +380 -0
  520. pulumi_alicloud/dbs/backup_plan.py +153 -0
  521. pulumi_alicloud/dbs/get_backup_plans.py +31 -11
  522. pulumi_alicloud/dbs/outputs.py +5 -0
  523. pulumi_alicloud/dcdn/_inputs.py +992 -33
  524. pulumi_alicloud/dcdn/domain.py +406 -256
  525. pulumi_alicloud/dcdn/domain_config.py +118 -70
  526. pulumi_alicloud/dcdn/er.py +30 -29
  527. pulumi_alicloud/dcdn/get_domains.py +37 -11
  528. pulumi_alicloud/dcdn/get_ipa_domains.py +41 -15
  529. pulumi_alicloud/dcdn/get_kv_account.py +13 -9
  530. pulumi_alicloud/dcdn/get_service.py +14 -9
  531. pulumi_alicloud/dcdn/get_waf_domains.py +25 -11
  532. pulumi_alicloud/dcdn/get_waf_policies.py +33 -13
  533. pulumi_alicloud/dcdn/get_waf_rules.py +24 -11
  534. pulumi_alicloud/dcdn/ipa_domain.py +36 -35
  535. pulumi_alicloud/dcdn/kv.py +15 -14
  536. pulumi_alicloud/dcdn/kv_namespace.py +11 -10
  537. pulumi_alicloud/dcdn/outputs.py +29 -28
  538. pulumi_alicloud/dcdn/waf_domain.py +29 -28
  539. pulumi_alicloud/dcdn/waf_policy.py +13 -12
  540. pulumi_alicloud/dcdn/waf_policy_domain_attachment.py +35 -34
  541. pulumi_alicloud/dcdn/waf_rule.py +67 -66
  542. pulumi_alicloud/ddos/__init__.py +1 -0
  543. pulumi_alicloud/ddos/_inputs.py +1227 -9
  544. pulumi_alicloud/ddos/basic_defense_threshold.py +11 -10
  545. pulumi_alicloud/ddos/basic_threshold.py +31 -26
  546. pulumi_alicloud/ddos/bgp_ip.py +62 -12
  547. pulumi_alicloud/ddos/bgp_policy.py +348 -0
  548. pulumi_alicloud/ddos/ddos_bgp_instance.py +7 -4
  549. pulumi_alicloud/ddos/ddos_coo_instance.py +7 -4
  550. pulumi_alicloud/ddos/domain_resource.py +472 -92
  551. pulumi_alicloud/ddos/get_ddos_bgp_instances.py +27 -15
  552. pulumi_alicloud/ddos/get_ddos_bgp_ips.py +32 -11
  553. pulumi_alicloud/ddos/get_ddos_coo_domain_resources.py +30 -13
  554. pulumi_alicloud/ddos/get_ddos_coo_instances.py +19 -9
  555. pulumi_alicloud/ddos/get_ddos_coo_ports.py +40 -15
  556. pulumi_alicloud/ddos/outputs.py +883 -14
  557. pulumi_alicloud/ddos/port.py +123 -50
  558. pulumi_alicloud/ddos/scheduler_rule.py +38 -37
  559. pulumi_alicloud/dds/get_mongo_instances.py +30 -8
  560. pulumi_alicloud/dds/outputs.py +7 -2
  561. pulumi_alicloud/dfs/_inputs.py +43 -0
  562. pulumi_alicloud/dfs/access_group.py +21 -22
  563. pulumi_alicloud/dfs/access_rule.py +23 -22
  564. pulumi_alicloud/dfs/file_system.py +73 -51
  565. pulumi_alicloud/dfs/get_access_groups.py +27 -9
  566. pulumi_alicloud/dfs/get_access_rules.py +18 -9
  567. pulumi_alicloud/dfs/get_file_systems.py +19 -9
  568. pulumi_alicloud/dfs/get_mount_points.py +20 -9
  569. pulumi_alicloud/dfs/get_zones.py +14 -9
  570. pulumi_alicloud/dfs/mount_point.py +59 -76
  571. pulumi_alicloud/dfs/outputs.py +5 -0
  572. pulumi_alicloud/dfs/vsc_mount_point.py +19 -18
  573. pulumi_alicloud/directmail/domain.py +13 -12
  574. pulumi_alicloud/directmail/get_domains.py +56 -33
  575. pulumi_alicloud/directmail/get_mail_addresses.py +24 -11
  576. pulumi_alicloud/directmail/get_receivers.py +25 -11
  577. pulumi_alicloud/directmail/get_tags.py +19 -9
  578. pulumi_alicloud/directmail/mail_address.py +5 -0
  579. pulumi_alicloud/directmail/outputs.py +136 -32
  580. pulumi_alicloud/directmail/receivers.py +5 -0
  581. pulumi_alicloud/directmail/tag.py +5 -4
  582. pulumi_alicloud/dms/enterprise_authority_template.py +11 -10
  583. pulumi_alicloud/dms/enterprise_instance.py +44 -49
  584. pulumi_alicloud/dms/enterprise_logic_database.py +5 -4
  585. pulumi_alicloud/dms/enterprise_proxy.py +43 -38
  586. pulumi_alicloud/dms/enterprise_proxy_access.py +5 -4
  587. pulumi_alicloud/dms/enterprise_user.py +16 -19
  588. pulumi_alicloud/dms/get_enterprise_databases.py +20 -9
  589. pulumi_alicloud/dms/get_enterprise_instances.py +40 -13
  590. pulumi_alicloud/dms/get_enterprise_logic_databases.py +16 -5
  591. pulumi_alicloud/dms/get_enterprise_proxies.py +18 -9
  592. pulumi_alicloud/dms/get_enterprise_proxy_accesses.py +26 -15
  593. pulumi_alicloud/dms/get_enterprise_users.py +29 -9
  594. pulumi_alicloud/dms/get_user_tenants.py +21 -9
  595. pulumi_alicloud/dms/outputs.py +5 -0
  596. pulumi_alicloud/dns/_inputs.py +145 -0
  597. pulumi_alicloud/dns/access_strategy.py +20 -15
  598. pulumi_alicloud/dns/address_pool.py +120 -5
  599. pulumi_alicloud/dns/alidns_domain.py +25 -24
  600. pulumi_alicloud/dns/alidns_domain_attachment.py +15 -14
  601. pulumi_alicloud/dns/alidns_instance.py +5 -4
  602. pulumi_alicloud/dns/alidns_record.py +11 -10
  603. pulumi_alicloud/dns/custom_line.py +18 -17
  604. pulumi_alicloud/dns/ddos_bgp_instance.py +7 -4
  605. pulumi_alicloud/dns/ddos_coo_instance.py +7 -4
  606. pulumi_alicloud/dns/dns_domain.py +19 -18
  607. pulumi_alicloud/dns/domain.py +11 -6
  608. pulumi_alicloud/dns/domain_attachment.py +9 -8
  609. pulumi_alicloud/dns/domain_group.py +8 -13
  610. pulumi_alicloud/dns/get_access_strategies.py +33 -11
  611. pulumi_alicloud/dns/get_address_pools.py +23 -9
  612. pulumi_alicloud/dns/get_alidns_domain_groups.py +19 -9
  613. pulumi_alicloud/dns/get_alidns_domains.py +50 -16
  614. pulumi_alicloud/dns/get_alidns_instances.py +22 -9
  615. pulumi_alicloud/dns/get_alidns_records.py +76 -13
  616. pulumi_alicloud/dns/get_custom_lines.py +25 -9
  617. pulumi_alicloud/dns/get_domain_groups.py +19 -5
  618. pulumi_alicloud/dns/get_domain_records.py +31 -5
  619. pulumi_alicloud/dns/get_domain_txt_guid.py +21 -9
  620. pulumi_alicloud/dns/get_domains.py +50 -16
  621. pulumi_alicloud/dns/get_groups.py +19 -9
  622. pulumi_alicloud/dns/get_gtm_instances.py +19 -9
  623. pulumi_alicloud/dns/get_instances.py +22 -9
  624. pulumi_alicloud/dns/get_records.py +37 -15
  625. pulumi_alicloud/dns/get_resolution_lines.py +26 -9
  626. pulumi_alicloud/dns/group.py +7 -6
  627. pulumi_alicloud/dns/gtm_instance.py +30 -29
  628. pulumi_alicloud/dns/instance.py +5 -4
  629. pulumi_alicloud/dns/monitor_config.py +56 -55
  630. pulumi_alicloud/dns/outputs.py +31 -10
  631. pulumi_alicloud/dns/record.py +11 -4
  632. pulumi_alicloud/drds/get_instances.py +26 -16
  633. pulumi_alicloud/drds/instance.py +17 -16
  634. pulumi_alicloud/drds/outputs.py +5 -0
  635. pulumi_alicloud/drds/polardbx_instance.py +19 -18
  636. pulumi_alicloud/dts/consumer_channel.py +57 -40
  637. pulumi_alicloud/dts/get_consumer_channels.py +18 -9
  638. pulumi_alicloud/dts/get_instances.py +27 -11
  639. pulumi_alicloud/dts/get_migration_jobs.py +21 -9
  640. pulumi_alicloud/dts/get_subscription_jobs.py +30 -16
  641. pulumi_alicloud/dts/get_synchronization_jobs.py +24 -11
  642. pulumi_alicloud/dts/instance.py +52 -30
  643. pulumi_alicloud/dts/job_monitor_rule.py +5 -0
  644. pulumi_alicloud/dts/migration_instance.py +27 -26
  645. pulumi_alicloud/dts/migration_job.py +5 -0
  646. pulumi_alicloud/dts/outputs.py +11 -6
  647. pulumi_alicloud/dts/subscription_job.py +75 -58
  648. pulumi_alicloud/dts/synchronization_instance.py +13 -12
  649. pulumi_alicloud/dts/synchronization_job.py +5 -0
  650. pulumi_alicloud/eais/get_instances.py +25 -7
  651. pulumi_alicloud/eais/instance.py +68 -65
  652. pulumi_alicloud/eais/outputs.py +5 -0
  653. pulumi_alicloud/ebs/_inputs.py +118 -8
  654. pulumi_alicloud/ebs/dedicated_block_storage_cluster.py +5 -0
  655. pulumi_alicloud/ebs/disk_replica_group.py +53 -0
  656. pulumi_alicloud/ebs/disk_replica_pair.py +5 -0
  657. pulumi_alicloud/ebs/enterprise_snapshot_policy.py +58 -57
  658. pulumi_alicloud/ebs/enterprise_snapshot_policy_attachment.py +19 -18
  659. pulumi_alicloud/ebs/get_dedicated_block_storage_clusters.py +21 -11
  660. pulumi_alicloud/ebs/get_disk_replica_groups.py +16 -9
  661. pulumi_alicloud/ebs/get_disk_replica_pairs.py +22 -11
  662. pulumi_alicloud/ebs/get_regions.py +18 -11
  663. pulumi_alicloud/ebs/outputs.py +5 -8
  664. pulumi_alicloud/ebs/replica_group_drill.py +5 -4
  665. pulumi_alicloud/ebs/replica_pair_drill.py +5 -4
  666. pulumi_alicloud/ebs/solution_instance.py +136 -135
  667. pulumi_alicloud/eci/_inputs.py +612 -182
  668. pulumi_alicloud/eci/container_group.py +232 -180
  669. pulumi_alicloud/eci/get_container_groups.py +46 -20
  670. pulumi_alicloud/eci/get_image_caches.py +27 -9
  671. pulumi_alicloud/eci/get_virtual_nodes.py +42 -22
  672. pulumi_alicloud/eci/get_zones.py +14 -9
  673. pulumi_alicloud/eci/image_cache.py +32 -27
  674. pulumi_alicloud/eci/open_api_image_cache.py +8 -3
  675. pulumi_alicloud/eci/outputs.py +60 -217
  676. pulumi_alicloud/eci/virtual_node.py +56 -51
  677. pulumi_alicloud/ecp/get_instance_types.py +14 -9
  678. pulumi_alicloud/ecp/get_instances.py +121 -13
  679. pulumi_alicloud/ecp/get_key_pairs.py +21 -9
  680. pulumi_alicloud/ecp/get_zones.py +14 -9
  681. pulumi_alicloud/ecp/instance.py +232 -181
  682. pulumi_alicloud/ecp/key_pair.py +5 -4
  683. pulumi_alicloud/ecp/outputs.py +5 -0
  684. pulumi_alicloud/ecs/__init__.py +1 -0
  685. pulumi_alicloud/ecs/_inputs.py +1035 -45
  686. pulumi_alicloud/ecs/activation.py +5 -4
  687. pulumi_alicloud/ecs/auto_provisioning_group.py +44 -37
  688. pulumi_alicloud/ecs/auto_snapshot_policy.py +342 -145
  689. pulumi_alicloud/ecs/capacity_reservation.py +35 -34
  690. pulumi_alicloud/ecs/command.py +7 -4
  691. pulumi_alicloud/ecs/copy_image.py +18 -19
  692. pulumi_alicloud/ecs/dedicated_host.py +24 -19
  693. pulumi_alicloud/ecs/disk.py +213 -59
  694. pulumi_alicloud/ecs/disk_attachment.py +17 -12
  695. pulumi_alicloud/ecs/ecs_auto_snapshot_policy_attachment.py +19 -16
  696. pulumi_alicloud/ecs/ecs_dedicated_host_cluster.py +25 -24
  697. pulumi_alicloud/ecs/ecs_deployment_set.py +34 -19
  698. pulumi_alicloud/ecs/ecs_disk.py +455 -139
  699. pulumi_alicloud/ecs/ecs_disk_attachment.py +33 -30
  700. pulumi_alicloud/ecs/ecs_image_component.py +240 -66
  701. pulumi_alicloud/ecs/ecs_image_pipeline.py +47 -44
  702. pulumi_alicloud/ecs/ecs_instance_set.py +81 -41
  703. pulumi_alicloud/ecs/ecs_invocation.py +51 -44
  704. pulumi_alicloud/ecs/ecs_key_pair.py +93 -70
  705. pulumi_alicloud/ecs/ecs_key_pair_attachment.py +40 -41
  706. pulumi_alicloud/ecs/ecs_launch_template.py +474 -195
  707. pulumi_alicloud/ecs/ecs_network_interface.py +148 -79
  708. pulumi_alicloud/ecs/ecs_network_interface_attachment.py +109 -59
  709. pulumi_alicloud/ecs/ecs_network_interface_permission.py +5 -0
  710. pulumi_alicloud/ecs/ecs_prefix_list.py +22 -21
  711. pulumi_alicloud/ecs/ecs_session_manager_status.py +5 -4
  712. pulumi_alicloud/ecs/ecs_snapshot.py +270 -93
  713. pulumi_alicloud/ecs/ecs_snapshot_group.py +59 -50
  714. pulumi_alicloud/ecs/eip.py +93 -36
  715. pulumi_alicloud/ecs/eip_address.py +595 -214
  716. pulumi_alicloud/ecs/eip_association.py +236 -86
  717. pulumi_alicloud/ecs/eip_segment_address.py +320 -141
  718. pulumi_alicloud/ecs/elasticity_assurance.py +67 -14
  719. pulumi_alicloud/ecs/get_activations.py +23 -9
  720. pulumi_alicloud/ecs/get_auto_snapshot_policies.py +30 -16
  721. pulumi_alicloud/ecs/get_capacity_reservations.py +42 -18
  722. pulumi_alicloud/ecs/get_commands.py +33 -13
  723. pulumi_alicloud/ecs/get_dedicated_hosts.py +50 -22
  724. pulumi_alicloud/ecs/get_disks.py +81 -26
  725. pulumi_alicloud/ecs/get_ecs_dedicated_host_clusters.py +32 -14
  726. pulumi_alicloud/ecs/get_ecs_deployment_sets.py +25 -11
  727. pulumi_alicloud/ecs/get_ecs_disks.py +206 -58
  728. pulumi_alicloud/ecs/get_ecs_image_components.py +40 -18
  729. pulumi_alicloud/ecs/get_ecs_image_pipeline.py +30 -14
  730. pulumi_alicloud/ecs/get_ecs_invocations.py +30 -13
  731. pulumi_alicloud/ecs/get_ecs_key_pairs.py +32 -19
  732. pulumi_alicloud/ecs/get_ecs_launch_templates.py +202 -20
  733. pulumi_alicloud/ecs/get_ecs_network_interface_permissions.py +27 -11
  734. pulumi_alicloud/ecs/get_ecs_network_interfaces.py +108 -36
  735. pulumi_alicloud/ecs/get_ecs_prefix_lists.py +25 -11
  736. pulumi_alicloud/ecs/get_ecs_snapshot_groups.py +34 -16
  737. pulumi_alicloud/ecs/get_ecs_snapshots.py +64 -28
  738. pulumi_alicloud/ecs/get_ecs_storage_capacity_units.py +23 -11
  739. pulumi_alicloud/ecs/get_eip_addresses.py +69 -32
  740. pulumi_alicloud/ecs/get_eips.py +57 -20
  741. pulumi_alicloud/ecs/get_elasticity_assurances.py +31 -16
  742. pulumi_alicloud/ecs/get_hpc_clusters.py +19 -9
  743. pulumi_alicloud/ecs/get_images.py +82 -22
  744. pulumi_alicloud/ecs/get_instance_keywords.py +17 -9
  745. pulumi_alicloud/ecs/get_instance_type_families.py +23 -9
  746. pulumi_alicloud/ecs/get_instance_types.py +169 -19
  747. pulumi_alicloud/ecs/get_instances.py +52 -21
  748. pulumi_alicloud/ecs/get_key_pairs.py +36 -21
  749. pulumi_alicloud/ecs/get_network_interfaces.py +109 -71
  750. pulumi_alicloud/ecs/get_security_group_rules.py +40 -17
  751. pulumi_alicloud/ecs/get_security_groups.py +41 -20
  752. pulumi_alicloud/ecs/get_snapshots.py +50 -14
  753. pulumi_alicloud/ecs/hpc_cluster.py +11 -6
  754. pulumi_alicloud/ecs/image.py +657 -174
  755. pulumi_alicloud/ecs/image_copy.py +60 -77
  756. pulumi_alicloud/ecs/image_export.py +41 -36
  757. pulumi_alicloud/ecs/image_import.py +186 -115
  758. pulumi_alicloud/ecs/image_pipeline_execution.py +245 -0
  759. pulumi_alicloud/ecs/image_share_permission.py +53 -40
  760. pulumi_alicloud/ecs/instance.py +726 -238
  761. pulumi_alicloud/ecs/key_pair.py +43 -28
  762. pulumi_alicloud/ecs/key_pair_attachment.py +8 -9
  763. pulumi_alicloud/ecs/launch_template.py +325 -154
  764. pulumi_alicloud/ecs/outputs.py +729 -190
  765. pulumi_alicloud/ecs/reserved_instance.py +32 -37
  766. pulumi_alicloud/ecs/security_group.py +180 -101
  767. pulumi_alicloud/ecs/security_group_rule.py +82 -59
  768. pulumi_alicloud/ecs/snapshot.py +89 -34
  769. pulumi_alicloud/ecs/snapshot_policy.py +171 -15
  770. pulumi_alicloud/ecs/storage_capacity_unit.py +5 -4
  771. pulumi_alicloud/edas/_inputs.py +73 -0
  772. pulumi_alicloud/edas/application.py +23 -22
  773. pulumi_alicloud/edas/application_deployment.py +41 -40
  774. pulumi_alicloud/edas/application_scale.py +55 -46
  775. pulumi_alicloud/edas/cluster.py +13 -12
  776. pulumi_alicloud/edas/deploy_group.py +27 -26
  777. pulumi_alicloud/edas/get_applications.py +19 -9
  778. pulumi_alicloud/edas/get_clusters.py +23 -11
  779. pulumi_alicloud/edas/get_deploy_groups.py +19 -5
  780. pulumi_alicloud/edas/get_namespaces.py +19 -9
  781. pulumi_alicloud/edas/get_service.py +14 -9
  782. pulumi_alicloud/edas/instance_cluster_attachment.py +35 -34
  783. pulumi_alicloud/edas/k8s_application.py +17 -36
  784. pulumi_alicloud/edas/k8s_cluster.py +5 -0
  785. pulumi_alicloud/edas/k8s_slb_attachment.py +10 -5
  786. pulumi_alicloud/edas/namespace.py +17 -12
  787. pulumi_alicloud/edas/outputs.py +5 -0
  788. pulumi_alicloud/edas/slb_attachment.py +41 -40
  789. pulumi_alicloud/eds/_inputs.py +69 -0
  790. pulumi_alicloud/eds/ad_connector_directory.py +19 -18
  791. pulumi_alicloud/eds/ad_connector_office_site.py +32 -10
  792. pulumi_alicloud/eds/bundle.py +15 -14
  793. pulumi_alicloud/eds/command.py +47 -46
  794. pulumi_alicloud/eds/custom_property.py +16 -15
  795. pulumi_alicloud/eds/desktop.py +59 -58
  796. pulumi_alicloud/eds/ecd_policy_group.py +45 -44
  797. pulumi_alicloud/eds/get_ad_connector_directories.py +23 -11
  798. pulumi_alicloud/eds/get_ad_connector_office_sites.py +41 -11
  799. pulumi_alicloud/eds/get_bundles.py +23 -11
  800. pulumi_alicloud/eds/get_commands.py +64 -49
  801. pulumi_alicloud/eds/get_custom_properties.py +16 -9
  802. pulumi_alicloud/eds/get_desktop_types.py +30 -13
  803. pulumi_alicloud/eds/get_desktops.py +69 -51
  804. pulumi_alicloud/eds/get_images.py +67 -49
  805. pulumi_alicloud/eds/get_nas_file_systems.py +29 -15
  806. pulumi_alicloud/eds/get_network_packages.py +26 -17
  807. pulumi_alicloud/eds/get_policy_groups.py +47 -35
  808. pulumi_alicloud/eds/get_ram_directories.py +23 -11
  809. pulumi_alicloud/eds/get_simple_office_sites.py +23 -11
  810. pulumi_alicloud/eds/get_snapshots.py +27 -13
  811. pulumi_alicloud/eds/get_users.py +20 -11
  812. pulumi_alicloud/eds/get_zones.py +15 -9
  813. pulumi_alicloud/eds/image.py +47 -46
  814. pulumi_alicloud/eds/nas_file_system.py +11 -10
  815. pulumi_alicloud/eds/network_package.py +15 -22
  816. pulumi_alicloud/eds/outputs.py +21 -20
  817. pulumi_alicloud/eds/ram_directory.py +19 -14
  818. pulumi_alicloud/eds/simple_office_site.py +23 -34
  819. pulumi_alicloud/eds/snapshot.py +47 -46
  820. pulumi_alicloud/eds/user.py +11 -10
  821. pulumi_alicloud/eflo/get_subnets.py +43 -15
  822. pulumi_alicloud/eflo/get_vpds.py +37 -13
  823. pulumi_alicloud/eflo/outputs.py +5 -0
  824. pulumi_alicloud/eflo/subnet.py +17 -16
  825. pulumi_alicloud/eflo/vpd.py +11 -10
  826. pulumi_alicloud/ehpc/_inputs.py +87 -0
  827. pulumi_alicloud/ehpc/cluster.py +125 -54
  828. pulumi_alicloud/ehpc/get_clusters.py +36 -13
  829. pulumi_alicloud/ehpc/get_job_templates.py +21 -11
  830. pulumi_alicloud/ehpc/job_template.py +11 -10
  831. pulumi_alicloud/ehpc/outputs.py +39 -2
  832. pulumi_alicloud/eipanycast/_inputs.py +17 -0
  833. pulumi_alicloud/eipanycast/anycast_eip_address.py +19 -18
  834. pulumi_alicloud/eipanycast/anycast_eip_address_attachment.py +72 -101
  835. pulumi_alicloud/eipanycast/get_anycast_eip_addresses.py +41 -15
  836. pulumi_alicloud/eipanycast/outputs.py +5 -0
  837. pulumi_alicloud/elasticsearch/get_instances.py +26 -8
  838. pulumi_alicloud/elasticsearch/get_zones.py +19 -9
  839. pulumi_alicloud/elasticsearch/instance.py +350 -63
  840. pulumi_alicloud/elasticsearch/outputs.py +7 -2
  841. pulumi_alicloud/emr/_inputs.py +180 -8
  842. pulumi_alicloud/emr/cluster.py +938 -39
  843. pulumi_alicloud/emr/get_clusters.py +168 -123
  844. pulumi_alicloud/emr/get_disk_types.py +29 -13
  845. pulumi_alicloud/emr/get_instance_types.py +35 -15
  846. pulumi_alicloud/emr/get_main_versions.py +25 -15
  847. pulumi_alicloud/emr/outputs.py +26 -29
  848. pulumi_alicloud/emrv2/_inputs.py +2146 -61
  849. pulumi_alicloud/emrv2/cluster.py +295 -194
  850. pulumi_alicloud/emrv2/get_clusters.py +70 -18
  851. pulumi_alicloud/emrv2/outputs.py +1464 -195
  852. pulumi_alicloud/ens/__init__.py +2 -0
  853. pulumi_alicloud/ens/_inputs.py +218 -2
  854. pulumi_alicloud/ens/disk.py +11 -10
  855. pulumi_alicloud/ens/disk_instance_attachment.py +21 -20
  856. pulumi_alicloud/ens/eip.py +5 -4
  857. pulumi_alicloud/ens/eip_instance_attachment.py +485 -0
  858. pulumi_alicloud/ens/get_key_pairs.py +22 -9
  859. pulumi_alicloud/ens/image.py +17 -16
  860. pulumi_alicloud/ens/instance.py +455 -207
  861. pulumi_alicloud/ens/instance_security_group_attachment.py +19 -18
  862. pulumi_alicloud/ens/key_pair.py +5 -4
  863. pulumi_alicloud/ens/load_balancer.py +79 -29
  864. pulumi_alicloud/ens/nat_gateway.py +463 -0
  865. pulumi_alicloud/ens/network.py +5 -4
  866. pulumi_alicloud/ens/outputs.py +146 -2
  867. pulumi_alicloud/ens/security_group.py +5 -4
  868. pulumi_alicloud/ens/snapshot.py +5 -4
  869. pulumi_alicloud/ens/vswitch.py +11 -10
  870. pulumi_alicloud/esa/__init__.py +12 -0
  871. pulumi_alicloud/esa/_inputs.py +456 -0
  872. pulumi_alicloud/esa/outputs.py +321 -0
  873. pulumi_alicloud/esa/rate_plan_instance.py +626 -0
  874. pulumi_alicloud/esa/record.py +798 -0
  875. pulumi_alicloud/esa/site.py +533 -0
  876. pulumi_alicloud/ess/__init__.py +1 -0
  877. pulumi_alicloud/ess/_inputs.py +1361 -110
  878. pulumi_alicloud/ess/alarm.py +232 -84
  879. pulumi_alicloud/ess/alb_server_group_attachment.py +55 -50
  880. pulumi_alicloud/ess/attachment.py +225 -79
  881. pulumi_alicloud/ess/eci_scaling_configuration.py +464 -88
  882. pulumi_alicloud/ess/get_alarms.py +23 -5
  883. pulumi_alicloud/ess/get_lifecycle_hooks.py +25 -13
  884. pulumi_alicloud/ess/get_notifications.py +18 -9
  885. pulumi_alicloud/ess/get_scaling_configurations.py +139 -21
  886. pulumi_alicloud/ess/get_scaling_groups.py +19 -9
  887. pulumi_alicloud/ess/get_scaling_rules.py +29 -15
  888. pulumi_alicloud/ess/get_scheduled_tasks.py +27 -13
  889. pulumi_alicloud/ess/lifecycle_hook.py +31 -24
  890. pulumi_alicloud/ess/notification.py +79 -31
  891. pulumi_alicloud/ess/outputs.py +659 -106
  892. pulumi_alicloud/ess/scaling_configuration.py +576 -113
  893. pulumi_alicloud/ess/scaling_group.py +591 -75
  894. pulumi_alicloud/ess/scaling_group_v_server_groups.py +10 -5
  895. pulumi_alicloud/ess/scaling_rule.py +432 -51
  896. pulumi_alicloud/ess/schedule.py +5 -0
  897. pulumi_alicloud/ess/scheduled_task.py +12 -7
  898. pulumi_alicloud/ess/server_group_attachment.py +557 -0
  899. pulumi_alicloud/ess/suspend_process.py +37 -32
  900. pulumi_alicloud/eventbridge/_inputs.py +320 -32
  901. pulumi_alicloud/eventbridge/api_destination.py +30 -29
  902. pulumi_alicloud/eventbridge/connection.py +115 -110
  903. pulumi_alicloud/eventbridge/event_bus.py +5 -4
  904. pulumi_alicloud/eventbridge/event_source.py +35 -26
  905. pulumi_alicloud/eventbridge/get_event_buses.py +23 -9
  906. pulumi_alicloud/eventbridge/get_event_sources.py +19 -9
  907. pulumi_alicloud/eventbridge/get_rules.py +27 -11
  908. pulumi_alicloud/eventbridge/get_service.py +14 -9
  909. pulumi_alicloud/eventbridge/outputs.py +48 -35
  910. pulumi_alicloud/eventbridge/rule.py +43 -38
  911. pulumi_alicloud/eventbridge/service_linked_role.py +7 -6
  912. pulumi_alicloud/eventbridge/slr.py +5 -0
  913. pulumi_alicloud/expressconnect/__init__.py +9 -0
  914. pulumi_alicloud/expressconnect/_inputs.py +84 -0
  915. pulumi_alicloud/expressconnect/ec_failover_test_job.py +15 -14
  916. pulumi_alicloud/expressconnect/get_access_points.py +23 -11
  917. pulumi_alicloud/expressconnect/get_grant_rule_to_cens.py +22 -9
  918. pulumi_alicloud/expressconnect/get_physical_connection_service.py +16 -11
  919. pulumi_alicloud/expressconnect/get_physical_connections.py +25 -11
  920. pulumi_alicloud/expressconnect/get_router_interfaces.py +33 -15
  921. pulumi_alicloud/expressconnect/get_vbr_pconn_associations.py +24 -11
  922. pulumi_alicloud/expressconnect/get_virtual_border_routers.py +45 -31
  923. pulumi_alicloud/expressconnect/get_virtual_physical_connections.py +33 -5
  924. pulumi_alicloud/expressconnect/grant_rule_to_cen.py +19 -18
  925. pulumi_alicloud/expressconnect/outputs.py +56 -0
  926. pulumi_alicloud/expressconnect/physical_connection.py +330 -201
  927. pulumi_alicloud/expressconnect/router_express_connect_router.py +463 -0
  928. pulumi_alicloud/expressconnect/router_grant_association.py +477 -0
  929. pulumi_alicloud/expressconnect/router_interface.py +15 -18
  930. pulumi_alicloud/expressconnect/router_tr_association.py +583 -0
  931. pulumi_alicloud/expressconnect/router_vbr_child_instance.py +541 -0
  932. pulumi_alicloud/expressconnect/router_vpc_association.py +505 -0
  933. pulumi_alicloud/expressconnect/traffic_qos.py +289 -0
  934. pulumi_alicloud/expressconnect/traffic_qos_association.py +341 -0
  935. pulumi_alicloud/expressconnect/traffic_qos_queue.py +525 -0
  936. pulumi_alicloud/expressconnect/traffic_qos_rule.py +1179 -0
  937. pulumi_alicloud/expressconnect/vbr_pconn_association.py +13 -12
  938. pulumi_alicloud/expressconnect/virtual_border_router.py +15 -14
  939. pulumi_alicloud/expressconnect/virtual_physical_connection.py +15 -14
  940. pulumi_alicloud/fc/__init__.py +10 -0
  941. pulumi_alicloud/fc/_inputs.py +3052 -4
  942. pulumi_alicloud/fc/alias.py +16 -13
  943. pulumi_alicloud/fc/custom_domain.py +81 -70
  944. pulumi_alicloud/fc/function.py +60 -53
  945. pulumi_alicloud/fc/function_async_invoke_config.py +110 -103
  946. pulumi_alicloud/fc/get_custom_domains.py +21 -11
  947. pulumi_alicloud/fc/get_functions.py +25 -13
  948. pulumi_alicloud/fc/get_service.py +14 -9
  949. pulumi_alicloud/fc/get_services.py +19 -9
  950. pulumi_alicloud/fc/get_triggers.py +29 -15
  951. pulumi_alicloud/fc/get_zones.py +17 -9
  952. pulumi_alicloud/fc/layer_version.py +13 -12
  953. pulumi_alicloud/fc/outputs.py +2130 -8
  954. pulumi_alicloud/fc/service.py +17 -12
  955. pulumi_alicloud/fc/trigger.py +433 -308
  956. pulumi_alicloud/fc/v2_function.py +33 -28
  957. pulumi_alicloud/fc/v3_alias.py +473 -0
  958. pulumi_alicloud/fc/v3_async_invoke_config.py +500 -0
  959. pulumi_alicloud/fc/v3_concurrency_config.py +314 -0
  960. pulumi_alicloud/fc/v3_custom_domain.py +964 -0
  961. pulumi_alicloud/fc/v3_function.py +1704 -0
  962. pulumi_alicloud/fc/v3_function_version.py +346 -0
  963. pulumi_alicloud/fc/v3_layer_version.py +619 -0
  964. pulumi_alicloud/fc/v3_provision_config.py +765 -0
  965. pulumi_alicloud/fc/v3_trigger.py +878 -0
  966. pulumi_alicloud/fc/v3_vpc_binding.py +288 -0
  967. pulumi_alicloud/fnf/execution.py +19 -12
  968. pulumi_alicloud/fnf/flow.py +13 -6
  969. pulumi_alicloud/fnf/get_executions.py +29 -13
  970. pulumi_alicloud/fnf/get_flows.py +21 -9
  971. pulumi_alicloud/fnf/get_schedules.py +23 -9
  972. pulumi_alicloud/fnf/get_service.py +14 -9
  973. pulumi_alicloud/fnf/outputs.py +5 -0
  974. pulumi_alicloud/fnf/schedule.py +13 -10
  975. pulumi_alicloud/ga/_inputs.py +291 -8
  976. pulumi_alicloud/ga/accelerator.py +117 -20
  977. pulumi_alicloud/ga/accelerator_spare_ip_attachment.py +15 -14
  978. pulumi_alicloud/ga/access_log.py +49 -42
  979. pulumi_alicloud/ga/acl.py +84 -42
  980. pulumi_alicloud/ga/acl_attachment.py +29 -28
  981. pulumi_alicloud/ga/acl_entry_attachment.py +11 -10
  982. pulumi_alicloud/ga/additional_certificate.py +5 -0
  983. pulumi_alicloud/ga/bandwidth_package.py +99 -32
  984. pulumi_alicloud/ga/bandwidth_package_attachment.py +39 -38
  985. pulumi_alicloud/ga/basic_accelerate_ip.py +15 -14
  986. pulumi_alicloud/ga/basic_accelerate_ip_endpoint_relation.py +39 -48
  987. pulumi_alicloud/ga/basic_accelerator.py +76 -28
  988. pulumi_alicloud/ga/basic_endpoint.py +33 -42
  989. pulumi_alicloud/ga/basic_endpoint_group.py +19 -18
  990. pulumi_alicloud/ga/basic_ip_set.py +11 -10
  991. pulumi_alicloud/ga/custom_routing_endpoint.py +54 -32
  992. pulumi_alicloud/ga/custom_routing_endpoint_group.py +25 -24
  993. pulumi_alicloud/ga/custom_routing_endpoint_group_destination.py +27 -26
  994. pulumi_alicloud/ga/custom_routing_endpoint_traffic_policy.py +86 -81
  995. pulumi_alicloud/ga/domain.py +11 -10
  996. pulumi_alicloud/ga/endpoint_group.py +187 -102
  997. pulumi_alicloud/ga/forwarding_rule.py +115 -110
  998. pulumi_alicloud/ga/get_accelerator_spare_ip_attachments.py +31 -11
  999. pulumi_alicloud/ga/get_accelerators.py +27 -9
  1000. pulumi_alicloud/ga/get_acls.py +41 -13
  1001. pulumi_alicloud/ga/get_additional_certificates.py +31 -11
  1002. pulumi_alicloud/ga/get_bandwidth_packages.py +43 -15
  1003. pulumi_alicloud/ga/get_basic_accelerate_ip_endpoint_relations.py +26 -11
  1004. pulumi_alicloud/ga/get_basic_accelerate_ips.py +26 -11
  1005. pulumi_alicloud/ga/get_basic_accelerators.py +29 -11
  1006. pulumi_alicloud/ga/get_basic_endpoints.py +31 -11
  1007. pulumi_alicloud/ga/get_custom_routing_endpoint_group_destinations.py +34 -11
  1008. pulumi_alicloud/ga/get_custom_routing_endpoint_groups.py +33 -11
  1009. pulumi_alicloud/ga/get_custom_routing_endpoint_traffic_policies.py +32 -11
  1010. pulumi_alicloud/ga/get_custom_routing_endpoints.py +28 -11
  1011. pulumi_alicloud/ga/get_custom_routing_port_mappings.py +28 -11
  1012. pulumi_alicloud/ga/get_domains.py +66 -7
  1013. pulumi_alicloud/ga/get_endpoint_group_ip_address_cidr_blocks.py +36 -12
  1014. pulumi_alicloud/ga/get_endpoint_groups.py +75 -53
  1015. pulumi_alicloud/ga/get_forwarding_rules.py +30 -11
  1016. pulumi_alicloud/ga/get_ip_sets.py +30 -13
  1017. pulumi_alicloud/ga/get_listeners.py +36 -13
  1018. pulumi_alicloud/ga/ip_set.py +20 -19
  1019. pulumi_alicloud/ga/listener.py +243 -38
  1020. pulumi_alicloud/ga/outputs.py +127 -38
  1021. pulumi_alicloud/get_account.py +11 -9
  1022. pulumi_alicloud/get_caller_identity.py +14 -9
  1023. pulumi_alicloud/get_file_crc64_checksum.py +18 -11
  1024. pulumi_alicloud/get_msc_sub_contact_verification_message.py +22 -15
  1025. pulumi_alicloud/get_msc_sub_contacts.py +27 -11
  1026. pulumi_alicloud/get_msc_sub_subscriptions.py +19 -11
  1027. pulumi_alicloud/get_msc_sub_webhooks.py +27 -11
  1028. pulumi_alicloud/get_regions.py +19 -9
  1029. pulumi_alicloud/get_zones.py +41 -13
  1030. pulumi_alicloud/governance/__init__.py +12 -0
  1031. pulumi_alicloud/governance/_inputs.py +149 -0
  1032. pulumi_alicloud/governance/account.py +606 -0
  1033. pulumi_alicloud/governance/baseline.py +392 -0
  1034. pulumi_alicloud/governance/get_baselines.py +263 -0
  1035. pulumi_alicloud/governance/outputs.py +155 -0
  1036. pulumi_alicloud/gpdb/__init__.py +12 -0
  1037. pulumi_alicloud/gpdb/_inputs.py +575 -3
  1038. pulumi_alicloud/gpdb/account.py +203 -129
  1039. pulumi_alicloud/gpdb/backup_policy.py +5 -0
  1040. pulumi_alicloud/gpdb/connection.py +31 -44
  1041. pulumi_alicloud/gpdb/database.py +545 -0
  1042. pulumi_alicloud/gpdb/db_instance_ip_array.py +538 -0
  1043. pulumi_alicloud/gpdb/db_instance_plan.py +10 -111
  1044. pulumi_alicloud/gpdb/db_resource_group.py +414 -0
  1045. pulumi_alicloud/gpdb/elastic_instance.py +33 -28
  1046. pulumi_alicloud/gpdb/external_data_service.py +490 -0
  1047. pulumi_alicloud/gpdb/get_accounts.py +23 -9
  1048. pulumi_alicloud/gpdb/get_data_backups.py +317 -0
  1049. pulumi_alicloud/gpdb/get_db_instance_plans.py +29 -11
  1050. pulumi_alicloud/gpdb/get_instances.py +44 -16
  1051. pulumi_alicloud/gpdb/get_log_backups.py +246 -0
  1052. pulumi_alicloud/gpdb/get_zones.py +17 -5
  1053. pulumi_alicloud/gpdb/hadoop_data_source.py +1140 -0
  1054. pulumi_alicloud/gpdb/instance.py +354 -108
  1055. pulumi_alicloud/gpdb/jdbc_data_source.py +648 -0
  1056. pulumi_alicloud/gpdb/outputs.py +605 -7
  1057. pulumi_alicloud/gpdb/remote_adb_data_source.py +768 -0
  1058. pulumi_alicloud/gpdb/streaming_data_service.py +486 -0
  1059. pulumi_alicloud/gpdb/streaming_data_source.py +650 -0
  1060. pulumi_alicloud/gpdb/streaming_job.py +1573 -0
  1061. pulumi_alicloud/graphdatabase/_inputs.py +25 -0
  1062. pulumi_alicloud/graphdatabase/db_instance.py +10 -9
  1063. pulumi_alicloud/graphdatabase/get_db_instances.py +24 -11
  1064. pulumi_alicloud/graphdatabase/outputs.py +5 -0
  1065. pulumi_alicloud/gwlb/__init__.py +13 -0
  1066. pulumi_alicloud/gwlb/_inputs.py +694 -0
  1067. pulumi_alicloud/gwlb/get_zones.py +173 -0
  1068. pulumi_alicloud/gwlb/listener.py +434 -0
  1069. pulumi_alicloud/gwlb/load_balancer.py +544 -0
  1070. pulumi_alicloud/gwlb/outputs.py +588 -0
  1071. pulumi_alicloud/gwlb/server_group.py +829 -0
  1072. pulumi_alicloud/hbase/_inputs.py +61 -0
  1073. pulumi_alicloud/hbase/get_instance_types.py +33 -7
  1074. pulumi_alicloud/hbase/get_instances.py +32 -18
  1075. pulumi_alicloud/hbase/get_zones.py +15 -11
  1076. pulumi_alicloud/hbase/instance.py +43 -40
  1077. pulumi_alicloud/hbase/outputs.py +8 -3
  1078. pulumi_alicloud/hbr/__init__.py +2 -0
  1079. pulumi_alicloud/hbr/_inputs.py +511 -0
  1080. pulumi_alicloud/hbr/ecs_backup_client.py +33 -28
  1081. pulumi_alicloud/hbr/ecs_backup_plan.py +53 -39
  1082. pulumi_alicloud/hbr/get_backup_jobs.py +96 -81
  1083. pulumi_alicloud/hbr/get_ecs_backup_clients.py +26 -15
  1084. pulumi_alicloud/hbr/get_ecs_backup_plans.py +27 -13
  1085. pulumi_alicloud/hbr/get_hana_backup_clients.py +28 -9
  1086. pulumi_alicloud/hbr/get_hana_backup_plans.py +31 -13
  1087. pulumi_alicloud/hbr/get_hana_instances.py +39 -13
  1088. pulumi_alicloud/hbr/get_nas_backup_plans.py +27 -13
  1089. pulumi_alicloud/hbr/get_oss_backup_plans.py +25 -11
  1090. pulumi_alicloud/hbr/get_ots_backup_plans.py +29 -13
  1091. pulumi_alicloud/hbr/get_ots_snapshots.py +22 -11
  1092. pulumi_alicloud/hbr/get_replication_vault_regions.py +14 -9
  1093. pulumi_alicloud/hbr/get_restore_jobs.py +49 -27
  1094. pulumi_alicloud/hbr/get_server_backup_plans.py +30 -21
  1095. pulumi_alicloud/hbr/get_service.py +14 -9
  1096. pulumi_alicloud/hbr/get_snapshots.py +72 -43
  1097. pulumi_alicloud/hbr/get_vaults.py +29 -11
  1098. pulumi_alicloud/hbr/hana_backup_client.py +49 -36
  1099. pulumi_alicloud/hbr/hana_backup_plan.py +50 -20
  1100. pulumi_alicloud/hbr/hana_instance.py +25 -16
  1101. pulumi_alicloud/hbr/nas_backup_plan.py +29 -19
  1102. pulumi_alicloud/hbr/oss_backup_plan.py +20 -12
  1103. pulumi_alicloud/hbr/ots_backup_plan.py +103 -97
  1104. pulumi_alicloud/hbr/outputs.py +342 -2
  1105. pulumi_alicloud/hbr/policy.py +362 -0
  1106. pulumi_alicloud/hbr/policy_binding.py +901 -0
  1107. pulumi_alicloud/hbr/replication_vault.py +15 -22
  1108. pulumi_alicloud/hbr/restore_job.py +44 -43
  1109. pulumi_alicloud/hbr/server_backup_plan.py +53 -41
  1110. pulumi_alicloud/hbr/vault.py +29 -6
  1111. pulumi_alicloud/hologram/_inputs.py +41 -0
  1112. pulumi_alicloud/hologram/instance.py +24 -19
  1113. pulumi_alicloud/hologram/outputs.py +5 -0
  1114. pulumi_alicloud/imm/get_projects.py +16 -9
  1115. pulumi_alicloud/imm/outputs.py +5 -0
  1116. pulumi_alicloud/imm/project.py +7 -4
  1117. pulumi_alicloud/imp/_inputs.py +23 -0
  1118. pulumi_alicloud/imp/app_template.py +10 -9
  1119. pulumi_alicloud/imp/get_app_templates.py +23 -11
  1120. pulumi_alicloud/imp/outputs.py +5 -0
  1121. pulumi_alicloud/ims/oidc_provider.py +5 -4
  1122. pulumi_alicloud/iot/device_group.py +5 -4
  1123. pulumi_alicloud/iot/get_device_groups.py +26 -9
  1124. pulumi_alicloud/iot/get_service.py +14 -9
  1125. pulumi_alicloud/iot/outputs.py +5 -0
  1126. pulumi_alicloud/kms/_inputs.py +33 -4
  1127. pulumi_alicloud/kms/alias.py +11 -10
  1128. pulumi_alicloud/kms/application_access_point.py +5 -4
  1129. pulumi_alicloud/kms/ciphertext.py +5 -4
  1130. pulumi_alicloud/kms/client_key.py +9 -8
  1131. pulumi_alicloud/kms/get_aliases.py +23 -11
  1132. pulumi_alicloud/kms/get_ciphertext.py +18 -9
  1133. pulumi_alicloud/kms/get_key_versions.py +24 -13
  1134. pulumi_alicloud/kms/get_keys.py +26 -9
  1135. pulumi_alicloud/kms/get_plaintext.py +19 -9
  1136. pulumi_alicloud/kms/get_secret_versions.py +30 -13
  1137. pulumi_alicloud/kms/get_secrets.py +37 -17
  1138. pulumi_alicloud/kms/get_service.py +14 -9
  1139. pulumi_alicloud/kms/instance.py +272 -153
  1140. pulumi_alicloud/kms/key.py +347 -254
  1141. pulumi_alicloud/kms/key_version.py +5 -4
  1142. pulumi_alicloud/kms/network_rule.py +5 -4
  1143. pulumi_alicloud/kms/outputs.py +28 -23
  1144. pulumi_alicloud/kms/policy.py +5 -0
  1145. pulumi_alicloud/kms/secret.py +231 -117
  1146. pulumi_alicloud/kvstore/_inputs.py +23 -6
  1147. pulumi_alicloud/kvstore/account.py +85 -70
  1148. pulumi_alicloud/kvstore/audit_log_config.py +32 -31
  1149. pulumi_alicloud/kvstore/backup_policy.py +58 -49
  1150. pulumi_alicloud/kvstore/connection.py +31 -30
  1151. pulumi_alicloud/kvstore/get_accounts.py +28 -13
  1152. pulumi_alicloud/kvstore/get_connections.py +43 -10
  1153. pulumi_alicloud/kvstore/get_instance_classes.py +78 -50
  1154. pulumi_alicloud/kvstore/get_instance_engines.py +41 -28
  1155. pulumi_alicloud/kvstore/get_instances.py +80 -23
  1156. pulumi_alicloud/kvstore/get_permission.py +24 -19
  1157. pulumi_alicloud/kvstore/get_zones.py +29 -13
  1158. pulumi_alicloud/kvstore/instance.py +296 -156
  1159. pulumi_alicloud/kvstore/outputs.py +67 -22
  1160. pulumi_alicloud/lindorm/get_instances.py +29 -11
  1161. pulumi_alicloud/lindorm/instance.py +34 -39
  1162. pulumi_alicloud/lindorm/outputs.py +5 -0
  1163. pulumi_alicloud/live/__init__.py +8 -0
  1164. pulumi_alicloud/live/caster.py +1343 -0
  1165. pulumi_alicloud/log/__init__.py +1 -0
  1166. pulumi_alicloud/log/_inputs.py +467 -27
  1167. pulumi_alicloud/log/alert.py +383 -412
  1168. pulumi_alicloud/log/alert_resource.py +291 -0
  1169. pulumi_alicloud/log/audit.py +21 -30
  1170. pulumi_alicloud/log/dashboard.py +23 -16
  1171. pulumi_alicloud/log/etl.py +133 -122
  1172. pulumi_alicloud/log/get_alert_resource.py +27 -19
  1173. pulumi_alicloud/log/get_projects.py +23 -7
  1174. pulumi_alicloud/log/get_service.py +16 -11
  1175. pulumi_alicloud/log/get_stores.py +21 -9
  1176. pulumi_alicloud/log/ingestion.py +23 -18
  1177. pulumi_alicloud/log/log_tail_attachment.py +57 -46
  1178. pulumi_alicloud/log/log_tail_config.py +86 -45
  1179. pulumi_alicloud/log/machine_group.py +19 -12
  1180. pulumi_alicloud/log/oss_export.py +35 -30
  1181. pulumi_alicloud/log/oss_shipper.py +35 -26
  1182. pulumi_alicloud/log/outputs.py +30 -27
  1183. pulumi_alicloud/log/project.py +85 -64
  1184. pulumi_alicloud/log/resource.py +11 -10
  1185. pulumi_alicloud/log/resource_record.py +13 -10
  1186. pulumi_alicloud/log/store.py +153 -73
  1187. pulumi_alicloud/log/store_index.py +59 -52
  1188. pulumi_alicloud/marketplace/get_product.py +16 -9
  1189. pulumi_alicloud/marketplace/get_products.py +32 -5
  1190. pulumi_alicloud/marketplace/order.py +29 -28
  1191. pulumi_alicloud/marketplace/outputs.py +5 -0
  1192. pulumi_alicloud/maxcompute/_inputs.py +186 -44
  1193. pulumi_alicloud/maxcompute/get_projects.py +33 -25
  1194. pulumi_alicloud/maxcompute/get_service.py +18 -9
  1195. pulumi_alicloud/maxcompute/outputs.py +126 -104
  1196. pulumi_alicloud/maxcompute/project.py +248 -83
  1197. pulumi_alicloud/message/get_service_queues.py +25 -9
  1198. pulumi_alicloud/message/get_service_subscriptions.py +27 -9
  1199. pulumi_alicloud/message/get_service_topics.py +25 -9
  1200. pulumi_alicloud/message/outputs.py +5 -0
  1201. pulumi_alicloud/message/service_queue.py +105 -78
  1202. pulumi_alicloud/message/service_subscription.py +25 -10
  1203. pulumi_alicloud/message/service_topic.py +5 -4
  1204. pulumi_alicloud/mhub/app.py +11 -10
  1205. pulumi_alicloud/mhub/get_apps.py +27 -11
  1206. pulumi_alicloud/mhub/get_products.py +19 -9
  1207. pulumi_alicloud/mhub/outputs.py +5 -0
  1208. pulumi_alicloud/mhub/product.py +5 -4
  1209. pulumi_alicloud/mns/get_queues.py +17 -9
  1210. pulumi_alicloud/mns/get_service.py +14 -9
  1211. pulumi_alicloud/mns/get_topic_subscriptions.py +23 -13
  1212. pulumi_alicloud/mns/get_topics.py +17 -9
  1213. pulumi_alicloud/mns/outputs.py +5 -0
  1214. pulumi_alicloud/mns/queue.py +11 -8
  1215. pulumi_alicloud/mns/topic.py +11 -8
  1216. pulumi_alicloud/mns/topic_subscription.py +19 -14
  1217. pulumi_alicloud/mongodb/__init__.py +1 -0
  1218. pulumi_alicloud/mongodb/_inputs.py +265 -20
  1219. pulumi_alicloud/mongodb/account.py +28 -25
  1220. pulumi_alicloud/mongodb/audit_policy.py +21 -18
  1221. pulumi_alicloud/mongodb/get_accounts.py +22 -13
  1222. pulumi_alicloud/mongodb/get_audit_policies.py +18 -11
  1223. pulumi_alicloud/mongodb/get_instances.py +38 -20
  1224. pulumi_alicloud/mongodb/get_serverless_instances.py +45 -18
  1225. pulumi_alicloud/mongodb/get_sharding_network_private_addresses.py +22 -7
  1226. pulumi_alicloud/mongodb/get_sharding_network_public_addresses.py +22 -11
  1227. pulumi_alicloud/mongodb/get_zones.py +19 -11
  1228. pulumi_alicloud/mongodb/instance.py +314 -67
  1229. pulumi_alicloud/mongodb/outputs.py +27 -26
  1230. pulumi_alicloud/mongodb/private_srv_network_address.py +283 -0
  1231. pulumi_alicloud/mongodb/serverless_instance.py +59 -58
  1232. pulumi_alicloud/mongodb/sharding_instance.py +293 -109
  1233. pulumi_alicloud/mongodb/sharding_network_private_address.py +98 -99
  1234. pulumi_alicloud/mongodb/sharding_network_public_address.py +51 -48
  1235. pulumi_alicloud/msc_sub_contract.py +5 -4
  1236. pulumi_alicloud/msc_sub_subscription.py +9 -8
  1237. pulumi_alicloud/msc_sub_webhook.py +5 -0
  1238. pulumi_alicloud/mse/__init__.py +2 -0
  1239. pulumi_alicloud/mse/_inputs.py +45 -0
  1240. pulumi_alicloud/mse/cluster.py +323 -121
  1241. pulumi_alicloud/mse/engine_namespace.py +177 -68
  1242. pulumi_alicloud/mse/gateway.py +7 -2
  1243. pulumi_alicloud/mse/get_clusters.py +99 -19
  1244. pulumi_alicloud/mse/get_engine_namespaces.py +113 -24
  1245. pulumi_alicloud/mse/get_gateways.py +31 -13
  1246. pulumi_alicloud/mse/get_nacos_configs.py +394 -0
  1247. pulumi_alicloud/mse/get_znodes.py +25 -9
  1248. pulumi_alicloud/mse/nacos_config.py +762 -0
  1249. pulumi_alicloud/mse/outputs.py +170 -8
  1250. pulumi_alicloud/mse/znode.py +17 -16
  1251. pulumi_alicloud/nas/__init__.py +2 -0
  1252. pulumi_alicloud/nas/_inputs.py +317 -0
  1253. pulumi_alicloud/nas/access_group.py +21 -24
  1254. pulumi_alicloud/nas/access_point.py +756 -0
  1255. pulumi_alicloud/nas/access_rule.py +43 -22
  1256. pulumi_alicloud/nas/auto_snapshot_policy.py +116 -30
  1257. pulumi_alicloud/nas/data_flow.py +25 -6
  1258. pulumi_alicloud/nas/file_system.py +501 -234
  1259. pulumi_alicloud/nas/fileset.py +27 -26
  1260. pulumi_alicloud/nas/get_access_groups.py +31 -12
  1261. pulumi_alicloud/nas/get_access_rules.py +24 -5
  1262. pulumi_alicloud/nas/get_auto_snapshot_policies.py +21 -9
  1263. pulumi_alicloud/nas/get_data_flows.py +22 -11
  1264. pulumi_alicloud/nas/get_file_systems.py +31 -13
  1265. pulumi_alicloud/nas/get_filesets.py +22 -11
  1266. pulumi_alicloud/nas/get_lifecycle_policies.py +21 -9
  1267. pulumi_alicloud/nas/get_mount_targets.py +34 -15
  1268. pulumi_alicloud/nas/get_protocols.py +24 -15
  1269. pulumi_alicloud/nas/get_service.py +14 -9
  1270. pulumi_alicloud/nas/get_snapshots.py +27 -11
  1271. pulumi_alicloud/nas/get_zones.py +16 -9
  1272. pulumi_alicloud/nas/lifecycle_policy.py +17 -16
  1273. pulumi_alicloud/nas/mount_target.py +81 -0
  1274. pulumi_alicloud/nas/outputs.py +246 -0
  1275. pulumi_alicloud/nas/recycle_bin.py +19 -18
  1276. pulumi_alicloud/nas/smb_acl_attachment.py +13 -12
  1277. pulumi_alicloud/nas/snapshot.py +19 -20
  1278. pulumi_alicloud/nlb/_inputs.py +287 -64
  1279. pulumi_alicloud/nlb/get_listeners.py +52 -7
  1280. pulumi_alicloud/nlb/get_load_balancers.py +54 -24
  1281. pulumi_alicloud/nlb/get_security_policies.py +32 -16
  1282. pulumi_alicloud/nlb/get_server_group_server_attachments.py +30 -11
  1283. pulumi_alicloud/nlb/get_server_groups.py +36 -18
  1284. pulumi_alicloud/nlb/get_zones.py +15 -9
  1285. pulumi_alicloud/nlb/listener.py +398 -325
  1286. pulumi_alicloud/nlb/listener_additional_certificate_attachment.py +30 -25
  1287. pulumi_alicloud/nlb/load_balancer.py +357 -257
  1288. pulumi_alicloud/nlb/load_balancer_security_group_attachment.py +74 -79
  1289. pulumi_alicloud/nlb/loadbalancer_common_bandwidth_package_attachment.py +69 -60
  1290. pulumi_alicloud/nlb/outputs.py +136 -75
  1291. pulumi_alicloud/nlb/security_policy.py +74 -45
  1292. pulumi_alicloud/nlb/server_group.py +255 -239
  1293. pulumi_alicloud/nlb/server_group_server_attachment.py +21 -20
  1294. pulumi_alicloud/ocean/base_instance.py +519 -183
  1295. pulumi_alicloud/ocean/get_base_instances.py +39 -13
  1296. pulumi_alicloud/ocean/outputs.py +5 -0
  1297. pulumi_alicloud/oos/application.py +29 -28
  1298. pulumi_alicloud/oos/application_group.py +21 -20
  1299. pulumi_alicloud/oos/default_patch_baseline.py +9 -8
  1300. pulumi_alicloud/oos/execution.py +25 -16
  1301. pulumi_alicloud/oos/get_application_groups.py +23 -9
  1302. pulumi_alicloud/oos/get_applications.py +26 -14
  1303. pulumi_alicloud/oos/get_executions.py +57 -18
  1304. pulumi_alicloud/oos/get_parameters.py +42 -18
  1305. pulumi_alicloud/oos/get_patch_baselines.py +29 -9
  1306. pulumi_alicloud/oos/get_secret_parameters.py +149 -19
  1307. pulumi_alicloud/oos/get_state_configurations.py +25 -14
  1308. pulumi_alicloud/oos/get_templates.py +56 -22
  1309. pulumi_alicloud/oos/outputs.py +41 -25
  1310. pulumi_alicloud/oos/parameter.py +47 -18
  1311. pulumi_alicloud/oos/patch_baseline.py +243 -7
  1312. pulumi_alicloud/oos/secret_parameter.py +55 -26
  1313. pulumi_alicloud/oos/service_setting.py +19 -16
  1314. pulumi_alicloud/oos/state_configuration.py +25 -24
  1315. pulumi_alicloud/oos/template.py +35 -28
  1316. pulumi_alicloud/opensearch/_inputs.py +54 -0
  1317. pulumi_alicloud/opensearch/app_group.py +25 -24
  1318. pulumi_alicloud/opensearch/get_app_groups.py +45 -25
  1319. pulumi_alicloud/opensearch/outputs.py +5 -0
  1320. pulumi_alicloud/oss/__init__.py +21 -0
  1321. pulumi_alicloud/oss/_inputs.py +2531 -15
  1322. pulumi_alicloud/oss/access_point.py +463 -0
  1323. pulumi_alicloud/oss/account_public_access_block.py +205 -0
  1324. pulumi_alicloud/oss/bucket.py +201 -154
  1325. pulumi_alicloud/oss/bucket_access_monitor.py +211 -0
  1326. pulumi_alicloud/oss/bucket_acl.py +211 -0
  1327. pulumi_alicloud/oss/bucket_cname.py +509 -0
  1328. pulumi_alicloud/oss/bucket_cname_token.py +239 -0
  1329. pulumi_alicloud/oss/bucket_cors.py +336 -0
  1330. pulumi_alicloud/oss/bucket_data_redundancy_transition.py +303 -0
  1331. pulumi_alicloud/oss/bucket_https_config.py +258 -0
  1332. pulumi_alicloud/oss/bucket_logging.py +320 -0
  1333. pulumi_alicloud/oss/bucket_meta_query.py +275 -0
  1334. pulumi_alicloud/oss/bucket_object.py +25 -24
  1335. pulumi_alicloud/oss/bucket_policy.py +297 -0
  1336. pulumi_alicloud/oss/bucket_public_access_block.py +271 -0
  1337. pulumi_alicloud/oss/bucket_referer.py +475 -0
  1338. pulumi_alicloud/oss/bucket_replication.py +159 -156
  1339. pulumi_alicloud/oss/bucket_request_payment.py +210 -0
  1340. pulumi_alicloud/oss/bucket_server_side_encryption.py +385 -0
  1341. pulumi_alicloud/oss/bucket_transfer_acceleration.py +210 -0
  1342. pulumi_alicloud/oss/bucket_user_defined_log_fields.py +333 -0
  1343. pulumi_alicloud/oss/bucket_versioning.py +210 -0
  1344. pulumi_alicloud/oss/bucket_website.py +416 -0
  1345. pulumi_alicloud/oss/bucket_worm.py +327 -0
  1346. pulumi_alicloud/oss/get_bucket_objects.py +20 -9
  1347. pulumi_alicloud/oss/get_buckets.py +17 -9
  1348. pulumi_alicloud/oss/get_instance_attachments.py +20 -9
  1349. pulumi_alicloud/oss/get_instances.py +32 -22
  1350. pulumi_alicloud/oss/get_service.py +14 -9
  1351. pulumi_alicloud/oss/get_tables.py +21 -5
  1352. pulumi_alicloud/oss/outputs.py +1792 -98
  1353. pulumi_alicloud/ots/_inputs.py +155 -0
  1354. pulumi_alicloud/ots/get_instance_attachments.py +20 -9
  1355. pulumi_alicloud/ots/get_instances.py +32 -22
  1356. pulumi_alicloud/ots/get_search_indexes.py +23 -5
  1357. pulumi_alicloud/ots/get_secondary_indexes.py +23 -5
  1358. pulumi_alicloud/ots/get_service.py +14 -9
  1359. pulumi_alicloud/ots/get_tables.py +21 -5
  1360. pulumi_alicloud/ots/get_tunnels.py +27 -13
  1361. pulumi_alicloud/ots/instance.py +265 -23
  1362. pulumi_alicloud/ots/instance_attachment.py +21 -18
  1363. pulumi_alicloud/ots/outputs.py +75 -30
  1364. pulumi_alicloud/ots/search_index.py +124 -121
  1365. pulumi_alicloud/ots/secondary_index.py +63 -60
  1366. pulumi_alicloud/ots/table.py +220 -76
  1367. pulumi_alicloud/ots/tunnel.py +41 -38
  1368. pulumi_alicloud/outputs.py +5 -0
  1369. pulumi_alicloud/pai/__init__.py +16 -0
  1370. pulumi_alicloud/pai/_inputs.py +129 -0
  1371. pulumi_alicloud/pai/outputs.py +83 -0
  1372. pulumi_alicloud/pai/service.py +501 -0
  1373. pulumi_alicloud/pai/workspace_code_source.py +702 -0
  1374. pulumi_alicloud/pai/workspace_dataset.py +1081 -0
  1375. pulumi_alicloud/pai/workspace_datasetversion.py +818 -0
  1376. pulumi_alicloud/pai/workspace_experiment.py +394 -0
  1377. pulumi_alicloud/pai/workspace_run.py +344 -0
  1378. pulumi_alicloud/pai/workspace_workspace.py +447 -0
  1379. pulumi_alicloud/polardb/_inputs.py +77 -0
  1380. pulumi_alicloud/polardb/account.py +33 -32
  1381. pulumi_alicloud/polardb/account_privilege.py +27 -24
  1382. pulumi_alicloud/polardb/backup_policy.py +5 -0
  1383. pulumi_alicloud/polardb/cluster.py +371 -103
  1384. pulumi_alicloud/polardb/cluster_endpoint.py +33 -32
  1385. pulumi_alicloud/polardb/database.py +19 -18
  1386. pulumi_alicloud/polardb/endpoint.py +33 -32
  1387. pulumi_alicloud/polardb/endpoint_address.py +23 -22
  1388. pulumi_alicloud/polardb/get_accounts.py +37 -21
  1389. pulumi_alicloud/polardb/get_clusters.py +37 -21
  1390. pulumi_alicloud/polardb/get_databases.py +37 -21
  1391. pulumi_alicloud/polardb/get_endpoints.py +24 -17
  1392. pulumi_alicloud/polardb/get_global_database_networks.py +36 -17
  1393. pulumi_alicloud/polardb/get_node_classes.py +28 -9
  1394. pulumi_alicloud/polardb/get_parameter_groups.py +23 -9
  1395. pulumi_alicloud/polardb/get_zones.py +19 -9
  1396. pulumi_alicloud/polardb/global_database_network.py +19 -18
  1397. pulumi_alicloud/polardb/outputs.py +9 -4
  1398. pulumi_alicloud/polardb/parameter_group.py +22 -19
  1399. pulumi_alicloud/polardb/primary_endpoint.py +19 -18
  1400. pulumi_alicloud/privatelink/get_service.py +16 -11
  1401. pulumi_alicloud/privatelink/get_vpc_endpoint_connections.py +39 -13
  1402. pulumi_alicloud/privatelink/get_vpc_endpoint_service_resources.py +25 -11
  1403. pulumi_alicloud/privatelink/get_vpc_endpoint_service_users.py +30 -11
  1404. pulumi_alicloud/privatelink/get_vpc_endpoint_services.py +84 -22
  1405. pulumi_alicloud/privatelink/get_vpc_endpoint_zones.py +32 -13
  1406. pulumi_alicloud/privatelink/get_vpc_endpoints.py +56 -13
  1407. pulumi_alicloud/privatelink/outputs.py +30 -14
  1408. pulumi_alicloud/privatelink/vpc_endpoint.py +270 -108
  1409. pulumi_alicloud/privatelink/vpc_endpoint_service.py +108 -109
  1410. pulumi_alicloud/privatelink/vpc_endpoint_service_connection.py +56 -47
  1411. pulumi_alicloud/privatelink/vpc_endpoint_service_resource.py +61 -59
  1412. pulumi_alicloud/privatelink/vpc_endpoint_service_user.py +69 -29
  1413. pulumi_alicloud/privatelink/vpc_endpoint_zone.py +66 -47
  1414. pulumi_alicloud/provider.py +54 -38
  1415. pulumi_alicloud/pulumi-plugin.json +2 -1
  1416. pulumi_alicloud/pvtz/_inputs.py +85 -0
  1417. pulumi_alicloud/pvtz/endpoint.py +10 -5
  1418. pulumi_alicloud/pvtz/get_endpoints.py +21 -9
  1419. pulumi_alicloud/pvtz/get_resolver_zones.py +18 -11
  1420. pulumi_alicloud/pvtz/get_rules.py +21 -9
  1421. pulumi_alicloud/pvtz/get_service.py +14 -9
  1422. pulumi_alicloud/pvtz/get_zone_records.py +34 -13
  1423. pulumi_alicloud/pvtz/get_zones.py +35 -11
  1424. pulumi_alicloud/pvtz/outputs.py +5 -0
  1425. pulumi_alicloud/pvtz/rule.py +10 -5
  1426. pulumi_alicloud/pvtz/rule_attachment.py +10 -5
  1427. pulumi_alicloud/pvtz/user_vpc_authorization.py +5 -4
  1428. pulumi_alicloud/pvtz/zone.py +27 -32
  1429. pulumi_alicloud/pvtz/zone_attachment.py +44 -55
  1430. pulumi_alicloud/pvtz/zone_record.py +10 -15
  1431. pulumi_alicloud/quickbi/get_users.py +20 -9
  1432. pulumi_alicloud/quickbi/outputs.py +5 -0
  1433. pulumi_alicloud/quickbi/user.py +5 -4
  1434. pulumi_alicloud/quotas/__init__.py +1 -0
  1435. pulumi_alicloud/quotas/_inputs.py +202 -28
  1436. pulumi_alicloud/quotas/application_info.py +8 -3
  1437. pulumi_alicloud/quotas/get_application_infos.py +32 -7
  1438. pulumi_alicloud/quotas/get_quota_alarms.py +33 -13
  1439. pulumi_alicloud/quotas/get_quota_applications.py +78 -27
  1440. pulumi_alicloud/quotas/get_quotas.py +40 -15
  1441. pulumi_alicloud/quotas/get_template_applications.py +100 -7
  1442. pulumi_alicloud/quotas/outputs.py +14 -29
  1443. pulumi_alicloud/quotas/quota_alarm.py +30 -29
  1444. pulumi_alicloud/quotas/quota_application.py +31 -33
  1445. pulumi_alicloud/quotas/template_applications.py +12 -7
  1446. pulumi_alicloud/quotas/template_quota.py +24 -23
  1447. pulumi_alicloud/quotas/template_service.py +170 -0
  1448. pulumi_alicloud/ram/_inputs.py +83 -0
  1449. pulumi_alicloud/ram/access_key.py +13 -8
  1450. pulumi_alicloud/ram/account_alias.py +5 -4
  1451. pulumi_alicloud/ram/account_password_policy.py +15 -18
  1452. pulumi_alicloud/ram/alias.py +5 -0
  1453. pulumi_alicloud/ram/get_account_alias.py +49 -7
  1454. pulumi_alicloud/ram/get_account_aliases.py +14 -5
  1455. pulumi_alicloud/ram/get_groups.py +29 -15
  1456. pulumi_alicloud/ram/get_policies.py +97 -19
  1457. pulumi_alicloud/ram/get_policy_document.py +148 -149
  1458. pulumi_alicloud/ram/get_roles.py +27 -13
  1459. pulumi_alicloud/ram/get_saml_providers.py +21 -9
  1460. pulumi_alicloud/ram/get_users.py +75 -55
  1461. pulumi_alicloud/ram/group.py +11 -6
  1462. pulumi_alicloud/ram/group_membership.py +5 -0
  1463. pulumi_alicloud/ram/group_policy_attachment.py +25 -10
  1464. pulumi_alicloud/ram/login_profile.py +15 -12
  1465. pulumi_alicloud/ram/outputs.py +5 -0
  1466. pulumi_alicloud/ram/policy.py +34 -51
  1467. pulumi_alicloud/ram/role.py +20 -37
  1468. pulumi_alicloud/ram/role_attachment.py +31 -24
  1469. pulumi_alicloud/ram/role_policy_attachment.py +21 -8
  1470. pulumi_alicloud/ram/saml_provider.py +11 -14
  1471. pulumi_alicloud/ram/security_preference.py +9 -8
  1472. pulumi_alicloud/ram/user.py +11 -8
  1473. pulumi_alicloud/ram/user_policy_attachment.py +21 -8
  1474. pulumi_alicloud/rdc/get_organizations.py +33 -11
  1475. pulumi_alicloud/rdc/organization.py +13 -8
  1476. pulumi_alicloud/rdc/outputs.py +5 -0
  1477. pulumi_alicloud/rds/__init__.py +2 -0
  1478. pulumi_alicloud/rds/_inputs.py +585 -12
  1479. pulumi_alicloud/rds/account.py +44 -71
  1480. pulumi_alicloud/rds/account_privilege.py +17 -14
  1481. pulumi_alicloud/rds/backup_policy.py +298 -69
  1482. pulumi_alicloud/rds/connection.py +17 -16
  1483. pulumi_alicloud/rds/custom.py +1630 -0
  1484. pulumi_alicloud/rds/custom_deployment_set.py +525 -0
  1485. pulumi_alicloud/rds/database.py +70 -23
  1486. pulumi_alicloud/rds/db_instance_endpoint.py +48 -43
  1487. pulumi_alicloud/rds/db_instance_endpoint_address.py +45 -40
  1488. pulumi_alicloud/rds/db_node.py +33 -28
  1489. pulumi_alicloud/rds/ddr_instance.py +36 -31
  1490. pulumi_alicloud/rds/get_accounts.py +25 -11
  1491. pulumi_alicloud/rds/get_character_set_names.py +18 -9
  1492. pulumi_alicloud/rds/get_class_details.py +37 -17
  1493. pulumi_alicloud/rds/get_collation_time_zones.py +20 -13
  1494. pulumi_alicloud/rds/get_cross_region_backups.py +36 -11
  1495. pulumi_alicloud/rds/get_cross_regions.py +19 -11
  1496. pulumi_alicloud/rds/get_instance_class_infos.py +46 -9
  1497. pulumi_alicloud/rds/get_instance_classes.py +61 -5
  1498. pulumi_alicloud/rds/get_instance_engines.py +51 -5
  1499. pulumi_alicloud/rds/get_instances.py +48 -17
  1500. pulumi_alicloud/rds/get_modify_parameter_logs.py +24 -13
  1501. pulumi_alicloud/rds/get_rds_backups.py +34 -31
  1502. pulumi_alicloud/rds/get_rds_parameter_groups.py +21 -5
  1503. pulumi_alicloud/rds/get_slots.py +18 -9
  1504. pulumi_alicloud/rds/get_zones.py +59 -21
  1505. pulumi_alicloud/rds/instance.py +467 -153
  1506. pulumi_alicloud/rds/outputs.py +112 -12
  1507. pulumi_alicloud/rds/rds_account.py +239 -128
  1508. pulumi_alicloud/rds/rds_backup.py +9 -8
  1509. pulumi_alicloud/rds/rds_clone_db_instance.py +40 -39
  1510. pulumi_alicloud/rds/rds_db_proxy.py +107 -41
  1511. pulumi_alicloud/rds/rds_instance_cross_backup_policy.py +23 -22
  1512. pulumi_alicloud/rds/rds_parameter_group.py +26 -25
  1513. pulumi_alicloud/rds/rds_service_linked_role.py +5 -4
  1514. pulumi_alicloud/rds/rds_upgrade_db_instance.py +35 -34
  1515. pulumi_alicloud/rds/read_only_instance.py +42 -37
  1516. pulumi_alicloud/rds/read_write_splitting_connection.py +61 -58
  1517. pulumi_alicloud/realtimecompute/_inputs.py +41 -0
  1518. pulumi_alicloud/realtimecompute/outputs.py +5 -0
  1519. pulumi_alicloud/realtimecompute/vvp_instance.py +29 -24
  1520. pulumi_alicloud/redis/tair_instance.py +1483 -66
  1521. pulumi_alicloud/resourcemanager/_inputs.py +25 -4
  1522. pulumi_alicloud/resourcemanager/account.py +29 -28
  1523. pulumi_alicloud/resourcemanager/control_policy.py +5 -4
  1524. pulumi_alicloud/resourcemanager/control_policy_attachment.py +41 -32
  1525. pulumi_alicloud/resourcemanager/delegated_administrator.py +23 -14
  1526. pulumi_alicloud/resourcemanager/folder.py +15 -6
  1527. pulumi_alicloud/resourcemanager/get_account_deletion_check_task.py +17 -9
  1528. pulumi_alicloud/resourcemanager/get_accounts.py +20 -9
  1529. pulumi_alicloud/resourcemanager/get_control_policies.py +27 -11
  1530. pulumi_alicloud/resourcemanager/get_control_policy_attachments.py +23 -11
  1531. pulumi_alicloud/resourcemanager/get_delegated_administrators.py +24 -11
  1532. pulumi_alicloud/resourcemanager/get_folders.py +60 -37
  1533. pulumi_alicloud/resourcemanager/get_handshakes.py +20 -9
  1534. pulumi_alicloud/resourcemanager/get_policies.py +21 -5
  1535. pulumi_alicloud/resourcemanager/get_policy_attachments.py +27 -9
  1536. pulumi_alicloud/resourcemanager/get_policy_versions.py +22 -9
  1537. pulumi_alicloud/resourcemanager/get_resource_directories.py +14 -9
  1538. pulumi_alicloud/resourcemanager/get_resource_groups.py +23 -9
  1539. pulumi_alicloud/resourcemanager/get_resource_shares.py +29 -13
  1540. pulumi_alicloud/resourcemanager/get_roles.py +21 -9
  1541. pulumi_alicloud/resourcemanager/get_shared_resources.py +20 -5
  1542. pulumi_alicloud/resourcemanager/get_shared_targets.py +28 -17
  1543. pulumi_alicloud/resourcemanager/handshake.py +9 -8
  1544. pulumi_alicloud/resourcemanager/outputs.py +17 -12
  1545. pulumi_alicloud/resourcemanager/policy.py +24 -29
  1546. pulumi_alicloud/resourcemanager/policy_attachment.py +5 -0
  1547. pulumi_alicloud/resourcemanager/policy_version.py +46 -51
  1548. pulumi_alicloud/resourcemanager/resource_directory.py +33 -0
  1549. pulumi_alicloud/resourcemanager/resource_group.py +98 -54
  1550. pulumi_alicloud/resourcemanager/resource_share.py +5 -4
  1551. pulumi_alicloud/resourcemanager/role.py +5 -4
  1552. pulumi_alicloud/resourcemanager/saved_query.py +5 -4
  1553. pulumi_alicloud/resourcemanager/service_linked_role.py +5 -4
  1554. pulumi_alicloud/resourcemanager/shared_resource.py +59 -16
  1555. pulumi_alicloud/resourcemanager/shared_target.py +11 -10
  1556. pulumi_alicloud/rocketmq/_inputs.py +238 -22
  1557. pulumi_alicloud/rocketmq/acl.py +9 -8
  1558. pulumi_alicloud/rocketmq/acl_rule.py +13 -12
  1559. pulumi_alicloud/rocketmq/client_user.py +21 -20
  1560. pulumi_alicloud/rocketmq/consumer_group.py +56 -55
  1561. pulumi_alicloud/rocketmq/dnat_entry.py +7 -6
  1562. pulumi_alicloud/rocketmq/get_groups.py +32 -10
  1563. pulumi_alicloud/rocketmq/get_instances.py +36 -16
  1564. pulumi_alicloud/rocketmq/get_service.py +14 -9
  1565. pulumi_alicloud/rocketmq/get_topics.py +36 -20
  1566. pulumi_alicloud/rocketmq/group.py +28 -33
  1567. pulumi_alicloud/rocketmq/instance.py +26 -31
  1568. pulumi_alicloud/rocketmq/outputs.py +99 -30
  1569. pulumi_alicloud/rocketmq/qos.py +9 -8
  1570. pulumi_alicloud/rocketmq/qos_car.py +15 -12
  1571. pulumi_alicloud/rocketmq/qos_policy.py +7 -2
  1572. pulumi_alicloud/rocketmq/rocket_mq_instance.py +337 -138
  1573. pulumi_alicloud/rocketmq/rocket_mq_topic.py +43 -42
  1574. pulumi_alicloud/rocketmq/snat_entry.py +7 -6
  1575. pulumi_alicloud/rocketmq/topic.py +35 -42
  1576. pulumi_alicloud/ros/_inputs.py +117 -12
  1577. pulumi_alicloud/ros/change_set.py +20 -11
  1578. pulumi_alicloud/ros/get_change_sets.py +29 -11
  1579. pulumi_alicloud/ros/get_regions.py +14 -9
  1580. pulumi_alicloud/ros/get_stack_groups.py +25 -11
  1581. pulumi_alicloud/ros/get_stack_instances.py +38 -11
  1582. pulumi_alicloud/ros/get_stacks.py +40 -18
  1583. pulumi_alicloud/ros/get_template_scratches.py +26 -13
  1584. pulumi_alicloud/ros/get_templates.py +34 -16
  1585. pulumi_alicloud/ros/outputs.py +29 -22
  1586. pulumi_alicloud/ros/stack.py +42 -45
  1587. pulumi_alicloud/ros/stack_group.py +12 -13
  1588. pulumi_alicloud/ros/stack_instance.py +116 -51
  1589. pulumi_alicloud/ros/template.py +25 -26
  1590. pulumi_alicloud/ros/template_scratch.py +41 -40
  1591. pulumi_alicloud/sae/_inputs.py +692 -96
  1592. pulumi_alicloud/sae/application.py +147 -198
  1593. pulumi_alicloud/sae/application_scaling_rule.py +123 -122
  1594. pulumi_alicloud/sae/config_map.py +17 -14
  1595. pulumi_alicloud/sae/get_application_scaling_rules.py +18 -9
  1596. pulumi_alicloud/sae/get_applications.py +46 -23
  1597. pulumi_alicloud/sae/get_config_maps.py +33 -19
  1598. pulumi_alicloud/sae/get_grey_tag_routes.py +21 -9
  1599. pulumi_alicloud/sae/get_ingresses.py +22 -7
  1600. pulumi_alicloud/sae/get_instance_specifications.py +16 -9
  1601. pulumi_alicloud/sae/get_namespaces.py +19 -9
  1602. pulumi_alicloud/sae/get_service.py +14 -9
  1603. pulumi_alicloud/sae/grey_tag_route.py +97 -88
  1604. pulumi_alicloud/sae/ingress.py +65 -64
  1605. pulumi_alicloud/sae/load_balancer_internet.py +50 -47
  1606. pulumi_alicloud/sae/load_balancer_intranet.py +50 -47
  1607. pulumi_alicloud/sae/namespace.py +11 -10
  1608. pulumi_alicloud/sae/outputs.py +22 -109
  1609. pulumi_alicloud/sag/get_acls.py +25 -15
  1610. pulumi_alicloud/sag/get_smartag_flow_logs.py +27 -9
  1611. pulumi_alicloud/sag/outputs.py +5 -0
  1612. pulumi_alicloud/sag/smartag_flow_log.py +5 -4
  1613. pulumi_alicloud/scdn/_inputs.py +79 -0
  1614. pulumi_alicloud/scdn/domain.py +36 -37
  1615. pulumi_alicloud/scdn/domain_config.py +14 -5
  1616. pulumi_alicloud/scdn/get_domains.py +27 -11
  1617. pulumi_alicloud/scdn/outputs.py +5 -0
  1618. pulumi_alicloud/schedulerx/__init__.py +3 -0
  1619. pulumi_alicloud/schedulerx/_inputs.py +542 -0
  1620. pulumi_alicloud/schedulerx/app_group.py +952 -0
  1621. pulumi_alicloud/schedulerx/get_namespaces.py +19 -9
  1622. pulumi_alicloud/schedulerx/job.py +1454 -0
  1623. pulumi_alicloud/schedulerx/namespace.py +69 -55
  1624. pulumi_alicloud/schedulerx/outputs.py +430 -0
  1625. pulumi_alicloud/sddp/config.py +5 -4
  1626. pulumi_alicloud/sddp/data_limit.py +5 -0
  1627. pulumi_alicloud/sddp/get_configs.py +29 -17
  1628. pulumi_alicloud/sddp/get_data_limits.py +35 -15
  1629. pulumi_alicloud/sddp/get_instances.py +19 -11
  1630. pulumi_alicloud/sddp/get_rules.py +84 -27
  1631. pulumi_alicloud/sddp/instance.py +13 -12
  1632. pulumi_alicloud/sddp/outputs.py +19 -14
  1633. pulumi_alicloud/sddp/rule.py +138 -132
  1634. pulumi_alicloud/securitycenter/get_groups.py +19 -9
  1635. pulumi_alicloud/securitycenter/group.py +5 -4
  1636. pulumi_alicloud/securitycenter/outputs.py +5 -0
  1637. pulumi_alicloud/securitycenter/service_linked_role.py +7 -6
  1638. pulumi_alicloud/selectdb/__init__.py +13 -0
  1639. pulumi_alicloud/selectdb/_inputs.py +585 -0
  1640. pulumi_alicloud/selectdb/db_cluster.py +835 -0
  1641. pulumi_alicloud/selectdb/db_instance.py +1373 -0
  1642. pulumi_alicloud/selectdb/get_db_clusters.py +195 -0
  1643. pulumi_alicloud/selectdb/get_db_instances.py +204 -0
  1644. pulumi_alicloud/selectdb/outputs.py +1127 -0
  1645. pulumi_alicloud/servicecatalog/__init__.py +4 -0
  1646. pulumi_alicloud/servicecatalog/_inputs.py +39 -0
  1647. pulumi_alicloud/servicecatalog/get_end_user_products.py +26 -9
  1648. pulumi_alicloud/servicecatalog/get_launch_options.py +28 -18
  1649. pulumi_alicloud/servicecatalog/get_portfolios.py +35 -13
  1650. pulumi_alicloud/servicecatalog/get_product_as_end_users.py +22 -9
  1651. pulumi_alicloud/servicecatalog/get_product_versions.py +25 -12
  1652. pulumi_alicloud/servicecatalog/get_provisioned_products.py +33 -12
  1653. pulumi_alicloud/servicecatalog/outputs.py +9 -4
  1654. pulumi_alicloud/servicecatalog/portfolio.py +36 -35
  1655. pulumi_alicloud/servicecatalog/principal_portfolio_association.py +359 -0
  1656. pulumi_alicloud/servicecatalog/product.py +388 -0
  1657. pulumi_alicloud/servicecatalog/product_portfolio_association.py +227 -0
  1658. pulumi_alicloud/servicecatalog/product_version.py +544 -0
  1659. pulumi_alicloud/servicecatalog/provisioned_product.py +34 -33
  1660. pulumi_alicloud/servicemesh/_inputs.py +1039 -114
  1661. pulumi_alicloud/servicemesh/extension_provider.py +7 -2
  1662. pulumi_alicloud/servicemesh/get_extension_providers.py +23 -9
  1663. pulumi_alicloud/servicemesh/get_service_meshes.py +28 -10
  1664. pulumi_alicloud/servicemesh/get_versions.py +26 -13
  1665. pulumi_alicloud/servicemesh/outputs.py +663 -165
  1666. pulumi_alicloud/servicemesh/service_mesh.py +170 -109
  1667. pulumi_alicloud/servicemesh/user_permission.py +10 -5
  1668. pulumi_alicloud/simpleapplicationserver/custom_image.py +23 -22
  1669. pulumi_alicloud/simpleapplicationserver/firewall_rule.py +17 -16
  1670. pulumi_alicloud/simpleapplicationserver/get_images.py +23 -13
  1671. pulumi_alicloud/simpleapplicationserver/get_instances.py +27 -13
  1672. pulumi_alicloud/simpleapplicationserver/get_server_custom_images.py +19 -9
  1673. pulumi_alicloud/simpleapplicationserver/get_server_disks.py +27 -11
  1674. pulumi_alicloud/simpleapplicationserver/get_server_firewall_rules.py +18 -9
  1675. pulumi_alicloud/simpleapplicationserver/get_server_plans.py +30 -11
  1676. pulumi_alicloud/simpleapplicationserver/get_server_snapshots.py +27 -11
  1677. pulumi_alicloud/simpleapplicationserver/instance.py +12 -7
  1678. pulumi_alicloud/simpleapplicationserver/outputs.py +5 -0
  1679. pulumi_alicloud/simpleapplicationserver/snapshot.py +31 -22
  1680. pulumi_alicloud/slb/_inputs.py +97 -16
  1681. pulumi_alicloud/slb/acl.py +33 -34
  1682. pulumi_alicloud/slb/acl_entry_attachment.py +15 -10
  1683. pulumi_alicloud/slb/application_load_balancer.py +25 -32
  1684. pulumi_alicloud/slb/attachment.py +39 -34
  1685. pulumi_alicloud/slb/backend_server.py +10 -5
  1686. pulumi_alicloud/slb/ca_certificate.py +26 -55
  1687. pulumi_alicloud/slb/domain_extension.py +17 -14
  1688. pulumi_alicloud/slb/get_acls.py +28 -14
  1689. pulumi_alicloud/slb/get_application_load_balancers.py +68 -20
  1690. pulumi_alicloud/slb/get_attachments.py +20 -11
  1691. pulumi_alicloud/slb/get_backend_servers.py +20 -11
  1692. pulumi_alicloud/slb/get_ca_certificates.py +28 -14
  1693. pulumi_alicloud/slb/get_domain_extensions.py +26 -15
  1694. pulumi_alicloud/slb/get_listeners.py +22 -9
  1695. pulumi_alicloud/slb/get_load_balancers.py +70 -26
  1696. pulumi_alicloud/slb/get_master_slave_server_groups.py +21 -5
  1697. pulumi_alicloud/slb/get_rules.py +45 -25
  1698. pulumi_alicloud/slb/get_server_certificates.py +28 -14
  1699. pulumi_alicloud/slb/get_server_groups.py +33 -21
  1700. pulumi_alicloud/slb/get_tls_cipher_policies.py +27 -11
  1701. pulumi_alicloud/slb/get_zones.py +30 -16
  1702. pulumi_alicloud/slb/listener.py +78 -731
  1703. pulumi_alicloud/slb/load_balancer.py +62 -73
  1704. pulumi_alicloud/slb/master_slave_server_group.py +72 -65
  1705. pulumi_alicloud/slb/outputs.py +51 -56
  1706. pulumi_alicloud/slb/rule.py +185 -169
  1707. pulumi_alicloud/slb/server_certificate.py +59 -96
  1708. pulumi_alicloud/slb/server_group.py +147 -92
  1709. pulumi_alicloud/slb/server_group_server_attachment.py +129 -0
  1710. pulumi_alicloud/slb/tls_cipher_policy.py +11 -10
  1711. pulumi_alicloud/sls/__init__.py +13 -0
  1712. pulumi_alicloud/sls/_inputs.py +2909 -0
  1713. pulumi_alicloud/sls/alert.py +793 -0
  1714. pulumi_alicloud/sls/collection_policy.py +561 -0
  1715. pulumi_alicloud/sls/oss_export_sink.py +428 -0
  1716. pulumi_alicloud/sls/outputs.py +2148 -0
  1717. pulumi_alicloud/sls/scheduled_sql.py +528 -0
  1718. pulumi_alicloud/sms/short_url.py +5 -4
  1719. pulumi_alicloud/tag/get_meta_tags.py +16 -9
  1720. pulumi_alicloud/tag/meta_tag.py +5 -4
  1721. pulumi_alicloud/tag/outputs.py +5 -0
  1722. pulumi_alicloud/tag/policy.py +7 -6
  1723. pulumi_alicloud/tag/policy_attachment.py +13 -12
  1724. pulumi_alicloud/threatdetection/_inputs.py +81 -0
  1725. pulumi_alicloud/threatdetection/anti_brute_force_rule.py +11 -10
  1726. pulumi_alicloud/threatdetection/backup_policy.py +11 -10
  1727. pulumi_alicloud/threatdetection/baseline_strategy.py +13 -12
  1728. pulumi_alicloud/threatdetection/client_file_protect.py +17 -16
  1729. pulumi_alicloud/threatdetection/client_user_define_rule.py +5 -4
  1730. pulumi_alicloud/threatdetection/file_upload_limit.py +5 -0
  1731. pulumi_alicloud/threatdetection/get_anti_brute_force_rules.py +61 -5
  1732. pulumi_alicloud/threatdetection/get_assets.py +30 -9
  1733. pulumi_alicloud/threatdetection/get_backup_policies.py +29 -9
  1734. pulumi_alicloud/threatdetection/get_baseline_strategies.py +63 -5
  1735. pulumi_alicloud/threatdetection/get_honey_pots.py +26 -9
  1736. pulumi_alicloud/threatdetection/get_honeypot_images.py +21 -9
  1737. pulumi_alicloud/threatdetection/get_honeypot_nodes.py +29 -11
  1738. pulumi_alicloud/threatdetection/get_honeypot_presets.py +36 -11
  1739. pulumi_alicloud/threatdetection/get_honeypot_probes.py +46 -29
  1740. pulumi_alicloud/threatdetection/get_instances.py +26 -11
  1741. pulumi_alicloud/threatdetection/get_log_shipper.py +19 -9
  1742. pulumi_alicloud/threatdetection/get_vul_whitelists.py +20 -9
  1743. pulumi_alicloud/threatdetection/get_web_lock_configs.py +30 -11
  1744. pulumi_alicloud/threatdetection/honey_pot.py +15 -14
  1745. pulumi_alicloud/threatdetection/honeypot_node.py +5 -4
  1746. pulumi_alicloud/threatdetection/honeypot_preset.py +28 -25
  1747. pulumi_alicloud/threatdetection/honeypot_probe.py +32 -31
  1748. pulumi_alicloud/threatdetection/image_event_operation.py +23 -26
  1749. pulumi_alicloud/threatdetection/instance.py +339 -52
  1750. pulumi_alicloud/threatdetection/malicious_file_whitelist_config.py +15 -14
  1751. pulumi_alicloud/threatdetection/oss_scan_config.py +25 -14
  1752. pulumi_alicloud/threatdetection/outputs.py +5 -0
  1753. pulumi_alicloud/threatdetection/sas_trail.py +7 -6
  1754. pulumi_alicloud/threatdetection/vul_whitelist.py +9 -8
  1755. pulumi_alicloud/threatdetection/web_lock_config.py +11 -10
  1756. pulumi_alicloud/tsdb/get_instances.py +30 -11
  1757. pulumi_alicloud/tsdb/get_zones.py +15 -9
  1758. pulumi_alicloud/tsdb/instance.py +23 -14
  1759. pulumi_alicloud/tsdb/outputs.py +5 -0
  1760. pulumi_alicloud/videosurveillance/get_service.py +14 -9
  1761. pulumi_alicloud/videosurveillance/get_system_groups.py +33 -17
  1762. pulumi_alicloud/videosurveillance/outputs.py +5 -0
  1763. pulumi_alicloud/videosurveillance/system_group.py +5 -4
  1764. pulumi_alicloud/vod/_inputs.py +29 -0
  1765. pulumi_alicloud/vod/domain.py +58 -43
  1766. pulumi_alicloud/vod/editing_project.py +5 -4
  1767. pulumi_alicloud/vod/get_domains.py +52 -32
  1768. pulumi_alicloud/vod/outputs.py +5 -0
  1769. pulumi_alicloud/vpc/__init__.py +5 -0
  1770. pulumi_alicloud/vpc/_inputs.py +427 -166
  1771. pulumi_alicloud/vpc/bgp_group.py +17 -16
  1772. pulumi_alicloud/vpc/bgp_network.py +17 -16
  1773. pulumi_alicloud/vpc/bgp_peer.py +56 -27
  1774. pulumi_alicloud/vpc/common_bandwith_package.py +215 -139
  1775. pulumi_alicloud/vpc/common_bandwith_package_attachment.py +73 -44
  1776. pulumi_alicloud/vpc/dhcp_options_set.py +31 -36
  1777. pulumi_alicloud/vpc/dhcp_options_set_attachment.py +13 -12
  1778. pulumi_alicloud/vpc/flow_log.py +19 -14
  1779. pulumi_alicloud/vpc/forward_entry.py +24 -29
  1780. pulumi_alicloud/vpc/gateway_endpoint.py +19 -18
  1781. pulumi_alicloud/vpc/gateway_endpoint_route_table_attachment.py +5 -4
  1782. pulumi_alicloud/vpc/gateway_route_table_attachment.py +17 -16
  1783. pulumi_alicloud/vpc/get_bgp_groups.py +27 -13
  1784. pulumi_alicloud/vpc/get_bgp_networks.py +24 -13
  1785. pulumi_alicloud/vpc/get_bgp_peers.py +28 -15
  1786. pulumi_alicloud/vpc/get_common_bandwidth_packages.py +37 -15
  1787. pulumi_alicloud/vpc/get_dhcp_options_sets.py +29 -21
  1788. pulumi_alicloud/vpc/get_enhanced_nat_available_zones.py +15 -5
  1789. pulumi_alicloud/vpc/get_flow_log_service.py +14 -9
  1790. pulumi_alicloud/vpc/get_forward_entries.py +53 -27
  1791. pulumi_alicloud/vpc/get_havips.py +23 -11
  1792. pulumi_alicloud/vpc/get_ipsec_servers.py +23 -9
  1793. pulumi_alicloud/vpc/get_ipv4_gateways.py +27 -11
  1794. pulumi_alicloud/vpc/get_ipv6_addresses.py +31 -11
  1795. pulumi_alicloud/vpc/get_ipv6_egress_rules.py +31 -13
  1796. pulumi_alicloud/vpc/get_ipv6_gateways.py +27 -11
  1797. pulumi_alicloud/vpc/get_ipv6_internet_bandwidths.py +22 -9
  1798. pulumi_alicloud/vpc/get_nat_gateways.py +49 -10
  1799. pulumi_alicloud/vpc/get_nat_ip_cidrs.py +33 -15
  1800. pulumi_alicloud/vpc/get_nat_ips.py +35 -15
  1801. pulumi_alicloud/vpc/get_network_acls.py +33 -13
  1802. pulumi_alicloud/vpc/get_networks.py +57 -20
  1803. pulumi_alicloud/vpc/get_pbr_route_entries.py +18 -9
  1804. pulumi_alicloud/vpc/get_peer_connections.py +44 -13
  1805. pulumi_alicloud/vpc/get_prefix_lists.py +23 -9
  1806. pulumi_alicloud/vpc/get_public_ip_address_pool_cidr_blocks.py +22 -9
  1807. pulumi_alicloud/vpc/get_public_ip_address_pools.py +33 -15
  1808. pulumi_alicloud/vpc/get_route_entries.py +70 -51
  1809. pulumi_alicloud/vpc/get_route_tables.py +83 -29
  1810. pulumi_alicloud/vpc/get_router_interfaces.py +33 -9
  1811. pulumi_alicloud/vpc/get_snat_entries.py +53 -25
  1812. pulumi_alicloud/vpc/get_ssl_vpn_client_certs.py +25 -13
  1813. pulumi_alicloud/vpc/get_ssl_vpn_servers.py +25 -13
  1814. pulumi_alicloud/vpc/get_switches.py +81 -49
  1815. pulumi_alicloud/vpc/get_traffic_mirror_filter_egress_rules.py +22 -11
  1816. pulumi_alicloud/vpc/get_traffic_mirror_filter_ingress_rules.py +22 -11
  1817. pulumi_alicloud/vpc/get_traffic_mirror_filters.py +25 -11
  1818. pulumi_alicloud/vpc/get_traffic_mirror_service.py +14 -9
  1819. pulumi_alicloud/vpc/get_traffic_mirror_sessions.py +39 -15
  1820. pulumi_alicloud/vpc/get_vpc_flow_logs.py +41 -15
  1821. pulumi_alicloud/vpc/ha_vip.py +38 -35
  1822. pulumi_alicloud/vpc/ha_vip_attachment.py +32 -35
  1823. pulumi_alicloud/vpc/ha_vipv2.py +28 -33
  1824. pulumi_alicloud/vpc/ipam_ipam.py +531 -0
  1825. pulumi_alicloud/vpc/ipam_ipam_pool.py +850 -0
  1826. pulumi_alicloud/vpc/ipam_ipam_pool_allocation.py +545 -0
  1827. pulumi_alicloud/vpc/ipam_ipam_pool_cidr.py +313 -0
  1828. pulumi_alicloud/vpc/ipam_ipam_scope.py +537 -0
  1829. pulumi_alicloud/vpc/ipv4_cidr_block.py +5 -4
  1830. pulumi_alicloud/vpc/ipv4_gateway.py +27 -26
  1831. pulumi_alicloud/vpc/ipv6_address.py +29 -28
  1832. pulumi_alicloud/vpc/ipv6_egress_rule.py +67 -36
  1833. pulumi_alicloud/vpc/ipv6_gateway.py +22 -27
  1834. pulumi_alicloud/vpc/ipv6_internet_bandwidth.py +37 -32
  1835. pulumi_alicloud/vpc/nat_gateway.py +208 -28
  1836. pulumi_alicloud/vpc/nat_ip.py +19 -18
  1837. pulumi_alicloud/vpc/nat_ip_cidr.py +17 -16
  1838. pulumi_alicloud/vpc/network.py +663 -197
  1839. pulumi_alicloud/vpc/network_acl.py +165 -123
  1840. pulumi_alicloud/vpc/network_acl_attachment.py +32 -31
  1841. pulumi_alicloud/vpc/network_acl_entries.py +85 -74
  1842. pulumi_alicloud/vpc/network_interface.py +116 -71
  1843. pulumi_alicloud/vpc/network_interface_attachment.py +39 -0
  1844. pulumi_alicloud/vpc/outputs.py +199 -221
  1845. pulumi_alicloud/vpc/peer_connection.py +330 -164
  1846. pulumi_alicloud/vpc/peer_connection_accepter.py +379 -114
  1847. pulumi_alicloud/vpc/prefix_list.py +34 -33
  1848. pulumi_alicloud/vpc/public_ip_address_pool.py +143 -34
  1849. pulumi_alicloud/vpc/public_ip_address_pool_cidr_block.py +68 -13
  1850. pulumi_alicloud/vpc/route_entry.py +243 -154
  1851. pulumi_alicloud/vpc/route_table.py +22 -27
  1852. pulumi_alicloud/vpc/route_table_attachment.py +25 -18
  1853. pulumi_alicloud/vpc/router_interface.py +20 -43
  1854. pulumi_alicloud/vpc/router_interface_connection.py +29 -32
  1855. pulumi_alicloud/vpc/snat_entry.py +21 -20
  1856. pulumi_alicloud/vpc/subnet.py +80 -55
  1857. pulumi_alicloud/vpc/switch.py +149 -151
  1858. pulumi_alicloud/vpc/traffic_mirror_filter.py +65 -64
  1859. pulumi_alicloud/vpc/traffic_mirror_filter_egress_rule.py +8 -13
  1860. pulumi_alicloud/vpc/traffic_mirror_filter_ingress_rule.py +16 -21
  1861. pulumi_alicloud/vpc/traffic_mirror_session.py +53 -50
  1862. pulumi_alicloud/vpc/vbr_ha.py +5 -0
  1863. pulumi_alicloud/vpc/vpc_network_acl_attachment.py +5 -0
  1864. pulumi_alicloud/vpc/vswitch_cidr_reservation.py +11 -10
  1865. pulumi_alicloud/vpn/_inputs.py +405 -58
  1866. pulumi_alicloud/vpn/connection.py +267 -48
  1867. pulumi_alicloud/vpn/customer_gateway.py +22 -27
  1868. pulumi_alicloud/vpn/gateway.py +25 -32
  1869. pulumi_alicloud/vpn/gateway_vco_route.py +177 -107
  1870. pulumi_alicloud/vpn/gateway_vpn_attachment.py +95 -92
  1871. pulumi_alicloud/vpn/get_connections.py +31 -17
  1872. pulumi_alicloud/vpn/get_customer_gateways.py +23 -13
  1873. pulumi_alicloud/vpn/get_gateway_vco_routes.py +124 -105
  1874. pulumi_alicloud/vpn/get_gateway_vpn_attachments.py +34 -18
  1875. pulumi_alicloud/vpn/get_gateway_zones.py +34 -9
  1876. pulumi_alicloud/vpn/get_gateways.py +30 -8
  1877. pulumi_alicloud/vpn/ipsec_server.py +43 -32
  1878. pulumi_alicloud/vpn/outputs.py +16 -69
  1879. pulumi_alicloud/vpn/pbr_route_entry.py +167 -24
  1880. pulumi_alicloud/vpn/route_entry.py +167 -44
  1881. pulumi_alicloud/vpn/ssl_vpn_client_cert.py +5 -0
  1882. pulumi_alicloud/vpn/ssl_vpn_server.py +5 -0
  1883. pulumi_alicloud/waf/_inputs.py +15 -0
  1884. pulumi_alicloud/waf/certificate.py +15 -14
  1885. pulumi_alicloud/waf/domain.py +33 -38
  1886. pulumi_alicloud/waf/get_certificates.py +39 -13
  1887. pulumi_alicloud/waf/get_domains.py +31 -13
  1888. pulumi_alicloud/waf/get_instances.py +24 -11
  1889. pulumi_alicloud/waf/instance.py +5 -16
  1890. pulumi_alicloud/waf/outputs.py +7 -4
  1891. pulumi_alicloud/waf/protection_module.py +23 -22
  1892. pulumi_alicloud/wafv3/_inputs.py +173 -0
  1893. pulumi_alicloud/wafv3/defense_template.py +11 -10
  1894. pulumi_alicloud/wafv3/domain.py +15 -10
  1895. pulumi_alicloud/wafv3/get_domains.py +36 -17
  1896. pulumi_alicloud/wafv3/get_instances.py +25 -13
  1897. pulumi_alicloud/wafv3/instance.py +5 -4
  1898. pulumi_alicloud/wafv3/outputs.py +5 -0
  1899. pulumi_alicloud/yundun/_inputs.py +43 -0
  1900. pulumi_alicloud/yundun/bastion_host_instance.py +21 -16
  1901. pulumi_alicloud/yundun/db_audit_instance.py +19 -14
  1902. pulumi_alicloud/yundun/get_bastion_host_instances.py +24 -8
  1903. pulumi_alicloud/yundun/get_db_audit_instance.py +24 -8
  1904. pulumi_alicloud/yundun/outputs.py +9 -4
  1905. {pulumi_alicloud-3.51.0a1710157550.dist-info → pulumi_alicloud-3.73.0a1736832142.dist-info}/METADATA +7 -6
  1906. pulumi_alicloud-3.73.0a1736832142.dist-info/RECORD +2010 -0
  1907. {pulumi_alicloud-3.51.0a1710157550.dist-info → pulumi_alicloud-3.73.0a1736832142.dist-info}/WHEEL +1 -1
  1908. pulumi_alicloud-3.51.0a1710157550.dist-info/RECORD +0 -1854
  1909. {pulumi_alicloud-3.51.0a1710157550.dist-info → pulumi_alicloud-3.73.0a1736832142.dist-info}/top_level.txt +0 -0
@@ -4,9 +4,14 @@
4
4
 
5
5
  import copy
6
6
  import warnings
7
+ import sys
7
8
  import pulumi
8
9
  import pulumi.runtime
9
10
  from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
10
15
  from .. import _utilities
11
16
  from . import outputs
12
17
  from ._inputs import *
@@ -22,10 +27,12 @@ class NodePoolArgs:
22
27
  auto_renew: Optional[pulumi.Input[bool]] = None,
23
28
  auto_renew_period: Optional[pulumi.Input[int]] = None,
24
29
  cis_enabled: Optional[pulumi.Input[bool]] = None,
30
+ compensate_with_on_demand: Optional[pulumi.Input[bool]] = None,
25
31
  cpu_policy: Optional[pulumi.Input[str]] = None,
26
32
  data_disks: Optional[pulumi.Input[Sequence[pulumi.Input['NodePoolDataDiskArgs']]]] = None,
27
33
  deployment_set_id: Optional[pulumi.Input[str]] = None,
28
34
  desired_size: Optional[pulumi.Input[int]] = None,
35
+ force_delete: Optional[pulumi.Input[bool]] = None,
29
36
  format_disk: Optional[pulumi.Input[bool]] = None,
30
37
  image_id: Optional[pulumi.Input[str]] = None,
31
38
  image_type: Optional[pulumi.Input[str]] = None,
@@ -37,102 +44,150 @@ class NodePoolArgs:
37
44
  keep_instance_name: Optional[pulumi.Input[bool]] = None,
38
45
  key_name: Optional[pulumi.Input[str]] = None,
39
46
  kms_encrypted_password: Optional[pulumi.Input[str]] = None,
40
- kms_encryption_context: Optional[pulumi.Input[Mapping[str, Any]]] = None,
47
+ kms_encryption_context: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
41
48
  kubelet_configuration: Optional[pulumi.Input['NodePoolKubeletConfigurationArgs']] = None,
42
49
  labels: Optional[pulumi.Input[Sequence[pulumi.Input['NodePoolLabelArgs']]]] = None,
50
+ login_as_non_root: Optional[pulumi.Input[bool]] = None,
43
51
  management: Optional[pulumi.Input['NodePoolManagementArgs']] = None,
52
+ multi_az_policy: Optional[pulumi.Input[str]] = None,
44
53
  name: Optional[pulumi.Input[str]] = None,
45
54
  node_count: Optional[pulumi.Input[int]] = None,
46
55
  node_name_mode: Optional[pulumi.Input[str]] = None,
56
+ node_pool_name: Optional[pulumi.Input[str]] = None,
57
+ on_demand_base_capacity: Optional[pulumi.Input[int]] = None,
58
+ on_demand_percentage_above_base_capacity: Optional[pulumi.Input[int]] = None,
47
59
  password: Optional[pulumi.Input[str]] = None,
48
60
  period: Optional[pulumi.Input[int]] = None,
49
61
  period_unit: Optional[pulumi.Input[str]] = None,
50
62
  platform: Optional[pulumi.Input[str]] = None,
51
- polardb_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
63
+ pre_user_data: Optional[pulumi.Input[str]] = None,
64
+ private_pool_options: Optional[pulumi.Input['NodePoolPrivatePoolOptionsArgs']] = None,
52
65
  rds_instances: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
53
66
  resource_group_id: Optional[pulumi.Input[str]] = None,
54
67
  rolling_policy: Optional[pulumi.Input['NodePoolRollingPolicyArgs']] = None,
55
- rollout_policy: Optional[pulumi.Input['NodePoolRolloutPolicyArgs']] = None,
56
68
  runtime_name: Optional[pulumi.Input[str]] = None,
57
69
  runtime_version: Optional[pulumi.Input[str]] = None,
58
70
  scaling_config: Optional[pulumi.Input['NodePoolScalingConfigArgs']] = None,
59
71
  scaling_policy: Optional[pulumi.Input[str]] = None,
60
72
  security_group_id: Optional[pulumi.Input[str]] = None,
61
73
  security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
74
+ security_hardening_os: Optional[pulumi.Input[bool]] = None,
62
75
  soc_enabled: Optional[pulumi.Input[bool]] = None,
76
+ spot_instance_pools: Optional[pulumi.Input[int]] = None,
77
+ spot_instance_remedy: Optional[pulumi.Input[bool]] = None,
63
78
  spot_price_limits: Optional[pulumi.Input[Sequence[pulumi.Input['NodePoolSpotPriceLimitArgs']]]] = None,
64
79
  spot_strategy: Optional[pulumi.Input[str]] = None,
80
+ system_disk_bursting_enabled: Optional[pulumi.Input[bool]] = None,
81
+ system_disk_categories: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
65
82
  system_disk_category: Optional[pulumi.Input[str]] = None,
66
83
  system_disk_encrypt_algorithm: Optional[pulumi.Input[str]] = None,
67
84
  system_disk_encrypted: Optional[pulumi.Input[bool]] = None,
68
85
  system_disk_kms_key: Optional[pulumi.Input[str]] = None,
69
86
  system_disk_performance_level: Optional[pulumi.Input[str]] = None,
87
+ system_disk_provisioned_iops: Optional[pulumi.Input[int]] = None,
70
88
  system_disk_size: Optional[pulumi.Input[int]] = None,
71
89
  system_disk_snapshot_policy_id: Optional[pulumi.Input[str]] = None,
72
- tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
90
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
73
91
  taints: Optional[pulumi.Input[Sequence[pulumi.Input['NodePoolTaintArgs']]]] = None,
92
+ tee_config: Optional[pulumi.Input['NodePoolTeeConfigArgs']] = None,
74
93
  unschedulable: Optional[pulumi.Input[bool]] = None,
94
+ update_nodes: Optional[pulumi.Input[bool]] = None,
75
95
  user_data: Optional[pulumi.Input[str]] = None):
76
96
  """
77
97
  The set of arguments for constructing a NodePool resource.
78
98
  :param pulumi.Input[str] cluster_id: The id of kubernetes cluster.
79
- :param pulumi.Input[Sequence[pulumi.Input[str]]] instance_types: The instance type of worker node.
99
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] instance_types: In the node instance specification list, you can select multiple instance specifications as alternatives. When each node is created, it will try to purchase from the first specification until it is created successfully. The final purchased instance specifications may vary with inventory changes.
80
100
  :param pulumi.Input[Sequence[pulumi.Input[str]]] vswitch_ids: The vswitches used by node pool workers.
81
- :param pulumi.Input[bool] auto_renew: Enable Node payment auto-renew, default is `false`.
82
- :param pulumi.Input[int] auto_renew_period: Node payment auto-renew period, one of `1`, `2`, `3`,`6`, `12`.
83
- :param pulumi.Input[bool] cis_enabled: Whether enable worker node to support cis security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. See [CIS Reinforcement](https://help.aliyun.com/document_detail/223744.html).
84
- :param pulumi.Input[str] cpu_policy: Kubelet cpu policy. For Kubernetes 1.12.6 and later, its valid value is either `static` or `none`. Default to `none` and modification is not supported.
85
- :param pulumi.Input[Sequence[pulumi.Input['NodePoolDataDiskArgs']]] data_disks: The data disk configurations of worker nodes, such as the disk type and disk size. See `data_disks` below.
101
+ :param pulumi.Input[bool] auto_renew: Whether to enable automatic renewal for nodes in the node pool takes effect only when `instance_charge_type` is set to `PrePaid`. Default value: `false`. Valid values:
102
+ :param pulumi.Input[int] auto_renew_period: The automatic renewal period of nodes in the node pool takes effect only when you select Prepaid and Automatic Renewal, and is a required value. When `PeriodUnit = Month`, the value range is {1, 2, 3, 6, 12}. Default value: 1.
103
+ :param pulumi.Input[bool] cis_enabled: Whether enable worker node to support cis security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. Use `security_hardening_os` instead.
104
+ :param pulumi.Input[bool] compensate_with_on_demand: Specifies whether to automatically create pay-as-you-go instances to meet the required number of ECS instances if preemptible instances cannot be created due to reasons such as cost or insufficient inventory. This parameter takes effect when you set `multi_az_policy` to `COST_OPTIMIZED`. Valid values: `true`: automatically creates pay-as-you-go instances to meet the required number of ECS instances if preemptible instances cannot be created. `false`: does not create pay-as-you-go instances to meet the required number of ECS instances if preemptible instances cannot be created.
105
+ :param pulumi.Input[str] cpu_policy: Node CPU management policies. Default value: `none`. When the cluster version is 1.12.6 or later, the following two policies are supported:
106
+ :param pulumi.Input[Sequence[pulumi.Input['NodePoolDataDiskArgs']]] data_disks: Configure the data disk of the node in the node pool. See `data_disks` below.
86
107
  :param pulumi.Input[str] deployment_set_id: The deployment set of node pool. Specify the deploymentSet to ensure that the nodes in the node pool can be distributed on different physical machines.
87
- :param pulumi.Input[int] desired_size: The desired size of nodes of the node pool. From version 1.158.0, `desired_size` is not required.
108
+ :param pulumi.Input[int] desired_size: Number of expected nodes in the node pool.
109
+ :param pulumi.Input[bool] force_delete: Whether to force deletion.
88
110
  :param pulumi.Input[bool] format_disk: After you select this check box, if data disks have been attached to the specified ECS instances and the file system of the last data disk is uninitialized, the system automatically formats the last data disk to ext4 and mounts the data disk to /var/lib/docker and /var/lib/kubelet. The original data on the disk will be cleared. Make sure that you back up data in advance. If no data disk is mounted on the ECS instance, no new data disk will be purchased. Default is `false`.
89
- :param pulumi.Input[str] image_id: Custom Image support. Must based on CentOS7 or AliyunLinux2.
90
- :param pulumi.Input[str] image_type: The image type, instead of `platform`. This field cannot be modified. One of `AliyunLinux`, `AliyunLinux3`, `AliyunLinux3Arm64`, `AliyunLinuxUEFI`, `CentOS`, `Windows`,`WindowsCore`,`AliyunLinux Qboot`,`ContainerOS`. If you select `Windows` or `WindowsCore`, the `passord` is required.
91
- :param pulumi.Input[bool] install_cloud_monitor: Install the cloud monitoring plug-in on the node, and you can view the monitoring information of the instance through the cloud monitoring console. Default is `true`.
111
+ :param pulumi.Input[str] image_id: The custom image ID. The system-provided image is used by default.
112
+ :param pulumi.Input[str] image_type: The operating system image type and the `platform` parameter can be selected from the following values:
113
+ - `AliyunLinux` : Alinux2 image.
114
+ - `AliyunLinux3` : Alinux3 image.
115
+ - `AliyunLinux3Arm64` : Alinux3 mirror ARM version.
116
+ - `AliyunLinuxUEFI` : Alinux2 Image UEFI version.
117
+ - `CentOS` : CentOS image.
118
+ - `Windows` : Windows image.
119
+ - `WindowsCore` : WindowsCore image.
120
+ - `ContainerOS` : container-optimized image.
121
+ - `Ubuntu`: (Available since v1.236.0) Ubuntu image.
122
+ :param pulumi.Input[bool] install_cloud_monitor: Whether to install cloud monitoring on the ECS node. After installation, you can view the monitoring information of the created ECS instance in the cloud monitoring console and recommend enable it. Default value: `false`. Valid values:
92
123
  :param pulumi.Input[str] instance_charge_type: Node payment type. Valid values: `PostPaid`, `PrePaid`, default is `PostPaid`. If value is `PrePaid`, the arguments `period`, `period_unit`, `auto_renew` and `auto_renew_period` are required.
93
124
  :param pulumi.Input[Sequence[pulumi.Input[str]]] instances: The instance list. Add existing nodes under the same cluster VPC to the node pool.
94
125
  :param pulumi.Input[str] internet_charge_type: The billing method for network usage. Valid values `PayByBandwidth` and `PayByTraffic`. Conflict with `eip_internet_charge_type`, EIP and public network IP can only choose one.
95
- :param pulumi.Input[int] internet_max_bandwidth_out: The maximum outbound bandwidth for the public network. Unit: Mbit/s. Valid values: 0 to 100.
126
+ :param pulumi.Input[int] internet_max_bandwidth_out: The maximum bandwidth of the public IP address of the node. The unit is Mbps(Mega bit per second). The value range is:\\[1,100\\]
96
127
  :param pulumi.Input[bool] keep_instance_name: Add an existing instance to the node pool, whether to keep the original instance name. It is recommended to set to `true`.
97
- :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. Only `key_name` is supported in the management node pool.
128
+ :param pulumi.Input[str] key_name: The name of the key pair. When the node pool is a managed node pool, only `key_name` is supported.
98
129
  :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.
99
- :param pulumi.Input[Mapping[str, Any]] 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.
100
- :param pulumi.Input['NodePoolKubeletConfigurationArgs'] kubelet_configuration: Kubelet configuration parameters for worker nodes. See `kubelet_configuration` below. More information in [Kubelet Configuration](https://kubernetes.io/docs/reference/config-api/kubelet-config.v1beta1/).
130
+ :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.
131
+ :param pulumi.Input['NodePoolKubeletConfigurationArgs'] kubelet_configuration: Kubelet configuration parameters for worker nodes. See `kubelet_configuration` below. More information in [Kubelet Configuration](https://kubernetes.io/docs/reference/config-api/kubelet-config.v1beta1/). See `kubelet_configuration` below.
101
132
  :param pulumi.Input[Sequence[pulumi.Input['NodePoolLabelArgs']]] labels: A List of Kubernetes labels to assign to the nodes . Only labels that are applied with the ACK API are managed by this argument. Detailed below. More information in [Labels](https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/). See `labels` below.
102
- :param pulumi.Input['NodePoolManagementArgs'] management: Managed node pool configuration. When using a managed node pool, the node key must use `key_name`. See `management` below.
103
- :param pulumi.Input[str] name: The name of node pool.
133
+ :param pulumi.Input[bool] login_as_non_root: Whether the ECS instance is logged on as a ecs-user user. Valid value: `true` and `false`.
134
+ :param pulumi.Input['NodePoolManagementArgs'] management: Managed node pool configuration. See `management` below.
135
+ :param pulumi.Input[str] multi_az_policy: The scaling policy for ECS instances in a multi-zone scaling group. Valid value: `PRIORITY`, `COST_OPTIMIZED` and `BALANCE`. `PRIORITY`: scales the capacity according to the virtual switches you define (VSwitchIds.N). When an ECS instance cannot be created in the zone where the higher-priority vSwitch is located, the next-priority vSwitch is automatically used to create an ECS instance. `COST_OPTIMIZED`: try to create by vCPU unit price from low to high. When the scaling configuration is configured with multiple instances of preemptible billing, preemptible instances are created first. You can continue to use the `CompensateWithOnDemand` parameter to specify whether to automatically try to create a preemptible instance by paying for it. It takes effect only when the scaling configuration has multi-instance specifications or preemptible instances. `BALANCE`: distributes ECS instances evenly among the multi-zone specified by the scaling group. If the zones become unbalanced due to insufficient inventory, you can use the API RebalanceInstances to balance resources.
136
+ :param pulumi.Input[str] name: . Field 'name' has been deprecated from provider version 1.219.0. New field 'node_pool_name' instead.
104
137
  :param pulumi.Input[int] node_count: The worker node number of the node pool. From version 1.111.0, `node_count` is not required.
105
- :param pulumi.Input[str] node_name_mode: Each node name consists of a prefix, its private network IP, and a suffix, the input format is `customized,<prefix>,ip,<suffix>`. For example "customized,aliyun.com-,ip,-test", if the node private network IP address is 192.168.59.176, the prefix is aliyun.com-,and the suffix is -test, the node name will be aliyun.com-192.168.59.176-test.
106
- :param pulumi.Input[str] password: The password of ssh login cluster node. You have to specify one of `password` `key_name` `kms_encrypted_password` fields.
107
- :param pulumi.Input[int] period: Node payment period. Its valid value is one of {1, 2, 3, 6, 12, 24, 36, 48, 60}.
138
+ :param pulumi.Input[str] node_name_mode: Each node name consists of a prefix, its private network IP, and a suffix, separated by commas. The input format is `customized,,ip,`.
139
+ - The prefix and suffix can be composed of one or more parts separated by '.', each part can use lowercase letters, numbers and '-', and the beginning and end of the node name must be lowercase letters and numbers.
140
+ - The node IP address is the complete private IP address of the node.
141
+ - For example, if the string `customized,aliyun,ip,com` is passed in (where 'customized' and 'ip' are fixed strings, 'aliyun' is the prefix, and 'com' is the suffix), the name of the node is `aliyun192.168.xxx.xxxcom`.
142
+ :param pulumi.Input[str] node_pool_name: The name of node pool.
143
+ :param pulumi.Input[int] on_demand_base_capacity: The minimum number of pay-as-you-go instances that must be kept in the scaling group. Valid values: 0 to 1000. If the number of pay-as-you-go instances is less than the value of this parameter, Auto Scaling preferably creates pay-as-you-go instances.
144
+ :param pulumi.Input[int] on_demand_percentage_above_base_capacity: The percentage of pay-as-you-go instances among the extra instances that exceed the number specified by `on_demand_base_capacity`. Valid values: 0 to 100.
145
+ :param pulumi.Input[str] password: The password of ssh login. You have to specify one of `password` and `key_name` fields. The password rule is 8 to 30 characters and contains at least three items (upper and lower case letters, numbers, and special symbols).
146
+ :param pulumi.Input[int] period: Node payment period. Its valid value is one of {1, 2, 3, 6, 12}.
108
147
  :param pulumi.Input[str] period_unit: Node payment period unit, valid value: `Month`. Default is `Month`.
109
- :param pulumi.Input[str] platform: The platform. One of `AliyunLinux`, `Windows`, `CentOS`, `WindowsCore`. If you select `Windows` or `WindowsCore`, the `passord` is required. Field `platform` has been deprecated from provider version 1.145.0. New field `image_type` instead.
110
- :param pulumi.Input[Sequence[pulumi.Input[str]]] polardb_ids: PolarDB id list, You can choose which PolarDB whitelist to add instances to.
111
- :param pulumi.Input[Sequence[pulumi.Input[str]]] rds_instances: RDS instance list, You can choose which RDS instances whitelist to add instances to.
112
- :param pulumi.Input[str] resource_group_id: The ID of the resource group,by default these cloud resources are automatically assigned to the default resource group.
113
- :param pulumi.Input['NodePoolRollingPolicyArgs'] rolling_policy: Rolling policy is used to specify the strategy when the node pool is rolling update. This field works when nodepool updating. See `rolling_policy` below.
114
- :param pulumi.Input['NodePoolRolloutPolicyArgs'] rollout_policy: Rollout policy is used to specify the strategy when the node pool is rolling update. This field works when node pool updating. Please use `rolling_policy` to instead it from provider version 1.185.0. See `rollout_policy` below.
148
+ :param pulumi.Input[str] platform: Operating system release, using `image_type` instead.
149
+ :param pulumi.Input[str] pre_user_data: Node pre custom data, base64-encoded, the script executed before the node is initialized.
150
+ :param pulumi.Input['NodePoolPrivatePoolOptionsArgs'] private_pool_options: Private node pool configuration. See `private_pool_options` below.
151
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] rds_instances: The list of RDS instances.
152
+ :param pulumi.Input[str] resource_group_id: The ID of the resource group
153
+ :param pulumi.Input['NodePoolRollingPolicyArgs'] rolling_policy: Rotary configuration. See `rolling_policy` below.
115
154
  :param pulumi.Input[str] runtime_name: The runtime name of containers. If not set, the cluster runtime will be used as the node pool runtime. If you select another container runtime, see [Comparison of Docker, containerd, and Sandboxed-Container](https://www.alibabacloud.com/help/doc-detail/160313.htm).
116
155
  :param pulumi.Input[str] runtime_version: The runtime version of containers. If not set, the cluster runtime will be used as the node pool runtime.
117
- :param pulumi.Input['NodePoolScalingConfigArgs'] scaling_config: Auto scaling node pool configuration. See `scaling_config` below. With auto-scaling is enabled, the nodes in the node pool will be labeled with `k8s.aliyun.com=true` to prevent system pods such as coredns, metrics-servers from being scheduled to elastic nodes, and to prevent node shrinkage from causing business abnormalities.
118
- :param pulumi.Input[str] scaling_policy: The scaling mode. Valid values: `release`, `recycle`, default is `release`. Standard mode(release): Create and release ECS instances based on requests.Swift mode(recycle): Create, stop, and restart ECS instances based on needs. New ECS instances are only created when no stopped ECS instance is avalible. This mode further accelerates the scaling process. Apart from ECS instances that use local storage, when an ECS instance is stopped, you are only chatged for storage space.
119
- :param pulumi.Input[str] security_group_id: The security group id for worker node. Field `security_group_id` has been deprecated from provider version 1.145.0. New field `security_group_ids` instead.
156
+ :param pulumi.Input['NodePoolScalingConfigArgs'] scaling_config: Automatic scaling configuration. See `scaling_config` below.
157
+ :param pulumi.Input[str] scaling_policy: Scaling group mode, default value: `release`. Valid values:
158
+ :param pulumi.Input[str] security_group_id: The security group ID of the node pool. This field has been replaced by `security_group_ids`, please use the `security_group_ids` field instead.
120
159
  :param pulumi.Input[Sequence[pulumi.Input[str]]] security_group_ids: Multiple security groups can be configured for a node pool. If both `security_group_ids` and `security_group_id` are configured, `security_group_ids` takes effect. This field cannot be modified.
121
- :param pulumi.Input[bool] soc_enabled: Whether enable worker node to support soc security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. See [SOC Reinforcement](https://help.aliyun.com/document_detail/196148.html).
122
- > **NOTE:** It is forbidden to set both `cis_enabled` and `soc_enabled` to `true`at the same time.
123
- :param pulumi.Input[Sequence[pulumi.Input['NodePoolSpotPriceLimitArgs']]] spot_price_limits: The maximum hourly price of the instance. This parameter takes effect only when `spot_strategy` is set to `SpotWithPriceLimit`. You could enable multiple spot instances by setting this field repeatedly. See `spot_price_limit` below.
124
- :param pulumi.Input[str] spot_strategy: The preemption policy for the pay-as-you-go instance. This parameter takes effect only when `instance_charge_type` is set to `PostPaid`. Valid value `SpotWithPriceLimit`,`SpotAsPriceGo` and `NoSpot`, default is `NoSpot`.
125
- :param pulumi.Input[str] system_disk_category: The system disk category of worker node. Its valid value are `cloud_ssd`, `cloud_efficiency` and `cloud_essd`. Default to `cloud_efficiency`.
126
- :param pulumi.Input[str] system_disk_encrypt_algorithm: The encryption Algorithm for Encrypting System Disk. It takes effect when system_disk_encrypted is true. Valid values `aes-256` and `sm4-128`.
127
- :param pulumi.Input[bool] system_disk_encrypted: Whether to enable system disk encryption.
128
- :param pulumi.Input[str] system_disk_kms_key: The kms key id used to encrypt the system disk. It takes effect when system_disk_encrypted is true.
129
- :param pulumi.Input[str] system_disk_performance_level: The performance of system disk, only valid for ESSD disk. You have to specify one of `PL0` `PL1` `PL2` `PL3` fields.
160
+ :param pulumi.Input[bool] security_hardening_os: Alibaba Cloud OS security reinforcement. Default value: `false`. Value:
161
+ :param pulumi.Input[bool] soc_enabled: Whether enable worker node to support soc security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. See [SOC Reinforcement](https://help.aliyun.com/document_detail/196148.html).
162
+
163
+ > **NOTE:** It is forbidden to set both `security_hardening_os` and `soc_enabled` to `true` at the same time.
164
+ :param pulumi.Input[int] spot_instance_pools: The number of instance types that are available. Auto Scaling creates preemptible instances of multiple instance types that are available at the lowest cost. Valid values: 1 to 10.
165
+ :param pulumi.Input[bool] spot_instance_remedy: Specifies whether to supplement preemptible instances when the number of preemptible instances drops below the specified minimum number. If you set the value to true, Auto Scaling attempts to create a new preemptible instance when the system notifies that an existing preemptible instance is about to be reclaimed. Valid values: `true`: enables the supplementation of preemptible instances. `false`: disables the supplementation of preemptible instances.
166
+ :param pulumi.Input[Sequence[pulumi.Input['NodePoolSpotPriceLimitArgs']]] spot_price_limits: The current single preemptible instance type market price range configuration. See `spot_price_limit` below.
167
+ :param pulumi.Input[str] spot_strategy: The preemptible instance type. Value:
168
+ - `NoSpot` : Non-preemptible instance.
169
+ - `SpotWithPriceLimit` : Set the upper limit of the preemptible instance price.
170
+ - `SpotAsPriceGo` : The system automatically bids, following the actual price of the current market.
171
+ :param pulumi.Input[bool] system_disk_bursting_enabled: Specifies whether to enable the burst feature for system disks. Valid values:`true`: enables the burst feature. `false`: disables the burst feature. This parameter is supported only when `system_disk_category` is set to `cloud_auto`.
172
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] system_disk_categories: The multi-disk categories of the system disk. When a high-priority disk type cannot be used, Auto Scaling automatically tries to create a system disk with the next priority disk category. Valid values: `cloud`: cloud disk. `cloud_efficiency`: a high-efficiency cloud disk. `cloud_ssd`:SSD cloud disk. `cloud_essd`: ESSD cloud disk.
173
+ :param pulumi.Input[str] system_disk_category: The system disk category of worker node. Its valid value are `cloud_ssd`, `cloud_efficiency`, `cloud_essd` and `cloud_auto`.
174
+ :param pulumi.Input[str] system_disk_encrypt_algorithm: The encryption algorithm used by the system disk. Value range: aes-256.
175
+ :param pulumi.Input[bool] system_disk_encrypted: Whether to encrypt the system disk. Value range: `true`: encryption. `false`: Do not encrypt.
176
+ :param pulumi.Input[str] system_disk_kms_key: The ID of the KMS key used by the system disk.
177
+ :param pulumi.Input[str] system_disk_performance_level: The system disk performance of the node takes effect only for the ESSD disk.
178
+ - `PL0`: maximum random read/write IOPS 10000 for a single disk.
179
+ - `PL1`: maximum random read/write IOPS 50000 for a single disk.
180
+ - `PL2`: highest random read/write IOPS 100000 for a single disk.
181
+ - `PL3`: maximum random read/write IOPS 1 million for a single disk.
182
+ :param pulumi.Input[int] system_disk_provisioned_iops: The predefined IOPS of a system disk. Valid values: 0 to min{50,000, 1,000 × Capacity - Baseline IOPS}. Baseline IOPS = min{1,800 + 50 × Capacity, 50,000}. This parameter is supported only when `system_disk_category` is set to `cloud_auto`.
130
183
  :param pulumi.Input[int] system_disk_size: The system disk category of worker node. Its valid value range [40~500] in GB. Default to `120`.
131
- :param pulumi.Input[str] system_disk_snapshot_policy_id: The system disk snapshot policy id.
132
- :param pulumi.Input[Mapping[str, Any]] tags: A Map of tags to assign to the resource. It will be applied for ECS instances finally. Detailed below.
184
+ :param pulumi.Input[str] system_disk_snapshot_policy_id: The ID of the automatic snapshot policy used by the system disk.
185
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Add tags only for ECS instances. The maximum length of the tag key is 128 characters. The tag key and value cannot start with aliyun or acs:, or contain https:// or http://.
133
186
  :param pulumi.Input[Sequence[pulumi.Input['NodePoolTaintArgs']]] taints: A List of Kubernetes taints to assign to the nodes. Detailed below. More information in [Taints and Toleration](https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/). See `taints` below.
134
- :param pulumi.Input[bool] unschedulable: Set the newly added node as unschedulable. If you want to open the scheduling option, you can open it in the node list of the console. If you are using an auto-scaling node pool, the setting will not take effect. Default is `false`.
135
- :param pulumi.Input[str] user_data: Windows instances support batch and PowerShell scripts. If your script file is larger than 1 KB, we recommend that you upload the script to Object Storage Service (OSS) and pull it through the internal endpoint of your OSS bucket.
187
+ :param pulumi.Input['NodePoolTeeConfigArgs'] tee_config: The configuration about confidential computing for the cluster. See `tee_config` below.
188
+ :param pulumi.Input[bool] unschedulable: Whether the node after expansion can be scheduled.
189
+ :param pulumi.Input[bool] update_nodes: Synchronously update node labels and taints.
190
+ :param pulumi.Input[str] user_data: Node custom data, base64-encoded.
136
191
  """
137
192
  pulumi.set(__self__, "cluster_id", cluster_id)
138
193
  pulumi.set(__self__, "instance_types", instance_types)
@@ -141,8 +196,13 @@ class NodePoolArgs:
141
196
  pulumi.set(__self__, "auto_renew", auto_renew)
142
197
  if auto_renew_period is not None:
143
198
  pulumi.set(__self__, "auto_renew_period", auto_renew_period)
199
+ if cis_enabled is not None:
200
+ warnings.warn("""Field 'cis_enabled' has been deprecated from provider version 1.223.1. Whether enable worker node to support cis security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. Use `security_hardening_os` instead.""", DeprecationWarning)
201
+ pulumi.log.warn("""cis_enabled is deprecated: Field 'cis_enabled' has been deprecated from provider version 1.223.1. Whether enable worker node to support cis security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. Use `security_hardening_os` instead.""")
144
202
  if cis_enabled is not None:
145
203
  pulumi.set(__self__, "cis_enabled", cis_enabled)
204
+ if compensate_with_on_demand is not None:
205
+ pulumi.set(__self__, "compensate_with_on_demand", compensate_with_on_demand)
146
206
  if cpu_policy is not None:
147
207
  pulumi.set(__self__, "cpu_policy", cpu_policy)
148
208
  if data_disks is not None:
@@ -151,6 +211,8 @@ class NodePoolArgs:
151
211
  pulumi.set(__self__, "deployment_set_id", deployment_set_id)
152
212
  if desired_size is not None:
153
213
  pulumi.set(__self__, "desired_size", desired_size)
214
+ if force_delete is not None:
215
+ pulumi.set(__self__, "force_delete", force_delete)
154
216
  if format_disk is not None:
155
217
  pulumi.set(__self__, "format_disk", format_disk)
156
218
  if image_id is not None:
@@ -179,8 +241,15 @@ class NodePoolArgs:
179
241
  pulumi.set(__self__, "kubelet_configuration", kubelet_configuration)
180
242
  if labels is not None:
181
243
  pulumi.set(__self__, "labels", labels)
244
+ if login_as_non_root is not None:
245
+ pulumi.set(__self__, "login_as_non_root", login_as_non_root)
182
246
  if management is not None:
183
247
  pulumi.set(__self__, "management", management)
248
+ if multi_az_policy is not None:
249
+ pulumi.set(__self__, "multi_az_policy", multi_az_policy)
250
+ if name is not None:
251
+ warnings.warn("""Field 'name' has been deprecated since provider version 1.219.0. New field 'node_pool_name' instead.""", DeprecationWarning)
252
+ pulumi.log.warn("""name is deprecated: Field 'name' has been deprecated since provider version 1.219.0. New field 'node_pool_name' instead.""")
184
253
  if name is not None:
185
254
  pulumi.set(__self__, "name", name)
186
255
  if node_count is not None:
@@ -190,6 +259,12 @@ class NodePoolArgs:
190
259
  pulumi.set(__self__, "node_count", node_count)
191
260
  if node_name_mode is not None:
192
261
  pulumi.set(__self__, "node_name_mode", node_name_mode)
262
+ if node_pool_name is not None:
263
+ pulumi.set(__self__, "node_pool_name", node_pool_name)
264
+ if on_demand_base_capacity is not None:
265
+ pulumi.set(__self__, "on_demand_base_capacity", on_demand_base_capacity)
266
+ if on_demand_percentage_above_base_capacity is not None:
267
+ pulumi.set(__self__, "on_demand_percentage_above_base_capacity", on_demand_percentage_above_base_capacity)
193
268
  if password is not None:
194
269
  pulumi.set(__self__, "password", password)
195
270
  if period is not None:
@@ -197,23 +272,20 @@ class NodePoolArgs:
197
272
  if period_unit is not None:
198
273
  pulumi.set(__self__, "period_unit", period_unit)
199
274
  if platform is not None:
200
- warnings.warn("""Field 'platform' has been deprecated from provider version 1.145.0. New field 'image_type' instead""", DeprecationWarning)
201
- pulumi.log.warn("""platform is deprecated: Field 'platform' has been deprecated from provider version 1.145.0. New field 'image_type' instead""")
275
+ warnings.warn("""Field 'platform' has been deprecated from provider version 1.145.0. Operating system release, using `image_type` instead.""", DeprecationWarning)
276
+ pulumi.log.warn("""platform is deprecated: Field 'platform' has been deprecated from provider version 1.145.0. Operating system release, using `image_type` instead.""")
202
277
  if platform is not None:
203
278
  pulumi.set(__self__, "platform", platform)
204
- if polardb_ids is not None:
205
- pulumi.set(__self__, "polardb_ids", polardb_ids)
279
+ if pre_user_data is not None:
280
+ pulumi.set(__self__, "pre_user_data", pre_user_data)
281
+ if private_pool_options is not None:
282
+ pulumi.set(__self__, "private_pool_options", private_pool_options)
206
283
  if rds_instances is not None:
207
284
  pulumi.set(__self__, "rds_instances", rds_instances)
208
285
  if resource_group_id is not None:
209
286
  pulumi.set(__self__, "resource_group_id", resource_group_id)
210
287
  if rolling_policy is not None:
211
288
  pulumi.set(__self__, "rolling_policy", rolling_policy)
212
- if rollout_policy is not None:
213
- warnings.warn("""Field 'rollout_policy' has been deprecated from provider version 1.184.0. Please use new field 'rolling_policy' instead it to ensure the config takes effect""", DeprecationWarning)
214
- pulumi.log.warn("""rollout_policy is deprecated: Field 'rollout_policy' has been deprecated from provider version 1.184.0. Please use new field 'rolling_policy' instead it to ensure the config takes effect""")
215
- if rollout_policy is not None:
216
- pulumi.set(__self__, "rollout_policy", rollout_policy)
217
289
  if runtime_name is not None:
218
290
  pulumi.set(__self__, "runtime_name", runtime_name)
219
291
  if runtime_version is not None:
@@ -223,18 +295,28 @@ class NodePoolArgs:
223
295
  if scaling_policy is not None:
224
296
  pulumi.set(__self__, "scaling_policy", scaling_policy)
225
297
  if security_group_id is not None:
226
- warnings.warn("""Field 'security_group_id' has been deprecated from provider version 1.145.0. New field 'security_group_ids' instead""", DeprecationWarning)
227
- pulumi.log.warn("""security_group_id is deprecated: Field 'security_group_id' has been deprecated from provider version 1.145.0. New field 'security_group_ids' instead""")
298
+ warnings.warn("""Field 'security_group_id' has been deprecated from provider version 1.145.0. The security group ID of the node pool. This field has been replaced by `security_group_ids`, please use the `security_group_ids` field instead.""", DeprecationWarning)
299
+ pulumi.log.warn("""security_group_id is deprecated: Field 'security_group_id' has been deprecated from provider version 1.145.0. The security group ID of the node pool. This field has been replaced by `security_group_ids`, please use the `security_group_ids` field instead.""")
228
300
  if security_group_id is not None:
229
301
  pulumi.set(__self__, "security_group_id", security_group_id)
230
302
  if security_group_ids is not None:
231
303
  pulumi.set(__self__, "security_group_ids", security_group_ids)
304
+ if security_hardening_os is not None:
305
+ pulumi.set(__self__, "security_hardening_os", security_hardening_os)
232
306
  if soc_enabled is not None:
233
307
  pulumi.set(__self__, "soc_enabled", soc_enabled)
308
+ if spot_instance_pools is not None:
309
+ pulumi.set(__self__, "spot_instance_pools", spot_instance_pools)
310
+ if spot_instance_remedy is not None:
311
+ pulumi.set(__self__, "spot_instance_remedy", spot_instance_remedy)
234
312
  if spot_price_limits is not None:
235
313
  pulumi.set(__self__, "spot_price_limits", spot_price_limits)
236
314
  if spot_strategy is not None:
237
315
  pulumi.set(__self__, "spot_strategy", spot_strategy)
316
+ if system_disk_bursting_enabled is not None:
317
+ pulumi.set(__self__, "system_disk_bursting_enabled", system_disk_bursting_enabled)
318
+ if system_disk_categories is not None:
319
+ pulumi.set(__self__, "system_disk_categories", system_disk_categories)
238
320
  if system_disk_category is not None:
239
321
  pulumi.set(__self__, "system_disk_category", system_disk_category)
240
322
  if system_disk_encrypt_algorithm is not None:
@@ -245,6 +327,8 @@ class NodePoolArgs:
245
327
  pulumi.set(__self__, "system_disk_kms_key", system_disk_kms_key)
246
328
  if system_disk_performance_level is not None:
247
329
  pulumi.set(__self__, "system_disk_performance_level", system_disk_performance_level)
330
+ if system_disk_provisioned_iops is not None:
331
+ pulumi.set(__self__, "system_disk_provisioned_iops", system_disk_provisioned_iops)
248
332
  if system_disk_size is not None:
249
333
  pulumi.set(__self__, "system_disk_size", system_disk_size)
250
334
  if system_disk_snapshot_policy_id is not None:
@@ -253,8 +337,12 @@ class NodePoolArgs:
253
337
  pulumi.set(__self__, "tags", tags)
254
338
  if taints is not None:
255
339
  pulumi.set(__self__, "taints", taints)
340
+ if tee_config is not None:
341
+ pulumi.set(__self__, "tee_config", tee_config)
256
342
  if unschedulable is not None:
257
343
  pulumi.set(__self__, "unschedulable", unschedulable)
344
+ if update_nodes is not None:
345
+ pulumi.set(__self__, "update_nodes", update_nodes)
258
346
  if user_data is not None:
259
347
  pulumi.set(__self__, "user_data", user_data)
260
348
 
@@ -274,7 +362,7 @@ class NodePoolArgs:
274
362
  @pulumi.getter(name="instanceTypes")
275
363
  def instance_types(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
276
364
  """
277
- The instance type of worker node.
365
+ In the node instance specification list, you can select multiple instance specifications as alternatives. When each node is created, it will try to purchase from the first specification until it is created successfully. The final purchased instance specifications may vary with inventory changes.
278
366
  """
279
367
  return pulumi.get(self, "instance_types")
280
368
 
@@ -298,7 +386,7 @@ class NodePoolArgs:
298
386
  @pulumi.getter(name="autoRenew")
299
387
  def auto_renew(self) -> Optional[pulumi.Input[bool]]:
300
388
  """
301
- Enable Node payment auto-renew, default is `false`.
389
+ Whether to enable automatic renewal for nodes in the node pool takes effect only when `instance_charge_type` is set to `PrePaid`. Default value: `false`. Valid values:
302
390
  """
303
391
  return pulumi.get(self, "auto_renew")
304
392
 
@@ -310,7 +398,7 @@ class NodePoolArgs:
310
398
  @pulumi.getter(name="autoRenewPeriod")
311
399
  def auto_renew_period(self) -> Optional[pulumi.Input[int]]:
312
400
  """
313
- Node payment auto-renew period, one of `1`, `2`, `3`,`6`, `12`.
401
+ The automatic renewal period of nodes in the node pool takes effect only when you select Prepaid and Automatic Renewal, and is a required value. When `PeriodUnit = Month`, the value range is {1, 2, 3, 6, 12}. Default value: 1.
314
402
  """
315
403
  return pulumi.get(self, "auto_renew_period")
316
404
 
@@ -320,9 +408,10 @@ class NodePoolArgs:
320
408
 
321
409
  @property
322
410
  @pulumi.getter(name="cisEnabled")
411
+ @_utilities.deprecated("""Field 'cis_enabled' has been deprecated from provider version 1.223.1. Whether enable worker node to support cis security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. Use `security_hardening_os` instead.""")
323
412
  def cis_enabled(self) -> Optional[pulumi.Input[bool]]:
324
413
  """
325
- Whether enable worker node to support cis security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. See [CIS Reinforcement](https://help.aliyun.com/document_detail/223744.html).
414
+ Whether enable worker node to support cis security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. Use `security_hardening_os` instead.
326
415
  """
327
416
  return pulumi.get(self, "cis_enabled")
328
417
 
@@ -330,11 +419,23 @@ class NodePoolArgs:
330
419
  def cis_enabled(self, value: Optional[pulumi.Input[bool]]):
331
420
  pulumi.set(self, "cis_enabled", value)
332
421
 
422
+ @property
423
+ @pulumi.getter(name="compensateWithOnDemand")
424
+ def compensate_with_on_demand(self) -> Optional[pulumi.Input[bool]]:
425
+ """
426
+ Specifies whether to automatically create pay-as-you-go instances to meet the required number of ECS instances if preemptible instances cannot be created due to reasons such as cost or insufficient inventory. This parameter takes effect when you set `multi_az_policy` to `COST_OPTIMIZED`. Valid values: `true`: automatically creates pay-as-you-go instances to meet the required number of ECS instances if preemptible instances cannot be created. `false`: does not create pay-as-you-go instances to meet the required number of ECS instances if preemptible instances cannot be created.
427
+ """
428
+ return pulumi.get(self, "compensate_with_on_demand")
429
+
430
+ @compensate_with_on_demand.setter
431
+ def compensate_with_on_demand(self, value: Optional[pulumi.Input[bool]]):
432
+ pulumi.set(self, "compensate_with_on_demand", value)
433
+
333
434
  @property
334
435
  @pulumi.getter(name="cpuPolicy")
335
436
  def cpu_policy(self) -> Optional[pulumi.Input[str]]:
336
437
  """
337
- Kubelet cpu policy. For Kubernetes 1.12.6 and later, its valid value is either `static` or `none`. Default to `none` and modification is not supported.
438
+ Node CPU management policies. Default value: `none`. When the cluster version is 1.12.6 or later, the following two policies are supported:
338
439
  """
339
440
  return pulumi.get(self, "cpu_policy")
340
441
 
@@ -346,7 +447,7 @@ class NodePoolArgs:
346
447
  @pulumi.getter(name="dataDisks")
347
448
  def data_disks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['NodePoolDataDiskArgs']]]]:
348
449
  """
349
- The data disk configurations of worker nodes, such as the disk type and disk size. See `data_disks` below.
450
+ Configure the data disk of the node in the node pool. See `data_disks` below.
350
451
  """
351
452
  return pulumi.get(self, "data_disks")
352
453
 
@@ -370,7 +471,7 @@ class NodePoolArgs:
370
471
  @pulumi.getter(name="desiredSize")
371
472
  def desired_size(self) -> Optional[pulumi.Input[int]]:
372
473
  """
373
- The desired size of nodes of the node pool. From version 1.158.0, `desired_size` is not required.
474
+ Number of expected nodes in the node pool.
374
475
  """
375
476
  return pulumi.get(self, "desired_size")
376
477
 
@@ -378,6 +479,18 @@ class NodePoolArgs:
378
479
  def desired_size(self, value: Optional[pulumi.Input[int]]):
379
480
  pulumi.set(self, "desired_size", value)
380
481
 
482
+ @property
483
+ @pulumi.getter(name="forceDelete")
484
+ def force_delete(self) -> Optional[pulumi.Input[bool]]:
485
+ """
486
+ Whether to force deletion.
487
+ """
488
+ return pulumi.get(self, "force_delete")
489
+
490
+ @force_delete.setter
491
+ def force_delete(self, value: Optional[pulumi.Input[bool]]):
492
+ pulumi.set(self, "force_delete", value)
493
+
381
494
  @property
382
495
  @pulumi.getter(name="formatDisk")
383
496
  def format_disk(self) -> Optional[pulumi.Input[bool]]:
@@ -394,7 +507,7 @@ class NodePoolArgs:
394
507
  @pulumi.getter(name="imageId")
395
508
  def image_id(self) -> Optional[pulumi.Input[str]]:
396
509
  """
397
- Custom Image support. Must based on CentOS7 or AliyunLinux2.
510
+ The custom image ID. The system-provided image is used by default.
398
511
  """
399
512
  return pulumi.get(self, "image_id")
400
513
 
@@ -406,7 +519,16 @@ class NodePoolArgs:
406
519
  @pulumi.getter(name="imageType")
407
520
  def image_type(self) -> Optional[pulumi.Input[str]]:
408
521
  """
409
- The image type, instead of `platform`. This field cannot be modified. One of `AliyunLinux`, `AliyunLinux3`, `AliyunLinux3Arm64`, `AliyunLinuxUEFI`, `CentOS`, `Windows`,`WindowsCore`,`AliyunLinux Qboot`,`ContainerOS`. If you select `Windows` or `WindowsCore`, the `passord` is required.
522
+ The operating system image type and the `platform` parameter can be selected from the following values:
523
+ - `AliyunLinux` : Alinux2 image.
524
+ - `AliyunLinux3` : Alinux3 image.
525
+ - `AliyunLinux3Arm64` : Alinux3 mirror ARM version.
526
+ - `AliyunLinuxUEFI` : Alinux2 Image UEFI version.
527
+ - `CentOS` : CentOS image.
528
+ - `Windows` : Windows image.
529
+ - `WindowsCore` : WindowsCore image.
530
+ - `ContainerOS` : container-optimized image.
531
+ - `Ubuntu`: (Available since v1.236.0) Ubuntu image.
410
532
  """
411
533
  return pulumi.get(self, "image_type")
412
534
 
@@ -418,7 +540,7 @@ class NodePoolArgs:
418
540
  @pulumi.getter(name="installCloudMonitor")
419
541
  def install_cloud_monitor(self) -> Optional[pulumi.Input[bool]]:
420
542
  """
421
- Install the cloud monitoring plug-in on the node, and you can view the monitoring information of the instance through the cloud monitoring console. Default is `true`.
543
+ Whether to install cloud monitoring on the ECS node. After installation, you can view the monitoring information of the created ECS instance in the cloud monitoring console and recommend enable it. Default value: `false`. Valid values:
422
544
  """
423
545
  return pulumi.get(self, "install_cloud_monitor")
424
546
 
@@ -466,7 +588,7 @@ class NodePoolArgs:
466
588
  @pulumi.getter(name="internetMaxBandwidthOut")
467
589
  def internet_max_bandwidth_out(self) -> Optional[pulumi.Input[int]]:
468
590
  """
469
- The maximum outbound bandwidth for the public network. Unit: Mbit/s. Valid values: 0 to 100.
591
+ The maximum bandwidth of the public IP address of the node. The unit is Mbps(Mega bit per second). The value range is:\\[1,100\\]
470
592
  """
471
593
  return pulumi.get(self, "internet_max_bandwidth_out")
472
594
 
@@ -490,7 +612,7 @@ class NodePoolArgs:
490
612
  @pulumi.getter(name="keyName")
491
613
  def key_name(self) -> Optional[pulumi.Input[str]]:
492
614
  """
493
- 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. Only `key_name` is supported in the management node pool.
615
+ The name of the key pair. When the node pool is a managed node pool, only `key_name` is supported.
494
616
  """
495
617
  return pulumi.get(self, "key_name")
496
618
 
@@ -512,21 +634,21 @@ class NodePoolArgs:
512
634
 
513
635
  @property
514
636
  @pulumi.getter(name="kmsEncryptionContext")
515
- def kms_encryption_context(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
637
+ def kms_encryption_context(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
516
638
  """
517
639
  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.
518
640
  """
519
641
  return pulumi.get(self, "kms_encryption_context")
520
642
 
521
643
  @kms_encryption_context.setter
522
- def kms_encryption_context(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
644
+ def kms_encryption_context(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
523
645
  pulumi.set(self, "kms_encryption_context", value)
524
646
 
525
647
  @property
526
648
  @pulumi.getter(name="kubeletConfiguration")
527
649
  def kubelet_configuration(self) -> Optional[pulumi.Input['NodePoolKubeletConfigurationArgs']]:
528
650
  """
529
- Kubelet configuration parameters for worker nodes. See `kubelet_configuration` below. More information in [Kubelet Configuration](https://kubernetes.io/docs/reference/config-api/kubelet-config.v1beta1/).
651
+ Kubelet configuration parameters for worker nodes. See `kubelet_configuration` below. More information in [Kubelet Configuration](https://kubernetes.io/docs/reference/config-api/kubelet-config.v1beta1/). See `kubelet_configuration` below.
530
652
  """
531
653
  return pulumi.get(self, "kubelet_configuration")
532
654
 
@@ -546,11 +668,23 @@ class NodePoolArgs:
546
668
  def labels(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['NodePoolLabelArgs']]]]):
547
669
  pulumi.set(self, "labels", value)
548
670
 
671
+ @property
672
+ @pulumi.getter(name="loginAsNonRoot")
673
+ def login_as_non_root(self) -> Optional[pulumi.Input[bool]]:
674
+ """
675
+ Whether the ECS instance is logged on as a ecs-user user. Valid value: `true` and `false`.
676
+ """
677
+ return pulumi.get(self, "login_as_non_root")
678
+
679
+ @login_as_non_root.setter
680
+ def login_as_non_root(self, value: Optional[pulumi.Input[bool]]):
681
+ pulumi.set(self, "login_as_non_root", value)
682
+
549
683
  @property
550
684
  @pulumi.getter
551
685
  def management(self) -> Optional[pulumi.Input['NodePoolManagementArgs']]:
552
686
  """
553
- Managed node pool configuration. When using a managed node pool, the node key must use `key_name`. See `management` below.
687
+ Managed node pool configuration. See `management` below.
554
688
  """
555
689
  return pulumi.get(self, "management")
556
690
 
@@ -558,11 +692,24 @@ class NodePoolArgs:
558
692
  def management(self, value: Optional[pulumi.Input['NodePoolManagementArgs']]):
559
693
  pulumi.set(self, "management", value)
560
694
 
695
+ @property
696
+ @pulumi.getter(name="multiAzPolicy")
697
+ def multi_az_policy(self) -> Optional[pulumi.Input[str]]:
698
+ """
699
+ The scaling policy for ECS instances in a multi-zone scaling group. Valid value: `PRIORITY`, `COST_OPTIMIZED` and `BALANCE`. `PRIORITY`: scales the capacity according to the virtual switches you define (VSwitchIds.N). When an ECS instance cannot be created in the zone where the higher-priority vSwitch is located, the next-priority vSwitch is automatically used to create an ECS instance. `COST_OPTIMIZED`: try to create by vCPU unit price from low to high. When the scaling configuration is configured with multiple instances of preemptible billing, preemptible instances are created first. You can continue to use the `CompensateWithOnDemand` parameter to specify whether to automatically try to create a preemptible instance by paying for it. It takes effect only when the scaling configuration has multi-instance specifications or preemptible instances. `BALANCE`: distributes ECS instances evenly among the multi-zone specified by the scaling group. If the zones become unbalanced due to insufficient inventory, you can use the API RebalanceInstances to balance resources.
700
+ """
701
+ return pulumi.get(self, "multi_az_policy")
702
+
703
+ @multi_az_policy.setter
704
+ def multi_az_policy(self, value: Optional[pulumi.Input[str]]):
705
+ pulumi.set(self, "multi_az_policy", value)
706
+
561
707
  @property
562
708
  @pulumi.getter
709
+ @_utilities.deprecated("""Field 'name' has been deprecated since provider version 1.219.0. New field 'node_pool_name' instead.""")
563
710
  def name(self) -> Optional[pulumi.Input[str]]:
564
711
  """
565
- The name of node pool.
712
+ . Field 'name' has been deprecated from provider version 1.219.0. New field 'node_pool_name' instead.
566
713
  """
567
714
  return pulumi.get(self, "name")
568
715
 
@@ -572,13 +719,11 @@ class NodePoolArgs:
572
719
 
573
720
  @property
574
721
  @pulumi.getter(name="nodeCount")
722
+ @_utilities.deprecated("""Field 'node_count' has been deprecated from provider version 1.158.0. New field 'desired_size' instead.""")
575
723
  def node_count(self) -> Optional[pulumi.Input[int]]:
576
724
  """
577
725
  The worker node number of the node pool. From version 1.111.0, `node_count` is not required.
578
726
  """
579
- warnings.warn("""Field 'node_count' has been deprecated from provider version 1.158.0. New field 'desired_size' instead.""", DeprecationWarning)
580
- pulumi.log.warn("""node_count is deprecated: Field 'node_count' has been deprecated from provider version 1.158.0. New field 'desired_size' instead.""")
581
-
582
727
  return pulumi.get(self, "node_count")
583
728
 
584
729
  @node_count.setter
@@ -589,7 +734,10 @@ class NodePoolArgs:
589
734
  @pulumi.getter(name="nodeNameMode")
590
735
  def node_name_mode(self) -> Optional[pulumi.Input[str]]:
591
736
  """
592
- Each node name consists of a prefix, its private network IP, and a suffix, the input format is `customized,<prefix>,ip,<suffix>`. For example "customized,aliyun.com-,ip,-test", if the node private network IP address is 192.168.59.176, the prefix is aliyun.com-,and the suffix is -test, the node name will be aliyun.com-192.168.59.176-test.
737
+ Each node name consists of a prefix, its private network IP, and a suffix, separated by commas. The input format is `customized,,ip,`.
738
+ - The prefix and suffix can be composed of one or more parts separated by '.', each part can use lowercase letters, numbers and '-', and the beginning and end of the node name must be lowercase letters and numbers.
739
+ - The node IP address is the complete private IP address of the node.
740
+ - For example, if the string `customized,aliyun,ip,com` is passed in (where 'customized' and 'ip' are fixed strings, 'aliyun' is the prefix, and 'com' is the suffix), the name of the node is `aliyun192.168.xxx.xxxcom`.
593
741
  """
594
742
  return pulumi.get(self, "node_name_mode")
595
743
 
@@ -597,11 +745,47 @@ class NodePoolArgs:
597
745
  def node_name_mode(self, value: Optional[pulumi.Input[str]]):
598
746
  pulumi.set(self, "node_name_mode", value)
599
747
 
748
+ @property
749
+ @pulumi.getter(name="nodePoolName")
750
+ def node_pool_name(self) -> Optional[pulumi.Input[str]]:
751
+ """
752
+ The name of node pool.
753
+ """
754
+ return pulumi.get(self, "node_pool_name")
755
+
756
+ @node_pool_name.setter
757
+ def node_pool_name(self, value: Optional[pulumi.Input[str]]):
758
+ pulumi.set(self, "node_pool_name", value)
759
+
760
+ @property
761
+ @pulumi.getter(name="onDemandBaseCapacity")
762
+ def on_demand_base_capacity(self) -> Optional[pulumi.Input[int]]:
763
+ """
764
+ The minimum number of pay-as-you-go instances that must be kept in the scaling group. Valid values: 0 to 1000. If the number of pay-as-you-go instances is less than the value of this parameter, Auto Scaling preferably creates pay-as-you-go instances.
765
+ """
766
+ return pulumi.get(self, "on_demand_base_capacity")
767
+
768
+ @on_demand_base_capacity.setter
769
+ def on_demand_base_capacity(self, value: Optional[pulumi.Input[int]]):
770
+ pulumi.set(self, "on_demand_base_capacity", value)
771
+
772
+ @property
773
+ @pulumi.getter(name="onDemandPercentageAboveBaseCapacity")
774
+ def on_demand_percentage_above_base_capacity(self) -> Optional[pulumi.Input[int]]:
775
+ """
776
+ The percentage of pay-as-you-go instances among the extra instances that exceed the number specified by `on_demand_base_capacity`. Valid values: 0 to 100.
777
+ """
778
+ return pulumi.get(self, "on_demand_percentage_above_base_capacity")
779
+
780
+ @on_demand_percentage_above_base_capacity.setter
781
+ def on_demand_percentage_above_base_capacity(self, value: Optional[pulumi.Input[int]]):
782
+ pulumi.set(self, "on_demand_percentage_above_base_capacity", value)
783
+
600
784
  @property
601
785
  @pulumi.getter
602
786
  def password(self) -> Optional[pulumi.Input[str]]:
603
787
  """
604
- The password of ssh login cluster node. You have to specify one of `password` `key_name` `kms_encrypted_password` fields.
788
+ The password of ssh login. You have to specify one of `password` and `key_name` fields. The password rule is 8 to 30 characters and contains at least three items (upper and lower case letters, numbers, and special symbols).
605
789
  """
606
790
  return pulumi.get(self, "password")
607
791
 
@@ -613,7 +797,7 @@ class NodePoolArgs:
613
797
  @pulumi.getter
614
798
  def period(self) -> Optional[pulumi.Input[int]]:
615
799
  """
616
- Node payment period. Its valid value is one of {1, 2, 3, 6, 12, 24, 36, 48, 60}.
800
+ Node payment period. Its valid value is one of {1, 2, 3, 6, 12}.
617
801
  """
618
802
  return pulumi.get(self, "period")
619
803
 
@@ -635,13 +819,11 @@ class NodePoolArgs:
635
819
 
636
820
  @property
637
821
  @pulumi.getter
822
+ @_utilities.deprecated("""Field 'platform' has been deprecated from provider version 1.145.0. Operating system release, using `image_type` instead.""")
638
823
  def platform(self) -> Optional[pulumi.Input[str]]:
639
824
  """
640
- The platform. One of `AliyunLinux`, `Windows`, `CentOS`, `WindowsCore`. If you select `Windows` or `WindowsCore`, the `passord` is required. Field `platform` has been deprecated from provider version 1.145.0. New field `image_type` instead.
825
+ Operating system release, using `image_type` instead.
641
826
  """
642
- warnings.warn("""Field 'platform' has been deprecated from provider version 1.145.0. New field 'image_type' instead""", DeprecationWarning)
643
- pulumi.log.warn("""platform is deprecated: Field 'platform' has been deprecated from provider version 1.145.0. New field 'image_type' instead""")
644
-
645
827
  return pulumi.get(self, "platform")
646
828
 
647
829
  @platform.setter
@@ -649,22 +831,34 @@ class NodePoolArgs:
649
831
  pulumi.set(self, "platform", value)
650
832
 
651
833
  @property
652
- @pulumi.getter(name="polardbIds")
653
- def polardb_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
834
+ @pulumi.getter(name="preUserData")
835
+ def pre_user_data(self) -> Optional[pulumi.Input[str]]:
836
+ """
837
+ Node pre custom data, base64-encoded, the script executed before the node is initialized.
838
+ """
839
+ return pulumi.get(self, "pre_user_data")
840
+
841
+ @pre_user_data.setter
842
+ def pre_user_data(self, value: Optional[pulumi.Input[str]]):
843
+ pulumi.set(self, "pre_user_data", value)
844
+
845
+ @property
846
+ @pulumi.getter(name="privatePoolOptions")
847
+ def private_pool_options(self) -> Optional[pulumi.Input['NodePoolPrivatePoolOptionsArgs']]:
654
848
  """
655
- PolarDB id list, You can choose which PolarDB whitelist to add instances to.
849
+ Private node pool configuration. See `private_pool_options` below.
656
850
  """
657
- return pulumi.get(self, "polardb_ids")
851
+ return pulumi.get(self, "private_pool_options")
658
852
 
659
- @polardb_ids.setter
660
- def polardb_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
661
- pulumi.set(self, "polardb_ids", value)
853
+ @private_pool_options.setter
854
+ def private_pool_options(self, value: Optional[pulumi.Input['NodePoolPrivatePoolOptionsArgs']]):
855
+ pulumi.set(self, "private_pool_options", value)
662
856
 
663
857
  @property
664
858
  @pulumi.getter(name="rdsInstances")
665
859
  def rds_instances(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
666
860
  """
667
- RDS instance list, You can choose which RDS instances whitelist to add instances to.
861
+ The list of RDS instances.
668
862
  """
669
863
  return pulumi.get(self, "rds_instances")
670
864
 
@@ -676,7 +870,7 @@ class NodePoolArgs:
676
870
  @pulumi.getter(name="resourceGroupId")
677
871
  def resource_group_id(self) -> Optional[pulumi.Input[str]]:
678
872
  """
679
- The ID of the resource group,by default these cloud resources are automatically assigned to the default resource group.
873
+ The ID of the resource group
680
874
  """
681
875
  return pulumi.get(self, "resource_group_id")
682
876
 
@@ -688,7 +882,7 @@ class NodePoolArgs:
688
882
  @pulumi.getter(name="rollingPolicy")
689
883
  def rolling_policy(self) -> Optional[pulumi.Input['NodePoolRollingPolicyArgs']]:
690
884
  """
691
- Rolling policy is used to specify the strategy when the node pool is rolling update. This field works when nodepool updating. See `rolling_policy` below.
885
+ Rotary configuration. See `rolling_policy` below.
692
886
  """
693
887
  return pulumi.get(self, "rolling_policy")
694
888
 
@@ -696,21 +890,6 @@ class NodePoolArgs:
696
890
  def rolling_policy(self, value: Optional[pulumi.Input['NodePoolRollingPolicyArgs']]):
697
891
  pulumi.set(self, "rolling_policy", value)
698
892
 
699
- @property
700
- @pulumi.getter(name="rolloutPolicy")
701
- def rollout_policy(self) -> Optional[pulumi.Input['NodePoolRolloutPolicyArgs']]:
702
- """
703
- Rollout policy is used to specify the strategy when the node pool is rolling update. This field works when node pool updating. Please use `rolling_policy` to instead it from provider version 1.185.0. See `rollout_policy` below.
704
- """
705
- warnings.warn("""Field 'rollout_policy' has been deprecated from provider version 1.184.0. Please use new field 'rolling_policy' instead it to ensure the config takes effect""", DeprecationWarning)
706
- pulumi.log.warn("""rollout_policy is deprecated: Field 'rollout_policy' has been deprecated from provider version 1.184.0. Please use new field 'rolling_policy' instead it to ensure the config takes effect""")
707
-
708
- return pulumi.get(self, "rollout_policy")
709
-
710
- @rollout_policy.setter
711
- def rollout_policy(self, value: Optional[pulumi.Input['NodePoolRolloutPolicyArgs']]):
712
- pulumi.set(self, "rollout_policy", value)
713
-
714
893
  @property
715
894
  @pulumi.getter(name="runtimeName")
716
895
  def runtime_name(self) -> Optional[pulumi.Input[str]]:
@@ -739,7 +918,7 @@ class NodePoolArgs:
739
918
  @pulumi.getter(name="scalingConfig")
740
919
  def scaling_config(self) -> Optional[pulumi.Input['NodePoolScalingConfigArgs']]:
741
920
  """
742
- Auto scaling node pool configuration. See `scaling_config` below. With auto-scaling is enabled, the nodes in the node pool will be labeled with `k8s.aliyun.com=true` to prevent system pods such as coredns, metrics-servers from being scheduled to elastic nodes, and to prevent node shrinkage from causing business abnormalities.
921
+ Automatic scaling configuration. See `scaling_config` below.
743
922
  """
744
923
  return pulumi.get(self, "scaling_config")
745
924
 
@@ -751,7 +930,7 @@ class NodePoolArgs:
751
930
  @pulumi.getter(name="scalingPolicy")
752
931
  def scaling_policy(self) -> Optional[pulumi.Input[str]]:
753
932
  """
754
- The scaling mode. Valid values: `release`, `recycle`, default is `release`. Standard mode(release): Create and release ECS instances based on requests.Swift mode(recycle): Create, stop, and restart ECS instances based on needs. New ECS instances are only created when no stopped ECS instance is avalible. This mode further accelerates the scaling process. Apart from ECS instances that use local storage, when an ECS instance is stopped, you are only chatged for storage space.
933
+ Scaling group mode, default value: `release`. Valid values:
755
934
  """
756
935
  return pulumi.get(self, "scaling_policy")
757
936
 
@@ -761,13 +940,11 @@ class NodePoolArgs:
761
940
 
762
941
  @property
763
942
  @pulumi.getter(name="securityGroupId")
943
+ @_utilities.deprecated("""Field 'security_group_id' has been deprecated from provider version 1.145.0. The security group ID of the node pool. This field has been replaced by `security_group_ids`, please use the `security_group_ids` field instead.""")
764
944
  def security_group_id(self) -> Optional[pulumi.Input[str]]:
765
945
  """
766
- The security group id for worker node. Field `security_group_id` has been deprecated from provider version 1.145.0. New field `security_group_ids` instead.
946
+ The security group ID of the node pool. This field has been replaced by `security_group_ids`, please use the `security_group_ids` field instead.
767
947
  """
768
- warnings.warn("""Field 'security_group_id' has been deprecated from provider version 1.145.0. New field 'security_group_ids' instead""", DeprecationWarning)
769
- pulumi.log.warn("""security_group_id is deprecated: Field 'security_group_id' has been deprecated from provider version 1.145.0. New field 'security_group_ids' instead""")
770
-
771
948
  return pulumi.get(self, "security_group_id")
772
949
 
773
950
  @security_group_id.setter
@@ -786,12 +963,25 @@ class NodePoolArgs:
786
963
  def security_group_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
787
964
  pulumi.set(self, "security_group_ids", value)
788
965
 
966
+ @property
967
+ @pulumi.getter(name="securityHardeningOs")
968
+ def security_hardening_os(self) -> Optional[pulumi.Input[bool]]:
969
+ """
970
+ Alibaba Cloud OS security reinforcement. Default value: `false`. Value:
971
+ """
972
+ return pulumi.get(self, "security_hardening_os")
973
+
974
+ @security_hardening_os.setter
975
+ def security_hardening_os(self, value: Optional[pulumi.Input[bool]]):
976
+ pulumi.set(self, "security_hardening_os", value)
977
+
789
978
  @property
790
979
  @pulumi.getter(name="socEnabled")
791
980
  def soc_enabled(self) -> Optional[pulumi.Input[bool]]:
792
981
  """
793
- Whether enable worker node to support soc security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. See [SOC Reinforcement](https://help.aliyun.com/document_detail/196148.html).
794
- > **NOTE:** It is forbidden to set both `cis_enabled` and `soc_enabled` to `true`at the same time.
982
+ Whether enable worker node to support soc security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. See [SOC Reinforcement](https://help.aliyun.com/document_detail/196148.html).
983
+
984
+ > **NOTE:** It is forbidden to set both `security_hardening_os` and `soc_enabled` to `true` at the same time.
795
985
  """
796
986
  return pulumi.get(self, "soc_enabled")
797
987
 
@@ -799,11 +989,35 @@ class NodePoolArgs:
799
989
  def soc_enabled(self, value: Optional[pulumi.Input[bool]]):
800
990
  pulumi.set(self, "soc_enabled", value)
801
991
 
992
+ @property
993
+ @pulumi.getter(name="spotInstancePools")
994
+ def spot_instance_pools(self) -> Optional[pulumi.Input[int]]:
995
+ """
996
+ The number of instance types that are available. Auto Scaling creates preemptible instances of multiple instance types that are available at the lowest cost. Valid values: 1 to 10.
997
+ """
998
+ return pulumi.get(self, "spot_instance_pools")
999
+
1000
+ @spot_instance_pools.setter
1001
+ def spot_instance_pools(self, value: Optional[pulumi.Input[int]]):
1002
+ pulumi.set(self, "spot_instance_pools", value)
1003
+
1004
+ @property
1005
+ @pulumi.getter(name="spotInstanceRemedy")
1006
+ def spot_instance_remedy(self) -> Optional[pulumi.Input[bool]]:
1007
+ """
1008
+ Specifies whether to supplement preemptible instances when the number of preemptible instances drops below the specified minimum number. If you set the value to true, Auto Scaling attempts to create a new preemptible instance when the system notifies that an existing preemptible instance is about to be reclaimed. Valid values: `true`: enables the supplementation of preemptible instances. `false`: disables the supplementation of preemptible instances.
1009
+ """
1010
+ return pulumi.get(self, "spot_instance_remedy")
1011
+
1012
+ @spot_instance_remedy.setter
1013
+ def spot_instance_remedy(self, value: Optional[pulumi.Input[bool]]):
1014
+ pulumi.set(self, "spot_instance_remedy", value)
1015
+
802
1016
  @property
803
1017
  @pulumi.getter(name="spotPriceLimits")
804
1018
  def spot_price_limits(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['NodePoolSpotPriceLimitArgs']]]]:
805
1019
  """
806
- The maximum hourly price of the instance. This parameter takes effect only when `spot_strategy` is set to `SpotWithPriceLimit`. You could enable multiple spot instances by setting this field repeatedly. See `spot_price_limit` below.
1020
+ The current single preemptible instance type market price range configuration. See `spot_price_limit` below.
807
1021
  """
808
1022
  return pulumi.get(self, "spot_price_limits")
809
1023
 
@@ -815,7 +1029,10 @@ class NodePoolArgs:
815
1029
  @pulumi.getter(name="spotStrategy")
816
1030
  def spot_strategy(self) -> Optional[pulumi.Input[str]]:
817
1031
  """
818
- The preemption policy for the pay-as-you-go instance. This parameter takes effect only when `instance_charge_type` is set to `PostPaid`. Valid value `SpotWithPriceLimit`,`SpotAsPriceGo` and `NoSpot`, default is `NoSpot`.
1032
+ The preemptible instance type. Value:
1033
+ - `NoSpot` : Non-preemptible instance.
1034
+ - `SpotWithPriceLimit` : Set the upper limit of the preemptible instance price.
1035
+ - `SpotAsPriceGo` : The system automatically bids, following the actual price of the current market.
819
1036
  """
820
1037
  return pulumi.get(self, "spot_strategy")
821
1038
 
@@ -823,11 +1040,35 @@ class NodePoolArgs:
823
1040
  def spot_strategy(self, value: Optional[pulumi.Input[str]]):
824
1041
  pulumi.set(self, "spot_strategy", value)
825
1042
 
1043
+ @property
1044
+ @pulumi.getter(name="systemDiskBurstingEnabled")
1045
+ def system_disk_bursting_enabled(self) -> Optional[pulumi.Input[bool]]:
1046
+ """
1047
+ Specifies whether to enable the burst feature for system disks. Valid values:`true`: enables the burst feature. `false`: disables the burst feature. This parameter is supported only when `system_disk_category` is set to `cloud_auto`.
1048
+ """
1049
+ return pulumi.get(self, "system_disk_bursting_enabled")
1050
+
1051
+ @system_disk_bursting_enabled.setter
1052
+ def system_disk_bursting_enabled(self, value: Optional[pulumi.Input[bool]]):
1053
+ pulumi.set(self, "system_disk_bursting_enabled", value)
1054
+
1055
+ @property
1056
+ @pulumi.getter(name="systemDiskCategories")
1057
+ def system_disk_categories(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
1058
+ """
1059
+ The multi-disk categories of the system disk. When a high-priority disk type cannot be used, Auto Scaling automatically tries to create a system disk with the next priority disk category. Valid values: `cloud`: cloud disk. `cloud_efficiency`: a high-efficiency cloud disk. `cloud_ssd`:SSD cloud disk. `cloud_essd`: ESSD cloud disk.
1060
+ """
1061
+ return pulumi.get(self, "system_disk_categories")
1062
+
1063
+ @system_disk_categories.setter
1064
+ def system_disk_categories(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
1065
+ pulumi.set(self, "system_disk_categories", value)
1066
+
826
1067
  @property
827
1068
  @pulumi.getter(name="systemDiskCategory")
828
1069
  def system_disk_category(self) -> Optional[pulumi.Input[str]]:
829
1070
  """
830
- The system disk category of worker node. Its valid value are `cloud_ssd`, `cloud_efficiency` and `cloud_essd`. Default to `cloud_efficiency`.
1071
+ The system disk category of worker node. Its valid value are `cloud_ssd`, `cloud_efficiency`, `cloud_essd` and `cloud_auto`.
831
1072
  """
832
1073
  return pulumi.get(self, "system_disk_category")
833
1074
 
@@ -839,7 +1080,7 @@ class NodePoolArgs:
839
1080
  @pulumi.getter(name="systemDiskEncryptAlgorithm")
840
1081
  def system_disk_encrypt_algorithm(self) -> Optional[pulumi.Input[str]]:
841
1082
  """
842
- The encryption Algorithm for Encrypting System Disk. It takes effect when system_disk_encrypted is true. Valid values `aes-256` and `sm4-128`.
1083
+ The encryption algorithm used by the system disk. Value range: aes-256.
843
1084
  """
844
1085
  return pulumi.get(self, "system_disk_encrypt_algorithm")
845
1086
 
@@ -851,7 +1092,7 @@ class NodePoolArgs:
851
1092
  @pulumi.getter(name="systemDiskEncrypted")
852
1093
  def system_disk_encrypted(self) -> Optional[pulumi.Input[bool]]:
853
1094
  """
854
- Whether to enable system disk encryption.
1095
+ Whether to encrypt the system disk. Value range: `true`: encryption. `false`: Do not encrypt.
855
1096
  """
856
1097
  return pulumi.get(self, "system_disk_encrypted")
857
1098
 
@@ -863,7 +1104,7 @@ class NodePoolArgs:
863
1104
  @pulumi.getter(name="systemDiskKmsKey")
864
1105
  def system_disk_kms_key(self) -> Optional[pulumi.Input[str]]:
865
1106
  """
866
- The kms key id used to encrypt the system disk. It takes effect when system_disk_encrypted is true.
1107
+ The ID of the KMS key used by the system disk.
867
1108
  """
868
1109
  return pulumi.get(self, "system_disk_kms_key")
869
1110
 
@@ -875,7 +1116,11 @@ class NodePoolArgs:
875
1116
  @pulumi.getter(name="systemDiskPerformanceLevel")
876
1117
  def system_disk_performance_level(self) -> Optional[pulumi.Input[str]]:
877
1118
  """
878
- The performance of system disk, only valid for ESSD disk. You have to specify one of `PL0` `PL1` `PL2` `PL3` fields.
1119
+ The system disk performance of the node takes effect only for the ESSD disk.
1120
+ - `PL0`: maximum random read/write IOPS 10000 for a single disk.
1121
+ - `PL1`: maximum random read/write IOPS 50000 for a single disk.
1122
+ - `PL2`: highest random read/write IOPS 100000 for a single disk.
1123
+ - `PL3`: maximum random read/write IOPS 1 million for a single disk.
879
1124
  """
880
1125
  return pulumi.get(self, "system_disk_performance_level")
881
1126
 
@@ -883,6 +1128,18 @@ class NodePoolArgs:
883
1128
  def system_disk_performance_level(self, value: Optional[pulumi.Input[str]]):
884
1129
  pulumi.set(self, "system_disk_performance_level", value)
885
1130
 
1131
+ @property
1132
+ @pulumi.getter(name="systemDiskProvisionedIops")
1133
+ def system_disk_provisioned_iops(self) -> Optional[pulumi.Input[int]]:
1134
+ """
1135
+ The predefined IOPS of a system disk. Valid values: 0 to min{50,000, 1,000 × Capacity - Baseline IOPS}. Baseline IOPS = min{1,800 + 50 × Capacity, 50,000}. This parameter is supported only when `system_disk_category` is set to `cloud_auto`.
1136
+ """
1137
+ return pulumi.get(self, "system_disk_provisioned_iops")
1138
+
1139
+ @system_disk_provisioned_iops.setter
1140
+ def system_disk_provisioned_iops(self, value: Optional[pulumi.Input[int]]):
1141
+ pulumi.set(self, "system_disk_provisioned_iops", value)
1142
+
886
1143
  @property
887
1144
  @pulumi.getter(name="systemDiskSize")
888
1145
  def system_disk_size(self) -> Optional[pulumi.Input[int]]:
@@ -899,7 +1156,7 @@ class NodePoolArgs:
899
1156
  @pulumi.getter(name="systemDiskSnapshotPolicyId")
900
1157
  def system_disk_snapshot_policy_id(self) -> Optional[pulumi.Input[str]]:
901
1158
  """
902
- The system disk snapshot policy id.
1159
+ The ID of the automatic snapshot policy used by the system disk.
903
1160
  """
904
1161
  return pulumi.get(self, "system_disk_snapshot_policy_id")
905
1162
 
@@ -909,14 +1166,14 @@ class NodePoolArgs:
909
1166
 
910
1167
  @property
911
1168
  @pulumi.getter
912
- def tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
1169
+ def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
913
1170
  """
914
- A Map of tags to assign to the resource. It will be applied for ECS instances finally. Detailed below.
1171
+ Add tags only for ECS instances. The maximum length of the tag key is 128 characters. The tag key and value cannot start with aliyun or acs:, or contain https:// or http://.
915
1172
  """
916
1173
  return pulumi.get(self, "tags")
917
1174
 
918
1175
  @tags.setter
919
- def tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
1176
+ def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
920
1177
  pulumi.set(self, "tags", value)
921
1178
 
922
1179
  @property
@@ -931,11 +1188,23 @@ class NodePoolArgs:
931
1188
  def taints(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['NodePoolTaintArgs']]]]):
932
1189
  pulumi.set(self, "taints", value)
933
1190
 
1191
+ @property
1192
+ @pulumi.getter(name="teeConfig")
1193
+ def tee_config(self) -> Optional[pulumi.Input['NodePoolTeeConfigArgs']]:
1194
+ """
1195
+ The configuration about confidential computing for the cluster. See `tee_config` below.
1196
+ """
1197
+ return pulumi.get(self, "tee_config")
1198
+
1199
+ @tee_config.setter
1200
+ def tee_config(self, value: Optional[pulumi.Input['NodePoolTeeConfigArgs']]):
1201
+ pulumi.set(self, "tee_config", value)
1202
+
934
1203
  @property
935
1204
  @pulumi.getter
936
1205
  def unschedulable(self) -> Optional[pulumi.Input[bool]]:
937
1206
  """
938
- Set the newly added node as unschedulable. If you want to open the scheduling option, you can open it in the node list of the console. If you are using an auto-scaling node pool, the setting will not take effect. Default is `false`.
1207
+ Whether the node after expansion can be scheduled.
939
1208
  """
940
1209
  return pulumi.get(self, "unschedulable")
941
1210
 
@@ -943,11 +1212,23 @@ class NodePoolArgs:
943
1212
  def unschedulable(self, value: Optional[pulumi.Input[bool]]):
944
1213
  pulumi.set(self, "unschedulable", value)
945
1214
 
1215
+ @property
1216
+ @pulumi.getter(name="updateNodes")
1217
+ def update_nodes(self) -> Optional[pulumi.Input[bool]]:
1218
+ """
1219
+ Synchronously update node labels and taints.
1220
+ """
1221
+ return pulumi.get(self, "update_nodes")
1222
+
1223
+ @update_nodes.setter
1224
+ def update_nodes(self, value: Optional[pulumi.Input[bool]]):
1225
+ pulumi.set(self, "update_nodes", value)
1226
+
946
1227
  @property
947
1228
  @pulumi.getter(name="userData")
948
1229
  def user_data(self) -> Optional[pulumi.Input[str]]:
949
1230
  """
950
- Windows instances support batch and PowerShell scripts. If your script file is larger than 1 KB, we recommend that you upload the script to Object Storage Service (OSS) and pull it through the internal endpoint of your OSS bucket.
1231
+ Node custom data, base64-encoded.
951
1232
  """
952
1233
  return pulumi.get(self, "user_data")
953
1234
 
@@ -963,10 +1244,12 @@ class _NodePoolState:
963
1244
  auto_renew_period: Optional[pulumi.Input[int]] = None,
964
1245
  cis_enabled: Optional[pulumi.Input[bool]] = None,
965
1246
  cluster_id: Optional[pulumi.Input[str]] = None,
1247
+ compensate_with_on_demand: Optional[pulumi.Input[bool]] = None,
966
1248
  cpu_policy: Optional[pulumi.Input[str]] = None,
967
1249
  data_disks: Optional[pulumi.Input[Sequence[pulumi.Input['NodePoolDataDiskArgs']]]] = None,
968
1250
  deployment_set_id: Optional[pulumi.Input[str]] = None,
969
1251
  desired_size: Optional[pulumi.Input[int]] = None,
1252
+ force_delete: Optional[pulumi.Input[bool]] = None,
970
1253
  format_disk: Optional[pulumi.Input[bool]] = None,
971
1254
  image_id: Optional[pulumi.Input[str]] = None,
972
1255
  image_type: Optional[pulumi.Input[str]] = None,
@@ -979,22 +1262,28 @@ class _NodePoolState:
979
1262
  keep_instance_name: Optional[pulumi.Input[bool]] = None,
980
1263
  key_name: Optional[pulumi.Input[str]] = None,
981
1264
  kms_encrypted_password: Optional[pulumi.Input[str]] = None,
982
- kms_encryption_context: Optional[pulumi.Input[Mapping[str, Any]]] = None,
1265
+ kms_encryption_context: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
983
1266
  kubelet_configuration: Optional[pulumi.Input['NodePoolKubeletConfigurationArgs']] = None,
984
1267
  labels: Optional[pulumi.Input[Sequence[pulumi.Input['NodePoolLabelArgs']]]] = None,
1268
+ login_as_non_root: Optional[pulumi.Input[bool]] = None,
985
1269
  management: Optional[pulumi.Input['NodePoolManagementArgs']] = None,
1270
+ multi_az_policy: Optional[pulumi.Input[str]] = None,
986
1271
  name: Optional[pulumi.Input[str]] = None,
987
1272
  node_count: Optional[pulumi.Input[int]] = None,
988
1273
  node_name_mode: Optional[pulumi.Input[str]] = None,
1274
+ node_pool_id: Optional[pulumi.Input[str]] = None,
1275
+ node_pool_name: Optional[pulumi.Input[str]] = None,
1276
+ on_demand_base_capacity: Optional[pulumi.Input[int]] = None,
1277
+ on_demand_percentage_above_base_capacity: Optional[pulumi.Input[int]] = None,
989
1278
  password: Optional[pulumi.Input[str]] = None,
990
1279
  period: Optional[pulumi.Input[int]] = None,
991
1280
  period_unit: Optional[pulumi.Input[str]] = None,
992
1281
  platform: Optional[pulumi.Input[str]] = None,
993
- polardb_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1282
+ pre_user_data: Optional[pulumi.Input[str]] = None,
1283
+ private_pool_options: Optional[pulumi.Input['NodePoolPrivatePoolOptionsArgs']] = None,
994
1284
  rds_instances: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
995
1285
  resource_group_id: Optional[pulumi.Input[str]] = None,
996
1286
  rolling_policy: Optional[pulumi.Input['NodePoolRollingPolicyArgs']] = None,
997
- rollout_policy: Optional[pulumi.Input['NodePoolRolloutPolicyArgs']] = None,
998
1287
  runtime_name: Optional[pulumi.Input[str]] = None,
999
1288
  runtime_version: Optional[pulumi.Input[str]] = None,
1000
1289
  scaling_config: Optional[pulumi.Input['NodePoolScalingConfigArgs']] = None,
@@ -1002,93 +1291,140 @@ class _NodePoolState:
1002
1291
  scaling_policy: Optional[pulumi.Input[str]] = None,
1003
1292
  security_group_id: Optional[pulumi.Input[str]] = None,
1004
1293
  security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1294
+ security_hardening_os: Optional[pulumi.Input[bool]] = None,
1005
1295
  soc_enabled: Optional[pulumi.Input[bool]] = None,
1296
+ spot_instance_pools: Optional[pulumi.Input[int]] = None,
1297
+ spot_instance_remedy: Optional[pulumi.Input[bool]] = None,
1006
1298
  spot_price_limits: Optional[pulumi.Input[Sequence[pulumi.Input['NodePoolSpotPriceLimitArgs']]]] = None,
1007
1299
  spot_strategy: Optional[pulumi.Input[str]] = None,
1300
+ system_disk_bursting_enabled: Optional[pulumi.Input[bool]] = None,
1301
+ system_disk_categories: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1008
1302
  system_disk_category: Optional[pulumi.Input[str]] = None,
1009
1303
  system_disk_encrypt_algorithm: Optional[pulumi.Input[str]] = None,
1010
1304
  system_disk_encrypted: Optional[pulumi.Input[bool]] = None,
1011
1305
  system_disk_kms_key: Optional[pulumi.Input[str]] = None,
1012
1306
  system_disk_performance_level: Optional[pulumi.Input[str]] = None,
1307
+ system_disk_provisioned_iops: Optional[pulumi.Input[int]] = None,
1013
1308
  system_disk_size: Optional[pulumi.Input[int]] = None,
1014
1309
  system_disk_snapshot_policy_id: Optional[pulumi.Input[str]] = None,
1015
- tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
1310
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1016
1311
  taints: Optional[pulumi.Input[Sequence[pulumi.Input['NodePoolTaintArgs']]]] = None,
1312
+ tee_config: Optional[pulumi.Input['NodePoolTeeConfigArgs']] = None,
1017
1313
  unschedulable: Optional[pulumi.Input[bool]] = None,
1314
+ update_nodes: Optional[pulumi.Input[bool]] = None,
1018
1315
  user_data: Optional[pulumi.Input[str]] = None,
1019
- vpc_id: Optional[pulumi.Input[str]] = None,
1020
1316
  vswitch_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
1021
1317
  """
1022
1318
  Input properties used for looking up and filtering NodePool resources.
1023
- :param pulumi.Input[bool] auto_renew: Enable Node payment auto-renew, default is `false`.
1024
- :param pulumi.Input[int] auto_renew_period: Node payment auto-renew period, one of `1`, `2`, `3`,`6`, `12`.
1025
- :param pulumi.Input[bool] cis_enabled: Whether enable worker node to support cis security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. See [CIS Reinforcement](https://help.aliyun.com/document_detail/223744.html).
1319
+ :param pulumi.Input[bool] auto_renew: Whether to enable automatic renewal for nodes in the node pool takes effect only when `instance_charge_type` is set to `PrePaid`. Default value: `false`. Valid values:
1320
+ :param pulumi.Input[int] auto_renew_period: The automatic renewal period of nodes in the node pool takes effect only when you select Prepaid and Automatic Renewal, and is a required value. When `PeriodUnit = Month`, the value range is {1, 2, 3, 6, 12}. Default value: 1.
1321
+ :param pulumi.Input[bool] cis_enabled: Whether enable worker node to support cis security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. Use `security_hardening_os` instead.
1026
1322
  :param pulumi.Input[str] cluster_id: The id of kubernetes cluster.
1027
- :param pulumi.Input[str] cpu_policy: Kubelet cpu policy. For Kubernetes 1.12.6 and later, its valid value is either `static` or `none`. Default to `none` and modification is not supported.
1028
- :param pulumi.Input[Sequence[pulumi.Input['NodePoolDataDiskArgs']]] data_disks: The data disk configurations of worker nodes, such as the disk type and disk size. See `data_disks` below.
1323
+ :param pulumi.Input[bool] compensate_with_on_demand: Specifies whether to automatically create pay-as-you-go instances to meet the required number of ECS instances if preemptible instances cannot be created due to reasons such as cost or insufficient inventory. This parameter takes effect when you set `multi_az_policy` to `COST_OPTIMIZED`. Valid values: `true`: automatically creates pay-as-you-go instances to meet the required number of ECS instances if preemptible instances cannot be created. `false`: does not create pay-as-you-go instances to meet the required number of ECS instances if preemptible instances cannot be created.
1324
+ :param pulumi.Input[str] cpu_policy: Node CPU management policies. Default value: `none`. When the cluster version is 1.12.6 or later, the following two policies are supported:
1325
+ :param pulumi.Input[Sequence[pulumi.Input['NodePoolDataDiskArgs']]] data_disks: Configure the data disk of the node in the node pool. See `data_disks` below.
1029
1326
  :param pulumi.Input[str] deployment_set_id: The deployment set of node pool. Specify the deploymentSet to ensure that the nodes in the node pool can be distributed on different physical machines.
1030
- :param pulumi.Input[int] desired_size: The desired size of nodes of the node pool. From version 1.158.0, `desired_size` is not required.
1327
+ :param pulumi.Input[int] desired_size: Number of expected nodes in the node pool.
1328
+ :param pulumi.Input[bool] force_delete: Whether to force deletion.
1031
1329
  :param pulumi.Input[bool] format_disk: After you select this check box, if data disks have been attached to the specified ECS instances and the file system of the last data disk is uninitialized, the system automatically formats the last data disk to ext4 and mounts the data disk to /var/lib/docker and /var/lib/kubelet. The original data on the disk will be cleared. Make sure that you back up data in advance. If no data disk is mounted on the ECS instance, no new data disk will be purchased. Default is `false`.
1032
- :param pulumi.Input[str] image_id: Custom Image support. Must based on CentOS7 or AliyunLinux2.
1033
- :param pulumi.Input[str] image_type: The image type, instead of `platform`. This field cannot be modified. One of `AliyunLinux`, `AliyunLinux3`, `AliyunLinux3Arm64`, `AliyunLinuxUEFI`, `CentOS`, `Windows`,`WindowsCore`,`AliyunLinux Qboot`,`ContainerOS`. If you select `Windows` or `WindowsCore`, the `passord` is required.
1034
- :param pulumi.Input[bool] install_cloud_monitor: Install the cloud monitoring plug-in on the node, and you can view the monitoring information of the instance through the cloud monitoring console. Default is `true`.
1330
+ :param pulumi.Input[str] image_id: The custom image ID. The system-provided image is used by default.
1331
+ :param pulumi.Input[str] image_type: The operating system image type and the `platform` parameter can be selected from the following values:
1332
+ - `AliyunLinux` : Alinux2 image.
1333
+ - `AliyunLinux3` : Alinux3 image.
1334
+ - `AliyunLinux3Arm64` : Alinux3 mirror ARM version.
1335
+ - `AliyunLinuxUEFI` : Alinux2 Image UEFI version.
1336
+ - `CentOS` : CentOS image.
1337
+ - `Windows` : Windows image.
1338
+ - `WindowsCore` : WindowsCore image.
1339
+ - `ContainerOS` : container-optimized image.
1340
+ - `Ubuntu`: (Available since v1.236.0) Ubuntu image.
1341
+ :param pulumi.Input[bool] install_cloud_monitor: Whether to install cloud monitoring on the ECS node. After installation, you can view the monitoring information of the created ECS instance in the cloud monitoring console and recommend enable it. Default value: `false`. Valid values:
1035
1342
  :param pulumi.Input[str] instance_charge_type: Node payment type. Valid values: `PostPaid`, `PrePaid`, default is `PostPaid`. If value is `PrePaid`, the arguments `period`, `period_unit`, `auto_renew` and `auto_renew_period` are required.
1036
- :param pulumi.Input[Sequence[pulumi.Input[str]]] instance_types: The instance type of worker node.
1343
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] instance_types: In the node instance specification list, you can select multiple instance specifications as alternatives. When each node is created, it will try to purchase from the first specification until it is created successfully. The final purchased instance specifications may vary with inventory changes.
1037
1344
  :param pulumi.Input[Sequence[pulumi.Input[str]]] instances: The instance list. Add existing nodes under the same cluster VPC to the node pool.
1038
1345
  :param pulumi.Input[str] internet_charge_type: The billing method for network usage. Valid values `PayByBandwidth` and `PayByTraffic`. Conflict with `eip_internet_charge_type`, EIP and public network IP can only choose one.
1039
- :param pulumi.Input[int] internet_max_bandwidth_out: The maximum outbound bandwidth for the public network. Unit: Mbit/s. Valid values: 0 to 100.
1346
+ :param pulumi.Input[int] internet_max_bandwidth_out: The maximum bandwidth of the public IP address of the node. The unit is Mbps(Mega bit per second). The value range is:\\[1,100\\]
1040
1347
  :param pulumi.Input[bool] keep_instance_name: Add an existing instance to the node pool, whether to keep the original instance name. It is recommended to set to `true`.
1041
- :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. Only `key_name` is supported in the management node pool.
1348
+ :param pulumi.Input[str] key_name: The name of the key pair. When the node pool is a managed node pool, only `key_name` is supported.
1042
1349
  :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.
1043
- :param pulumi.Input[Mapping[str, Any]] 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.
1044
- :param pulumi.Input['NodePoolKubeletConfigurationArgs'] kubelet_configuration: Kubelet configuration parameters for worker nodes. See `kubelet_configuration` below. More information in [Kubelet Configuration](https://kubernetes.io/docs/reference/config-api/kubelet-config.v1beta1/).
1350
+ :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.
1351
+ :param pulumi.Input['NodePoolKubeletConfigurationArgs'] kubelet_configuration: Kubelet configuration parameters for worker nodes. See `kubelet_configuration` below. More information in [Kubelet Configuration](https://kubernetes.io/docs/reference/config-api/kubelet-config.v1beta1/). See `kubelet_configuration` below.
1045
1352
  :param pulumi.Input[Sequence[pulumi.Input['NodePoolLabelArgs']]] labels: A List of Kubernetes labels to assign to the nodes . Only labels that are applied with the ACK API are managed by this argument. Detailed below. More information in [Labels](https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/). See `labels` below.
1046
- :param pulumi.Input['NodePoolManagementArgs'] management: Managed node pool configuration. When using a managed node pool, the node key must use `key_name`. See `management` below.
1047
- :param pulumi.Input[str] name: The name of node pool.
1353
+ :param pulumi.Input[bool] login_as_non_root: Whether the ECS instance is logged on as a ecs-user user. Valid value: `true` and `false`.
1354
+ :param pulumi.Input['NodePoolManagementArgs'] management: Managed node pool configuration. See `management` below.
1355
+ :param pulumi.Input[str] multi_az_policy: The scaling policy for ECS instances in a multi-zone scaling group. Valid value: `PRIORITY`, `COST_OPTIMIZED` and `BALANCE`. `PRIORITY`: scales the capacity according to the virtual switches you define (VSwitchIds.N). When an ECS instance cannot be created in the zone where the higher-priority vSwitch is located, the next-priority vSwitch is automatically used to create an ECS instance. `COST_OPTIMIZED`: try to create by vCPU unit price from low to high. When the scaling configuration is configured with multiple instances of preemptible billing, preemptible instances are created first. You can continue to use the `CompensateWithOnDemand` parameter to specify whether to automatically try to create a preemptible instance by paying for it. It takes effect only when the scaling configuration has multi-instance specifications or preemptible instances. `BALANCE`: distributes ECS instances evenly among the multi-zone specified by the scaling group. If the zones become unbalanced due to insufficient inventory, you can use the API RebalanceInstances to balance resources.
1356
+ :param pulumi.Input[str] name: . Field 'name' has been deprecated from provider version 1.219.0. New field 'node_pool_name' instead.
1048
1357
  :param pulumi.Input[int] node_count: The worker node number of the node pool. From version 1.111.0, `node_count` is not required.
1049
- :param pulumi.Input[str] node_name_mode: Each node name consists of a prefix, its private network IP, and a suffix, the input format is `customized,<prefix>,ip,<suffix>`. For example "customized,aliyun.com-,ip,-test", if the node private network IP address is 192.168.59.176, the prefix is aliyun.com-,and the suffix is -test, the node name will be aliyun.com-192.168.59.176-test.
1050
- :param pulumi.Input[str] password: The password of ssh login cluster node. You have to specify one of `password` `key_name` `kms_encrypted_password` fields.
1051
- :param pulumi.Input[int] period: Node payment period. Its valid value is one of {1, 2, 3, 6, 12, 24, 36, 48, 60}.
1358
+ :param pulumi.Input[str] node_name_mode: Each node name consists of a prefix, its private network IP, and a suffix, separated by commas. The input format is `customized,,ip,`.
1359
+ - The prefix and suffix can be composed of one or more parts separated by '.', each part can use lowercase letters, numbers and '-', and the beginning and end of the node name must be lowercase letters and numbers.
1360
+ - The node IP address is the complete private IP address of the node.
1361
+ - For example, if the string `customized,aliyun,ip,com` is passed in (where 'customized' and 'ip' are fixed strings, 'aliyun' is the prefix, and 'com' is the suffix), the name of the node is `aliyun192.168.xxx.xxxcom`.
1362
+ :param pulumi.Input[str] node_pool_id: The first ID of the resource.
1363
+ :param pulumi.Input[str] node_pool_name: The name of node pool.
1364
+ :param pulumi.Input[int] on_demand_base_capacity: The minimum number of pay-as-you-go instances that must be kept in the scaling group. Valid values: 0 to 1000. If the number of pay-as-you-go instances is less than the value of this parameter, Auto Scaling preferably creates pay-as-you-go instances.
1365
+ :param pulumi.Input[int] on_demand_percentage_above_base_capacity: The percentage of pay-as-you-go instances among the extra instances that exceed the number specified by `on_demand_base_capacity`. Valid values: 0 to 100.
1366
+ :param pulumi.Input[str] password: The password of ssh login. You have to specify one of `password` and `key_name` fields. The password rule is 8 to 30 characters and contains at least three items (upper and lower case letters, numbers, and special symbols).
1367
+ :param pulumi.Input[int] period: Node payment period. Its valid value is one of {1, 2, 3, 6, 12}.
1052
1368
  :param pulumi.Input[str] period_unit: Node payment period unit, valid value: `Month`. Default is `Month`.
1053
- :param pulumi.Input[str] platform: The platform. One of `AliyunLinux`, `Windows`, `CentOS`, `WindowsCore`. If you select `Windows` or `WindowsCore`, the `passord` is required. Field `platform` has been deprecated from provider version 1.145.0. New field `image_type` instead.
1054
- :param pulumi.Input[Sequence[pulumi.Input[str]]] polardb_ids: PolarDB id list, You can choose which PolarDB whitelist to add instances to.
1055
- :param pulumi.Input[Sequence[pulumi.Input[str]]] rds_instances: RDS instance list, You can choose which RDS instances whitelist to add instances to.
1056
- :param pulumi.Input[str] resource_group_id: The ID of the resource group,by default these cloud resources are automatically assigned to the default resource group.
1057
- :param pulumi.Input['NodePoolRollingPolicyArgs'] rolling_policy: Rolling policy is used to specify the strategy when the node pool is rolling update. This field works when nodepool updating. See `rolling_policy` below.
1058
- :param pulumi.Input['NodePoolRolloutPolicyArgs'] rollout_policy: Rollout policy is used to specify the strategy when the node pool is rolling update. This field works when node pool updating. Please use `rolling_policy` to instead it from provider version 1.185.0. See `rollout_policy` below.
1369
+ :param pulumi.Input[str] platform: Operating system release, using `image_type` instead.
1370
+ :param pulumi.Input[str] pre_user_data: Node pre custom data, base64-encoded, the script executed before the node is initialized.
1371
+ :param pulumi.Input['NodePoolPrivatePoolOptionsArgs'] private_pool_options: Private node pool configuration. See `private_pool_options` below.
1372
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] rds_instances: The list of RDS instances.
1373
+ :param pulumi.Input[str] resource_group_id: The ID of the resource group
1374
+ :param pulumi.Input['NodePoolRollingPolicyArgs'] rolling_policy: Rotary configuration. See `rolling_policy` below.
1059
1375
  :param pulumi.Input[str] runtime_name: The runtime name of containers. If not set, the cluster runtime will be used as the node pool runtime. If you select another container runtime, see [Comparison of Docker, containerd, and Sandboxed-Container](https://www.alibabacloud.com/help/doc-detail/160313.htm).
1060
1376
  :param pulumi.Input[str] runtime_version: The runtime version of containers. If not set, the cluster runtime will be used as the node pool runtime.
1061
- :param pulumi.Input['NodePoolScalingConfigArgs'] scaling_config: Auto scaling node pool configuration. See `scaling_config` below. With auto-scaling is enabled, the nodes in the node pool will be labeled with `k8s.aliyun.com=true` to prevent system pods such as coredns, metrics-servers from being scheduled to elastic nodes, and to prevent node shrinkage from causing business abnormalities.
1062
- :param pulumi.Input[str] scaling_group_id: The scaling group id.
1063
- :param pulumi.Input[str] scaling_policy: The scaling mode. Valid values: `release`, `recycle`, default is `release`. Standard mode(release): Create and release ECS instances based on requests.Swift mode(recycle): Create, stop, and restart ECS instances based on needs. New ECS instances are only created when no stopped ECS instance is avalible. This mode further accelerates the scaling process. Apart from ECS instances that use local storage, when an ECS instance is stopped, you are only chatged for storage space.
1064
- :param pulumi.Input[str] security_group_id: The security group id for worker node. Field `security_group_id` has been deprecated from provider version 1.145.0. New field `security_group_ids` instead.
1377
+ :param pulumi.Input['NodePoolScalingConfigArgs'] scaling_config: Automatic scaling configuration. See `scaling_config` below.
1378
+ :param pulumi.Input[str] scaling_group_id: The ID of the scaling group.
1379
+ :param pulumi.Input[str] scaling_policy: Scaling group mode, default value: `release`. Valid values:
1380
+ :param pulumi.Input[str] security_group_id: The security group ID of the node pool. This field has been replaced by `security_group_ids`, please use the `security_group_ids` field instead.
1065
1381
  :param pulumi.Input[Sequence[pulumi.Input[str]]] security_group_ids: Multiple security groups can be configured for a node pool. If both `security_group_ids` and `security_group_id` are configured, `security_group_ids` takes effect. This field cannot be modified.
1066
- :param pulumi.Input[bool] soc_enabled: Whether enable worker node to support soc security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. See [SOC Reinforcement](https://help.aliyun.com/document_detail/196148.html).
1067
- > **NOTE:** It is forbidden to set both `cis_enabled` and `soc_enabled` to `true`at the same time.
1068
- :param pulumi.Input[Sequence[pulumi.Input['NodePoolSpotPriceLimitArgs']]] spot_price_limits: The maximum hourly price of the instance. This parameter takes effect only when `spot_strategy` is set to `SpotWithPriceLimit`. You could enable multiple spot instances by setting this field repeatedly. See `spot_price_limit` below.
1069
- :param pulumi.Input[str] spot_strategy: The preemption policy for the pay-as-you-go instance. This parameter takes effect only when `instance_charge_type` is set to `PostPaid`. Valid value `SpotWithPriceLimit`,`SpotAsPriceGo` and `NoSpot`, default is `NoSpot`.
1070
- :param pulumi.Input[str] system_disk_category: The system disk category of worker node. Its valid value are `cloud_ssd`, `cloud_efficiency` and `cloud_essd`. Default to `cloud_efficiency`.
1071
- :param pulumi.Input[str] system_disk_encrypt_algorithm: The encryption Algorithm for Encrypting System Disk. It takes effect when system_disk_encrypted is true. Valid values `aes-256` and `sm4-128`.
1072
- :param pulumi.Input[bool] system_disk_encrypted: Whether to enable system disk encryption.
1073
- :param pulumi.Input[str] system_disk_kms_key: The kms key id used to encrypt the system disk. It takes effect when system_disk_encrypted is true.
1074
- :param pulumi.Input[str] system_disk_performance_level: The performance of system disk, only valid for ESSD disk. You have to specify one of `PL0` `PL1` `PL2` `PL3` fields.
1382
+ :param pulumi.Input[bool] security_hardening_os: Alibaba Cloud OS security reinforcement. Default value: `false`. Value:
1383
+ :param pulumi.Input[bool] soc_enabled: Whether enable worker node to support soc security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. See [SOC Reinforcement](https://help.aliyun.com/document_detail/196148.html).
1384
+
1385
+ > **NOTE:** It is forbidden to set both `security_hardening_os` and `soc_enabled` to `true` at the same time.
1386
+ :param pulumi.Input[int] spot_instance_pools: The number of instance types that are available. Auto Scaling creates preemptible instances of multiple instance types that are available at the lowest cost. Valid values: 1 to 10.
1387
+ :param pulumi.Input[bool] spot_instance_remedy: Specifies whether to supplement preemptible instances when the number of preemptible instances drops below the specified minimum number. If you set the value to true, Auto Scaling attempts to create a new preemptible instance when the system notifies that an existing preemptible instance is about to be reclaimed. Valid values: `true`: enables the supplementation of preemptible instances. `false`: disables the supplementation of preemptible instances.
1388
+ :param pulumi.Input[Sequence[pulumi.Input['NodePoolSpotPriceLimitArgs']]] spot_price_limits: The current single preemptible instance type market price range configuration. See `spot_price_limit` below.
1389
+ :param pulumi.Input[str] spot_strategy: The preemptible instance type. Value:
1390
+ - `NoSpot` : Non-preemptible instance.
1391
+ - `SpotWithPriceLimit` : Set the upper limit of the preemptible instance price.
1392
+ - `SpotAsPriceGo` : The system automatically bids, following the actual price of the current market.
1393
+ :param pulumi.Input[bool] system_disk_bursting_enabled: Specifies whether to enable the burst feature for system disks. Valid values:`true`: enables the burst feature. `false`: disables the burst feature. This parameter is supported only when `system_disk_category` is set to `cloud_auto`.
1394
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] system_disk_categories: The multi-disk categories of the system disk. When a high-priority disk type cannot be used, Auto Scaling automatically tries to create a system disk with the next priority disk category. Valid values: `cloud`: cloud disk. `cloud_efficiency`: a high-efficiency cloud disk. `cloud_ssd`:SSD cloud disk. `cloud_essd`: ESSD cloud disk.
1395
+ :param pulumi.Input[str] system_disk_category: The system disk category of worker node. Its valid value are `cloud_ssd`, `cloud_efficiency`, `cloud_essd` and `cloud_auto`.
1396
+ :param pulumi.Input[str] system_disk_encrypt_algorithm: The encryption algorithm used by the system disk. Value range: aes-256.
1397
+ :param pulumi.Input[bool] system_disk_encrypted: Whether to encrypt the system disk. Value range: `true`: encryption. `false`: Do not encrypt.
1398
+ :param pulumi.Input[str] system_disk_kms_key: The ID of the KMS key used by the system disk.
1399
+ :param pulumi.Input[str] system_disk_performance_level: The system disk performance of the node takes effect only for the ESSD disk.
1400
+ - `PL0`: maximum random read/write IOPS 10000 for a single disk.
1401
+ - `PL1`: maximum random read/write IOPS 50000 for a single disk.
1402
+ - `PL2`: highest random read/write IOPS 100000 for a single disk.
1403
+ - `PL3`: maximum random read/write IOPS 1 million for a single disk.
1404
+ :param pulumi.Input[int] system_disk_provisioned_iops: The predefined IOPS of a system disk. Valid values: 0 to min{50,000, 1,000 × Capacity - Baseline IOPS}. Baseline IOPS = min{1,800 + 50 × Capacity, 50,000}. This parameter is supported only when `system_disk_category` is set to `cloud_auto`.
1075
1405
  :param pulumi.Input[int] system_disk_size: The system disk category of worker node. Its valid value range [40~500] in GB. Default to `120`.
1076
- :param pulumi.Input[str] system_disk_snapshot_policy_id: The system disk snapshot policy id.
1077
- :param pulumi.Input[Mapping[str, Any]] tags: A Map of tags to assign to the resource. It will be applied for ECS instances finally. Detailed below.
1406
+ :param pulumi.Input[str] system_disk_snapshot_policy_id: The ID of the automatic snapshot policy used by the system disk.
1407
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Add tags only for ECS instances. The maximum length of the tag key is 128 characters. The tag key and value cannot start with aliyun or acs:, or contain https:// or http://.
1078
1408
  :param pulumi.Input[Sequence[pulumi.Input['NodePoolTaintArgs']]] taints: A List of Kubernetes taints to assign to the nodes. Detailed below. More information in [Taints and Toleration](https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/). See `taints` below.
1079
- :param pulumi.Input[bool] unschedulable: Set the newly added node as unschedulable. If you want to open the scheduling option, you can open it in the node list of the console. If you are using an auto-scaling node pool, the setting will not take effect. Default is `false`.
1080
- :param pulumi.Input[str] user_data: Windows instances support batch and PowerShell scripts. If your script file is larger than 1 KB, we recommend that you upload the script to Object Storage Service (OSS) and pull it through the internal endpoint of your OSS bucket.
1081
- :param pulumi.Input[str] vpc_id: The VPC of the nodes in the node pool.
1409
+ :param pulumi.Input['NodePoolTeeConfigArgs'] tee_config: The configuration about confidential computing for the cluster. See `tee_config` below.
1410
+ :param pulumi.Input[bool] unschedulable: Whether the node after expansion can be scheduled.
1411
+ :param pulumi.Input[bool] update_nodes: Synchronously update node labels and taints.
1412
+ :param pulumi.Input[str] user_data: Node custom data, base64-encoded.
1082
1413
  :param pulumi.Input[Sequence[pulumi.Input[str]]] vswitch_ids: The vswitches used by node pool workers.
1083
1414
  """
1084
1415
  if auto_renew is not None:
1085
1416
  pulumi.set(__self__, "auto_renew", auto_renew)
1086
1417
  if auto_renew_period is not None:
1087
1418
  pulumi.set(__self__, "auto_renew_period", auto_renew_period)
1419
+ if cis_enabled is not None:
1420
+ warnings.warn("""Field 'cis_enabled' has been deprecated from provider version 1.223.1. Whether enable worker node to support cis security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. Use `security_hardening_os` instead.""", DeprecationWarning)
1421
+ pulumi.log.warn("""cis_enabled is deprecated: Field 'cis_enabled' has been deprecated from provider version 1.223.1. Whether enable worker node to support cis security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. Use `security_hardening_os` instead.""")
1088
1422
  if cis_enabled is not None:
1089
1423
  pulumi.set(__self__, "cis_enabled", cis_enabled)
1090
1424
  if cluster_id is not None:
1091
1425
  pulumi.set(__self__, "cluster_id", cluster_id)
1426
+ if compensate_with_on_demand is not None:
1427
+ pulumi.set(__self__, "compensate_with_on_demand", compensate_with_on_demand)
1092
1428
  if cpu_policy is not None:
1093
1429
  pulumi.set(__self__, "cpu_policy", cpu_policy)
1094
1430
  if data_disks is not None:
@@ -1097,6 +1433,8 @@ class _NodePoolState:
1097
1433
  pulumi.set(__self__, "deployment_set_id", deployment_set_id)
1098
1434
  if desired_size is not None:
1099
1435
  pulumi.set(__self__, "desired_size", desired_size)
1436
+ if force_delete is not None:
1437
+ pulumi.set(__self__, "force_delete", force_delete)
1100
1438
  if format_disk is not None:
1101
1439
  pulumi.set(__self__, "format_disk", format_disk)
1102
1440
  if image_id is not None:
@@ -1127,8 +1465,15 @@ class _NodePoolState:
1127
1465
  pulumi.set(__self__, "kubelet_configuration", kubelet_configuration)
1128
1466
  if labels is not None:
1129
1467
  pulumi.set(__self__, "labels", labels)
1468
+ if login_as_non_root is not None:
1469
+ pulumi.set(__self__, "login_as_non_root", login_as_non_root)
1130
1470
  if management is not None:
1131
1471
  pulumi.set(__self__, "management", management)
1472
+ if multi_az_policy is not None:
1473
+ pulumi.set(__self__, "multi_az_policy", multi_az_policy)
1474
+ if name is not None:
1475
+ warnings.warn("""Field 'name' has been deprecated since provider version 1.219.0. New field 'node_pool_name' instead.""", DeprecationWarning)
1476
+ pulumi.log.warn("""name is deprecated: Field 'name' has been deprecated since provider version 1.219.0. New field 'node_pool_name' instead.""")
1132
1477
  if name is not None:
1133
1478
  pulumi.set(__self__, "name", name)
1134
1479
  if node_count is not None:
@@ -1138,6 +1483,14 @@ class _NodePoolState:
1138
1483
  pulumi.set(__self__, "node_count", node_count)
1139
1484
  if node_name_mode is not None:
1140
1485
  pulumi.set(__self__, "node_name_mode", node_name_mode)
1486
+ if node_pool_id is not None:
1487
+ pulumi.set(__self__, "node_pool_id", node_pool_id)
1488
+ if node_pool_name is not None:
1489
+ pulumi.set(__self__, "node_pool_name", node_pool_name)
1490
+ if on_demand_base_capacity is not None:
1491
+ pulumi.set(__self__, "on_demand_base_capacity", on_demand_base_capacity)
1492
+ if on_demand_percentage_above_base_capacity is not None:
1493
+ pulumi.set(__self__, "on_demand_percentage_above_base_capacity", on_demand_percentage_above_base_capacity)
1141
1494
  if password is not None:
1142
1495
  pulumi.set(__self__, "password", password)
1143
1496
  if period is not None:
@@ -1145,23 +1498,20 @@ class _NodePoolState:
1145
1498
  if period_unit is not None:
1146
1499
  pulumi.set(__self__, "period_unit", period_unit)
1147
1500
  if platform is not None:
1148
- warnings.warn("""Field 'platform' has been deprecated from provider version 1.145.0. New field 'image_type' instead""", DeprecationWarning)
1149
- pulumi.log.warn("""platform is deprecated: Field 'platform' has been deprecated from provider version 1.145.0. New field 'image_type' instead""")
1501
+ warnings.warn("""Field 'platform' has been deprecated from provider version 1.145.0. Operating system release, using `image_type` instead.""", DeprecationWarning)
1502
+ pulumi.log.warn("""platform is deprecated: Field 'platform' has been deprecated from provider version 1.145.0. Operating system release, using `image_type` instead.""")
1150
1503
  if platform is not None:
1151
1504
  pulumi.set(__self__, "platform", platform)
1152
- if polardb_ids is not None:
1153
- pulumi.set(__self__, "polardb_ids", polardb_ids)
1505
+ if pre_user_data is not None:
1506
+ pulumi.set(__self__, "pre_user_data", pre_user_data)
1507
+ if private_pool_options is not None:
1508
+ pulumi.set(__self__, "private_pool_options", private_pool_options)
1154
1509
  if rds_instances is not None:
1155
1510
  pulumi.set(__self__, "rds_instances", rds_instances)
1156
1511
  if resource_group_id is not None:
1157
1512
  pulumi.set(__self__, "resource_group_id", resource_group_id)
1158
1513
  if rolling_policy is not None:
1159
1514
  pulumi.set(__self__, "rolling_policy", rolling_policy)
1160
- if rollout_policy is not None:
1161
- warnings.warn("""Field 'rollout_policy' has been deprecated from provider version 1.184.0. Please use new field 'rolling_policy' instead it to ensure the config takes effect""", DeprecationWarning)
1162
- pulumi.log.warn("""rollout_policy is deprecated: Field 'rollout_policy' has been deprecated from provider version 1.184.0. Please use new field 'rolling_policy' instead it to ensure the config takes effect""")
1163
- if rollout_policy is not None:
1164
- pulumi.set(__self__, "rollout_policy", rollout_policy)
1165
1515
  if runtime_name is not None:
1166
1516
  pulumi.set(__self__, "runtime_name", runtime_name)
1167
1517
  if runtime_version is not None:
@@ -1173,18 +1523,28 @@ class _NodePoolState:
1173
1523
  if scaling_policy is not None:
1174
1524
  pulumi.set(__self__, "scaling_policy", scaling_policy)
1175
1525
  if security_group_id is not None:
1176
- warnings.warn("""Field 'security_group_id' has been deprecated from provider version 1.145.0. New field 'security_group_ids' instead""", DeprecationWarning)
1177
- pulumi.log.warn("""security_group_id is deprecated: Field 'security_group_id' has been deprecated from provider version 1.145.0. New field 'security_group_ids' instead""")
1526
+ warnings.warn("""Field 'security_group_id' has been deprecated from provider version 1.145.0. The security group ID of the node pool. This field has been replaced by `security_group_ids`, please use the `security_group_ids` field instead.""", DeprecationWarning)
1527
+ pulumi.log.warn("""security_group_id is deprecated: Field 'security_group_id' has been deprecated from provider version 1.145.0. The security group ID of the node pool. This field has been replaced by `security_group_ids`, please use the `security_group_ids` field instead.""")
1178
1528
  if security_group_id is not None:
1179
1529
  pulumi.set(__self__, "security_group_id", security_group_id)
1180
1530
  if security_group_ids is not None:
1181
1531
  pulumi.set(__self__, "security_group_ids", security_group_ids)
1532
+ if security_hardening_os is not None:
1533
+ pulumi.set(__self__, "security_hardening_os", security_hardening_os)
1182
1534
  if soc_enabled is not None:
1183
1535
  pulumi.set(__self__, "soc_enabled", soc_enabled)
1536
+ if spot_instance_pools is not None:
1537
+ pulumi.set(__self__, "spot_instance_pools", spot_instance_pools)
1538
+ if spot_instance_remedy is not None:
1539
+ pulumi.set(__self__, "spot_instance_remedy", spot_instance_remedy)
1184
1540
  if spot_price_limits is not None:
1185
1541
  pulumi.set(__self__, "spot_price_limits", spot_price_limits)
1186
1542
  if spot_strategy is not None:
1187
1543
  pulumi.set(__self__, "spot_strategy", spot_strategy)
1544
+ if system_disk_bursting_enabled is not None:
1545
+ pulumi.set(__self__, "system_disk_bursting_enabled", system_disk_bursting_enabled)
1546
+ if system_disk_categories is not None:
1547
+ pulumi.set(__self__, "system_disk_categories", system_disk_categories)
1188
1548
  if system_disk_category is not None:
1189
1549
  pulumi.set(__self__, "system_disk_category", system_disk_category)
1190
1550
  if system_disk_encrypt_algorithm is not None:
@@ -1195,6 +1555,8 @@ class _NodePoolState:
1195
1555
  pulumi.set(__self__, "system_disk_kms_key", system_disk_kms_key)
1196
1556
  if system_disk_performance_level is not None:
1197
1557
  pulumi.set(__self__, "system_disk_performance_level", system_disk_performance_level)
1558
+ if system_disk_provisioned_iops is not None:
1559
+ pulumi.set(__self__, "system_disk_provisioned_iops", system_disk_provisioned_iops)
1198
1560
  if system_disk_size is not None:
1199
1561
  pulumi.set(__self__, "system_disk_size", system_disk_size)
1200
1562
  if system_disk_snapshot_policy_id is not None:
@@ -1203,12 +1565,14 @@ class _NodePoolState:
1203
1565
  pulumi.set(__self__, "tags", tags)
1204
1566
  if taints is not None:
1205
1567
  pulumi.set(__self__, "taints", taints)
1568
+ if tee_config is not None:
1569
+ pulumi.set(__self__, "tee_config", tee_config)
1206
1570
  if unschedulable is not None:
1207
1571
  pulumi.set(__self__, "unschedulable", unschedulable)
1572
+ if update_nodes is not None:
1573
+ pulumi.set(__self__, "update_nodes", update_nodes)
1208
1574
  if user_data is not None:
1209
1575
  pulumi.set(__self__, "user_data", user_data)
1210
- if vpc_id is not None:
1211
- pulumi.set(__self__, "vpc_id", vpc_id)
1212
1576
  if vswitch_ids is not None:
1213
1577
  pulumi.set(__self__, "vswitch_ids", vswitch_ids)
1214
1578
 
@@ -1216,7 +1580,7 @@ class _NodePoolState:
1216
1580
  @pulumi.getter(name="autoRenew")
1217
1581
  def auto_renew(self) -> Optional[pulumi.Input[bool]]:
1218
1582
  """
1219
- Enable Node payment auto-renew, default is `false`.
1583
+ Whether to enable automatic renewal for nodes in the node pool takes effect only when `instance_charge_type` is set to `PrePaid`. Default value: `false`. Valid values:
1220
1584
  """
1221
1585
  return pulumi.get(self, "auto_renew")
1222
1586
 
@@ -1228,7 +1592,7 @@ class _NodePoolState:
1228
1592
  @pulumi.getter(name="autoRenewPeriod")
1229
1593
  def auto_renew_period(self) -> Optional[pulumi.Input[int]]:
1230
1594
  """
1231
- Node payment auto-renew period, one of `1`, `2`, `3`,`6`, `12`.
1595
+ The automatic renewal period of nodes in the node pool takes effect only when you select Prepaid and Automatic Renewal, and is a required value. When `PeriodUnit = Month`, the value range is {1, 2, 3, 6, 12}. Default value: 1.
1232
1596
  """
1233
1597
  return pulumi.get(self, "auto_renew_period")
1234
1598
 
@@ -1238,9 +1602,10 @@ class _NodePoolState:
1238
1602
 
1239
1603
  @property
1240
1604
  @pulumi.getter(name="cisEnabled")
1605
+ @_utilities.deprecated("""Field 'cis_enabled' has been deprecated from provider version 1.223.1. Whether enable worker node to support cis security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. Use `security_hardening_os` instead.""")
1241
1606
  def cis_enabled(self) -> Optional[pulumi.Input[bool]]:
1242
1607
  """
1243
- Whether enable worker node to support cis security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. See [CIS Reinforcement](https://help.aliyun.com/document_detail/223744.html).
1608
+ Whether enable worker node to support cis security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. Use `security_hardening_os` instead.
1244
1609
  """
1245
1610
  return pulumi.get(self, "cis_enabled")
1246
1611
 
@@ -1260,11 +1625,23 @@ class _NodePoolState:
1260
1625
  def cluster_id(self, value: Optional[pulumi.Input[str]]):
1261
1626
  pulumi.set(self, "cluster_id", value)
1262
1627
 
1628
+ @property
1629
+ @pulumi.getter(name="compensateWithOnDemand")
1630
+ def compensate_with_on_demand(self) -> Optional[pulumi.Input[bool]]:
1631
+ """
1632
+ Specifies whether to automatically create pay-as-you-go instances to meet the required number of ECS instances if preemptible instances cannot be created due to reasons such as cost or insufficient inventory. This parameter takes effect when you set `multi_az_policy` to `COST_OPTIMIZED`. Valid values: `true`: automatically creates pay-as-you-go instances to meet the required number of ECS instances if preemptible instances cannot be created. `false`: does not create pay-as-you-go instances to meet the required number of ECS instances if preemptible instances cannot be created.
1633
+ """
1634
+ return pulumi.get(self, "compensate_with_on_demand")
1635
+
1636
+ @compensate_with_on_demand.setter
1637
+ def compensate_with_on_demand(self, value: Optional[pulumi.Input[bool]]):
1638
+ pulumi.set(self, "compensate_with_on_demand", value)
1639
+
1263
1640
  @property
1264
1641
  @pulumi.getter(name="cpuPolicy")
1265
1642
  def cpu_policy(self) -> Optional[pulumi.Input[str]]:
1266
1643
  """
1267
- Kubelet cpu policy. For Kubernetes 1.12.6 and later, its valid value is either `static` or `none`. Default to `none` and modification is not supported.
1644
+ Node CPU management policies. Default value: `none`. When the cluster version is 1.12.6 or later, the following two policies are supported:
1268
1645
  """
1269
1646
  return pulumi.get(self, "cpu_policy")
1270
1647
 
@@ -1276,7 +1653,7 @@ class _NodePoolState:
1276
1653
  @pulumi.getter(name="dataDisks")
1277
1654
  def data_disks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['NodePoolDataDiskArgs']]]]:
1278
1655
  """
1279
- The data disk configurations of worker nodes, such as the disk type and disk size. See `data_disks` below.
1656
+ Configure the data disk of the node in the node pool. See `data_disks` below.
1280
1657
  """
1281
1658
  return pulumi.get(self, "data_disks")
1282
1659
 
@@ -1300,7 +1677,7 @@ class _NodePoolState:
1300
1677
  @pulumi.getter(name="desiredSize")
1301
1678
  def desired_size(self) -> Optional[pulumi.Input[int]]:
1302
1679
  """
1303
- The desired size of nodes of the node pool. From version 1.158.0, `desired_size` is not required.
1680
+ Number of expected nodes in the node pool.
1304
1681
  """
1305
1682
  return pulumi.get(self, "desired_size")
1306
1683
 
@@ -1308,6 +1685,18 @@ class _NodePoolState:
1308
1685
  def desired_size(self, value: Optional[pulumi.Input[int]]):
1309
1686
  pulumi.set(self, "desired_size", value)
1310
1687
 
1688
+ @property
1689
+ @pulumi.getter(name="forceDelete")
1690
+ def force_delete(self) -> Optional[pulumi.Input[bool]]:
1691
+ """
1692
+ Whether to force deletion.
1693
+ """
1694
+ return pulumi.get(self, "force_delete")
1695
+
1696
+ @force_delete.setter
1697
+ def force_delete(self, value: Optional[pulumi.Input[bool]]):
1698
+ pulumi.set(self, "force_delete", value)
1699
+
1311
1700
  @property
1312
1701
  @pulumi.getter(name="formatDisk")
1313
1702
  def format_disk(self) -> Optional[pulumi.Input[bool]]:
@@ -1324,7 +1713,7 @@ class _NodePoolState:
1324
1713
  @pulumi.getter(name="imageId")
1325
1714
  def image_id(self) -> Optional[pulumi.Input[str]]:
1326
1715
  """
1327
- Custom Image support. Must based on CentOS7 or AliyunLinux2.
1716
+ The custom image ID. The system-provided image is used by default.
1328
1717
  """
1329
1718
  return pulumi.get(self, "image_id")
1330
1719
 
@@ -1336,7 +1725,16 @@ class _NodePoolState:
1336
1725
  @pulumi.getter(name="imageType")
1337
1726
  def image_type(self) -> Optional[pulumi.Input[str]]:
1338
1727
  """
1339
- The image type, instead of `platform`. This field cannot be modified. One of `AliyunLinux`, `AliyunLinux3`, `AliyunLinux3Arm64`, `AliyunLinuxUEFI`, `CentOS`, `Windows`,`WindowsCore`,`AliyunLinux Qboot`,`ContainerOS`. If you select `Windows` or `WindowsCore`, the `passord` is required.
1728
+ The operating system image type and the `platform` parameter can be selected from the following values:
1729
+ - `AliyunLinux` : Alinux2 image.
1730
+ - `AliyunLinux3` : Alinux3 image.
1731
+ - `AliyunLinux3Arm64` : Alinux3 mirror ARM version.
1732
+ - `AliyunLinuxUEFI` : Alinux2 Image UEFI version.
1733
+ - `CentOS` : CentOS image.
1734
+ - `Windows` : Windows image.
1735
+ - `WindowsCore` : WindowsCore image.
1736
+ - `ContainerOS` : container-optimized image.
1737
+ - `Ubuntu`: (Available since v1.236.0) Ubuntu image.
1340
1738
  """
1341
1739
  return pulumi.get(self, "image_type")
1342
1740
 
@@ -1348,7 +1746,7 @@ class _NodePoolState:
1348
1746
  @pulumi.getter(name="installCloudMonitor")
1349
1747
  def install_cloud_monitor(self) -> Optional[pulumi.Input[bool]]:
1350
1748
  """
1351
- Install the cloud monitoring plug-in on the node, and you can view the monitoring information of the instance through the cloud monitoring console. Default is `true`.
1749
+ Whether to install cloud monitoring on the ECS node. After installation, you can view the monitoring information of the created ECS instance in the cloud monitoring console and recommend enable it. Default value: `false`. Valid values:
1352
1750
  """
1353
1751
  return pulumi.get(self, "install_cloud_monitor")
1354
1752
 
@@ -1372,7 +1770,7 @@ class _NodePoolState:
1372
1770
  @pulumi.getter(name="instanceTypes")
1373
1771
  def instance_types(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
1374
1772
  """
1375
- The instance type of worker node.
1773
+ In the node instance specification list, you can select multiple instance specifications as alternatives. When each node is created, it will try to purchase from the first specification until it is created successfully. The final purchased instance specifications may vary with inventory changes.
1376
1774
  """
1377
1775
  return pulumi.get(self, "instance_types")
1378
1776
 
@@ -1408,7 +1806,7 @@ class _NodePoolState:
1408
1806
  @pulumi.getter(name="internetMaxBandwidthOut")
1409
1807
  def internet_max_bandwidth_out(self) -> Optional[pulumi.Input[int]]:
1410
1808
  """
1411
- The maximum outbound bandwidth for the public network. Unit: Mbit/s. Valid values: 0 to 100.
1809
+ The maximum bandwidth of the public IP address of the node. The unit is Mbps(Mega bit per second). The value range is:\\[1,100\\]
1412
1810
  """
1413
1811
  return pulumi.get(self, "internet_max_bandwidth_out")
1414
1812
 
@@ -1432,7 +1830,7 @@ class _NodePoolState:
1432
1830
  @pulumi.getter(name="keyName")
1433
1831
  def key_name(self) -> Optional[pulumi.Input[str]]:
1434
1832
  """
1435
- 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. Only `key_name` is supported in the management node pool.
1833
+ The name of the key pair. When the node pool is a managed node pool, only `key_name` is supported.
1436
1834
  """
1437
1835
  return pulumi.get(self, "key_name")
1438
1836
 
@@ -1454,21 +1852,21 @@ class _NodePoolState:
1454
1852
 
1455
1853
  @property
1456
1854
  @pulumi.getter(name="kmsEncryptionContext")
1457
- def kms_encryption_context(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
1855
+ def kms_encryption_context(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
1458
1856
  """
1459
1857
  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.
1460
1858
  """
1461
1859
  return pulumi.get(self, "kms_encryption_context")
1462
1860
 
1463
1861
  @kms_encryption_context.setter
1464
- def kms_encryption_context(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
1862
+ def kms_encryption_context(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
1465
1863
  pulumi.set(self, "kms_encryption_context", value)
1466
1864
 
1467
1865
  @property
1468
1866
  @pulumi.getter(name="kubeletConfiguration")
1469
1867
  def kubelet_configuration(self) -> Optional[pulumi.Input['NodePoolKubeletConfigurationArgs']]:
1470
1868
  """
1471
- Kubelet configuration parameters for worker nodes. See `kubelet_configuration` below. More information in [Kubelet Configuration](https://kubernetes.io/docs/reference/config-api/kubelet-config.v1beta1/).
1869
+ Kubelet configuration parameters for worker nodes. See `kubelet_configuration` below. More information in [Kubelet Configuration](https://kubernetes.io/docs/reference/config-api/kubelet-config.v1beta1/). See `kubelet_configuration` below.
1472
1870
  """
1473
1871
  return pulumi.get(self, "kubelet_configuration")
1474
1872
 
@@ -1488,11 +1886,23 @@ class _NodePoolState:
1488
1886
  def labels(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['NodePoolLabelArgs']]]]):
1489
1887
  pulumi.set(self, "labels", value)
1490
1888
 
1889
+ @property
1890
+ @pulumi.getter(name="loginAsNonRoot")
1891
+ def login_as_non_root(self) -> Optional[pulumi.Input[bool]]:
1892
+ """
1893
+ Whether the ECS instance is logged on as a ecs-user user. Valid value: `true` and `false`.
1894
+ """
1895
+ return pulumi.get(self, "login_as_non_root")
1896
+
1897
+ @login_as_non_root.setter
1898
+ def login_as_non_root(self, value: Optional[pulumi.Input[bool]]):
1899
+ pulumi.set(self, "login_as_non_root", value)
1900
+
1491
1901
  @property
1492
1902
  @pulumi.getter
1493
1903
  def management(self) -> Optional[pulumi.Input['NodePoolManagementArgs']]:
1494
1904
  """
1495
- Managed node pool configuration. When using a managed node pool, the node key must use `key_name`. See `management` below.
1905
+ Managed node pool configuration. See `management` below.
1496
1906
  """
1497
1907
  return pulumi.get(self, "management")
1498
1908
 
@@ -1500,11 +1910,24 @@ class _NodePoolState:
1500
1910
  def management(self, value: Optional[pulumi.Input['NodePoolManagementArgs']]):
1501
1911
  pulumi.set(self, "management", value)
1502
1912
 
1913
+ @property
1914
+ @pulumi.getter(name="multiAzPolicy")
1915
+ def multi_az_policy(self) -> Optional[pulumi.Input[str]]:
1916
+ """
1917
+ The scaling policy for ECS instances in a multi-zone scaling group. Valid value: `PRIORITY`, `COST_OPTIMIZED` and `BALANCE`. `PRIORITY`: scales the capacity according to the virtual switches you define (VSwitchIds.N). When an ECS instance cannot be created in the zone where the higher-priority vSwitch is located, the next-priority vSwitch is automatically used to create an ECS instance. `COST_OPTIMIZED`: try to create by vCPU unit price from low to high. When the scaling configuration is configured with multiple instances of preemptible billing, preemptible instances are created first. You can continue to use the `CompensateWithOnDemand` parameter to specify whether to automatically try to create a preemptible instance by paying for it. It takes effect only when the scaling configuration has multi-instance specifications or preemptible instances. `BALANCE`: distributes ECS instances evenly among the multi-zone specified by the scaling group. If the zones become unbalanced due to insufficient inventory, you can use the API RebalanceInstances to balance resources.
1918
+ """
1919
+ return pulumi.get(self, "multi_az_policy")
1920
+
1921
+ @multi_az_policy.setter
1922
+ def multi_az_policy(self, value: Optional[pulumi.Input[str]]):
1923
+ pulumi.set(self, "multi_az_policy", value)
1924
+
1503
1925
  @property
1504
1926
  @pulumi.getter
1927
+ @_utilities.deprecated("""Field 'name' has been deprecated since provider version 1.219.0. New field 'node_pool_name' instead.""")
1505
1928
  def name(self) -> Optional[pulumi.Input[str]]:
1506
1929
  """
1507
- The name of node pool.
1930
+ . Field 'name' has been deprecated from provider version 1.219.0. New field 'node_pool_name' instead.
1508
1931
  """
1509
1932
  return pulumi.get(self, "name")
1510
1933
 
@@ -1514,13 +1937,11 @@ class _NodePoolState:
1514
1937
 
1515
1938
  @property
1516
1939
  @pulumi.getter(name="nodeCount")
1940
+ @_utilities.deprecated("""Field 'node_count' has been deprecated from provider version 1.158.0. New field 'desired_size' instead.""")
1517
1941
  def node_count(self) -> Optional[pulumi.Input[int]]:
1518
1942
  """
1519
1943
  The worker node number of the node pool. From version 1.111.0, `node_count` is not required.
1520
1944
  """
1521
- warnings.warn("""Field 'node_count' has been deprecated from provider version 1.158.0. New field 'desired_size' instead.""", DeprecationWarning)
1522
- pulumi.log.warn("""node_count is deprecated: Field 'node_count' has been deprecated from provider version 1.158.0. New field 'desired_size' instead.""")
1523
-
1524
1945
  return pulumi.get(self, "node_count")
1525
1946
 
1526
1947
  @node_count.setter
@@ -1531,7 +1952,10 @@ class _NodePoolState:
1531
1952
  @pulumi.getter(name="nodeNameMode")
1532
1953
  def node_name_mode(self) -> Optional[pulumi.Input[str]]:
1533
1954
  """
1534
- Each node name consists of a prefix, its private network IP, and a suffix, the input format is `customized,<prefix>,ip,<suffix>`. For example "customized,aliyun.com-,ip,-test", if the node private network IP address is 192.168.59.176, the prefix is aliyun.com-,and the suffix is -test, the node name will be aliyun.com-192.168.59.176-test.
1955
+ Each node name consists of a prefix, its private network IP, and a suffix, separated by commas. The input format is `customized,,ip,`.
1956
+ - The prefix and suffix can be composed of one or more parts separated by '.', each part can use lowercase letters, numbers and '-', and the beginning and end of the node name must be lowercase letters and numbers.
1957
+ - The node IP address is the complete private IP address of the node.
1958
+ - For example, if the string `customized,aliyun,ip,com` is passed in (where 'customized' and 'ip' are fixed strings, 'aliyun' is the prefix, and 'com' is the suffix), the name of the node is `aliyun192.168.xxx.xxxcom`.
1535
1959
  """
1536
1960
  return pulumi.get(self, "node_name_mode")
1537
1961
 
@@ -1539,11 +1963,59 @@ class _NodePoolState:
1539
1963
  def node_name_mode(self, value: Optional[pulumi.Input[str]]):
1540
1964
  pulumi.set(self, "node_name_mode", value)
1541
1965
 
1966
+ @property
1967
+ @pulumi.getter(name="nodePoolId")
1968
+ def node_pool_id(self) -> Optional[pulumi.Input[str]]:
1969
+ """
1970
+ The first ID of the resource.
1971
+ """
1972
+ return pulumi.get(self, "node_pool_id")
1973
+
1974
+ @node_pool_id.setter
1975
+ def node_pool_id(self, value: Optional[pulumi.Input[str]]):
1976
+ pulumi.set(self, "node_pool_id", value)
1977
+
1978
+ @property
1979
+ @pulumi.getter(name="nodePoolName")
1980
+ def node_pool_name(self) -> Optional[pulumi.Input[str]]:
1981
+ """
1982
+ The name of node pool.
1983
+ """
1984
+ return pulumi.get(self, "node_pool_name")
1985
+
1986
+ @node_pool_name.setter
1987
+ def node_pool_name(self, value: Optional[pulumi.Input[str]]):
1988
+ pulumi.set(self, "node_pool_name", value)
1989
+
1990
+ @property
1991
+ @pulumi.getter(name="onDemandBaseCapacity")
1992
+ def on_demand_base_capacity(self) -> Optional[pulumi.Input[int]]:
1993
+ """
1994
+ The minimum number of pay-as-you-go instances that must be kept in the scaling group. Valid values: 0 to 1000. If the number of pay-as-you-go instances is less than the value of this parameter, Auto Scaling preferably creates pay-as-you-go instances.
1995
+ """
1996
+ return pulumi.get(self, "on_demand_base_capacity")
1997
+
1998
+ @on_demand_base_capacity.setter
1999
+ def on_demand_base_capacity(self, value: Optional[pulumi.Input[int]]):
2000
+ pulumi.set(self, "on_demand_base_capacity", value)
2001
+
2002
+ @property
2003
+ @pulumi.getter(name="onDemandPercentageAboveBaseCapacity")
2004
+ def on_demand_percentage_above_base_capacity(self) -> Optional[pulumi.Input[int]]:
2005
+ """
2006
+ The percentage of pay-as-you-go instances among the extra instances that exceed the number specified by `on_demand_base_capacity`. Valid values: 0 to 100.
2007
+ """
2008
+ return pulumi.get(self, "on_demand_percentage_above_base_capacity")
2009
+
2010
+ @on_demand_percentage_above_base_capacity.setter
2011
+ def on_demand_percentage_above_base_capacity(self, value: Optional[pulumi.Input[int]]):
2012
+ pulumi.set(self, "on_demand_percentage_above_base_capacity", value)
2013
+
1542
2014
  @property
1543
2015
  @pulumi.getter
1544
2016
  def password(self) -> Optional[pulumi.Input[str]]:
1545
2017
  """
1546
- The password of ssh login cluster node. You have to specify one of `password` `key_name` `kms_encrypted_password` fields.
2018
+ The password of ssh login. You have to specify one of `password` and `key_name` fields. The password rule is 8 to 30 characters and contains at least three items (upper and lower case letters, numbers, and special symbols).
1547
2019
  """
1548
2020
  return pulumi.get(self, "password")
1549
2021
 
@@ -1555,7 +2027,7 @@ class _NodePoolState:
1555
2027
  @pulumi.getter
1556
2028
  def period(self) -> Optional[pulumi.Input[int]]:
1557
2029
  """
1558
- Node payment period. Its valid value is one of {1, 2, 3, 6, 12, 24, 36, 48, 60}.
2030
+ Node payment period. Its valid value is one of {1, 2, 3, 6, 12}.
1559
2031
  """
1560
2032
  return pulumi.get(self, "period")
1561
2033
 
@@ -1577,13 +2049,11 @@ class _NodePoolState:
1577
2049
 
1578
2050
  @property
1579
2051
  @pulumi.getter
2052
+ @_utilities.deprecated("""Field 'platform' has been deprecated from provider version 1.145.0. Operating system release, using `image_type` instead.""")
1580
2053
  def platform(self) -> Optional[pulumi.Input[str]]:
1581
2054
  """
1582
- The platform. One of `AliyunLinux`, `Windows`, `CentOS`, `WindowsCore`. If you select `Windows` or `WindowsCore`, the `passord` is required. Field `platform` has been deprecated from provider version 1.145.0. New field `image_type` instead.
2055
+ Operating system release, using `image_type` instead.
1583
2056
  """
1584
- warnings.warn("""Field 'platform' has been deprecated from provider version 1.145.0. New field 'image_type' instead""", DeprecationWarning)
1585
- pulumi.log.warn("""platform is deprecated: Field 'platform' has been deprecated from provider version 1.145.0. New field 'image_type' instead""")
1586
-
1587
2057
  return pulumi.get(self, "platform")
1588
2058
 
1589
2059
  @platform.setter
@@ -1591,22 +2061,34 @@ class _NodePoolState:
1591
2061
  pulumi.set(self, "platform", value)
1592
2062
 
1593
2063
  @property
1594
- @pulumi.getter(name="polardbIds")
1595
- def polardb_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
2064
+ @pulumi.getter(name="preUserData")
2065
+ def pre_user_data(self) -> Optional[pulumi.Input[str]]:
1596
2066
  """
1597
- PolarDB id list, You can choose which PolarDB whitelist to add instances to.
2067
+ Node pre custom data, base64-encoded, the script executed before the node is initialized.
1598
2068
  """
1599
- return pulumi.get(self, "polardb_ids")
2069
+ return pulumi.get(self, "pre_user_data")
1600
2070
 
1601
- @polardb_ids.setter
1602
- def polardb_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
1603
- pulumi.set(self, "polardb_ids", value)
2071
+ @pre_user_data.setter
2072
+ def pre_user_data(self, value: Optional[pulumi.Input[str]]):
2073
+ pulumi.set(self, "pre_user_data", value)
2074
+
2075
+ @property
2076
+ @pulumi.getter(name="privatePoolOptions")
2077
+ def private_pool_options(self) -> Optional[pulumi.Input['NodePoolPrivatePoolOptionsArgs']]:
2078
+ """
2079
+ Private node pool configuration. See `private_pool_options` below.
2080
+ """
2081
+ return pulumi.get(self, "private_pool_options")
2082
+
2083
+ @private_pool_options.setter
2084
+ def private_pool_options(self, value: Optional[pulumi.Input['NodePoolPrivatePoolOptionsArgs']]):
2085
+ pulumi.set(self, "private_pool_options", value)
1604
2086
 
1605
2087
  @property
1606
2088
  @pulumi.getter(name="rdsInstances")
1607
2089
  def rds_instances(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
1608
2090
  """
1609
- RDS instance list, You can choose which RDS instances whitelist to add instances to.
2091
+ The list of RDS instances.
1610
2092
  """
1611
2093
  return pulumi.get(self, "rds_instances")
1612
2094
 
@@ -1618,7 +2100,7 @@ class _NodePoolState:
1618
2100
  @pulumi.getter(name="resourceGroupId")
1619
2101
  def resource_group_id(self) -> Optional[pulumi.Input[str]]:
1620
2102
  """
1621
- The ID of the resource group,by default these cloud resources are automatically assigned to the default resource group.
2103
+ The ID of the resource group
1622
2104
  """
1623
2105
  return pulumi.get(self, "resource_group_id")
1624
2106
 
@@ -1630,7 +2112,7 @@ class _NodePoolState:
1630
2112
  @pulumi.getter(name="rollingPolicy")
1631
2113
  def rolling_policy(self) -> Optional[pulumi.Input['NodePoolRollingPolicyArgs']]:
1632
2114
  """
1633
- Rolling policy is used to specify the strategy when the node pool is rolling update. This field works when nodepool updating. See `rolling_policy` below.
2115
+ Rotary configuration. See `rolling_policy` below.
1634
2116
  """
1635
2117
  return pulumi.get(self, "rolling_policy")
1636
2118
 
@@ -1638,21 +2120,6 @@ class _NodePoolState:
1638
2120
  def rolling_policy(self, value: Optional[pulumi.Input['NodePoolRollingPolicyArgs']]):
1639
2121
  pulumi.set(self, "rolling_policy", value)
1640
2122
 
1641
- @property
1642
- @pulumi.getter(name="rolloutPolicy")
1643
- def rollout_policy(self) -> Optional[pulumi.Input['NodePoolRolloutPolicyArgs']]:
1644
- """
1645
- Rollout policy is used to specify the strategy when the node pool is rolling update. This field works when node pool updating. Please use `rolling_policy` to instead it from provider version 1.185.0. See `rollout_policy` below.
1646
- """
1647
- warnings.warn("""Field 'rollout_policy' has been deprecated from provider version 1.184.0. Please use new field 'rolling_policy' instead it to ensure the config takes effect""", DeprecationWarning)
1648
- pulumi.log.warn("""rollout_policy is deprecated: Field 'rollout_policy' has been deprecated from provider version 1.184.0. Please use new field 'rolling_policy' instead it to ensure the config takes effect""")
1649
-
1650
- return pulumi.get(self, "rollout_policy")
1651
-
1652
- @rollout_policy.setter
1653
- def rollout_policy(self, value: Optional[pulumi.Input['NodePoolRolloutPolicyArgs']]):
1654
- pulumi.set(self, "rollout_policy", value)
1655
-
1656
2123
  @property
1657
2124
  @pulumi.getter(name="runtimeName")
1658
2125
  def runtime_name(self) -> Optional[pulumi.Input[str]]:
@@ -1681,7 +2148,7 @@ class _NodePoolState:
1681
2148
  @pulumi.getter(name="scalingConfig")
1682
2149
  def scaling_config(self) -> Optional[pulumi.Input['NodePoolScalingConfigArgs']]:
1683
2150
  """
1684
- Auto scaling node pool configuration. See `scaling_config` below. With auto-scaling is enabled, the nodes in the node pool will be labeled with `k8s.aliyun.com=true` to prevent system pods such as coredns, metrics-servers from being scheduled to elastic nodes, and to prevent node shrinkage from causing business abnormalities.
2151
+ Automatic scaling configuration. See `scaling_config` below.
1685
2152
  """
1686
2153
  return pulumi.get(self, "scaling_config")
1687
2154
 
@@ -1693,7 +2160,7 @@ class _NodePoolState:
1693
2160
  @pulumi.getter(name="scalingGroupId")
1694
2161
  def scaling_group_id(self) -> Optional[pulumi.Input[str]]:
1695
2162
  """
1696
- The scaling group id.
2163
+ The ID of the scaling group.
1697
2164
  """
1698
2165
  return pulumi.get(self, "scaling_group_id")
1699
2166
 
@@ -1705,7 +2172,7 @@ class _NodePoolState:
1705
2172
  @pulumi.getter(name="scalingPolicy")
1706
2173
  def scaling_policy(self) -> Optional[pulumi.Input[str]]:
1707
2174
  """
1708
- The scaling mode. Valid values: `release`, `recycle`, default is `release`. Standard mode(release): Create and release ECS instances based on requests.Swift mode(recycle): Create, stop, and restart ECS instances based on needs. New ECS instances are only created when no stopped ECS instance is avalible. This mode further accelerates the scaling process. Apart from ECS instances that use local storage, when an ECS instance is stopped, you are only chatged for storage space.
2175
+ Scaling group mode, default value: `release`. Valid values:
1709
2176
  """
1710
2177
  return pulumi.get(self, "scaling_policy")
1711
2178
 
@@ -1715,13 +2182,11 @@ class _NodePoolState:
1715
2182
 
1716
2183
  @property
1717
2184
  @pulumi.getter(name="securityGroupId")
2185
+ @_utilities.deprecated("""Field 'security_group_id' has been deprecated from provider version 1.145.0. The security group ID of the node pool. This field has been replaced by `security_group_ids`, please use the `security_group_ids` field instead.""")
1718
2186
  def security_group_id(self) -> Optional[pulumi.Input[str]]:
1719
2187
  """
1720
- The security group id for worker node. Field `security_group_id` has been deprecated from provider version 1.145.0. New field `security_group_ids` instead.
2188
+ The security group ID of the node pool. This field has been replaced by `security_group_ids`, please use the `security_group_ids` field instead.
1721
2189
  """
1722
- warnings.warn("""Field 'security_group_id' has been deprecated from provider version 1.145.0. New field 'security_group_ids' instead""", DeprecationWarning)
1723
- pulumi.log.warn("""security_group_id is deprecated: Field 'security_group_id' has been deprecated from provider version 1.145.0. New field 'security_group_ids' instead""")
1724
-
1725
2190
  return pulumi.get(self, "security_group_id")
1726
2191
 
1727
2192
  @security_group_id.setter
@@ -1740,12 +2205,25 @@ class _NodePoolState:
1740
2205
  def security_group_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
1741
2206
  pulumi.set(self, "security_group_ids", value)
1742
2207
 
2208
+ @property
2209
+ @pulumi.getter(name="securityHardeningOs")
2210
+ def security_hardening_os(self) -> Optional[pulumi.Input[bool]]:
2211
+ """
2212
+ Alibaba Cloud OS security reinforcement. Default value: `false`. Value:
2213
+ """
2214
+ return pulumi.get(self, "security_hardening_os")
2215
+
2216
+ @security_hardening_os.setter
2217
+ def security_hardening_os(self, value: Optional[pulumi.Input[bool]]):
2218
+ pulumi.set(self, "security_hardening_os", value)
2219
+
1743
2220
  @property
1744
2221
  @pulumi.getter(name="socEnabled")
1745
2222
  def soc_enabled(self) -> Optional[pulumi.Input[bool]]:
1746
2223
  """
1747
- Whether enable worker node to support soc security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. See [SOC Reinforcement](https://help.aliyun.com/document_detail/196148.html).
1748
- > **NOTE:** It is forbidden to set both `cis_enabled` and `soc_enabled` to `true`at the same time.
2224
+ Whether enable worker node to support soc security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. See [SOC Reinforcement](https://help.aliyun.com/document_detail/196148.html).
2225
+
2226
+ > **NOTE:** It is forbidden to set both `security_hardening_os` and `soc_enabled` to `true` at the same time.
1749
2227
  """
1750
2228
  return pulumi.get(self, "soc_enabled")
1751
2229
 
@@ -1753,11 +2231,35 @@ class _NodePoolState:
1753
2231
  def soc_enabled(self, value: Optional[pulumi.Input[bool]]):
1754
2232
  pulumi.set(self, "soc_enabled", value)
1755
2233
 
2234
+ @property
2235
+ @pulumi.getter(name="spotInstancePools")
2236
+ def spot_instance_pools(self) -> Optional[pulumi.Input[int]]:
2237
+ """
2238
+ The number of instance types that are available. Auto Scaling creates preemptible instances of multiple instance types that are available at the lowest cost. Valid values: 1 to 10.
2239
+ """
2240
+ return pulumi.get(self, "spot_instance_pools")
2241
+
2242
+ @spot_instance_pools.setter
2243
+ def spot_instance_pools(self, value: Optional[pulumi.Input[int]]):
2244
+ pulumi.set(self, "spot_instance_pools", value)
2245
+
2246
+ @property
2247
+ @pulumi.getter(name="spotInstanceRemedy")
2248
+ def spot_instance_remedy(self) -> Optional[pulumi.Input[bool]]:
2249
+ """
2250
+ Specifies whether to supplement preemptible instances when the number of preemptible instances drops below the specified minimum number. If you set the value to true, Auto Scaling attempts to create a new preemptible instance when the system notifies that an existing preemptible instance is about to be reclaimed. Valid values: `true`: enables the supplementation of preemptible instances. `false`: disables the supplementation of preemptible instances.
2251
+ """
2252
+ return pulumi.get(self, "spot_instance_remedy")
2253
+
2254
+ @spot_instance_remedy.setter
2255
+ def spot_instance_remedy(self, value: Optional[pulumi.Input[bool]]):
2256
+ pulumi.set(self, "spot_instance_remedy", value)
2257
+
1756
2258
  @property
1757
2259
  @pulumi.getter(name="spotPriceLimits")
1758
2260
  def spot_price_limits(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['NodePoolSpotPriceLimitArgs']]]]:
1759
2261
  """
1760
- The maximum hourly price of the instance. This parameter takes effect only when `spot_strategy` is set to `SpotWithPriceLimit`. You could enable multiple spot instances by setting this field repeatedly. See `spot_price_limit` below.
2262
+ The current single preemptible instance type market price range configuration. See `spot_price_limit` below.
1761
2263
  """
1762
2264
  return pulumi.get(self, "spot_price_limits")
1763
2265
 
@@ -1769,7 +2271,10 @@ class _NodePoolState:
1769
2271
  @pulumi.getter(name="spotStrategy")
1770
2272
  def spot_strategy(self) -> Optional[pulumi.Input[str]]:
1771
2273
  """
1772
- The preemption policy for the pay-as-you-go instance. This parameter takes effect only when `instance_charge_type` is set to `PostPaid`. Valid value `SpotWithPriceLimit`,`SpotAsPriceGo` and `NoSpot`, default is `NoSpot`.
2274
+ The preemptible instance type. Value:
2275
+ - `NoSpot` : Non-preemptible instance.
2276
+ - `SpotWithPriceLimit` : Set the upper limit of the preemptible instance price.
2277
+ - `SpotAsPriceGo` : The system automatically bids, following the actual price of the current market.
1773
2278
  """
1774
2279
  return pulumi.get(self, "spot_strategy")
1775
2280
 
@@ -1777,11 +2282,35 @@ class _NodePoolState:
1777
2282
  def spot_strategy(self, value: Optional[pulumi.Input[str]]):
1778
2283
  pulumi.set(self, "spot_strategy", value)
1779
2284
 
2285
+ @property
2286
+ @pulumi.getter(name="systemDiskBurstingEnabled")
2287
+ def system_disk_bursting_enabled(self) -> Optional[pulumi.Input[bool]]:
2288
+ """
2289
+ Specifies whether to enable the burst feature for system disks. Valid values:`true`: enables the burst feature. `false`: disables the burst feature. This parameter is supported only when `system_disk_category` is set to `cloud_auto`.
2290
+ """
2291
+ return pulumi.get(self, "system_disk_bursting_enabled")
2292
+
2293
+ @system_disk_bursting_enabled.setter
2294
+ def system_disk_bursting_enabled(self, value: Optional[pulumi.Input[bool]]):
2295
+ pulumi.set(self, "system_disk_bursting_enabled", value)
2296
+
2297
+ @property
2298
+ @pulumi.getter(name="systemDiskCategories")
2299
+ def system_disk_categories(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
2300
+ """
2301
+ The multi-disk categories of the system disk. When a high-priority disk type cannot be used, Auto Scaling automatically tries to create a system disk with the next priority disk category. Valid values: `cloud`: cloud disk. `cloud_efficiency`: a high-efficiency cloud disk. `cloud_ssd`:SSD cloud disk. `cloud_essd`: ESSD cloud disk.
2302
+ """
2303
+ return pulumi.get(self, "system_disk_categories")
2304
+
2305
+ @system_disk_categories.setter
2306
+ def system_disk_categories(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
2307
+ pulumi.set(self, "system_disk_categories", value)
2308
+
1780
2309
  @property
1781
2310
  @pulumi.getter(name="systemDiskCategory")
1782
2311
  def system_disk_category(self) -> Optional[pulumi.Input[str]]:
1783
2312
  """
1784
- The system disk category of worker node. Its valid value are `cloud_ssd`, `cloud_efficiency` and `cloud_essd`. Default to `cloud_efficiency`.
2313
+ The system disk category of worker node. Its valid value are `cloud_ssd`, `cloud_efficiency`, `cloud_essd` and `cloud_auto`.
1785
2314
  """
1786
2315
  return pulumi.get(self, "system_disk_category")
1787
2316
 
@@ -1793,7 +2322,7 @@ class _NodePoolState:
1793
2322
  @pulumi.getter(name="systemDiskEncryptAlgorithm")
1794
2323
  def system_disk_encrypt_algorithm(self) -> Optional[pulumi.Input[str]]:
1795
2324
  """
1796
- The encryption Algorithm for Encrypting System Disk. It takes effect when system_disk_encrypted is true. Valid values `aes-256` and `sm4-128`.
2325
+ The encryption algorithm used by the system disk. Value range: aes-256.
1797
2326
  """
1798
2327
  return pulumi.get(self, "system_disk_encrypt_algorithm")
1799
2328
 
@@ -1805,7 +2334,7 @@ class _NodePoolState:
1805
2334
  @pulumi.getter(name="systemDiskEncrypted")
1806
2335
  def system_disk_encrypted(self) -> Optional[pulumi.Input[bool]]:
1807
2336
  """
1808
- Whether to enable system disk encryption.
2337
+ Whether to encrypt the system disk. Value range: `true`: encryption. `false`: Do not encrypt.
1809
2338
  """
1810
2339
  return pulumi.get(self, "system_disk_encrypted")
1811
2340
 
@@ -1817,7 +2346,7 @@ class _NodePoolState:
1817
2346
  @pulumi.getter(name="systemDiskKmsKey")
1818
2347
  def system_disk_kms_key(self) -> Optional[pulumi.Input[str]]:
1819
2348
  """
1820
- The kms key id used to encrypt the system disk. It takes effect when system_disk_encrypted is true.
2349
+ The ID of the KMS key used by the system disk.
1821
2350
  """
1822
2351
  return pulumi.get(self, "system_disk_kms_key")
1823
2352
 
@@ -1829,7 +2358,11 @@ class _NodePoolState:
1829
2358
  @pulumi.getter(name="systemDiskPerformanceLevel")
1830
2359
  def system_disk_performance_level(self) -> Optional[pulumi.Input[str]]:
1831
2360
  """
1832
- The performance of system disk, only valid for ESSD disk. You have to specify one of `PL0` `PL1` `PL2` `PL3` fields.
2361
+ The system disk performance of the node takes effect only for the ESSD disk.
2362
+ - `PL0`: maximum random read/write IOPS 10000 for a single disk.
2363
+ - `PL1`: maximum random read/write IOPS 50000 for a single disk.
2364
+ - `PL2`: highest random read/write IOPS 100000 for a single disk.
2365
+ - `PL3`: maximum random read/write IOPS 1 million for a single disk.
1833
2366
  """
1834
2367
  return pulumi.get(self, "system_disk_performance_level")
1835
2368
 
@@ -1837,6 +2370,18 @@ class _NodePoolState:
1837
2370
  def system_disk_performance_level(self, value: Optional[pulumi.Input[str]]):
1838
2371
  pulumi.set(self, "system_disk_performance_level", value)
1839
2372
 
2373
+ @property
2374
+ @pulumi.getter(name="systemDiskProvisionedIops")
2375
+ def system_disk_provisioned_iops(self) -> Optional[pulumi.Input[int]]:
2376
+ """
2377
+ The predefined IOPS of a system disk. Valid values: 0 to min{50,000, 1,000 × Capacity - Baseline IOPS}. Baseline IOPS = min{1,800 + 50 × Capacity, 50,000}. This parameter is supported only when `system_disk_category` is set to `cloud_auto`.
2378
+ """
2379
+ return pulumi.get(self, "system_disk_provisioned_iops")
2380
+
2381
+ @system_disk_provisioned_iops.setter
2382
+ def system_disk_provisioned_iops(self, value: Optional[pulumi.Input[int]]):
2383
+ pulumi.set(self, "system_disk_provisioned_iops", value)
2384
+
1840
2385
  @property
1841
2386
  @pulumi.getter(name="systemDiskSize")
1842
2387
  def system_disk_size(self) -> Optional[pulumi.Input[int]]:
@@ -1853,7 +2398,7 @@ class _NodePoolState:
1853
2398
  @pulumi.getter(name="systemDiskSnapshotPolicyId")
1854
2399
  def system_disk_snapshot_policy_id(self) -> Optional[pulumi.Input[str]]:
1855
2400
  """
1856
- The system disk snapshot policy id.
2401
+ The ID of the automatic snapshot policy used by the system disk.
1857
2402
  """
1858
2403
  return pulumi.get(self, "system_disk_snapshot_policy_id")
1859
2404
 
@@ -1863,14 +2408,14 @@ class _NodePoolState:
1863
2408
 
1864
2409
  @property
1865
2410
  @pulumi.getter
1866
- def tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
2411
+ def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
1867
2412
  """
1868
- A Map of tags to assign to the resource. It will be applied for ECS instances finally. Detailed below.
2413
+ Add tags only for ECS instances. The maximum length of the tag key is 128 characters. The tag key and value cannot start with aliyun or acs:, or contain https:// or http://.
1869
2414
  """
1870
2415
  return pulumi.get(self, "tags")
1871
2416
 
1872
2417
  @tags.setter
1873
- def tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
2418
+ def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
1874
2419
  pulumi.set(self, "tags", value)
1875
2420
 
1876
2421
  @property
@@ -1885,11 +2430,23 @@ class _NodePoolState:
1885
2430
  def taints(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['NodePoolTaintArgs']]]]):
1886
2431
  pulumi.set(self, "taints", value)
1887
2432
 
2433
+ @property
2434
+ @pulumi.getter(name="teeConfig")
2435
+ def tee_config(self) -> Optional[pulumi.Input['NodePoolTeeConfigArgs']]:
2436
+ """
2437
+ The configuration about confidential computing for the cluster. See `tee_config` below.
2438
+ """
2439
+ return pulumi.get(self, "tee_config")
2440
+
2441
+ @tee_config.setter
2442
+ def tee_config(self, value: Optional[pulumi.Input['NodePoolTeeConfigArgs']]):
2443
+ pulumi.set(self, "tee_config", value)
2444
+
1888
2445
  @property
1889
2446
  @pulumi.getter
1890
2447
  def unschedulable(self) -> Optional[pulumi.Input[bool]]:
1891
2448
  """
1892
- Set the newly added node as unschedulable. If you want to open the scheduling option, you can open it in the node list of the console. If you are using an auto-scaling node pool, the setting will not take effect. Default is `false`.
2449
+ Whether the node after expansion can be scheduled.
1893
2450
  """
1894
2451
  return pulumi.get(self, "unschedulable")
1895
2452
 
@@ -1897,11 +2454,23 @@ class _NodePoolState:
1897
2454
  def unschedulable(self, value: Optional[pulumi.Input[bool]]):
1898
2455
  pulumi.set(self, "unschedulable", value)
1899
2456
 
2457
+ @property
2458
+ @pulumi.getter(name="updateNodes")
2459
+ def update_nodes(self) -> Optional[pulumi.Input[bool]]:
2460
+ """
2461
+ Synchronously update node labels and taints.
2462
+ """
2463
+ return pulumi.get(self, "update_nodes")
2464
+
2465
+ @update_nodes.setter
2466
+ def update_nodes(self, value: Optional[pulumi.Input[bool]]):
2467
+ pulumi.set(self, "update_nodes", value)
2468
+
1900
2469
  @property
1901
2470
  @pulumi.getter(name="userData")
1902
2471
  def user_data(self) -> Optional[pulumi.Input[str]]:
1903
2472
  """
1904
- Windows instances support batch and PowerShell scripts. If your script file is larger than 1 KB, we recommend that you upload the script to Object Storage Service (OSS) and pull it through the internal endpoint of your OSS bucket.
2473
+ Node custom data, base64-encoded.
1905
2474
  """
1906
2475
  return pulumi.get(self, "user_data")
1907
2476
 
@@ -1909,18 +2478,6 @@ class _NodePoolState:
1909
2478
  def user_data(self, value: Optional[pulumi.Input[str]]):
1910
2479
  pulumi.set(self, "user_data", value)
1911
2480
 
1912
- @property
1913
- @pulumi.getter(name="vpcId")
1914
- def vpc_id(self) -> Optional[pulumi.Input[str]]:
1915
- """
1916
- The VPC of the nodes in the node pool.
1917
- """
1918
- return pulumi.get(self, "vpc_id")
1919
-
1920
- @vpc_id.setter
1921
- def vpc_id(self, value: Optional[pulumi.Input[str]]):
1922
- pulumi.set(self, "vpc_id", value)
1923
-
1924
2481
  @property
1925
2482
  @pulumi.getter(name="vswitchIds")
1926
2483
  def vswitch_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
@@ -1943,10 +2500,12 @@ class NodePool(pulumi.CustomResource):
1943
2500
  auto_renew_period: Optional[pulumi.Input[int]] = None,
1944
2501
  cis_enabled: Optional[pulumi.Input[bool]] = None,
1945
2502
  cluster_id: Optional[pulumi.Input[str]] = None,
2503
+ compensate_with_on_demand: Optional[pulumi.Input[bool]] = None,
1946
2504
  cpu_policy: Optional[pulumi.Input[str]] = None,
1947
- data_disks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NodePoolDataDiskArgs']]]]] = None,
2505
+ data_disks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NodePoolDataDiskArgs', 'NodePoolDataDiskArgsDict']]]]] = None,
1948
2506
  deployment_set_id: Optional[pulumi.Input[str]] = None,
1949
2507
  desired_size: Optional[pulumi.Input[int]] = None,
2508
+ force_delete: Optional[pulumi.Input[bool]] = None,
1950
2509
  format_disk: Optional[pulumi.Input[bool]] = None,
1951
2510
  image_id: Optional[pulumi.Input[str]] = None,
1952
2511
  image_type: Optional[pulumi.Input[str]] = None,
@@ -1959,116 +2518,164 @@ class NodePool(pulumi.CustomResource):
1959
2518
  keep_instance_name: Optional[pulumi.Input[bool]] = None,
1960
2519
  key_name: Optional[pulumi.Input[str]] = None,
1961
2520
  kms_encrypted_password: Optional[pulumi.Input[str]] = None,
1962
- kms_encryption_context: Optional[pulumi.Input[Mapping[str, Any]]] = None,
1963
- kubelet_configuration: Optional[pulumi.Input[pulumi.InputType['NodePoolKubeletConfigurationArgs']]] = None,
1964
- labels: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NodePoolLabelArgs']]]]] = None,
1965
- management: Optional[pulumi.Input[pulumi.InputType['NodePoolManagementArgs']]] = None,
2521
+ kms_encryption_context: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
2522
+ kubelet_configuration: Optional[pulumi.Input[Union['NodePoolKubeletConfigurationArgs', 'NodePoolKubeletConfigurationArgsDict']]] = None,
2523
+ labels: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NodePoolLabelArgs', 'NodePoolLabelArgsDict']]]]] = None,
2524
+ login_as_non_root: Optional[pulumi.Input[bool]] = None,
2525
+ management: Optional[pulumi.Input[Union['NodePoolManagementArgs', 'NodePoolManagementArgsDict']]] = None,
2526
+ multi_az_policy: Optional[pulumi.Input[str]] = None,
1966
2527
  name: Optional[pulumi.Input[str]] = None,
1967
2528
  node_count: Optional[pulumi.Input[int]] = None,
1968
2529
  node_name_mode: Optional[pulumi.Input[str]] = None,
2530
+ node_pool_name: Optional[pulumi.Input[str]] = None,
2531
+ on_demand_base_capacity: Optional[pulumi.Input[int]] = None,
2532
+ on_demand_percentage_above_base_capacity: Optional[pulumi.Input[int]] = None,
1969
2533
  password: Optional[pulumi.Input[str]] = None,
1970
2534
  period: Optional[pulumi.Input[int]] = None,
1971
2535
  period_unit: Optional[pulumi.Input[str]] = None,
1972
2536
  platform: Optional[pulumi.Input[str]] = None,
1973
- polardb_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2537
+ pre_user_data: Optional[pulumi.Input[str]] = None,
2538
+ private_pool_options: Optional[pulumi.Input[Union['NodePoolPrivatePoolOptionsArgs', 'NodePoolPrivatePoolOptionsArgsDict']]] = None,
1974
2539
  rds_instances: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1975
2540
  resource_group_id: Optional[pulumi.Input[str]] = None,
1976
- rolling_policy: Optional[pulumi.Input[pulumi.InputType['NodePoolRollingPolicyArgs']]] = None,
1977
- rollout_policy: Optional[pulumi.Input[pulumi.InputType['NodePoolRolloutPolicyArgs']]] = None,
2541
+ rolling_policy: Optional[pulumi.Input[Union['NodePoolRollingPolicyArgs', 'NodePoolRollingPolicyArgsDict']]] = None,
1978
2542
  runtime_name: Optional[pulumi.Input[str]] = None,
1979
2543
  runtime_version: Optional[pulumi.Input[str]] = None,
1980
- scaling_config: Optional[pulumi.Input[pulumi.InputType['NodePoolScalingConfigArgs']]] = None,
2544
+ scaling_config: Optional[pulumi.Input[Union['NodePoolScalingConfigArgs', 'NodePoolScalingConfigArgsDict']]] = None,
1981
2545
  scaling_policy: Optional[pulumi.Input[str]] = None,
1982
2546
  security_group_id: Optional[pulumi.Input[str]] = None,
1983
2547
  security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2548
+ security_hardening_os: Optional[pulumi.Input[bool]] = None,
1984
2549
  soc_enabled: Optional[pulumi.Input[bool]] = None,
1985
- spot_price_limits: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NodePoolSpotPriceLimitArgs']]]]] = None,
2550
+ spot_instance_pools: Optional[pulumi.Input[int]] = None,
2551
+ spot_instance_remedy: Optional[pulumi.Input[bool]] = None,
2552
+ spot_price_limits: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NodePoolSpotPriceLimitArgs', 'NodePoolSpotPriceLimitArgsDict']]]]] = None,
1986
2553
  spot_strategy: Optional[pulumi.Input[str]] = None,
2554
+ system_disk_bursting_enabled: Optional[pulumi.Input[bool]] = None,
2555
+ system_disk_categories: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1987
2556
  system_disk_category: Optional[pulumi.Input[str]] = None,
1988
2557
  system_disk_encrypt_algorithm: Optional[pulumi.Input[str]] = None,
1989
2558
  system_disk_encrypted: Optional[pulumi.Input[bool]] = None,
1990
2559
  system_disk_kms_key: Optional[pulumi.Input[str]] = None,
1991
2560
  system_disk_performance_level: Optional[pulumi.Input[str]] = None,
2561
+ system_disk_provisioned_iops: Optional[pulumi.Input[int]] = None,
1992
2562
  system_disk_size: Optional[pulumi.Input[int]] = None,
1993
2563
  system_disk_snapshot_policy_id: Optional[pulumi.Input[str]] = None,
1994
- tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
1995
- taints: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NodePoolTaintArgs']]]]] = None,
2564
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
2565
+ taints: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NodePoolTaintArgs', 'NodePoolTaintArgsDict']]]]] = None,
2566
+ tee_config: Optional[pulumi.Input[Union['NodePoolTeeConfigArgs', 'NodePoolTeeConfigArgsDict']]] = None,
1996
2567
  unschedulable: Optional[pulumi.Input[bool]] = None,
2568
+ update_nodes: Optional[pulumi.Input[bool]] = None,
1997
2569
  user_data: Optional[pulumi.Input[str]] = None,
1998
2570
  vswitch_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1999
2571
  __props__=None):
2000
2572
  """
2001
2573
  ## Example Usage
2002
2574
 
2003
- The managed cluster configuration,
2575
+ Basic Usage
2004
2576
 
2005
2577
  ## Import
2006
2578
 
2007
- Cluster nodepool can be imported using the id, e.g. Then complete the nodepool.tf accords to the result of `pulumi preview`.
2579
+ ACK Nodepool can be imported using the id, e.g.
2008
2580
 
2009
2581
  ```sh
2010
- $ pulumi import alicloud:cs/nodePool:NodePool custom_nodepool cluster_id:nodepool_id
2582
+ $ pulumi import alicloud:cs/nodePool:NodePool example <cluster_id>:<node_pool_id>
2011
2583
  ```
2012
2584
 
2013
2585
  :param str resource_name: The name of the resource.
2014
2586
  :param pulumi.ResourceOptions opts: Options for the resource.
2015
- :param pulumi.Input[bool] auto_renew: Enable Node payment auto-renew, default is `false`.
2016
- :param pulumi.Input[int] auto_renew_period: Node payment auto-renew period, one of `1`, `2`, `3`,`6`, `12`.
2017
- :param pulumi.Input[bool] cis_enabled: Whether enable worker node to support cis security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. See [CIS Reinforcement](https://help.aliyun.com/document_detail/223744.html).
2587
+ :param pulumi.Input[bool] auto_renew: Whether to enable automatic renewal for nodes in the node pool takes effect only when `instance_charge_type` is set to `PrePaid`. Default value: `false`. Valid values:
2588
+ :param pulumi.Input[int] auto_renew_period: The automatic renewal period of nodes in the node pool takes effect only when you select Prepaid and Automatic Renewal, and is a required value. When `PeriodUnit = Month`, the value range is {1, 2, 3, 6, 12}. Default value: 1.
2589
+ :param pulumi.Input[bool] cis_enabled: Whether enable worker node to support cis security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. Use `security_hardening_os` instead.
2018
2590
  :param pulumi.Input[str] cluster_id: The id of kubernetes cluster.
2019
- :param pulumi.Input[str] cpu_policy: Kubelet cpu policy. For Kubernetes 1.12.6 and later, its valid value is either `static` or `none`. Default to `none` and modification is not supported.
2020
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NodePoolDataDiskArgs']]]] data_disks: The data disk configurations of worker nodes, such as the disk type and disk size. See `data_disks` below.
2591
+ :param pulumi.Input[bool] compensate_with_on_demand: Specifies whether to automatically create pay-as-you-go instances to meet the required number of ECS instances if preemptible instances cannot be created due to reasons such as cost or insufficient inventory. This parameter takes effect when you set `multi_az_policy` to `COST_OPTIMIZED`. Valid values: `true`: automatically creates pay-as-you-go instances to meet the required number of ECS instances if preemptible instances cannot be created. `false`: does not create pay-as-you-go instances to meet the required number of ECS instances if preemptible instances cannot be created.
2592
+ :param pulumi.Input[str] cpu_policy: Node CPU management policies. Default value: `none`. When the cluster version is 1.12.6 or later, the following two policies are supported:
2593
+ :param pulumi.Input[Sequence[pulumi.Input[Union['NodePoolDataDiskArgs', 'NodePoolDataDiskArgsDict']]]] data_disks: Configure the data disk of the node in the node pool. See `data_disks` below.
2021
2594
  :param pulumi.Input[str] deployment_set_id: The deployment set of node pool. Specify the deploymentSet to ensure that the nodes in the node pool can be distributed on different physical machines.
2022
- :param pulumi.Input[int] desired_size: The desired size of nodes of the node pool. From version 1.158.0, `desired_size` is not required.
2595
+ :param pulumi.Input[int] desired_size: Number of expected nodes in the node pool.
2596
+ :param pulumi.Input[bool] force_delete: Whether to force deletion.
2023
2597
  :param pulumi.Input[bool] format_disk: After you select this check box, if data disks have been attached to the specified ECS instances and the file system of the last data disk is uninitialized, the system automatically formats the last data disk to ext4 and mounts the data disk to /var/lib/docker and /var/lib/kubelet. The original data on the disk will be cleared. Make sure that you back up data in advance. If no data disk is mounted on the ECS instance, no new data disk will be purchased. Default is `false`.
2024
- :param pulumi.Input[str] image_id: Custom Image support. Must based on CentOS7 or AliyunLinux2.
2025
- :param pulumi.Input[str] image_type: The image type, instead of `platform`. This field cannot be modified. One of `AliyunLinux`, `AliyunLinux3`, `AliyunLinux3Arm64`, `AliyunLinuxUEFI`, `CentOS`, `Windows`,`WindowsCore`,`AliyunLinux Qboot`,`ContainerOS`. If you select `Windows` or `WindowsCore`, the `passord` is required.
2026
- :param pulumi.Input[bool] install_cloud_monitor: Install the cloud monitoring plug-in on the node, and you can view the monitoring information of the instance through the cloud monitoring console. Default is `true`.
2598
+ :param pulumi.Input[str] image_id: The custom image ID. The system-provided image is used by default.
2599
+ :param pulumi.Input[str] image_type: The operating system image type and the `platform` parameter can be selected from the following values:
2600
+ - `AliyunLinux` : Alinux2 image.
2601
+ - `AliyunLinux3` : Alinux3 image.
2602
+ - `AliyunLinux3Arm64` : Alinux3 mirror ARM version.
2603
+ - `AliyunLinuxUEFI` : Alinux2 Image UEFI version.
2604
+ - `CentOS` : CentOS image.
2605
+ - `Windows` : Windows image.
2606
+ - `WindowsCore` : WindowsCore image.
2607
+ - `ContainerOS` : container-optimized image.
2608
+ - `Ubuntu`: (Available since v1.236.0) Ubuntu image.
2609
+ :param pulumi.Input[bool] install_cloud_monitor: Whether to install cloud monitoring on the ECS node. After installation, you can view the monitoring information of the created ECS instance in the cloud monitoring console and recommend enable it. Default value: `false`. Valid values:
2027
2610
  :param pulumi.Input[str] instance_charge_type: Node payment type. Valid values: `PostPaid`, `PrePaid`, default is `PostPaid`. If value is `PrePaid`, the arguments `period`, `period_unit`, `auto_renew` and `auto_renew_period` are required.
2028
- :param pulumi.Input[Sequence[pulumi.Input[str]]] instance_types: The instance type of worker node.
2611
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] instance_types: In the node instance specification list, you can select multiple instance specifications as alternatives. When each node is created, it will try to purchase from the first specification until it is created successfully. The final purchased instance specifications may vary with inventory changes.
2029
2612
  :param pulumi.Input[Sequence[pulumi.Input[str]]] instances: The instance list. Add existing nodes under the same cluster VPC to the node pool.
2030
2613
  :param pulumi.Input[str] internet_charge_type: The billing method for network usage. Valid values `PayByBandwidth` and `PayByTraffic`. Conflict with `eip_internet_charge_type`, EIP and public network IP can only choose one.
2031
- :param pulumi.Input[int] internet_max_bandwidth_out: The maximum outbound bandwidth for the public network. Unit: Mbit/s. Valid values: 0 to 100.
2614
+ :param pulumi.Input[int] internet_max_bandwidth_out: The maximum bandwidth of the public IP address of the node. The unit is Mbps(Mega bit per second). The value range is:\\[1,100\\]
2032
2615
  :param pulumi.Input[bool] keep_instance_name: Add an existing instance to the node pool, whether to keep the original instance name. It is recommended to set to `true`.
2033
- :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. Only `key_name` is supported in the management node pool.
2616
+ :param pulumi.Input[str] key_name: The name of the key pair. When the node pool is a managed node pool, only `key_name` is supported.
2034
2617
  :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.
2035
- :param pulumi.Input[Mapping[str, Any]] 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.
2036
- :param pulumi.Input[pulumi.InputType['NodePoolKubeletConfigurationArgs']] kubelet_configuration: Kubelet configuration parameters for worker nodes. See `kubelet_configuration` below. More information in [Kubelet Configuration](https://kubernetes.io/docs/reference/config-api/kubelet-config.v1beta1/).
2037
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NodePoolLabelArgs']]]] labels: A List of Kubernetes labels to assign to the nodes . Only labels that are applied with the ACK API are managed by this argument. Detailed below. More information in [Labels](https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/). See `labels` below.
2038
- :param pulumi.Input[pulumi.InputType['NodePoolManagementArgs']] management: Managed node pool configuration. When using a managed node pool, the node key must use `key_name`. See `management` below.
2039
- :param pulumi.Input[str] name: The name of node pool.
2618
+ :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.
2619
+ :param pulumi.Input[Union['NodePoolKubeletConfigurationArgs', 'NodePoolKubeletConfigurationArgsDict']] kubelet_configuration: Kubelet configuration parameters for worker nodes. See `kubelet_configuration` below. More information in [Kubelet Configuration](https://kubernetes.io/docs/reference/config-api/kubelet-config.v1beta1/). See `kubelet_configuration` below.
2620
+ :param pulumi.Input[Sequence[pulumi.Input[Union['NodePoolLabelArgs', 'NodePoolLabelArgsDict']]]] labels: A List of Kubernetes labels to assign to the nodes . Only labels that are applied with the ACK API are managed by this argument. Detailed below. More information in [Labels](https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/). See `labels` below.
2621
+ :param pulumi.Input[bool] login_as_non_root: Whether the ECS instance is logged on as a ecs-user user. Valid value: `true` and `false`.
2622
+ :param pulumi.Input[Union['NodePoolManagementArgs', 'NodePoolManagementArgsDict']] management: Managed node pool configuration. See `management` below.
2623
+ :param pulumi.Input[str] multi_az_policy: The scaling policy for ECS instances in a multi-zone scaling group. Valid value: `PRIORITY`, `COST_OPTIMIZED` and `BALANCE`. `PRIORITY`: scales the capacity according to the virtual switches you define (VSwitchIds.N). When an ECS instance cannot be created in the zone where the higher-priority vSwitch is located, the next-priority vSwitch is automatically used to create an ECS instance. `COST_OPTIMIZED`: try to create by vCPU unit price from low to high. When the scaling configuration is configured with multiple instances of preemptible billing, preemptible instances are created first. You can continue to use the `CompensateWithOnDemand` parameter to specify whether to automatically try to create a preemptible instance by paying for it. It takes effect only when the scaling configuration has multi-instance specifications or preemptible instances. `BALANCE`: distributes ECS instances evenly among the multi-zone specified by the scaling group. If the zones become unbalanced due to insufficient inventory, you can use the API RebalanceInstances to balance resources.
2624
+ :param pulumi.Input[str] name: . Field 'name' has been deprecated from provider version 1.219.0. New field 'node_pool_name' instead.
2040
2625
  :param pulumi.Input[int] node_count: The worker node number of the node pool. From version 1.111.0, `node_count` is not required.
2041
- :param pulumi.Input[str] node_name_mode: Each node name consists of a prefix, its private network IP, and a suffix, the input format is `customized,<prefix>,ip,<suffix>`. For example "customized,aliyun.com-,ip,-test", if the node private network IP address is 192.168.59.176, the prefix is aliyun.com-,and the suffix is -test, the node name will be aliyun.com-192.168.59.176-test.
2042
- :param pulumi.Input[str] password: The password of ssh login cluster node. You have to specify one of `password` `key_name` `kms_encrypted_password` fields.
2043
- :param pulumi.Input[int] period: Node payment period. Its valid value is one of {1, 2, 3, 6, 12, 24, 36, 48, 60}.
2626
+ :param pulumi.Input[str] node_name_mode: Each node name consists of a prefix, its private network IP, and a suffix, separated by commas. The input format is `customized,,ip,`.
2627
+ - The prefix and suffix can be composed of one or more parts separated by '.', each part can use lowercase letters, numbers and '-', and the beginning and end of the node name must be lowercase letters and numbers.
2628
+ - The node IP address is the complete private IP address of the node.
2629
+ - For example, if the string `customized,aliyun,ip,com` is passed in (where 'customized' and 'ip' are fixed strings, 'aliyun' is the prefix, and 'com' is the suffix), the name of the node is `aliyun192.168.xxx.xxxcom`.
2630
+ :param pulumi.Input[str] node_pool_name: The name of node pool.
2631
+ :param pulumi.Input[int] on_demand_base_capacity: The minimum number of pay-as-you-go instances that must be kept in the scaling group. Valid values: 0 to 1000. If the number of pay-as-you-go instances is less than the value of this parameter, Auto Scaling preferably creates pay-as-you-go instances.
2632
+ :param pulumi.Input[int] on_demand_percentage_above_base_capacity: The percentage of pay-as-you-go instances among the extra instances that exceed the number specified by `on_demand_base_capacity`. Valid values: 0 to 100.
2633
+ :param pulumi.Input[str] password: The password of ssh login. You have to specify one of `password` and `key_name` fields. The password rule is 8 to 30 characters and contains at least three items (upper and lower case letters, numbers, and special symbols).
2634
+ :param pulumi.Input[int] period: Node payment period. Its valid value is one of {1, 2, 3, 6, 12}.
2044
2635
  :param pulumi.Input[str] period_unit: Node payment period unit, valid value: `Month`. Default is `Month`.
2045
- :param pulumi.Input[str] platform: The platform. One of `AliyunLinux`, `Windows`, `CentOS`, `WindowsCore`. If you select `Windows` or `WindowsCore`, the `passord` is required. Field `platform` has been deprecated from provider version 1.145.0. New field `image_type` instead.
2046
- :param pulumi.Input[Sequence[pulumi.Input[str]]] polardb_ids: PolarDB id list, You can choose which PolarDB whitelist to add instances to.
2047
- :param pulumi.Input[Sequence[pulumi.Input[str]]] rds_instances: RDS instance list, You can choose which RDS instances whitelist to add instances to.
2048
- :param pulumi.Input[str] resource_group_id: The ID of the resource group,by default these cloud resources are automatically assigned to the default resource group.
2049
- :param pulumi.Input[pulumi.InputType['NodePoolRollingPolicyArgs']] rolling_policy: Rolling policy is used to specify the strategy when the node pool is rolling update. This field works when nodepool updating. See `rolling_policy` below.
2050
- :param pulumi.Input[pulumi.InputType['NodePoolRolloutPolicyArgs']] rollout_policy: Rollout policy is used to specify the strategy when the node pool is rolling update. This field works when node pool updating. Please use `rolling_policy` to instead it from provider version 1.185.0. See `rollout_policy` below.
2636
+ :param pulumi.Input[str] platform: Operating system release, using `image_type` instead.
2637
+ :param pulumi.Input[str] pre_user_data: Node pre custom data, base64-encoded, the script executed before the node is initialized.
2638
+ :param pulumi.Input[Union['NodePoolPrivatePoolOptionsArgs', 'NodePoolPrivatePoolOptionsArgsDict']] private_pool_options: Private node pool configuration. See `private_pool_options` below.
2639
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] rds_instances: The list of RDS instances.
2640
+ :param pulumi.Input[str] resource_group_id: The ID of the resource group
2641
+ :param pulumi.Input[Union['NodePoolRollingPolicyArgs', 'NodePoolRollingPolicyArgsDict']] rolling_policy: Rotary configuration. See `rolling_policy` below.
2051
2642
  :param pulumi.Input[str] runtime_name: The runtime name of containers. If not set, the cluster runtime will be used as the node pool runtime. If you select another container runtime, see [Comparison of Docker, containerd, and Sandboxed-Container](https://www.alibabacloud.com/help/doc-detail/160313.htm).
2052
2643
  :param pulumi.Input[str] runtime_version: The runtime version of containers. If not set, the cluster runtime will be used as the node pool runtime.
2053
- :param pulumi.Input[pulumi.InputType['NodePoolScalingConfigArgs']] scaling_config: Auto scaling node pool configuration. See `scaling_config` below. With auto-scaling is enabled, the nodes in the node pool will be labeled with `k8s.aliyun.com=true` to prevent system pods such as coredns, metrics-servers from being scheduled to elastic nodes, and to prevent node shrinkage from causing business abnormalities.
2054
- :param pulumi.Input[str] scaling_policy: The scaling mode. Valid values: `release`, `recycle`, default is `release`. Standard mode(release): Create and release ECS instances based on requests.Swift mode(recycle): Create, stop, and restart ECS instances based on needs. New ECS instances are only created when no stopped ECS instance is avalible. This mode further accelerates the scaling process. Apart from ECS instances that use local storage, when an ECS instance is stopped, you are only chatged for storage space.
2055
- :param pulumi.Input[str] security_group_id: The security group id for worker node. Field `security_group_id` has been deprecated from provider version 1.145.0. New field `security_group_ids` instead.
2644
+ :param pulumi.Input[Union['NodePoolScalingConfigArgs', 'NodePoolScalingConfigArgsDict']] scaling_config: Automatic scaling configuration. See `scaling_config` below.
2645
+ :param pulumi.Input[str] scaling_policy: Scaling group mode, default value: `release`. Valid values:
2646
+ :param pulumi.Input[str] security_group_id: The security group ID of the node pool. This field has been replaced by `security_group_ids`, please use the `security_group_ids` field instead.
2056
2647
  :param pulumi.Input[Sequence[pulumi.Input[str]]] security_group_ids: Multiple security groups can be configured for a node pool. If both `security_group_ids` and `security_group_id` are configured, `security_group_ids` takes effect. This field cannot be modified.
2057
- :param pulumi.Input[bool] soc_enabled: Whether enable worker node to support soc security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. See [SOC Reinforcement](https://help.aliyun.com/document_detail/196148.html).
2058
- > **NOTE:** It is forbidden to set both `cis_enabled` and `soc_enabled` to `true`at the same time.
2059
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NodePoolSpotPriceLimitArgs']]]] spot_price_limits: The maximum hourly price of the instance. This parameter takes effect only when `spot_strategy` is set to `SpotWithPriceLimit`. You could enable multiple spot instances by setting this field repeatedly. See `spot_price_limit` below.
2060
- :param pulumi.Input[str] spot_strategy: The preemption policy for the pay-as-you-go instance. This parameter takes effect only when `instance_charge_type` is set to `PostPaid`. Valid value `SpotWithPriceLimit`,`SpotAsPriceGo` and `NoSpot`, default is `NoSpot`.
2061
- :param pulumi.Input[str] system_disk_category: The system disk category of worker node. Its valid value are `cloud_ssd`, `cloud_efficiency` and `cloud_essd`. Default to `cloud_efficiency`.
2062
- :param pulumi.Input[str] system_disk_encrypt_algorithm: The encryption Algorithm for Encrypting System Disk. It takes effect when system_disk_encrypted is true. Valid values `aes-256` and `sm4-128`.
2063
- :param pulumi.Input[bool] system_disk_encrypted: Whether to enable system disk encryption.
2064
- :param pulumi.Input[str] system_disk_kms_key: The kms key id used to encrypt the system disk. It takes effect when system_disk_encrypted is true.
2065
- :param pulumi.Input[str] system_disk_performance_level: The performance of system disk, only valid for ESSD disk. You have to specify one of `PL0` `PL1` `PL2` `PL3` fields.
2648
+ :param pulumi.Input[bool] security_hardening_os: Alibaba Cloud OS security reinforcement. Default value: `false`. Value:
2649
+ :param pulumi.Input[bool] soc_enabled: Whether enable worker node to support soc security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. See [SOC Reinforcement](https://help.aliyun.com/document_detail/196148.html).
2650
+
2651
+ > **NOTE:** It is forbidden to set both `security_hardening_os` and `soc_enabled` to `true` at the same time.
2652
+ :param pulumi.Input[int] spot_instance_pools: The number of instance types that are available. Auto Scaling creates preemptible instances of multiple instance types that are available at the lowest cost. Valid values: 1 to 10.
2653
+ :param pulumi.Input[bool] spot_instance_remedy: Specifies whether to supplement preemptible instances when the number of preemptible instances drops below the specified minimum number. If you set the value to true, Auto Scaling attempts to create a new preemptible instance when the system notifies that an existing preemptible instance is about to be reclaimed. Valid values: `true`: enables the supplementation of preemptible instances. `false`: disables the supplementation of preemptible instances.
2654
+ :param pulumi.Input[Sequence[pulumi.Input[Union['NodePoolSpotPriceLimitArgs', 'NodePoolSpotPriceLimitArgsDict']]]] spot_price_limits: The current single preemptible instance type market price range configuration. See `spot_price_limit` below.
2655
+ :param pulumi.Input[str] spot_strategy: The preemptible instance type. Value:
2656
+ - `NoSpot` : Non-preemptible instance.
2657
+ - `SpotWithPriceLimit` : Set the upper limit of the preemptible instance price.
2658
+ - `SpotAsPriceGo` : The system automatically bids, following the actual price of the current market.
2659
+ :param pulumi.Input[bool] system_disk_bursting_enabled: Specifies whether to enable the burst feature for system disks. Valid values:`true`: enables the burst feature. `false`: disables the burst feature. This parameter is supported only when `system_disk_category` is set to `cloud_auto`.
2660
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] system_disk_categories: The multi-disk categories of the system disk. When a high-priority disk type cannot be used, Auto Scaling automatically tries to create a system disk with the next priority disk category. Valid values: `cloud`: cloud disk. `cloud_efficiency`: a high-efficiency cloud disk. `cloud_ssd`:SSD cloud disk. `cloud_essd`: ESSD cloud disk.
2661
+ :param pulumi.Input[str] system_disk_category: The system disk category of worker node. Its valid value are `cloud_ssd`, `cloud_efficiency`, `cloud_essd` and `cloud_auto`.
2662
+ :param pulumi.Input[str] system_disk_encrypt_algorithm: The encryption algorithm used by the system disk. Value range: aes-256.
2663
+ :param pulumi.Input[bool] system_disk_encrypted: Whether to encrypt the system disk. Value range: `true`: encryption. `false`: Do not encrypt.
2664
+ :param pulumi.Input[str] system_disk_kms_key: The ID of the KMS key used by the system disk.
2665
+ :param pulumi.Input[str] system_disk_performance_level: The system disk performance of the node takes effect only for the ESSD disk.
2666
+ - `PL0`: maximum random read/write IOPS 10000 for a single disk.
2667
+ - `PL1`: maximum random read/write IOPS 50000 for a single disk.
2668
+ - `PL2`: highest random read/write IOPS 100000 for a single disk.
2669
+ - `PL3`: maximum random read/write IOPS 1 million for a single disk.
2670
+ :param pulumi.Input[int] system_disk_provisioned_iops: The predefined IOPS of a system disk. Valid values: 0 to min{50,000, 1,000 × Capacity - Baseline IOPS}. Baseline IOPS = min{1,800 + 50 × Capacity, 50,000}. This parameter is supported only when `system_disk_category` is set to `cloud_auto`.
2066
2671
  :param pulumi.Input[int] system_disk_size: The system disk category of worker node. Its valid value range [40~500] in GB. Default to `120`.
2067
- :param pulumi.Input[str] system_disk_snapshot_policy_id: The system disk snapshot policy id.
2068
- :param pulumi.Input[Mapping[str, Any]] tags: A Map of tags to assign to the resource. It will be applied for ECS instances finally. Detailed below.
2069
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NodePoolTaintArgs']]]] taints: A List of Kubernetes taints to assign to the nodes. Detailed below. More information in [Taints and Toleration](https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/). See `taints` below.
2070
- :param pulumi.Input[bool] unschedulable: Set the newly added node as unschedulable. If you want to open the scheduling option, you can open it in the node list of the console. If you are using an auto-scaling node pool, the setting will not take effect. Default is `false`.
2071
- :param pulumi.Input[str] user_data: Windows instances support batch and PowerShell scripts. If your script file is larger than 1 KB, we recommend that you upload the script to Object Storage Service (OSS) and pull it through the internal endpoint of your OSS bucket.
2672
+ :param pulumi.Input[str] system_disk_snapshot_policy_id: The ID of the automatic snapshot policy used by the system disk.
2673
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Add tags only for ECS instances. The maximum length of the tag key is 128 characters. The tag key and value cannot start with aliyun or acs:, or contain https:// or http://.
2674
+ :param pulumi.Input[Sequence[pulumi.Input[Union['NodePoolTaintArgs', 'NodePoolTaintArgsDict']]]] taints: A List of Kubernetes taints to assign to the nodes. Detailed below. More information in [Taints and Toleration](https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/). See `taints` below.
2675
+ :param pulumi.Input[Union['NodePoolTeeConfigArgs', 'NodePoolTeeConfigArgsDict']] tee_config: The configuration about confidential computing for the cluster. See `tee_config` below.
2676
+ :param pulumi.Input[bool] unschedulable: Whether the node after expansion can be scheduled.
2677
+ :param pulumi.Input[bool] update_nodes: Synchronously update node labels and taints.
2678
+ :param pulumi.Input[str] user_data: Node custom data, base64-encoded.
2072
2679
  :param pulumi.Input[Sequence[pulumi.Input[str]]] vswitch_ids: The vswitches used by node pool workers.
2073
2680
  """
2074
2681
  ...
@@ -2080,14 +2687,14 @@ class NodePool(pulumi.CustomResource):
2080
2687
  """
2081
2688
  ## Example Usage
2082
2689
 
2083
- The managed cluster configuration,
2690
+ Basic Usage
2084
2691
 
2085
2692
  ## Import
2086
2693
 
2087
- Cluster nodepool can be imported using the id, e.g. Then complete the nodepool.tf accords to the result of `pulumi preview`.
2694
+ ACK Nodepool can be imported using the id, e.g.
2088
2695
 
2089
2696
  ```sh
2090
- $ pulumi import alicloud:cs/nodePool:NodePool custom_nodepool cluster_id:nodepool_id
2697
+ $ pulumi import alicloud:cs/nodePool:NodePool example <cluster_id>:<node_pool_id>
2091
2698
  ```
2092
2699
 
2093
2700
  :param str resource_name: The name of the resource.
@@ -2109,10 +2716,12 @@ class NodePool(pulumi.CustomResource):
2109
2716
  auto_renew_period: Optional[pulumi.Input[int]] = None,
2110
2717
  cis_enabled: Optional[pulumi.Input[bool]] = None,
2111
2718
  cluster_id: Optional[pulumi.Input[str]] = None,
2719
+ compensate_with_on_demand: Optional[pulumi.Input[bool]] = None,
2112
2720
  cpu_policy: Optional[pulumi.Input[str]] = None,
2113
- data_disks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NodePoolDataDiskArgs']]]]] = None,
2721
+ data_disks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NodePoolDataDiskArgs', 'NodePoolDataDiskArgsDict']]]]] = None,
2114
2722
  deployment_set_id: Optional[pulumi.Input[str]] = None,
2115
2723
  desired_size: Optional[pulumi.Input[int]] = None,
2724
+ force_delete: Optional[pulumi.Input[bool]] = None,
2116
2725
  format_disk: Optional[pulumi.Input[bool]] = None,
2117
2726
  image_id: Optional[pulumi.Input[str]] = None,
2118
2727
  image_type: Optional[pulumi.Input[str]] = None,
@@ -2125,41 +2734,54 @@ class NodePool(pulumi.CustomResource):
2125
2734
  keep_instance_name: Optional[pulumi.Input[bool]] = None,
2126
2735
  key_name: Optional[pulumi.Input[str]] = None,
2127
2736
  kms_encrypted_password: Optional[pulumi.Input[str]] = None,
2128
- kms_encryption_context: Optional[pulumi.Input[Mapping[str, Any]]] = None,
2129
- kubelet_configuration: Optional[pulumi.Input[pulumi.InputType['NodePoolKubeletConfigurationArgs']]] = None,
2130
- labels: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NodePoolLabelArgs']]]]] = None,
2131
- management: Optional[pulumi.Input[pulumi.InputType['NodePoolManagementArgs']]] = None,
2737
+ kms_encryption_context: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
2738
+ kubelet_configuration: Optional[pulumi.Input[Union['NodePoolKubeletConfigurationArgs', 'NodePoolKubeletConfigurationArgsDict']]] = None,
2739
+ labels: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NodePoolLabelArgs', 'NodePoolLabelArgsDict']]]]] = None,
2740
+ login_as_non_root: Optional[pulumi.Input[bool]] = None,
2741
+ management: Optional[pulumi.Input[Union['NodePoolManagementArgs', 'NodePoolManagementArgsDict']]] = None,
2742
+ multi_az_policy: Optional[pulumi.Input[str]] = None,
2132
2743
  name: Optional[pulumi.Input[str]] = None,
2133
2744
  node_count: Optional[pulumi.Input[int]] = None,
2134
2745
  node_name_mode: Optional[pulumi.Input[str]] = None,
2746
+ node_pool_name: Optional[pulumi.Input[str]] = None,
2747
+ on_demand_base_capacity: Optional[pulumi.Input[int]] = None,
2748
+ on_demand_percentage_above_base_capacity: Optional[pulumi.Input[int]] = None,
2135
2749
  password: Optional[pulumi.Input[str]] = None,
2136
2750
  period: Optional[pulumi.Input[int]] = None,
2137
2751
  period_unit: Optional[pulumi.Input[str]] = None,
2138
2752
  platform: Optional[pulumi.Input[str]] = None,
2139
- polardb_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2753
+ pre_user_data: Optional[pulumi.Input[str]] = None,
2754
+ private_pool_options: Optional[pulumi.Input[Union['NodePoolPrivatePoolOptionsArgs', 'NodePoolPrivatePoolOptionsArgsDict']]] = None,
2140
2755
  rds_instances: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2141
2756
  resource_group_id: Optional[pulumi.Input[str]] = None,
2142
- rolling_policy: Optional[pulumi.Input[pulumi.InputType['NodePoolRollingPolicyArgs']]] = None,
2143
- rollout_policy: Optional[pulumi.Input[pulumi.InputType['NodePoolRolloutPolicyArgs']]] = None,
2757
+ rolling_policy: Optional[pulumi.Input[Union['NodePoolRollingPolicyArgs', 'NodePoolRollingPolicyArgsDict']]] = None,
2144
2758
  runtime_name: Optional[pulumi.Input[str]] = None,
2145
2759
  runtime_version: Optional[pulumi.Input[str]] = None,
2146
- scaling_config: Optional[pulumi.Input[pulumi.InputType['NodePoolScalingConfigArgs']]] = None,
2760
+ scaling_config: Optional[pulumi.Input[Union['NodePoolScalingConfigArgs', 'NodePoolScalingConfigArgsDict']]] = None,
2147
2761
  scaling_policy: Optional[pulumi.Input[str]] = None,
2148
2762
  security_group_id: Optional[pulumi.Input[str]] = None,
2149
2763
  security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2764
+ security_hardening_os: Optional[pulumi.Input[bool]] = None,
2150
2765
  soc_enabled: Optional[pulumi.Input[bool]] = None,
2151
- spot_price_limits: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NodePoolSpotPriceLimitArgs']]]]] = None,
2766
+ spot_instance_pools: Optional[pulumi.Input[int]] = None,
2767
+ spot_instance_remedy: Optional[pulumi.Input[bool]] = None,
2768
+ spot_price_limits: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NodePoolSpotPriceLimitArgs', 'NodePoolSpotPriceLimitArgsDict']]]]] = None,
2152
2769
  spot_strategy: Optional[pulumi.Input[str]] = None,
2770
+ system_disk_bursting_enabled: Optional[pulumi.Input[bool]] = None,
2771
+ system_disk_categories: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2153
2772
  system_disk_category: Optional[pulumi.Input[str]] = None,
2154
2773
  system_disk_encrypt_algorithm: Optional[pulumi.Input[str]] = None,
2155
2774
  system_disk_encrypted: Optional[pulumi.Input[bool]] = None,
2156
2775
  system_disk_kms_key: Optional[pulumi.Input[str]] = None,
2157
2776
  system_disk_performance_level: Optional[pulumi.Input[str]] = None,
2777
+ system_disk_provisioned_iops: Optional[pulumi.Input[int]] = None,
2158
2778
  system_disk_size: Optional[pulumi.Input[int]] = None,
2159
2779
  system_disk_snapshot_policy_id: Optional[pulumi.Input[str]] = None,
2160
- tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
2161
- taints: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NodePoolTaintArgs']]]]] = None,
2780
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
2781
+ taints: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NodePoolTaintArgs', 'NodePoolTaintArgsDict']]]]] = None,
2782
+ tee_config: Optional[pulumi.Input[Union['NodePoolTeeConfigArgs', 'NodePoolTeeConfigArgsDict']]] = None,
2162
2783
  unschedulable: Optional[pulumi.Input[bool]] = None,
2784
+ update_nodes: Optional[pulumi.Input[bool]] = None,
2163
2785
  user_data: Optional[pulumi.Input[str]] = None,
2164
2786
  vswitch_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2165
2787
  __props__=None):
@@ -2177,10 +2799,12 @@ class NodePool(pulumi.CustomResource):
2177
2799
  if cluster_id is None and not opts.urn:
2178
2800
  raise TypeError("Missing required property 'cluster_id'")
2179
2801
  __props__.__dict__["cluster_id"] = cluster_id
2802
+ __props__.__dict__["compensate_with_on_demand"] = compensate_with_on_demand
2180
2803
  __props__.__dict__["cpu_policy"] = cpu_policy
2181
2804
  __props__.__dict__["data_disks"] = data_disks
2182
2805
  __props__.__dict__["deployment_set_id"] = deployment_set_id
2183
2806
  __props__.__dict__["desired_size"] = desired_size
2807
+ __props__.__dict__["force_delete"] = force_delete
2184
2808
  __props__.__dict__["format_disk"] = format_disk
2185
2809
  __props__.__dict__["image_id"] = image_id
2186
2810
  __props__.__dict__["image_type"] = image_type
@@ -2194,49 +2818,62 @@ class NodePool(pulumi.CustomResource):
2194
2818
  __props__.__dict__["internet_max_bandwidth_out"] = internet_max_bandwidth_out
2195
2819
  __props__.__dict__["keep_instance_name"] = keep_instance_name
2196
2820
  __props__.__dict__["key_name"] = key_name
2197
- __props__.__dict__["kms_encrypted_password"] = kms_encrypted_password
2821
+ __props__.__dict__["kms_encrypted_password"] = None if kms_encrypted_password is None else pulumi.Output.secret(kms_encrypted_password)
2198
2822
  __props__.__dict__["kms_encryption_context"] = kms_encryption_context
2199
2823
  __props__.__dict__["kubelet_configuration"] = kubelet_configuration
2200
2824
  __props__.__dict__["labels"] = labels
2825
+ __props__.__dict__["login_as_non_root"] = login_as_non_root
2201
2826
  __props__.__dict__["management"] = management
2827
+ __props__.__dict__["multi_az_policy"] = multi_az_policy
2202
2828
  __props__.__dict__["name"] = name
2203
2829
  __props__.__dict__["node_count"] = node_count
2204
2830
  __props__.__dict__["node_name_mode"] = node_name_mode
2831
+ __props__.__dict__["node_pool_name"] = node_pool_name
2832
+ __props__.__dict__["on_demand_base_capacity"] = on_demand_base_capacity
2833
+ __props__.__dict__["on_demand_percentage_above_base_capacity"] = on_demand_percentage_above_base_capacity
2205
2834
  __props__.__dict__["password"] = None if password is None else pulumi.Output.secret(password)
2206
2835
  __props__.__dict__["period"] = period
2207
2836
  __props__.__dict__["period_unit"] = period_unit
2208
2837
  __props__.__dict__["platform"] = platform
2209
- __props__.__dict__["polardb_ids"] = polardb_ids
2838
+ __props__.__dict__["pre_user_data"] = pre_user_data
2839
+ __props__.__dict__["private_pool_options"] = private_pool_options
2210
2840
  __props__.__dict__["rds_instances"] = rds_instances
2211
2841
  __props__.__dict__["resource_group_id"] = resource_group_id
2212
2842
  __props__.__dict__["rolling_policy"] = rolling_policy
2213
- __props__.__dict__["rollout_policy"] = rollout_policy
2214
2843
  __props__.__dict__["runtime_name"] = runtime_name
2215
2844
  __props__.__dict__["runtime_version"] = runtime_version
2216
2845
  __props__.__dict__["scaling_config"] = scaling_config
2217
2846
  __props__.__dict__["scaling_policy"] = scaling_policy
2218
2847
  __props__.__dict__["security_group_id"] = security_group_id
2219
2848
  __props__.__dict__["security_group_ids"] = security_group_ids
2849
+ __props__.__dict__["security_hardening_os"] = security_hardening_os
2220
2850
  __props__.__dict__["soc_enabled"] = soc_enabled
2851
+ __props__.__dict__["spot_instance_pools"] = spot_instance_pools
2852
+ __props__.__dict__["spot_instance_remedy"] = spot_instance_remedy
2221
2853
  __props__.__dict__["spot_price_limits"] = spot_price_limits
2222
2854
  __props__.__dict__["spot_strategy"] = spot_strategy
2855
+ __props__.__dict__["system_disk_bursting_enabled"] = system_disk_bursting_enabled
2856
+ __props__.__dict__["system_disk_categories"] = system_disk_categories
2223
2857
  __props__.__dict__["system_disk_category"] = system_disk_category
2224
2858
  __props__.__dict__["system_disk_encrypt_algorithm"] = system_disk_encrypt_algorithm
2225
2859
  __props__.__dict__["system_disk_encrypted"] = system_disk_encrypted
2226
2860
  __props__.__dict__["system_disk_kms_key"] = system_disk_kms_key
2227
2861
  __props__.__dict__["system_disk_performance_level"] = system_disk_performance_level
2862
+ __props__.__dict__["system_disk_provisioned_iops"] = system_disk_provisioned_iops
2228
2863
  __props__.__dict__["system_disk_size"] = system_disk_size
2229
2864
  __props__.__dict__["system_disk_snapshot_policy_id"] = system_disk_snapshot_policy_id
2230
2865
  __props__.__dict__["tags"] = tags
2231
2866
  __props__.__dict__["taints"] = taints
2867
+ __props__.__dict__["tee_config"] = tee_config
2232
2868
  __props__.__dict__["unschedulable"] = unschedulable
2869
+ __props__.__dict__["update_nodes"] = update_nodes
2233
2870
  __props__.__dict__["user_data"] = user_data
2234
2871
  if vswitch_ids is None and not opts.urn:
2235
2872
  raise TypeError("Missing required property 'vswitch_ids'")
2236
2873
  __props__.__dict__["vswitch_ids"] = vswitch_ids
2874
+ __props__.__dict__["node_pool_id"] = None
2237
2875
  __props__.__dict__["scaling_group_id"] = None
2238
- __props__.__dict__["vpc_id"] = None
2239
- secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["password"])
2876
+ secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["kmsEncryptedPassword", "password"])
2240
2877
  opts = pulumi.ResourceOptions.merge(opts, secret_opts)
2241
2878
  super(NodePool, __self__).__init__(
2242
2879
  'alicloud:cs/nodePool:NodePool',
@@ -2252,10 +2889,12 @@ class NodePool(pulumi.CustomResource):
2252
2889
  auto_renew_period: Optional[pulumi.Input[int]] = None,
2253
2890
  cis_enabled: Optional[pulumi.Input[bool]] = None,
2254
2891
  cluster_id: Optional[pulumi.Input[str]] = None,
2892
+ compensate_with_on_demand: Optional[pulumi.Input[bool]] = None,
2255
2893
  cpu_policy: Optional[pulumi.Input[str]] = None,
2256
- data_disks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NodePoolDataDiskArgs']]]]] = None,
2894
+ data_disks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NodePoolDataDiskArgs', 'NodePoolDataDiskArgsDict']]]]] = None,
2257
2895
  deployment_set_id: Optional[pulumi.Input[str]] = None,
2258
2896
  desired_size: Optional[pulumi.Input[int]] = None,
2897
+ force_delete: Optional[pulumi.Input[bool]] = None,
2259
2898
  format_disk: Optional[pulumi.Input[bool]] = None,
2260
2899
  image_id: Optional[pulumi.Input[str]] = None,
2261
2900
  image_type: Optional[pulumi.Input[str]] = None,
@@ -2268,44 +2907,57 @@ class NodePool(pulumi.CustomResource):
2268
2907
  keep_instance_name: Optional[pulumi.Input[bool]] = None,
2269
2908
  key_name: Optional[pulumi.Input[str]] = None,
2270
2909
  kms_encrypted_password: Optional[pulumi.Input[str]] = None,
2271
- kms_encryption_context: Optional[pulumi.Input[Mapping[str, Any]]] = None,
2272
- kubelet_configuration: Optional[pulumi.Input[pulumi.InputType['NodePoolKubeletConfigurationArgs']]] = None,
2273
- labels: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NodePoolLabelArgs']]]]] = None,
2274
- management: Optional[pulumi.Input[pulumi.InputType['NodePoolManagementArgs']]] = None,
2910
+ kms_encryption_context: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
2911
+ kubelet_configuration: Optional[pulumi.Input[Union['NodePoolKubeletConfigurationArgs', 'NodePoolKubeletConfigurationArgsDict']]] = None,
2912
+ labels: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NodePoolLabelArgs', 'NodePoolLabelArgsDict']]]]] = None,
2913
+ login_as_non_root: Optional[pulumi.Input[bool]] = None,
2914
+ management: Optional[pulumi.Input[Union['NodePoolManagementArgs', 'NodePoolManagementArgsDict']]] = None,
2915
+ multi_az_policy: Optional[pulumi.Input[str]] = None,
2275
2916
  name: Optional[pulumi.Input[str]] = None,
2276
2917
  node_count: Optional[pulumi.Input[int]] = None,
2277
2918
  node_name_mode: Optional[pulumi.Input[str]] = None,
2919
+ node_pool_id: Optional[pulumi.Input[str]] = None,
2920
+ node_pool_name: Optional[pulumi.Input[str]] = None,
2921
+ on_demand_base_capacity: Optional[pulumi.Input[int]] = None,
2922
+ on_demand_percentage_above_base_capacity: Optional[pulumi.Input[int]] = None,
2278
2923
  password: Optional[pulumi.Input[str]] = None,
2279
2924
  period: Optional[pulumi.Input[int]] = None,
2280
2925
  period_unit: Optional[pulumi.Input[str]] = None,
2281
2926
  platform: Optional[pulumi.Input[str]] = None,
2282
- polardb_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2927
+ pre_user_data: Optional[pulumi.Input[str]] = None,
2928
+ private_pool_options: Optional[pulumi.Input[Union['NodePoolPrivatePoolOptionsArgs', 'NodePoolPrivatePoolOptionsArgsDict']]] = None,
2283
2929
  rds_instances: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2284
2930
  resource_group_id: Optional[pulumi.Input[str]] = None,
2285
- rolling_policy: Optional[pulumi.Input[pulumi.InputType['NodePoolRollingPolicyArgs']]] = None,
2286
- rollout_policy: Optional[pulumi.Input[pulumi.InputType['NodePoolRolloutPolicyArgs']]] = None,
2931
+ rolling_policy: Optional[pulumi.Input[Union['NodePoolRollingPolicyArgs', 'NodePoolRollingPolicyArgsDict']]] = None,
2287
2932
  runtime_name: Optional[pulumi.Input[str]] = None,
2288
2933
  runtime_version: Optional[pulumi.Input[str]] = None,
2289
- scaling_config: Optional[pulumi.Input[pulumi.InputType['NodePoolScalingConfigArgs']]] = None,
2934
+ scaling_config: Optional[pulumi.Input[Union['NodePoolScalingConfigArgs', 'NodePoolScalingConfigArgsDict']]] = None,
2290
2935
  scaling_group_id: Optional[pulumi.Input[str]] = None,
2291
2936
  scaling_policy: Optional[pulumi.Input[str]] = None,
2292
2937
  security_group_id: Optional[pulumi.Input[str]] = None,
2293
2938
  security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2939
+ security_hardening_os: Optional[pulumi.Input[bool]] = None,
2294
2940
  soc_enabled: Optional[pulumi.Input[bool]] = None,
2295
- spot_price_limits: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NodePoolSpotPriceLimitArgs']]]]] = None,
2941
+ spot_instance_pools: Optional[pulumi.Input[int]] = None,
2942
+ spot_instance_remedy: Optional[pulumi.Input[bool]] = None,
2943
+ spot_price_limits: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NodePoolSpotPriceLimitArgs', 'NodePoolSpotPriceLimitArgsDict']]]]] = None,
2296
2944
  spot_strategy: Optional[pulumi.Input[str]] = None,
2945
+ system_disk_bursting_enabled: Optional[pulumi.Input[bool]] = None,
2946
+ system_disk_categories: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2297
2947
  system_disk_category: Optional[pulumi.Input[str]] = None,
2298
2948
  system_disk_encrypt_algorithm: Optional[pulumi.Input[str]] = None,
2299
2949
  system_disk_encrypted: Optional[pulumi.Input[bool]] = None,
2300
2950
  system_disk_kms_key: Optional[pulumi.Input[str]] = None,
2301
2951
  system_disk_performance_level: Optional[pulumi.Input[str]] = None,
2952
+ system_disk_provisioned_iops: Optional[pulumi.Input[int]] = None,
2302
2953
  system_disk_size: Optional[pulumi.Input[int]] = None,
2303
2954
  system_disk_snapshot_policy_id: Optional[pulumi.Input[str]] = None,
2304
- tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
2305
- taints: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NodePoolTaintArgs']]]]] = None,
2955
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
2956
+ taints: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NodePoolTaintArgs', 'NodePoolTaintArgsDict']]]]] = None,
2957
+ tee_config: Optional[pulumi.Input[Union['NodePoolTeeConfigArgs', 'NodePoolTeeConfigArgsDict']]] = None,
2306
2958
  unschedulable: Optional[pulumi.Input[bool]] = None,
2959
+ update_nodes: Optional[pulumi.Input[bool]] = None,
2307
2960
  user_data: Optional[pulumi.Input[str]] = None,
2308
- vpc_id: Optional[pulumi.Input[str]] = None,
2309
2961
  vswitch_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None) -> 'NodePool':
2310
2962
  """
2311
2963
  Get an existing NodePool resource's state with the given name, id, and optional extra
@@ -2314,65 +2966,100 @@ class NodePool(pulumi.CustomResource):
2314
2966
  :param str resource_name: The unique name of the resulting resource.
2315
2967
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
2316
2968
  :param pulumi.ResourceOptions opts: Options for the resource.
2317
- :param pulumi.Input[bool] auto_renew: Enable Node payment auto-renew, default is `false`.
2318
- :param pulumi.Input[int] auto_renew_period: Node payment auto-renew period, one of `1`, `2`, `3`,`6`, `12`.
2319
- :param pulumi.Input[bool] cis_enabled: Whether enable worker node to support cis security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. See [CIS Reinforcement](https://help.aliyun.com/document_detail/223744.html).
2969
+ :param pulumi.Input[bool] auto_renew: Whether to enable automatic renewal for nodes in the node pool takes effect only when `instance_charge_type` is set to `PrePaid`. Default value: `false`. Valid values:
2970
+ :param pulumi.Input[int] auto_renew_period: The automatic renewal period of nodes in the node pool takes effect only when you select Prepaid and Automatic Renewal, and is a required value. When `PeriodUnit = Month`, the value range is {1, 2, 3, 6, 12}. Default value: 1.
2971
+ :param pulumi.Input[bool] cis_enabled: Whether enable worker node to support cis security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. Use `security_hardening_os` instead.
2320
2972
  :param pulumi.Input[str] cluster_id: The id of kubernetes cluster.
2321
- :param pulumi.Input[str] cpu_policy: Kubelet cpu policy. For Kubernetes 1.12.6 and later, its valid value is either `static` or `none`. Default to `none` and modification is not supported.
2322
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NodePoolDataDiskArgs']]]] data_disks: The data disk configurations of worker nodes, such as the disk type and disk size. See `data_disks` below.
2973
+ :param pulumi.Input[bool] compensate_with_on_demand: Specifies whether to automatically create pay-as-you-go instances to meet the required number of ECS instances if preemptible instances cannot be created due to reasons such as cost or insufficient inventory. This parameter takes effect when you set `multi_az_policy` to `COST_OPTIMIZED`. Valid values: `true`: automatically creates pay-as-you-go instances to meet the required number of ECS instances if preemptible instances cannot be created. `false`: does not create pay-as-you-go instances to meet the required number of ECS instances if preemptible instances cannot be created.
2974
+ :param pulumi.Input[str] cpu_policy: Node CPU management policies. Default value: `none`. When the cluster version is 1.12.6 or later, the following two policies are supported:
2975
+ :param pulumi.Input[Sequence[pulumi.Input[Union['NodePoolDataDiskArgs', 'NodePoolDataDiskArgsDict']]]] data_disks: Configure the data disk of the node in the node pool. See `data_disks` below.
2323
2976
  :param pulumi.Input[str] deployment_set_id: The deployment set of node pool. Specify the deploymentSet to ensure that the nodes in the node pool can be distributed on different physical machines.
2324
- :param pulumi.Input[int] desired_size: The desired size of nodes of the node pool. From version 1.158.0, `desired_size` is not required.
2977
+ :param pulumi.Input[int] desired_size: Number of expected nodes in the node pool.
2978
+ :param pulumi.Input[bool] force_delete: Whether to force deletion.
2325
2979
  :param pulumi.Input[bool] format_disk: After you select this check box, if data disks have been attached to the specified ECS instances and the file system of the last data disk is uninitialized, the system automatically formats the last data disk to ext4 and mounts the data disk to /var/lib/docker and /var/lib/kubelet. The original data on the disk will be cleared. Make sure that you back up data in advance. If no data disk is mounted on the ECS instance, no new data disk will be purchased. Default is `false`.
2326
- :param pulumi.Input[str] image_id: Custom Image support. Must based on CentOS7 or AliyunLinux2.
2327
- :param pulumi.Input[str] image_type: The image type, instead of `platform`. This field cannot be modified. One of `AliyunLinux`, `AliyunLinux3`, `AliyunLinux3Arm64`, `AliyunLinuxUEFI`, `CentOS`, `Windows`,`WindowsCore`,`AliyunLinux Qboot`,`ContainerOS`. If you select `Windows` or `WindowsCore`, the `passord` is required.
2328
- :param pulumi.Input[bool] install_cloud_monitor: Install the cloud monitoring plug-in on the node, and you can view the monitoring information of the instance through the cloud monitoring console. Default is `true`.
2980
+ :param pulumi.Input[str] image_id: The custom image ID. The system-provided image is used by default.
2981
+ :param pulumi.Input[str] image_type: The operating system image type and the `platform` parameter can be selected from the following values:
2982
+ - `AliyunLinux` : Alinux2 image.
2983
+ - `AliyunLinux3` : Alinux3 image.
2984
+ - `AliyunLinux3Arm64` : Alinux3 mirror ARM version.
2985
+ - `AliyunLinuxUEFI` : Alinux2 Image UEFI version.
2986
+ - `CentOS` : CentOS image.
2987
+ - `Windows` : Windows image.
2988
+ - `WindowsCore` : WindowsCore image.
2989
+ - `ContainerOS` : container-optimized image.
2990
+ - `Ubuntu`: (Available since v1.236.0) Ubuntu image.
2991
+ :param pulumi.Input[bool] install_cloud_monitor: Whether to install cloud monitoring on the ECS node. After installation, you can view the monitoring information of the created ECS instance in the cloud monitoring console and recommend enable it. Default value: `false`. Valid values:
2329
2992
  :param pulumi.Input[str] instance_charge_type: Node payment type. Valid values: `PostPaid`, `PrePaid`, default is `PostPaid`. If value is `PrePaid`, the arguments `period`, `period_unit`, `auto_renew` and `auto_renew_period` are required.
2330
- :param pulumi.Input[Sequence[pulumi.Input[str]]] instance_types: The instance type of worker node.
2993
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] instance_types: In the node instance specification list, you can select multiple instance specifications as alternatives. When each node is created, it will try to purchase from the first specification until it is created successfully. The final purchased instance specifications may vary with inventory changes.
2331
2994
  :param pulumi.Input[Sequence[pulumi.Input[str]]] instances: The instance list. Add existing nodes under the same cluster VPC to the node pool.
2332
2995
  :param pulumi.Input[str] internet_charge_type: The billing method for network usage. Valid values `PayByBandwidth` and `PayByTraffic`. Conflict with `eip_internet_charge_type`, EIP and public network IP can only choose one.
2333
- :param pulumi.Input[int] internet_max_bandwidth_out: The maximum outbound bandwidth for the public network. Unit: Mbit/s. Valid values: 0 to 100.
2996
+ :param pulumi.Input[int] internet_max_bandwidth_out: The maximum bandwidth of the public IP address of the node. The unit is Mbps(Mega bit per second). The value range is:\\[1,100\\]
2334
2997
  :param pulumi.Input[bool] keep_instance_name: Add an existing instance to the node pool, whether to keep the original instance name. It is recommended to set to `true`.
2335
- :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. Only `key_name` is supported in the management node pool.
2998
+ :param pulumi.Input[str] key_name: The name of the key pair. When the node pool is a managed node pool, only `key_name` is supported.
2336
2999
  :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.
2337
- :param pulumi.Input[Mapping[str, Any]] 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.
2338
- :param pulumi.Input[pulumi.InputType['NodePoolKubeletConfigurationArgs']] kubelet_configuration: Kubelet configuration parameters for worker nodes. See `kubelet_configuration` below. More information in [Kubelet Configuration](https://kubernetes.io/docs/reference/config-api/kubelet-config.v1beta1/).
2339
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NodePoolLabelArgs']]]] labels: A List of Kubernetes labels to assign to the nodes . Only labels that are applied with the ACK API are managed by this argument. Detailed below. More information in [Labels](https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/). See `labels` below.
2340
- :param pulumi.Input[pulumi.InputType['NodePoolManagementArgs']] management: Managed node pool configuration. When using a managed node pool, the node key must use `key_name`. See `management` below.
2341
- :param pulumi.Input[str] name: The name of node pool.
3000
+ :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.
3001
+ :param pulumi.Input[Union['NodePoolKubeletConfigurationArgs', 'NodePoolKubeletConfigurationArgsDict']] kubelet_configuration: Kubelet configuration parameters for worker nodes. See `kubelet_configuration` below. More information in [Kubelet Configuration](https://kubernetes.io/docs/reference/config-api/kubelet-config.v1beta1/). See `kubelet_configuration` below.
3002
+ :param pulumi.Input[Sequence[pulumi.Input[Union['NodePoolLabelArgs', 'NodePoolLabelArgsDict']]]] labels: A List of Kubernetes labels to assign to the nodes . Only labels that are applied with the ACK API are managed by this argument. Detailed below. More information in [Labels](https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/). See `labels` below.
3003
+ :param pulumi.Input[bool] login_as_non_root: Whether the ECS instance is logged on as a ecs-user user. Valid value: `true` and `false`.
3004
+ :param pulumi.Input[Union['NodePoolManagementArgs', 'NodePoolManagementArgsDict']] management: Managed node pool configuration. See `management` below.
3005
+ :param pulumi.Input[str] multi_az_policy: The scaling policy for ECS instances in a multi-zone scaling group. Valid value: `PRIORITY`, `COST_OPTIMIZED` and `BALANCE`. `PRIORITY`: scales the capacity according to the virtual switches you define (VSwitchIds.N). When an ECS instance cannot be created in the zone where the higher-priority vSwitch is located, the next-priority vSwitch is automatically used to create an ECS instance. `COST_OPTIMIZED`: try to create by vCPU unit price from low to high. When the scaling configuration is configured with multiple instances of preemptible billing, preemptible instances are created first. You can continue to use the `CompensateWithOnDemand` parameter to specify whether to automatically try to create a preemptible instance by paying for it. It takes effect only when the scaling configuration has multi-instance specifications or preemptible instances. `BALANCE`: distributes ECS instances evenly among the multi-zone specified by the scaling group. If the zones become unbalanced due to insufficient inventory, you can use the API RebalanceInstances to balance resources.
3006
+ :param pulumi.Input[str] name: . Field 'name' has been deprecated from provider version 1.219.0. New field 'node_pool_name' instead.
2342
3007
  :param pulumi.Input[int] node_count: The worker node number of the node pool. From version 1.111.0, `node_count` is not required.
2343
- :param pulumi.Input[str] node_name_mode: Each node name consists of a prefix, its private network IP, and a suffix, the input format is `customized,<prefix>,ip,<suffix>`. For example "customized,aliyun.com-,ip,-test", if the node private network IP address is 192.168.59.176, the prefix is aliyun.com-,and the suffix is -test, the node name will be aliyun.com-192.168.59.176-test.
2344
- :param pulumi.Input[str] password: The password of ssh login cluster node. You have to specify one of `password` `key_name` `kms_encrypted_password` fields.
2345
- :param pulumi.Input[int] period: Node payment period. Its valid value is one of {1, 2, 3, 6, 12, 24, 36, 48, 60}.
3008
+ :param pulumi.Input[str] node_name_mode: Each node name consists of a prefix, its private network IP, and a suffix, separated by commas. The input format is `customized,,ip,`.
3009
+ - The prefix and suffix can be composed of one or more parts separated by '.', each part can use lowercase letters, numbers and '-', and the beginning and end of the node name must be lowercase letters and numbers.
3010
+ - The node IP address is the complete private IP address of the node.
3011
+ - For example, if the string `customized,aliyun,ip,com` is passed in (where 'customized' and 'ip' are fixed strings, 'aliyun' is the prefix, and 'com' is the suffix), the name of the node is `aliyun192.168.xxx.xxxcom`.
3012
+ :param pulumi.Input[str] node_pool_id: The first ID of the resource.
3013
+ :param pulumi.Input[str] node_pool_name: The name of node pool.
3014
+ :param pulumi.Input[int] on_demand_base_capacity: The minimum number of pay-as-you-go instances that must be kept in the scaling group. Valid values: 0 to 1000. If the number of pay-as-you-go instances is less than the value of this parameter, Auto Scaling preferably creates pay-as-you-go instances.
3015
+ :param pulumi.Input[int] on_demand_percentage_above_base_capacity: The percentage of pay-as-you-go instances among the extra instances that exceed the number specified by `on_demand_base_capacity`. Valid values: 0 to 100.
3016
+ :param pulumi.Input[str] password: The password of ssh login. You have to specify one of `password` and `key_name` fields. The password rule is 8 to 30 characters and contains at least three items (upper and lower case letters, numbers, and special symbols).
3017
+ :param pulumi.Input[int] period: Node payment period. Its valid value is one of {1, 2, 3, 6, 12}.
2346
3018
  :param pulumi.Input[str] period_unit: Node payment period unit, valid value: `Month`. Default is `Month`.
2347
- :param pulumi.Input[str] platform: The platform. One of `AliyunLinux`, `Windows`, `CentOS`, `WindowsCore`. If you select `Windows` or `WindowsCore`, the `passord` is required. Field `platform` has been deprecated from provider version 1.145.0. New field `image_type` instead.
2348
- :param pulumi.Input[Sequence[pulumi.Input[str]]] polardb_ids: PolarDB id list, You can choose which PolarDB whitelist to add instances to.
2349
- :param pulumi.Input[Sequence[pulumi.Input[str]]] rds_instances: RDS instance list, You can choose which RDS instances whitelist to add instances to.
2350
- :param pulumi.Input[str] resource_group_id: The ID of the resource group,by default these cloud resources are automatically assigned to the default resource group.
2351
- :param pulumi.Input[pulumi.InputType['NodePoolRollingPolicyArgs']] rolling_policy: Rolling policy is used to specify the strategy when the node pool is rolling update. This field works when nodepool updating. See `rolling_policy` below.
2352
- :param pulumi.Input[pulumi.InputType['NodePoolRolloutPolicyArgs']] rollout_policy: Rollout policy is used to specify the strategy when the node pool is rolling update. This field works when node pool updating. Please use `rolling_policy` to instead it from provider version 1.185.0. See `rollout_policy` below.
3019
+ :param pulumi.Input[str] platform: Operating system release, using `image_type` instead.
3020
+ :param pulumi.Input[str] pre_user_data: Node pre custom data, base64-encoded, the script executed before the node is initialized.
3021
+ :param pulumi.Input[Union['NodePoolPrivatePoolOptionsArgs', 'NodePoolPrivatePoolOptionsArgsDict']] private_pool_options: Private node pool configuration. See `private_pool_options` below.
3022
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] rds_instances: The list of RDS instances.
3023
+ :param pulumi.Input[str] resource_group_id: The ID of the resource group
3024
+ :param pulumi.Input[Union['NodePoolRollingPolicyArgs', 'NodePoolRollingPolicyArgsDict']] rolling_policy: Rotary configuration. See `rolling_policy` below.
2353
3025
  :param pulumi.Input[str] runtime_name: The runtime name of containers. If not set, the cluster runtime will be used as the node pool runtime. If you select another container runtime, see [Comparison of Docker, containerd, and Sandboxed-Container](https://www.alibabacloud.com/help/doc-detail/160313.htm).
2354
3026
  :param pulumi.Input[str] runtime_version: The runtime version of containers. If not set, the cluster runtime will be used as the node pool runtime.
2355
- :param pulumi.Input[pulumi.InputType['NodePoolScalingConfigArgs']] scaling_config: Auto scaling node pool configuration. See `scaling_config` below. With auto-scaling is enabled, the nodes in the node pool will be labeled with `k8s.aliyun.com=true` to prevent system pods such as coredns, metrics-servers from being scheduled to elastic nodes, and to prevent node shrinkage from causing business abnormalities.
2356
- :param pulumi.Input[str] scaling_group_id: The scaling group id.
2357
- :param pulumi.Input[str] scaling_policy: The scaling mode. Valid values: `release`, `recycle`, default is `release`. Standard mode(release): Create and release ECS instances based on requests.Swift mode(recycle): Create, stop, and restart ECS instances based on needs. New ECS instances are only created when no stopped ECS instance is avalible. This mode further accelerates the scaling process. Apart from ECS instances that use local storage, when an ECS instance is stopped, you are only chatged for storage space.
2358
- :param pulumi.Input[str] security_group_id: The security group id for worker node. Field `security_group_id` has been deprecated from provider version 1.145.0. New field `security_group_ids` instead.
3027
+ :param pulumi.Input[Union['NodePoolScalingConfigArgs', 'NodePoolScalingConfigArgsDict']] scaling_config: Automatic scaling configuration. See `scaling_config` below.
3028
+ :param pulumi.Input[str] scaling_group_id: The ID of the scaling group.
3029
+ :param pulumi.Input[str] scaling_policy: Scaling group mode, default value: `release`. Valid values:
3030
+ :param pulumi.Input[str] security_group_id: The security group ID of the node pool. This field has been replaced by `security_group_ids`, please use the `security_group_ids` field instead.
2359
3031
  :param pulumi.Input[Sequence[pulumi.Input[str]]] security_group_ids: Multiple security groups can be configured for a node pool. If both `security_group_ids` and `security_group_id` are configured, `security_group_ids` takes effect. This field cannot be modified.
2360
- :param pulumi.Input[bool] soc_enabled: Whether enable worker node to support soc security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. See [SOC Reinforcement](https://help.aliyun.com/document_detail/196148.html).
2361
- > **NOTE:** It is forbidden to set both `cis_enabled` and `soc_enabled` to `true`at the same time.
2362
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NodePoolSpotPriceLimitArgs']]]] spot_price_limits: The maximum hourly price of the instance. This parameter takes effect only when `spot_strategy` is set to `SpotWithPriceLimit`. You could enable multiple spot instances by setting this field repeatedly. See `spot_price_limit` below.
2363
- :param pulumi.Input[str] spot_strategy: The preemption policy for the pay-as-you-go instance. This parameter takes effect only when `instance_charge_type` is set to `PostPaid`. Valid value `SpotWithPriceLimit`,`SpotAsPriceGo` and `NoSpot`, default is `NoSpot`.
2364
- :param pulumi.Input[str] system_disk_category: The system disk category of worker node. Its valid value are `cloud_ssd`, `cloud_efficiency` and `cloud_essd`. Default to `cloud_efficiency`.
2365
- :param pulumi.Input[str] system_disk_encrypt_algorithm: The encryption Algorithm for Encrypting System Disk. It takes effect when system_disk_encrypted is true. Valid values `aes-256` and `sm4-128`.
2366
- :param pulumi.Input[bool] system_disk_encrypted: Whether to enable system disk encryption.
2367
- :param pulumi.Input[str] system_disk_kms_key: The kms key id used to encrypt the system disk. It takes effect when system_disk_encrypted is true.
2368
- :param pulumi.Input[str] system_disk_performance_level: The performance of system disk, only valid for ESSD disk. You have to specify one of `PL0` `PL1` `PL2` `PL3` fields.
3032
+ :param pulumi.Input[bool] security_hardening_os: Alibaba Cloud OS security reinforcement. Default value: `false`. Value:
3033
+ :param pulumi.Input[bool] soc_enabled: Whether enable worker node to support soc security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. See [SOC Reinforcement](https://help.aliyun.com/document_detail/196148.html).
3034
+
3035
+ > **NOTE:** It is forbidden to set both `security_hardening_os` and `soc_enabled` to `true` at the same time.
3036
+ :param pulumi.Input[int] spot_instance_pools: The number of instance types that are available. Auto Scaling creates preemptible instances of multiple instance types that are available at the lowest cost. Valid values: 1 to 10.
3037
+ :param pulumi.Input[bool] spot_instance_remedy: Specifies whether to supplement preemptible instances when the number of preemptible instances drops below the specified minimum number. If you set the value to true, Auto Scaling attempts to create a new preemptible instance when the system notifies that an existing preemptible instance is about to be reclaimed. Valid values: `true`: enables the supplementation of preemptible instances. `false`: disables the supplementation of preemptible instances.
3038
+ :param pulumi.Input[Sequence[pulumi.Input[Union['NodePoolSpotPriceLimitArgs', 'NodePoolSpotPriceLimitArgsDict']]]] spot_price_limits: The current single preemptible instance type market price range configuration. See `spot_price_limit` below.
3039
+ :param pulumi.Input[str] spot_strategy: The preemptible instance type. Value:
3040
+ - `NoSpot` : Non-preemptible instance.
3041
+ - `SpotWithPriceLimit` : Set the upper limit of the preemptible instance price.
3042
+ - `SpotAsPriceGo` : The system automatically bids, following the actual price of the current market.
3043
+ :param pulumi.Input[bool] system_disk_bursting_enabled: Specifies whether to enable the burst feature for system disks. Valid values:`true`: enables the burst feature. `false`: disables the burst feature. This parameter is supported only when `system_disk_category` is set to `cloud_auto`.
3044
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] system_disk_categories: The multi-disk categories of the system disk. When a high-priority disk type cannot be used, Auto Scaling automatically tries to create a system disk with the next priority disk category. Valid values: `cloud`: cloud disk. `cloud_efficiency`: a high-efficiency cloud disk. `cloud_ssd`:SSD cloud disk. `cloud_essd`: ESSD cloud disk.
3045
+ :param pulumi.Input[str] system_disk_category: The system disk category of worker node. Its valid value are `cloud_ssd`, `cloud_efficiency`, `cloud_essd` and `cloud_auto`.
3046
+ :param pulumi.Input[str] system_disk_encrypt_algorithm: The encryption algorithm used by the system disk. Value range: aes-256.
3047
+ :param pulumi.Input[bool] system_disk_encrypted: Whether to encrypt the system disk. Value range: `true`: encryption. `false`: Do not encrypt.
3048
+ :param pulumi.Input[str] system_disk_kms_key: The ID of the KMS key used by the system disk.
3049
+ :param pulumi.Input[str] system_disk_performance_level: The system disk performance of the node takes effect only for the ESSD disk.
3050
+ - `PL0`: maximum random read/write IOPS 10000 for a single disk.
3051
+ - `PL1`: maximum random read/write IOPS 50000 for a single disk.
3052
+ - `PL2`: highest random read/write IOPS 100000 for a single disk.
3053
+ - `PL3`: maximum random read/write IOPS 1 million for a single disk.
3054
+ :param pulumi.Input[int] system_disk_provisioned_iops: The predefined IOPS of a system disk. Valid values: 0 to min{50,000, 1,000 × Capacity - Baseline IOPS}. Baseline IOPS = min{1,800 + 50 × Capacity, 50,000}. This parameter is supported only when `system_disk_category` is set to `cloud_auto`.
2369
3055
  :param pulumi.Input[int] system_disk_size: The system disk category of worker node. Its valid value range [40~500] in GB. Default to `120`.
2370
- :param pulumi.Input[str] system_disk_snapshot_policy_id: The system disk snapshot policy id.
2371
- :param pulumi.Input[Mapping[str, Any]] tags: A Map of tags to assign to the resource. It will be applied for ECS instances finally. Detailed below.
2372
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NodePoolTaintArgs']]]] taints: A List of Kubernetes taints to assign to the nodes. Detailed below. More information in [Taints and Toleration](https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/). See `taints` below.
2373
- :param pulumi.Input[bool] unschedulable: Set the newly added node as unschedulable. If you want to open the scheduling option, you can open it in the node list of the console. If you are using an auto-scaling node pool, the setting will not take effect. Default is `false`.
2374
- :param pulumi.Input[str] user_data: Windows instances support batch and PowerShell scripts. If your script file is larger than 1 KB, we recommend that you upload the script to Object Storage Service (OSS) and pull it through the internal endpoint of your OSS bucket.
2375
- :param pulumi.Input[str] vpc_id: The VPC of the nodes in the node pool.
3056
+ :param pulumi.Input[str] system_disk_snapshot_policy_id: The ID of the automatic snapshot policy used by the system disk.
3057
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Add tags only for ECS instances. The maximum length of the tag key is 128 characters. The tag key and value cannot start with aliyun or acs:, or contain https:// or http://.
3058
+ :param pulumi.Input[Sequence[pulumi.Input[Union['NodePoolTaintArgs', 'NodePoolTaintArgsDict']]]] taints: A List of Kubernetes taints to assign to the nodes. Detailed below. More information in [Taints and Toleration](https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/). See `taints` below.
3059
+ :param pulumi.Input[Union['NodePoolTeeConfigArgs', 'NodePoolTeeConfigArgsDict']] tee_config: The configuration about confidential computing for the cluster. See `tee_config` below.
3060
+ :param pulumi.Input[bool] unschedulable: Whether the node after expansion can be scheduled.
3061
+ :param pulumi.Input[bool] update_nodes: Synchronously update node labels and taints.
3062
+ :param pulumi.Input[str] user_data: Node custom data, base64-encoded.
2376
3063
  :param pulumi.Input[Sequence[pulumi.Input[str]]] vswitch_ids: The vswitches used by node pool workers.
2377
3064
  """
2378
3065
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -2383,10 +3070,12 @@ class NodePool(pulumi.CustomResource):
2383
3070
  __props__.__dict__["auto_renew_period"] = auto_renew_period
2384
3071
  __props__.__dict__["cis_enabled"] = cis_enabled
2385
3072
  __props__.__dict__["cluster_id"] = cluster_id
3073
+ __props__.__dict__["compensate_with_on_demand"] = compensate_with_on_demand
2386
3074
  __props__.__dict__["cpu_policy"] = cpu_policy
2387
3075
  __props__.__dict__["data_disks"] = data_disks
2388
3076
  __props__.__dict__["deployment_set_id"] = deployment_set_id
2389
3077
  __props__.__dict__["desired_size"] = desired_size
3078
+ __props__.__dict__["force_delete"] = force_delete
2390
3079
  __props__.__dict__["format_disk"] = format_disk
2391
3080
  __props__.__dict__["image_id"] = image_id
2392
3081
  __props__.__dict__["image_type"] = image_type
@@ -2402,19 +3091,25 @@ class NodePool(pulumi.CustomResource):
2402
3091
  __props__.__dict__["kms_encryption_context"] = kms_encryption_context
2403
3092
  __props__.__dict__["kubelet_configuration"] = kubelet_configuration
2404
3093
  __props__.__dict__["labels"] = labels
3094
+ __props__.__dict__["login_as_non_root"] = login_as_non_root
2405
3095
  __props__.__dict__["management"] = management
3096
+ __props__.__dict__["multi_az_policy"] = multi_az_policy
2406
3097
  __props__.__dict__["name"] = name
2407
3098
  __props__.__dict__["node_count"] = node_count
2408
3099
  __props__.__dict__["node_name_mode"] = node_name_mode
3100
+ __props__.__dict__["node_pool_id"] = node_pool_id
3101
+ __props__.__dict__["node_pool_name"] = node_pool_name
3102
+ __props__.__dict__["on_demand_base_capacity"] = on_demand_base_capacity
3103
+ __props__.__dict__["on_demand_percentage_above_base_capacity"] = on_demand_percentage_above_base_capacity
2409
3104
  __props__.__dict__["password"] = password
2410
3105
  __props__.__dict__["period"] = period
2411
3106
  __props__.__dict__["period_unit"] = period_unit
2412
3107
  __props__.__dict__["platform"] = platform
2413
- __props__.__dict__["polardb_ids"] = polardb_ids
3108
+ __props__.__dict__["pre_user_data"] = pre_user_data
3109
+ __props__.__dict__["private_pool_options"] = private_pool_options
2414
3110
  __props__.__dict__["rds_instances"] = rds_instances
2415
3111
  __props__.__dict__["resource_group_id"] = resource_group_id
2416
3112
  __props__.__dict__["rolling_policy"] = rolling_policy
2417
- __props__.__dict__["rollout_policy"] = rollout_policy
2418
3113
  __props__.__dict__["runtime_name"] = runtime_name
2419
3114
  __props__.__dict__["runtime_version"] = runtime_version
2420
3115
  __props__.__dict__["scaling_config"] = scaling_config
@@ -2422,21 +3117,28 @@ class NodePool(pulumi.CustomResource):
2422
3117
  __props__.__dict__["scaling_policy"] = scaling_policy
2423
3118
  __props__.__dict__["security_group_id"] = security_group_id
2424
3119
  __props__.__dict__["security_group_ids"] = security_group_ids
3120
+ __props__.__dict__["security_hardening_os"] = security_hardening_os
2425
3121
  __props__.__dict__["soc_enabled"] = soc_enabled
3122
+ __props__.__dict__["spot_instance_pools"] = spot_instance_pools
3123
+ __props__.__dict__["spot_instance_remedy"] = spot_instance_remedy
2426
3124
  __props__.__dict__["spot_price_limits"] = spot_price_limits
2427
3125
  __props__.__dict__["spot_strategy"] = spot_strategy
3126
+ __props__.__dict__["system_disk_bursting_enabled"] = system_disk_bursting_enabled
3127
+ __props__.__dict__["system_disk_categories"] = system_disk_categories
2428
3128
  __props__.__dict__["system_disk_category"] = system_disk_category
2429
3129
  __props__.__dict__["system_disk_encrypt_algorithm"] = system_disk_encrypt_algorithm
2430
3130
  __props__.__dict__["system_disk_encrypted"] = system_disk_encrypted
2431
3131
  __props__.__dict__["system_disk_kms_key"] = system_disk_kms_key
2432
3132
  __props__.__dict__["system_disk_performance_level"] = system_disk_performance_level
3133
+ __props__.__dict__["system_disk_provisioned_iops"] = system_disk_provisioned_iops
2433
3134
  __props__.__dict__["system_disk_size"] = system_disk_size
2434
3135
  __props__.__dict__["system_disk_snapshot_policy_id"] = system_disk_snapshot_policy_id
2435
3136
  __props__.__dict__["tags"] = tags
2436
3137
  __props__.__dict__["taints"] = taints
3138
+ __props__.__dict__["tee_config"] = tee_config
2437
3139
  __props__.__dict__["unschedulable"] = unschedulable
3140
+ __props__.__dict__["update_nodes"] = update_nodes
2438
3141
  __props__.__dict__["user_data"] = user_data
2439
- __props__.__dict__["vpc_id"] = vpc_id
2440
3142
  __props__.__dict__["vswitch_ids"] = vswitch_ids
2441
3143
  return NodePool(resource_name, opts=opts, __props__=__props__)
2442
3144
 
@@ -2444,7 +3146,7 @@ class NodePool(pulumi.CustomResource):
2444
3146
  @pulumi.getter(name="autoRenew")
2445
3147
  def auto_renew(self) -> pulumi.Output[Optional[bool]]:
2446
3148
  """
2447
- Enable Node payment auto-renew, default is `false`.
3149
+ Whether to enable automatic renewal for nodes in the node pool takes effect only when `instance_charge_type` is set to `PrePaid`. Default value: `false`. Valid values:
2448
3150
  """
2449
3151
  return pulumi.get(self, "auto_renew")
2450
3152
 
@@ -2452,15 +3154,16 @@ class NodePool(pulumi.CustomResource):
2452
3154
  @pulumi.getter(name="autoRenewPeriod")
2453
3155
  def auto_renew_period(self) -> pulumi.Output[Optional[int]]:
2454
3156
  """
2455
- Node payment auto-renew period, one of `1`, `2`, `3`,`6`, `12`.
3157
+ The automatic renewal period of nodes in the node pool takes effect only when you select Prepaid and Automatic Renewal, and is a required value. When `PeriodUnit = Month`, the value range is {1, 2, 3, 6, 12}. Default value: 1.
2456
3158
  """
2457
3159
  return pulumi.get(self, "auto_renew_period")
2458
3160
 
2459
3161
  @property
2460
3162
  @pulumi.getter(name="cisEnabled")
3163
+ @_utilities.deprecated("""Field 'cis_enabled' has been deprecated from provider version 1.223.1. Whether enable worker node to support cis security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. Use `security_hardening_os` instead.""")
2461
3164
  def cis_enabled(self) -> pulumi.Output[Optional[bool]]:
2462
3165
  """
2463
- Whether enable worker node to support cis security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. See [CIS Reinforcement](https://help.aliyun.com/document_detail/223744.html).
3166
+ Whether enable worker node to support cis security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. Use `security_hardening_os` instead.
2464
3167
  """
2465
3168
  return pulumi.get(self, "cis_enabled")
2466
3169
 
@@ -2472,11 +3175,19 @@ class NodePool(pulumi.CustomResource):
2472
3175
  """
2473
3176
  return pulumi.get(self, "cluster_id")
2474
3177
 
3178
+ @property
3179
+ @pulumi.getter(name="compensateWithOnDemand")
3180
+ def compensate_with_on_demand(self) -> pulumi.Output[Optional[bool]]:
3181
+ """
3182
+ Specifies whether to automatically create pay-as-you-go instances to meet the required number of ECS instances if preemptible instances cannot be created due to reasons such as cost or insufficient inventory. This parameter takes effect when you set `multi_az_policy` to `COST_OPTIMIZED`. Valid values: `true`: automatically creates pay-as-you-go instances to meet the required number of ECS instances if preemptible instances cannot be created. `false`: does not create pay-as-you-go instances to meet the required number of ECS instances if preemptible instances cannot be created.
3183
+ """
3184
+ return pulumi.get(self, "compensate_with_on_demand")
3185
+
2475
3186
  @property
2476
3187
  @pulumi.getter(name="cpuPolicy")
2477
- def cpu_policy(self) -> pulumi.Output[Optional[str]]:
3188
+ def cpu_policy(self) -> pulumi.Output[str]:
2478
3189
  """
2479
- Kubelet cpu policy. For Kubernetes 1.12.6 and later, its valid value is either `static` or `none`. Default to `none` and modification is not supported.
3190
+ Node CPU management policies. Default value: `none`. When the cluster version is 1.12.6 or later, the following two policies are supported:
2480
3191
  """
2481
3192
  return pulumi.get(self, "cpu_policy")
2482
3193
 
@@ -2484,13 +3195,13 @@ class NodePool(pulumi.CustomResource):
2484
3195
  @pulumi.getter(name="dataDisks")
2485
3196
  def data_disks(self) -> pulumi.Output[Optional[Sequence['outputs.NodePoolDataDisk']]]:
2486
3197
  """
2487
- The data disk configurations of worker nodes, such as the disk type and disk size. See `data_disks` below.
3198
+ Configure the data disk of the node in the node pool. See `data_disks` below.
2488
3199
  """
2489
3200
  return pulumi.get(self, "data_disks")
2490
3201
 
2491
3202
  @property
2492
3203
  @pulumi.getter(name="deploymentSetId")
2493
- def deployment_set_id(self) -> pulumi.Output[str]:
3204
+ def deployment_set_id(self) -> pulumi.Output[Optional[str]]:
2494
3205
  """
2495
3206
  The deployment set of node pool. Specify the deploymentSet to ensure that the nodes in the node pool can be distributed on different physical machines.
2496
3207
  """
@@ -2498,12 +3209,20 @@ class NodePool(pulumi.CustomResource):
2498
3209
 
2499
3210
  @property
2500
3211
  @pulumi.getter(name="desiredSize")
2501
- def desired_size(self) -> pulumi.Output[int]:
3212
+ def desired_size(self) -> pulumi.Output[Optional[int]]:
2502
3213
  """
2503
- The desired size of nodes of the node pool. From version 1.158.0, `desired_size` is not required.
3214
+ Number of expected nodes in the node pool.
2504
3215
  """
2505
3216
  return pulumi.get(self, "desired_size")
2506
3217
 
3218
+ @property
3219
+ @pulumi.getter(name="forceDelete")
3220
+ def force_delete(self) -> pulumi.Output[Optional[bool]]:
3221
+ """
3222
+ Whether to force deletion.
3223
+ """
3224
+ return pulumi.get(self, "force_delete")
3225
+
2507
3226
  @property
2508
3227
  @pulumi.getter(name="formatDisk")
2509
3228
  def format_disk(self) -> pulumi.Output[bool]:
@@ -2516,7 +3235,7 @@ class NodePool(pulumi.CustomResource):
2516
3235
  @pulumi.getter(name="imageId")
2517
3236
  def image_id(self) -> pulumi.Output[str]:
2518
3237
  """
2519
- Custom Image support. Must based on CentOS7 or AliyunLinux2.
3238
+ The custom image ID. The system-provided image is used by default.
2520
3239
  """
2521
3240
  return pulumi.get(self, "image_id")
2522
3241
 
@@ -2524,7 +3243,16 @@ class NodePool(pulumi.CustomResource):
2524
3243
  @pulumi.getter(name="imageType")
2525
3244
  def image_type(self) -> pulumi.Output[str]:
2526
3245
  """
2527
- The image type, instead of `platform`. This field cannot be modified. One of `AliyunLinux`, `AliyunLinux3`, `AliyunLinux3Arm64`, `AliyunLinuxUEFI`, `CentOS`, `Windows`,`WindowsCore`,`AliyunLinux Qboot`,`ContainerOS`. If you select `Windows` or `WindowsCore`, the `passord` is required.
3246
+ The operating system image type and the `platform` parameter can be selected from the following values:
3247
+ - `AliyunLinux` : Alinux2 image.
3248
+ - `AliyunLinux3` : Alinux3 image.
3249
+ - `AliyunLinux3Arm64` : Alinux3 mirror ARM version.
3250
+ - `AliyunLinuxUEFI` : Alinux2 Image UEFI version.
3251
+ - `CentOS` : CentOS image.
3252
+ - `Windows` : Windows image.
3253
+ - `WindowsCore` : WindowsCore image.
3254
+ - `ContainerOS` : container-optimized image.
3255
+ - `Ubuntu`: (Available since v1.236.0) Ubuntu image.
2528
3256
  """
2529
3257
  return pulumi.get(self, "image_type")
2530
3258
 
@@ -2532,7 +3260,7 @@ class NodePool(pulumi.CustomResource):
2532
3260
  @pulumi.getter(name="installCloudMonitor")
2533
3261
  def install_cloud_monitor(self) -> pulumi.Output[Optional[bool]]:
2534
3262
  """
2535
- Install the cloud monitoring plug-in on the node, and you can view the monitoring information of the instance through the cloud monitoring console. Default is `true`.
3263
+ Whether to install cloud monitoring on the ECS node. After installation, you can view the monitoring information of the created ECS instance in the cloud monitoring console and recommend enable it. Default value: `false`. Valid values:
2536
3264
  """
2537
3265
  return pulumi.get(self, "install_cloud_monitor")
2538
3266
 
@@ -2548,7 +3276,7 @@ class NodePool(pulumi.CustomResource):
2548
3276
  @pulumi.getter(name="instanceTypes")
2549
3277
  def instance_types(self) -> pulumi.Output[Sequence[str]]:
2550
3278
  """
2551
- The instance type of worker node.
3279
+ In the node instance specification list, you can select multiple instance specifications as alternatives. When each node is created, it will try to purchase from the first specification until it is created successfully. The final purchased instance specifications may vary with inventory changes.
2552
3280
  """
2553
3281
  return pulumi.get(self, "instance_types")
2554
3282
 
@@ -2562,7 +3290,7 @@ class NodePool(pulumi.CustomResource):
2562
3290
 
2563
3291
  @property
2564
3292
  @pulumi.getter(name="internetChargeType")
2565
- def internet_charge_type(self) -> pulumi.Output[str]:
3293
+ def internet_charge_type(self) -> pulumi.Output[Optional[str]]:
2566
3294
  """
2567
3295
  The billing method for network usage. Valid values `PayByBandwidth` and `PayByTraffic`. Conflict with `eip_internet_charge_type`, EIP and public network IP can only choose one.
2568
3296
  """
@@ -2570,9 +3298,9 @@ class NodePool(pulumi.CustomResource):
2570
3298
 
2571
3299
  @property
2572
3300
  @pulumi.getter(name="internetMaxBandwidthOut")
2573
- def internet_max_bandwidth_out(self) -> pulumi.Output[int]:
3301
+ def internet_max_bandwidth_out(self) -> pulumi.Output[Optional[int]]:
2574
3302
  """
2575
- The maximum outbound bandwidth for the public network. Unit: Mbit/s. Valid values: 0 to 100.
3303
+ The maximum bandwidth of the public IP address of the node. The unit is Mbps(Mega bit per second). The value range is:\\[1,100\\]
2576
3304
  """
2577
3305
  return pulumi.get(self, "internet_max_bandwidth_out")
2578
3306
 
@@ -2588,7 +3316,7 @@ class NodePool(pulumi.CustomResource):
2588
3316
  @pulumi.getter(name="keyName")
2589
3317
  def key_name(self) -> pulumi.Output[Optional[str]]:
2590
3318
  """
2591
- 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. Only `key_name` is supported in the management node pool.
3319
+ The name of the key pair. When the node pool is a managed node pool, only `key_name` is supported.
2592
3320
  """
2593
3321
  return pulumi.get(self, "key_name")
2594
3322
 
@@ -2602,7 +3330,7 @@ class NodePool(pulumi.CustomResource):
2602
3330
 
2603
3331
  @property
2604
3332
  @pulumi.getter(name="kmsEncryptionContext")
2605
- def kms_encryption_context(self) -> pulumi.Output[Optional[Mapping[str, Any]]]:
3333
+ def kms_encryption_context(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
2606
3334
  """
2607
3335
  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.
2608
3336
  """
@@ -2612,7 +3340,7 @@ class NodePool(pulumi.CustomResource):
2612
3340
  @pulumi.getter(name="kubeletConfiguration")
2613
3341
  def kubelet_configuration(self) -> pulumi.Output[Optional['outputs.NodePoolKubeletConfiguration']]:
2614
3342
  """
2615
- Kubelet configuration parameters for worker nodes. See `kubelet_configuration` below. More information in [Kubelet Configuration](https://kubernetes.io/docs/reference/config-api/kubelet-config.v1beta1/).
3343
+ Kubelet configuration parameters for worker nodes. See `kubelet_configuration` below. More information in [Kubelet Configuration](https://kubernetes.io/docs/reference/config-api/kubelet-config.v1beta1/). See `kubelet_configuration` below.
2616
3344
  """
2617
3345
  return pulumi.get(self, "kubelet_configuration")
2618
3346
 
@@ -2624,46 +3352,96 @@ class NodePool(pulumi.CustomResource):
2624
3352
  """
2625
3353
  return pulumi.get(self, "labels")
2626
3354
 
3355
+ @property
3356
+ @pulumi.getter(name="loginAsNonRoot")
3357
+ def login_as_non_root(self) -> pulumi.Output[Optional[bool]]:
3358
+ """
3359
+ Whether the ECS instance is logged on as a ecs-user user. Valid value: `true` and `false`.
3360
+ """
3361
+ return pulumi.get(self, "login_as_non_root")
3362
+
2627
3363
  @property
2628
3364
  @pulumi.getter
2629
- def management(self) -> pulumi.Output[Optional['outputs.NodePoolManagement']]:
3365
+ def management(self) -> pulumi.Output['outputs.NodePoolManagement']:
2630
3366
  """
2631
- Managed node pool configuration. When using a managed node pool, the node key must use `key_name`. See `management` below.
3367
+ Managed node pool configuration. See `management` below.
2632
3368
  """
2633
3369
  return pulumi.get(self, "management")
2634
3370
 
3371
+ @property
3372
+ @pulumi.getter(name="multiAzPolicy")
3373
+ def multi_az_policy(self) -> pulumi.Output[str]:
3374
+ """
3375
+ The scaling policy for ECS instances in a multi-zone scaling group. Valid value: `PRIORITY`, `COST_OPTIMIZED` and `BALANCE`. `PRIORITY`: scales the capacity according to the virtual switches you define (VSwitchIds.N). When an ECS instance cannot be created in the zone where the higher-priority vSwitch is located, the next-priority vSwitch is automatically used to create an ECS instance. `COST_OPTIMIZED`: try to create by vCPU unit price from low to high. When the scaling configuration is configured with multiple instances of preemptible billing, preemptible instances are created first. You can continue to use the `CompensateWithOnDemand` parameter to specify whether to automatically try to create a preemptible instance by paying for it. It takes effect only when the scaling configuration has multi-instance specifications or preemptible instances. `BALANCE`: distributes ECS instances evenly among the multi-zone specified by the scaling group. If the zones become unbalanced due to insufficient inventory, you can use the API RebalanceInstances to balance resources.
3376
+ """
3377
+ return pulumi.get(self, "multi_az_policy")
3378
+
2635
3379
  @property
2636
3380
  @pulumi.getter
3381
+ @_utilities.deprecated("""Field 'name' has been deprecated since provider version 1.219.0. New field 'node_pool_name' instead.""")
2637
3382
  def name(self) -> pulumi.Output[str]:
2638
3383
  """
2639
- The name of node pool.
3384
+ . Field 'name' has been deprecated from provider version 1.219.0. New field 'node_pool_name' instead.
2640
3385
  """
2641
3386
  return pulumi.get(self, "name")
2642
3387
 
2643
3388
  @property
2644
3389
  @pulumi.getter(name="nodeCount")
3390
+ @_utilities.deprecated("""Field 'node_count' has been deprecated from provider version 1.158.0. New field 'desired_size' instead.""")
2645
3391
  def node_count(self) -> pulumi.Output[int]:
2646
3392
  """
2647
3393
  The worker node number of the node pool. From version 1.111.0, `node_count` is not required.
2648
3394
  """
2649
- warnings.warn("""Field 'node_count' has been deprecated from provider version 1.158.0. New field 'desired_size' instead.""", DeprecationWarning)
2650
- pulumi.log.warn("""node_count is deprecated: Field 'node_count' has been deprecated from provider version 1.158.0. New field 'desired_size' instead.""")
2651
-
2652
3395
  return pulumi.get(self, "node_count")
2653
3396
 
2654
3397
  @property
2655
3398
  @pulumi.getter(name="nodeNameMode")
2656
3399
  def node_name_mode(self) -> pulumi.Output[str]:
2657
3400
  """
2658
- Each node name consists of a prefix, its private network IP, and a suffix, the input format is `customized,<prefix>,ip,<suffix>`. For example "customized,aliyun.com-,ip,-test", if the node private network IP address is 192.168.59.176, the prefix is aliyun.com-,and the suffix is -test, the node name will be aliyun.com-192.168.59.176-test.
3401
+ Each node name consists of a prefix, its private network IP, and a suffix, separated by commas. The input format is `customized,,ip,`.
3402
+ - The prefix and suffix can be composed of one or more parts separated by '.', each part can use lowercase letters, numbers and '-', and the beginning and end of the node name must be lowercase letters and numbers.
3403
+ - The node IP address is the complete private IP address of the node.
3404
+ - For example, if the string `customized,aliyun,ip,com` is passed in (where 'customized' and 'ip' are fixed strings, 'aliyun' is the prefix, and 'com' is the suffix), the name of the node is `aliyun192.168.xxx.xxxcom`.
2659
3405
  """
2660
3406
  return pulumi.get(self, "node_name_mode")
2661
3407
 
3408
+ @property
3409
+ @pulumi.getter(name="nodePoolId")
3410
+ def node_pool_id(self) -> pulumi.Output[str]:
3411
+ """
3412
+ The first ID of the resource.
3413
+ """
3414
+ return pulumi.get(self, "node_pool_id")
3415
+
3416
+ @property
3417
+ @pulumi.getter(name="nodePoolName")
3418
+ def node_pool_name(self) -> pulumi.Output[str]:
3419
+ """
3420
+ The name of node pool.
3421
+ """
3422
+ return pulumi.get(self, "node_pool_name")
3423
+
3424
+ @property
3425
+ @pulumi.getter(name="onDemandBaseCapacity")
3426
+ def on_demand_base_capacity(self) -> pulumi.Output[Optional[int]]:
3427
+ """
3428
+ The minimum number of pay-as-you-go instances that must be kept in the scaling group. Valid values: 0 to 1000. If the number of pay-as-you-go instances is less than the value of this parameter, Auto Scaling preferably creates pay-as-you-go instances.
3429
+ """
3430
+ return pulumi.get(self, "on_demand_base_capacity")
3431
+
3432
+ @property
3433
+ @pulumi.getter(name="onDemandPercentageAboveBaseCapacity")
3434
+ def on_demand_percentage_above_base_capacity(self) -> pulumi.Output[Optional[int]]:
3435
+ """
3436
+ The percentage of pay-as-you-go instances among the extra instances that exceed the number specified by `on_demand_base_capacity`. Valid values: 0 to 100.
3437
+ """
3438
+ return pulumi.get(self, "on_demand_percentage_above_base_capacity")
3439
+
2662
3440
  @property
2663
3441
  @pulumi.getter
2664
3442
  def password(self) -> pulumi.Output[Optional[str]]:
2665
3443
  """
2666
- The password of ssh login cluster node. You have to specify one of `password` `key_name` `kms_encrypted_password` fields.
3444
+ The password of ssh login. You have to specify one of `password` and `key_name` fields. The password rule is 8 to 30 characters and contains at least three items (upper and lower case letters, numbers, and special symbols).
2667
3445
  """
2668
3446
  return pulumi.get(self, "password")
2669
3447
 
@@ -2671,7 +3449,7 @@ class NodePool(pulumi.CustomResource):
2671
3449
  @pulumi.getter
2672
3450
  def period(self) -> pulumi.Output[Optional[int]]:
2673
3451
  """
2674
- Node payment period. Its valid value is one of {1, 2, 3, 6, 12, 24, 36, 48, 60}.
3452
+ Node payment period. Its valid value is one of {1, 2, 3, 6, 12}.
2675
3453
  """
2676
3454
  return pulumi.get(self, "period")
2677
3455
 
@@ -2685,28 +3463,34 @@ class NodePool(pulumi.CustomResource):
2685
3463
 
2686
3464
  @property
2687
3465
  @pulumi.getter
3466
+ @_utilities.deprecated("""Field 'platform' has been deprecated from provider version 1.145.0. Operating system release, using `image_type` instead.""")
2688
3467
  def platform(self) -> pulumi.Output[str]:
2689
3468
  """
2690
- The platform. One of `AliyunLinux`, `Windows`, `CentOS`, `WindowsCore`. If you select `Windows` or `WindowsCore`, the `passord` is required. Field `platform` has been deprecated from provider version 1.145.0. New field `image_type` instead.
3469
+ Operating system release, using `image_type` instead.
2691
3470
  """
2692
- warnings.warn("""Field 'platform' has been deprecated from provider version 1.145.0. New field 'image_type' instead""", DeprecationWarning)
2693
- pulumi.log.warn("""platform is deprecated: Field 'platform' has been deprecated from provider version 1.145.0. New field 'image_type' instead""")
2694
-
2695
3471
  return pulumi.get(self, "platform")
2696
3472
 
2697
3473
  @property
2698
- @pulumi.getter(name="polardbIds")
2699
- def polardb_ids(self) -> pulumi.Output[Optional[Sequence[str]]]:
3474
+ @pulumi.getter(name="preUserData")
3475
+ def pre_user_data(self) -> pulumi.Output[Optional[str]]:
2700
3476
  """
2701
- PolarDB id list, You can choose which PolarDB whitelist to add instances to.
3477
+ Node pre custom data, base64-encoded, the script executed before the node is initialized.
2702
3478
  """
2703
- return pulumi.get(self, "polardb_ids")
3479
+ return pulumi.get(self, "pre_user_data")
3480
+
3481
+ @property
3482
+ @pulumi.getter(name="privatePoolOptions")
3483
+ def private_pool_options(self) -> pulumi.Output[Optional['outputs.NodePoolPrivatePoolOptions']]:
3484
+ """
3485
+ Private node pool configuration. See `private_pool_options` below.
3486
+ """
3487
+ return pulumi.get(self, "private_pool_options")
2704
3488
 
2705
3489
  @property
2706
3490
  @pulumi.getter(name="rdsInstances")
2707
3491
  def rds_instances(self) -> pulumi.Output[Optional[Sequence[str]]]:
2708
3492
  """
2709
- RDS instance list, You can choose which RDS instances whitelist to add instances to.
3493
+ The list of RDS instances.
2710
3494
  """
2711
3495
  return pulumi.get(self, "rds_instances")
2712
3496
 
@@ -2714,7 +3498,7 @@ class NodePool(pulumi.CustomResource):
2714
3498
  @pulumi.getter(name="resourceGroupId")
2715
3499
  def resource_group_id(self) -> pulumi.Output[str]:
2716
3500
  """
2717
- The ID of the resource group,by default these cloud resources are automatically assigned to the default resource group.
3501
+ The ID of the resource group
2718
3502
  """
2719
3503
  return pulumi.get(self, "resource_group_id")
2720
3504
 
@@ -2722,21 +3506,10 @@ class NodePool(pulumi.CustomResource):
2722
3506
  @pulumi.getter(name="rollingPolicy")
2723
3507
  def rolling_policy(self) -> pulumi.Output[Optional['outputs.NodePoolRollingPolicy']]:
2724
3508
  """
2725
- Rolling policy is used to specify the strategy when the node pool is rolling update. This field works when nodepool updating. See `rolling_policy` below.
3509
+ Rotary configuration. See `rolling_policy` below.
2726
3510
  """
2727
3511
  return pulumi.get(self, "rolling_policy")
2728
3512
 
2729
- @property
2730
- @pulumi.getter(name="rolloutPolicy")
2731
- def rollout_policy(self) -> pulumi.Output[Optional['outputs.NodePoolRolloutPolicy']]:
2732
- """
2733
- Rollout policy is used to specify the strategy when the node pool is rolling update. This field works when node pool updating. Please use `rolling_policy` to instead it from provider version 1.185.0. See `rollout_policy` below.
2734
- """
2735
- warnings.warn("""Field 'rollout_policy' has been deprecated from provider version 1.184.0. Please use new field 'rolling_policy' instead it to ensure the config takes effect""", DeprecationWarning)
2736
- pulumi.log.warn("""rollout_policy is deprecated: Field 'rollout_policy' has been deprecated from provider version 1.184.0. Please use new field 'rolling_policy' instead it to ensure the config takes effect""")
2737
-
2738
- return pulumi.get(self, "rollout_policy")
2739
-
2740
3513
  @property
2741
3514
  @pulumi.getter(name="runtimeName")
2742
3515
  def runtime_name(self) -> pulumi.Output[str]:
@@ -2755,9 +3528,9 @@ class NodePool(pulumi.CustomResource):
2755
3528
 
2756
3529
  @property
2757
3530
  @pulumi.getter(name="scalingConfig")
2758
- def scaling_config(self) -> pulumi.Output[Optional['outputs.NodePoolScalingConfig']]:
3531
+ def scaling_config(self) -> pulumi.Output['outputs.NodePoolScalingConfig']:
2759
3532
  """
2760
- Auto scaling node pool configuration. See `scaling_config` below. With auto-scaling is enabled, the nodes in the node pool will be labeled with `k8s.aliyun.com=true` to prevent system pods such as coredns, metrics-servers from being scheduled to elastic nodes, and to prevent node shrinkage from causing business abnormalities.
3533
+ Automatic scaling configuration. See `scaling_config` below.
2761
3534
  """
2762
3535
  return pulumi.get(self, "scaling_config")
2763
3536
 
@@ -2765,7 +3538,7 @@ class NodePool(pulumi.CustomResource):
2765
3538
  @pulumi.getter(name="scalingGroupId")
2766
3539
  def scaling_group_id(self) -> pulumi.Output[str]:
2767
3540
  """
2768
- The scaling group id.
3541
+ The ID of the scaling group.
2769
3542
  """
2770
3543
  return pulumi.get(self, "scaling_group_id")
2771
3544
 
@@ -2773,19 +3546,17 @@ class NodePool(pulumi.CustomResource):
2773
3546
  @pulumi.getter(name="scalingPolicy")
2774
3547
  def scaling_policy(self) -> pulumi.Output[str]:
2775
3548
  """
2776
- The scaling mode. Valid values: `release`, `recycle`, default is `release`. Standard mode(release): Create and release ECS instances based on requests.Swift mode(recycle): Create, stop, and restart ECS instances based on needs. New ECS instances are only created when no stopped ECS instance is avalible. This mode further accelerates the scaling process. Apart from ECS instances that use local storage, when an ECS instance is stopped, you are only chatged for storage space.
3549
+ Scaling group mode, default value: `release`. Valid values:
2777
3550
  """
2778
3551
  return pulumi.get(self, "scaling_policy")
2779
3552
 
2780
3553
  @property
2781
3554
  @pulumi.getter(name="securityGroupId")
3555
+ @_utilities.deprecated("""Field 'security_group_id' has been deprecated from provider version 1.145.0. The security group ID of the node pool. This field has been replaced by `security_group_ids`, please use the `security_group_ids` field instead.""")
2782
3556
  def security_group_id(self) -> pulumi.Output[str]:
2783
3557
  """
2784
- The security group id for worker node. Field `security_group_id` has been deprecated from provider version 1.145.0. New field `security_group_ids` instead.
3558
+ The security group ID of the node pool. This field has been replaced by `security_group_ids`, please use the `security_group_ids` field instead.
2785
3559
  """
2786
- warnings.warn("""Field 'security_group_id' has been deprecated from provider version 1.145.0. New field 'security_group_ids' instead""", DeprecationWarning)
2787
- pulumi.log.warn("""security_group_id is deprecated: Field 'security_group_id' has been deprecated from provider version 1.145.0. New field 'security_group_ids' instead""")
2788
-
2789
3560
  return pulumi.get(self, "security_group_id")
2790
3561
 
2791
3562
  @property
@@ -2796,20 +3567,45 @@ class NodePool(pulumi.CustomResource):
2796
3567
  """
2797
3568
  return pulumi.get(self, "security_group_ids")
2798
3569
 
3570
+ @property
3571
+ @pulumi.getter(name="securityHardeningOs")
3572
+ def security_hardening_os(self) -> pulumi.Output[Optional[bool]]:
3573
+ """
3574
+ Alibaba Cloud OS security reinforcement. Default value: `false`. Value:
3575
+ """
3576
+ return pulumi.get(self, "security_hardening_os")
3577
+
2799
3578
  @property
2800
3579
  @pulumi.getter(name="socEnabled")
2801
3580
  def soc_enabled(self) -> pulumi.Output[Optional[bool]]:
2802
3581
  """
2803
- Whether enable worker node to support soc security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. See [SOC Reinforcement](https://help.aliyun.com/document_detail/196148.html).
2804
- > **NOTE:** It is forbidden to set both `cis_enabled` and `soc_enabled` to `true`at the same time.
3582
+ Whether enable worker node to support soc security reinforcement, its valid value `true` or `false`. Default to `false` and apply to AliyunLinux series. See [SOC Reinforcement](https://help.aliyun.com/document_detail/196148.html).
3583
+
3584
+ > **NOTE:** It is forbidden to set both `security_hardening_os` and `soc_enabled` to `true` at the same time.
2805
3585
  """
2806
3586
  return pulumi.get(self, "soc_enabled")
2807
3587
 
3588
+ @property
3589
+ @pulumi.getter(name="spotInstancePools")
3590
+ def spot_instance_pools(self) -> pulumi.Output[Optional[int]]:
3591
+ """
3592
+ The number of instance types that are available. Auto Scaling creates preemptible instances of multiple instance types that are available at the lowest cost. Valid values: 1 to 10.
3593
+ """
3594
+ return pulumi.get(self, "spot_instance_pools")
3595
+
3596
+ @property
3597
+ @pulumi.getter(name="spotInstanceRemedy")
3598
+ def spot_instance_remedy(self) -> pulumi.Output[Optional[bool]]:
3599
+ """
3600
+ Specifies whether to supplement preemptible instances when the number of preemptible instances drops below the specified minimum number. If you set the value to true, Auto Scaling attempts to create a new preemptible instance when the system notifies that an existing preemptible instance is about to be reclaimed. Valid values: `true`: enables the supplementation of preemptible instances. `false`: disables the supplementation of preemptible instances.
3601
+ """
3602
+ return pulumi.get(self, "spot_instance_remedy")
3603
+
2808
3604
  @property
2809
3605
  @pulumi.getter(name="spotPriceLimits")
2810
3606
  def spot_price_limits(self) -> pulumi.Output[Optional[Sequence['outputs.NodePoolSpotPriceLimit']]]:
2811
3607
  """
2812
- The maximum hourly price of the instance. This parameter takes effect only when `spot_strategy` is set to `SpotWithPriceLimit`. You could enable multiple spot instances by setting this field repeatedly. See `spot_price_limit` below.
3608
+ The current single preemptible instance type market price range configuration. See `spot_price_limit` below.
2813
3609
  """
2814
3610
  return pulumi.get(self, "spot_price_limits")
2815
3611
 
@@ -2817,15 +3613,34 @@ class NodePool(pulumi.CustomResource):
2817
3613
  @pulumi.getter(name="spotStrategy")
2818
3614
  def spot_strategy(self) -> pulumi.Output[str]:
2819
3615
  """
2820
- The preemption policy for the pay-as-you-go instance. This parameter takes effect only when `instance_charge_type` is set to `PostPaid`. Valid value `SpotWithPriceLimit`,`SpotAsPriceGo` and `NoSpot`, default is `NoSpot`.
3616
+ The preemptible instance type. Value:
3617
+ - `NoSpot` : Non-preemptible instance.
3618
+ - `SpotWithPriceLimit` : Set the upper limit of the preemptible instance price.
3619
+ - `SpotAsPriceGo` : The system automatically bids, following the actual price of the current market.
2821
3620
  """
2822
3621
  return pulumi.get(self, "spot_strategy")
2823
3622
 
3623
+ @property
3624
+ @pulumi.getter(name="systemDiskBurstingEnabled")
3625
+ def system_disk_bursting_enabled(self) -> pulumi.Output[Optional[bool]]:
3626
+ """
3627
+ Specifies whether to enable the burst feature for system disks. Valid values:`true`: enables the burst feature. `false`: disables the burst feature. This parameter is supported only when `system_disk_category` is set to `cloud_auto`.
3628
+ """
3629
+ return pulumi.get(self, "system_disk_bursting_enabled")
3630
+
3631
+ @property
3632
+ @pulumi.getter(name="systemDiskCategories")
3633
+ def system_disk_categories(self) -> pulumi.Output[Sequence[str]]:
3634
+ """
3635
+ The multi-disk categories of the system disk. When a high-priority disk type cannot be used, Auto Scaling automatically tries to create a system disk with the next priority disk category. Valid values: `cloud`: cloud disk. `cloud_efficiency`: a high-efficiency cloud disk. `cloud_ssd`:SSD cloud disk. `cloud_essd`: ESSD cloud disk.
3636
+ """
3637
+ return pulumi.get(self, "system_disk_categories")
3638
+
2824
3639
  @property
2825
3640
  @pulumi.getter(name="systemDiskCategory")
2826
- def system_disk_category(self) -> pulumi.Output[Optional[str]]:
3641
+ def system_disk_category(self) -> pulumi.Output[str]:
2827
3642
  """
2828
- The system disk category of worker node. Its valid value are `cloud_ssd`, `cloud_efficiency` and `cloud_essd`. Default to `cloud_efficiency`.
3643
+ The system disk category of worker node. Its valid value are `cloud_ssd`, `cloud_efficiency`, `cloud_essd` and `cloud_auto`.
2829
3644
  """
2830
3645
  return pulumi.get(self, "system_disk_category")
2831
3646
 
@@ -2833,7 +3648,7 @@ class NodePool(pulumi.CustomResource):
2833
3648
  @pulumi.getter(name="systemDiskEncryptAlgorithm")
2834
3649
  def system_disk_encrypt_algorithm(self) -> pulumi.Output[Optional[str]]:
2835
3650
  """
2836
- The encryption Algorithm for Encrypting System Disk. It takes effect when system_disk_encrypted is true. Valid values `aes-256` and `sm4-128`.
3651
+ The encryption algorithm used by the system disk. Value range: aes-256.
2837
3652
  """
2838
3653
  return pulumi.get(self, "system_disk_encrypt_algorithm")
2839
3654
 
@@ -2841,7 +3656,7 @@ class NodePool(pulumi.CustomResource):
2841
3656
  @pulumi.getter(name="systemDiskEncrypted")
2842
3657
  def system_disk_encrypted(self) -> pulumi.Output[Optional[bool]]:
2843
3658
  """
2844
- Whether to enable system disk encryption.
3659
+ Whether to encrypt the system disk. Value range: `true`: encryption. `false`: Do not encrypt.
2845
3660
  """
2846
3661
  return pulumi.get(self, "system_disk_encrypted")
2847
3662
 
@@ -2849,7 +3664,7 @@ class NodePool(pulumi.CustomResource):
2849
3664
  @pulumi.getter(name="systemDiskKmsKey")
2850
3665
  def system_disk_kms_key(self) -> pulumi.Output[Optional[str]]:
2851
3666
  """
2852
- The kms key id used to encrypt the system disk. It takes effect when system_disk_encrypted is true.
3667
+ The ID of the KMS key used by the system disk.
2853
3668
  """
2854
3669
  return pulumi.get(self, "system_disk_kms_key")
2855
3670
 
@@ -2857,10 +3672,22 @@ class NodePool(pulumi.CustomResource):
2857
3672
  @pulumi.getter(name="systemDiskPerformanceLevel")
2858
3673
  def system_disk_performance_level(self) -> pulumi.Output[Optional[str]]:
2859
3674
  """
2860
- The performance of system disk, only valid for ESSD disk. You have to specify one of `PL0` `PL1` `PL2` `PL3` fields.
3675
+ The system disk performance of the node takes effect only for the ESSD disk.
3676
+ - `PL0`: maximum random read/write IOPS 10000 for a single disk.
3677
+ - `PL1`: maximum random read/write IOPS 50000 for a single disk.
3678
+ - `PL2`: highest random read/write IOPS 100000 for a single disk.
3679
+ - `PL3`: maximum random read/write IOPS 1 million for a single disk.
2861
3680
  """
2862
3681
  return pulumi.get(self, "system_disk_performance_level")
2863
3682
 
3683
+ @property
3684
+ @pulumi.getter(name="systemDiskProvisionedIops")
3685
+ def system_disk_provisioned_iops(self) -> pulumi.Output[Optional[int]]:
3686
+ """
3687
+ The predefined IOPS of a system disk. Valid values: 0 to min{50,000, 1,000 × Capacity - Baseline IOPS}. Baseline IOPS = min{1,800 + 50 × Capacity, 50,000}. This parameter is supported only when `system_disk_category` is set to `cloud_auto`.
3688
+ """
3689
+ return pulumi.get(self, "system_disk_provisioned_iops")
3690
+
2864
3691
  @property
2865
3692
  @pulumi.getter(name="systemDiskSize")
2866
3693
  def system_disk_size(self) -> pulumi.Output[Optional[int]]:
@@ -2873,15 +3700,15 @@ class NodePool(pulumi.CustomResource):
2873
3700
  @pulumi.getter(name="systemDiskSnapshotPolicyId")
2874
3701
  def system_disk_snapshot_policy_id(self) -> pulumi.Output[Optional[str]]:
2875
3702
  """
2876
- The system disk snapshot policy id.
3703
+ The ID of the automatic snapshot policy used by the system disk.
2877
3704
  """
2878
3705
  return pulumi.get(self, "system_disk_snapshot_policy_id")
2879
3706
 
2880
3707
  @property
2881
3708
  @pulumi.getter
2882
- def tags(self) -> pulumi.Output[Optional[Mapping[str, Any]]]:
3709
+ def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
2883
3710
  """
2884
- A Map of tags to assign to the resource. It will be applied for ECS instances finally. Detailed below.
3711
+ Add tags only for ECS instances. The maximum length of the tag key is 128 characters. The tag key and value cannot start with aliyun or acs:, or contain https:// or http://.
2885
3712
  """
2886
3713
  return pulumi.get(self, "tags")
2887
3714
 
@@ -2893,29 +3720,37 @@ class NodePool(pulumi.CustomResource):
2893
3720
  """
2894
3721
  return pulumi.get(self, "taints")
2895
3722
 
3723
+ @property
3724
+ @pulumi.getter(name="teeConfig")
3725
+ def tee_config(self) -> pulumi.Output['outputs.NodePoolTeeConfig']:
3726
+ """
3727
+ The configuration about confidential computing for the cluster. See `tee_config` below.
3728
+ """
3729
+ return pulumi.get(self, "tee_config")
3730
+
2896
3731
  @property
2897
3732
  @pulumi.getter
2898
3733
  def unschedulable(self) -> pulumi.Output[Optional[bool]]:
2899
3734
  """
2900
- Set the newly added node as unschedulable. If you want to open the scheduling option, you can open it in the node list of the console. If you are using an auto-scaling node pool, the setting will not take effect. Default is `false`.
3735
+ Whether the node after expansion can be scheduled.
2901
3736
  """
2902
3737
  return pulumi.get(self, "unschedulable")
2903
3738
 
2904
3739
  @property
2905
- @pulumi.getter(name="userData")
2906
- def user_data(self) -> pulumi.Output[Optional[str]]:
3740
+ @pulumi.getter(name="updateNodes")
3741
+ def update_nodes(self) -> pulumi.Output[Optional[bool]]:
2907
3742
  """
2908
- Windows instances support batch and PowerShell scripts. If your script file is larger than 1 KB, we recommend that you upload the script to Object Storage Service (OSS) and pull it through the internal endpoint of your OSS bucket.
3743
+ Synchronously update node labels and taints.
2909
3744
  """
2910
- return pulumi.get(self, "user_data")
3745
+ return pulumi.get(self, "update_nodes")
2911
3746
 
2912
3747
  @property
2913
- @pulumi.getter(name="vpcId")
2914
- def vpc_id(self) -> pulumi.Output[str]:
3748
+ @pulumi.getter(name="userData")
3749
+ def user_data(self) -> pulumi.Output[Optional[str]]:
2915
3750
  """
2916
- The VPC of the nodes in the node pool.
3751
+ Node custom data, base64-encoded.
2917
3752
  """
2918
- return pulumi.get(self, "vpc_id")
3753
+ return pulumi.get(self, "user_data")
2919
3754
 
2920
3755
  @property
2921
3756
  @pulumi.getter(name="vswitchIds")