pulumiverse-scaleway 1.23.0a1736837529__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 pulumiverse-scaleway might be problematic. Click here for more details.

Files changed (205) hide show
  1. pulumiverse_scaleway/__init__.py +1065 -0
  2. pulumiverse_scaleway/_inputs.py +8688 -0
  3. pulumiverse_scaleway/_utilities.py +327 -0
  4. pulumiverse_scaleway/account_project.py +316 -0
  5. pulumiverse_scaleway/account_ssh_key.py +454 -0
  6. pulumiverse_scaleway/apple_silicon_server.py +564 -0
  7. pulumiverse_scaleway/baremetal_server.py +1579 -0
  8. pulumiverse_scaleway/block_snapshot.py +401 -0
  9. pulumiverse_scaleway/block_volume.py +527 -0
  10. pulumiverse_scaleway/cockpit.py +314 -0
  11. pulumiverse_scaleway/cockpit_alert_manager.py +401 -0
  12. pulumiverse_scaleway/cockpit_grafana_user.py +362 -0
  13. pulumiverse_scaleway/cockpit_source.py +567 -0
  14. pulumiverse_scaleway/cockpit_token.py +479 -0
  15. pulumiverse_scaleway/config/__init__.py +8 -0
  16. pulumiverse_scaleway/config/__init__.pyi +56 -0
  17. pulumiverse_scaleway/config/vars.py +78 -0
  18. pulumiverse_scaleway/container.py +1373 -0
  19. pulumiverse_scaleway/container_cron.py +458 -0
  20. pulumiverse_scaleway/container_domain.py +406 -0
  21. pulumiverse_scaleway/container_namespace.py +636 -0
  22. pulumiverse_scaleway/container_token.py +452 -0
  23. pulumiverse_scaleway/container_trigger.py +480 -0
  24. pulumiverse_scaleway/database.py +407 -0
  25. pulumiverse_scaleway/database_acl.py +332 -0
  26. pulumiverse_scaleway/database_backup.py +574 -0
  27. pulumiverse_scaleway/database_instance.py +1641 -0
  28. pulumiverse_scaleway/database_privilege.py +422 -0
  29. pulumiverse_scaleway/database_read_replica.py +528 -0
  30. pulumiverse_scaleway/database_user.py +446 -0
  31. pulumiverse_scaleway/domain_record.py +1116 -0
  32. pulumiverse_scaleway/domain_zone.py +430 -0
  33. pulumiverse_scaleway/flexible_ip.py +702 -0
  34. pulumiverse_scaleway/flexible_ip_mac_address.py +510 -0
  35. pulumiverse_scaleway/function.py +1103 -0
  36. pulumiverse_scaleway/function_cron.py +462 -0
  37. pulumiverse_scaleway/function_domain.py +370 -0
  38. pulumiverse_scaleway/function_namespace.py +580 -0
  39. pulumiverse_scaleway/function_token.py +460 -0
  40. pulumiverse_scaleway/function_trigger.py +480 -0
  41. pulumiverse_scaleway/get_account_project.py +170 -0
  42. pulumiverse_scaleway/get_account_ssh_key.py +205 -0
  43. pulumiverse_scaleway/get_availability_zones.py +139 -0
  44. pulumiverse_scaleway/get_baremetal_offer.py +245 -0
  45. pulumiverse_scaleway/get_baremetal_option.py +168 -0
  46. pulumiverse_scaleway/get_baremetal_os.py +174 -0
  47. pulumiverse_scaleway/get_baremetal_server.py +422 -0
  48. pulumiverse_scaleway/get_billing_consumptions.py +134 -0
  49. pulumiverse_scaleway/get_billing_invoices.py +154 -0
  50. pulumiverse_scaleway/get_block_snapshot.py +174 -0
  51. pulumiverse_scaleway/get_block_volume.py +188 -0
  52. pulumiverse_scaleway/get_cockpit.py +204 -0
  53. pulumiverse_scaleway/get_cockpit_plan.py +125 -0
  54. pulumiverse_scaleway/get_cockpit_source.py +262 -0
  55. pulumiverse_scaleway/get_config.py +180 -0
  56. pulumiverse_scaleway/get_container.py +522 -0
  57. pulumiverse_scaleway/get_container_namespace.py +283 -0
  58. pulumiverse_scaleway/get_database.py +187 -0
  59. pulumiverse_scaleway/get_database_acl.py +143 -0
  60. pulumiverse_scaleway/get_database_backup.py +253 -0
  61. pulumiverse_scaleway/get_database_instance.py +404 -0
  62. pulumiverse_scaleway/get_database_privilege.py +181 -0
  63. pulumiverse_scaleway/get_domain_record.py +340 -0
  64. pulumiverse_scaleway/get_domain_zone.py +201 -0
  65. pulumiverse_scaleway/get_flexible_ip.py +247 -0
  66. pulumiverse_scaleway/get_flexible_ips.py +240 -0
  67. pulumiverse_scaleway/get_function.py +365 -0
  68. pulumiverse_scaleway/get_function_namespace.py +238 -0
  69. pulumiverse_scaleway/get_iam_api_key.py +210 -0
  70. pulumiverse_scaleway/get_iam_application.py +210 -0
  71. pulumiverse_scaleway/get_iam_group.py +236 -0
  72. pulumiverse_scaleway/get_iam_ssh_key.py +212 -0
  73. pulumiverse_scaleway/get_iam_user.py +177 -0
  74. pulumiverse_scaleway/get_instance_image.py +305 -0
  75. pulumiverse_scaleway/get_instance_ip.py +204 -0
  76. pulumiverse_scaleway/get_instance_placement_group.py +212 -0
  77. pulumiverse_scaleway/get_instance_private_nic.py +226 -0
  78. pulumiverse_scaleway/get_instance_security_group.py +268 -0
  79. pulumiverse_scaleway/get_instance_server.py +502 -0
  80. pulumiverse_scaleway/get_instance_servers.py +187 -0
  81. pulumiverse_scaleway/get_instance_snapshot.py +248 -0
  82. pulumiverse_scaleway/get_instance_volume.py +215 -0
  83. pulumiverse_scaleway/get_iot_device.py +257 -0
  84. pulumiverse_scaleway/get_iot_hub.py +322 -0
  85. pulumiverse_scaleway/get_ipam_ip.py +419 -0
  86. pulumiverse_scaleway/get_ipam_ips.py +358 -0
  87. pulumiverse_scaleway/get_k8s_version.py +196 -0
  88. pulumiverse_scaleway/get_kubernetes_cluster.py +417 -0
  89. pulumiverse_scaleway/get_kubernetes_node_pool.py +436 -0
  90. pulumiverse_scaleway/get_lb_acls.py +198 -0
  91. pulumiverse_scaleway/get_lb_backend.py +486 -0
  92. pulumiverse_scaleway/get_lb_backends.py +196 -0
  93. pulumiverse_scaleway/get_lb_frontend.py +274 -0
  94. pulumiverse_scaleway/get_lb_frontends.py +196 -0
  95. pulumiverse_scaleway/get_lb_ips.py +198 -0
  96. pulumiverse_scaleway/get_lb_route.py +217 -0
  97. pulumiverse_scaleway/get_lb_routes.py +179 -0
  98. pulumiverse_scaleway/get_lbs.py +187 -0
  99. pulumiverse_scaleway/get_loadbalancer.py +339 -0
  100. pulumiverse_scaleway/get_loadbalancer_certificate.py +230 -0
  101. pulumiverse_scaleway/get_loadbalancer_ip.py +228 -0
  102. pulumiverse_scaleway/get_marketplace_image.py +147 -0
  103. pulumiverse_scaleway/get_mnq_sns.py +150 -0
  104. pulumiverse_scaleway/get_mnq_sqs.py +150 -0
  105. pulumiverse_scaleway/get_mongo_db_instance.py +324 -0
  106. pulumiverse_scaleway/get_object_bucket.py +290 -0
  107. pulumiverse_scaleway/get_object_bucket_policy.py +163 -0
  108. pulumiverse_scaleway/get_redis_cluster.py +347 -0
  109. pulumiverse_scaleway/get_registry_image.py +239 -0
  110. pulumiverse_scaleway/get_registry_image_tag.py +229 -0
  111. pulumiverse_scaleway/get_registry_namespace.py +199 -0
  112. pulumiverse_scaleway/get_secret.py +338 -0
  113. pulumiverse_scaleway/get_secret_version.py +340 -0
  114. pulumiverse_scaleway/get_tem_domain.py +378 -0
  115. pulumiverse_scaleway/get_vpc.py +246 -0
  116. pulumiverse_scaleway/get_vpc_gateway_network.py +287 -0
  117. pulumiverse_scaleway/get_vpc_private_network.py +282 -0
  118. pulumiverse_scaleway/get_vpc_public_gateway.py +304 -0
  119. pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +305 -0
  120. pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +382 -0
  121. pulumiverse_scaleway/get_vpc_public_gateway_ip.py +199 -0
  122. pulumiverse_scaleway/get_vpc_public_pat_rule.py +313 -0
  123. pulumiverse_scaleway/get_vpc_routes.py +208 -0
  124. pulumiverse_scaleway/get_vpcs.py +174 -0
  125. pulumiverse_scaleway/get_web_host_offer.py +192 -0
  126. pulumiverse_scaleway/get_webhosting.py +332 -0
  127. pulumiverse_scaleway/iam_api_key.py +620 -0
  128. pulumiverse_scaleway/iam_application.py +417 -0
  129. pulumiverse_scaleway/iam_group.py +566 -0
  130. pulumiverse_scaleway/iam_group_membership.py +323 -0
  131. pulumiverse_scaleway/iam_policy.py +773 -0
  132. pulumiverse_scaleway/iam_ssh_key.py +455 -0
  133. pulumiverse_scaleway/iam_user.py +513 -0
  134. pulumiverse_scaleway/inference_deployment.py +822 -0
  135. pulumiverse_scaleway/instance_image.py +750 -0
  136. pulumiverse_scaleway/instance_ip.py +483 -0
  137. pulumiverse_scaleway/instance_ip_reverse_dns.py +308 -0
  138. pulumiverse_scaleway/instance_placement_group.py +479 -0
  139. pulumiverse_scaleway/instance_private_nic.py +555 -0
  140. pulumiverse_scaleway/instance_security_group.py +720 -0
  141. pulumiverse_scaleway/instance_security_group_rules.py +439 -0
  142. pulumiverse_scaleway/instance_server.py +2006 -0
  143. pulumiverse_scaleway/instance_snapshot.py +669 -0
  144. pulumiverse_scaleway/instance_user_data.py +435 -0
  145. pulumiverse_scaleway/instance_volume.py +535 -0
  146. pulumiverse_scaleway/iot_device.py +750 -0
  147. pulumiverse_scaleway/iot_hub.py +896 -0
  148. pulumiverse_scaleway/iot_network.py +472 -0
  149. pulumiverse_scaleway/iot_route.py +660 -0
  150. pulumiverse_scaleway/ipam_ip.py +757 -0
  151. pulumiverse_scaleway/ipam_ip_reverse_dns.py +318 -0
  152. pulumiverse_scaleway/job_definition.py +692 -0
  153. pulumiverse_scaleway/kubernetes_cluster.py +1538 -0
  154. pulumiverse_scaleway/kubernetes_node_pool.py +1255 -0
  155. pulumiverse_scaleway/loadbalancer.py +1061 -0
  156. pulumiverse_scaleway/loadbalancer_acl.py +520 -0
  157. pulumiverse_scaleway/loadbalancer_backend.py +1588 -0
  158. pulumiverse_scaleway/loadbalancer_certificate.py +460 -0
  159. pulumiverse_scaleway/loadbalancer_frontend.py +829 -0
  160. pulumiverse_scaleway/loadbalancer_ip.py +514 -0
  161. pulumiverse_scaleway/loadbalancer_route.py +523 -0
  162. pulumiverse_scaleway/mnq_nats_account.py +334 -0
  163. pulumiverse_scaleway/mnq_nats_credentials.py +330 -0
  164. pulumiverse_scaleway/mnq_sns.py +306 -0
  165. pulumiverse_scaleway/mnq_sns_credentials.py +413 -0
  166. pulumiverse_scaleway/mnq_sns_topic.py +659 -0
  167. pulumiverse_scaleway/mnq_sns_topic_subscription.py +699 -0
  168. pulumiverse_scaleway/mnq_sqs.py +304 -0
  169. pulumiverse_scaleway/mnq_sqs_credentials.py +413 -0
  170. pulumiverse_scaleway/mnq_sqs_queue.py +800 -0
  171. pulumiverse_scaleway/mongo_db_instance.py +907 -0
  172. pulumiverse_scaleway/mongo_db_snapshot.py +521 -0
  173. pulumiverse_scaleway/object_bucket.py +874 -0
  174. pulumiverse_scaleway/object_bucket_acl.py +596 -0
  175. pulumiverse_scaleway/object_bucket_lock_configuration.py +395 -0
  176. pulumiverse_scaleway/object_bucket_policy.py +673 -0
  177. pulumiverse_scaleway/object_bucket_website_configuration.py +534 -0
  178. pulumiverse_scaleway/object_item.py +776 -0
  179. pulumiverse_scaleway/outputs.py +11808 -0
  180. pulumiverse_scaleway/provider.py +327 -0
  181. pulumiverse_scaleway/pulumi-plugin.json +6 -0
  182. pulumiverse_scaleway/py.typed +0 -0
  183. pulumiverse_scaleway/redis_cluster.py +1201 -0
  184. pulumiverse_scaleway/registry_namespace.py +458 -0
  185. pulumiverse_scaleway/sdb_database.py +432 -0
  186. pulumiverse_scaleway/secret.py +663 -0
  187. pulumiverse_scaleway/secret_version.py +487 -0
  188. pulumiverse_scaleway/tem_domain.py +1030 -0
  189. pulumiverse_scaleway/tem_domain_validation.py +303 -0
  190. pulumiverse_scaleway/tem_webhook.py +640 -0
  191. pulumiverse_scaleway/vpc.py +536 -0
  192. pulumiverse_scaleway/vpc_gateway_network.py +866 -0
  193. pulumiverse_scaleway/vpc_private_network.py +734 -0
  194. pulumiverse_scaleway/vpc_public_gateway.py +789 -0
  195. pulumiverse_scaleway/vpc_public_gateway_dhcp.py +933 -0
  196. pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +514 -0
  197. pulumiverse_scaleway/vpc_public_gateway_ip.py +457 -0
  198. pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +306 -0
  199. pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +591 -0
  200. pulumiverse_scaleway/vpc_route.py +577 -0
  201. pulumiverse_scaleway/webhosting.py +805 -0
  202. pulumiverse_scaleway-1.23.0a1736837529.dist-info/METADATA +77 -0
  203. pulumiverse_scaleway-1.23.0a1736837529.dist-info/RECORD +205 -0
  204. pulumiverse_scaleway-1.23.0a1736837529.dist-info/WHEEL +5 -0
  205. pulumiverse_scaleway-1.23.0a1736837529.dist-info/top_level.txt +1 -0
@@ -0,0 +1,1255 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
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
15
+ from . import _utilities
16
+ from . import outputs
17
+ from ._inputs import *
18
+
19
+ __all__ = ['KubernetesNodePoolArgs', 'KubernetesNodePool']
20
+
21
+ @pulumi.input_type
22
+ class KubernetesNodePoolArgs:
23
+ def __init__(__self__, *,
24
+ cluster_id: pulumi.Input[str],
25
+ node_type: pulumi.Input[str],
26
+ size: pulumi.Input[int],
27
+ autohealing: Optional[pulumi.Input[bool]] = None,
28
+ autoscaling: Optional[pulumi.Input[bool]] = None,
29
+ container_runtime: Optional[pulumi.Input[str]] = None,
30
+ kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
31
+ max_size: Optional[pulumi.Input[int]] = None,
32
+ min_size: Optional[pulumi.Input[int]] = None,
33
+ name: Optional[pulumi.Input[str]] = None,
34
+ placement_group_id: Optional[pulumi.Input[str]] = None,
35
+ public_ip_disabled: Optional[pulumi.Input[bool]] = None,
36
+ region: Optional[pulumi.Input[str]] = None,
37
+ root_volume_size_in_gb: Optional[pulumi.Input[int]] = None,
38
+ root_volume_type: Optional[pulumi.Input[str]] = None,
39
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
40
+ upgrade_policy: Optional[pulumi.Input['KubernetesNodePoolUpgradePolicyArgs']] = None,
41
+ wait_for_pool_ready: Optional[pulumi.Input[bool]] = None,
42
+ zone: Optional[pulumi.Input[str]] = None):
43
+ """
44
+ The set of arguments for constructing a KubernetesNodePool resource.
45
+ :param pulumi.Input[str] cluster_id: The ID of the Kubernetes cluster on which this pool will be created.
46
+ :param pulumi.Input[str] node_type: The commercial type of the pool instances. Instances with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). `external` is a special node type used to provision from other Cloud providers.
47
+
48
+ > **Important:** Updates to this field will recreate a new resource.
49
+ :param pulumi.Input[int] size: The size of the pool.
50
+ > **Important:** This field will only be used at creation if autoscaling is enabled.
51
+ :param pulumi.Input[bool] autohealing: Enables the autohealing feature for this pool.
52
+ :param pulumi.Input[bool] autoscaling: Enables the autoscaling feature for this pool.
53
+ > **Important:** When enabled, an update of the `size` will not be taken into account.
54
+ :param pulumi.Input[str] container_runtime: The container runtime of the pool.
55
+ > **Important:** Updates to this field will recreate a new resource.
56
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kubelet_args: The Kubelet arguments to be used by this pool
57
+ :param pulumi.Input[int] max_size: The maximum size of the pool, used by the autoscaling feature.
58
+ :param pulumi.Input[int] min_size: The minimum size of the pool, used by the autoscaling feature.
59
+ :param pulumi.Input[str] name: The name for the pool.
60
+ > **Important:** Updates to this field will recreate a new resource.
61
+ :param pulumi.Input[str] placement_group_id: The [placement group](https://www.scaleway.com/en/developers/api/instance/#path-placement-groups-create-a-placement-group) the nodes of the pool will be attached to.
62
+ > **Important:** Updates to this field will recreate a new resource.
63
+ :param pulumi.Input[bool] public_ip_disabled: Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
64
+ > **Important:** Updates to this field will recreate a new resource.
65
+ :param pulumi.Input[str] region: `region`) The region in which the pool should be created.
66
+ :param pulumi.Input[int] root_volume_size_in_gb: The size of the system volume of the nodes in gigabyte
67
+ :param pulumi.Input[str] root_volume_type: System volume type of the nodes composing the pool
68
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The tags associated with the pool.
69
+ > Note: As mentionned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (Example: "taint=taintName=taineValue:Effect")
70
+ :param pulumi.Input['KubernetesNodePoolUpgradePolicyArgs'] upgrade_policy: The Pool upgrade policy
71
+ :param pulumi.Input[bool] wait_for_pool_ready: Whether to wait for the pool to be ready.
72
+ :param pulumi.Input[str] zone: `zone`) The zone in which the pool should be created.
73
+ > **Important:** Updates to this field will recreate a new resource.
74
+ """
75
+ pulumi.set(__self__, "cluster_id", cluster_id)
76
+ pulumi.set(__self__, "node_type", node_type)
77
+ pulumi.set(__self__, "size", size)
78
+ if autohealing is not None:
79
+ pulumi.set(__self__, "autohealing", autohealing)
80
+ if autoscaling is not None:
81
+ pulumi.set(__self__, "autoscaling", autoscaling)
82
+ if container_runtime is not None:
83
+ pulumi.set(__self__, "container_runtime", container_runtime)
84
+ if kubelet_args is not None:
85
+ pulumi.set(__self__, "kubelet_args", kubelet_args)
86
+ if max_size is not None:
87
+ pulumi.set(__self__, "max_size", max_size)
88
+ if min_size is not None:
89
+ pulumi.set(__self__, "min_size", min_size)
90
+ if name is not None:
91
+ pulumi.set(__self__, "name", name)
92
+ if placement_group_id is not None:
93
+ pulumi.set(__self__, "placement_group_id", placement_group_id)
94
+ if public_ip_disabled is not None:
95
+ pulumi.set(__self__, "public_ip_disabled", public_ip_disabled)
96
+ if region is not None:
97
+ pulumi.set(__self__, "region", region)
98
+ if root_volume_size_in_gb is not None:
99
+ pulumi.set(__self__, "root_volume_size_in_gb", root_volume_size_in_gb)
100
+ if root_volume_type is not None:
101
+ pulumi.set(__self__, "root_volume_type", root_volume_type)
102
+ if tags is not None:
103
+ pulumi.set(__self__, "tags", tags)
104
+ if upgrade_policy is not None:
105
+ pulumi.set(__self__, "upgrade_policy", upgrade_policy)
106
+ if wait_for_pool_ready is not None:
107
+ pulumi.set(__self__, "wait_for_pool_ready", wait_for_pool_ready)
108
+ if zone is not None:
109
+ pulumi.set(__self__, "zone", zone)
110
+
111
+ @property
112
+ @pulumi.getter(name="clusterId")
113
+ def cluster_id(self) -> pulumi.Input[str]:
114
+ """
115
+ The ID of the Kubernetes cluster on which this pool will be created.
116
+ """
117
+ return pulumi.get(self, "cluster_id")
118
+
119
+ @cluster_id.setter
120
+ def cluster_id(self, value: pulumi.Input[str]):
121
+ pulumi.set(self, "cluster_id", value)
122
+
123
+ @property
124
+ @pulumi.getter(name="nodeType")
125
+ def node_type(self) -> pulumi.Input[str]:
126
+ """
127
+ The commercial type of the pool instances. Instances with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). `external` is a special node type used to provision from other Cloud providers.
128
+
129
+ > **Important:** Updates to this field will recreate a new resource.
130
+ """
131
+ return pulumi.get(self, "node_type")
132
+
133
+ @node_type.setter
134
+ def node_type(self, value: pulumi.Input[str]):
135
+ pulumi.set(self, "node_type", value)
136
+
137
+ @property
138
+ @pulumi.getter
139
+ def size(self) -> pulumi.Input[int]:
140
+ """
141
+ The size of the pool.
142
+ > **Important:** This field will only be used at creation if autoscaling is enabled.
143
+ """
144
+ return pulumi.get(self, "size")
145
+
146
+ @size.setter
147
+ def size(self, value: pulumi.Input[int]):
148
+ pulumi.set(self, "size", value)
149
+
150
+ @property
151
+ @pulumi.getter
152
+ def autohealing(self) -> Optional[pulumi.Input[bool]]:
153
+ """
154
+ Enables the autohealing feature for this pool.
155
+ """
156
+ return pulumi.get(self, "autohealing")
157
+
158
+ @autohealing.setter
159
+ def autohealing(self, value: Optional[pulumi.Input[bool]]):
160
+ pulumi.set(self, "autohealing", value)
161
+
162
+ @property
163
+ @pulumi.getter
164
+ def autoscaling(self) -> Optional[pulumi.Input[bool]]:
165
+ """
166
+ Enables the autoscaling feature for this pool.
167
+ > **Important:** When enabled, an update of the `size` will not be taken into account.
168
+ """
169
+ return pulumi.get(self, "autoscaling")
170
+
171
+ @autoscaling.setter
172
+ def autoscaling(self, value: Optional[pulumi.Input[bool]]):
173
+ pulumi.set(self, "autoscaling", value)
174
+
175
+ @property
176
+ @pulumi.getter(name="containerRuntime")
177
+ def container_runtime(self) -> Optional[pulumi.Input[str]]:
178
+ """
179
+ The container runtime of the pool.
180
+ > **Important:** Updates to this field will recreate a new resource.
181
+ """
182
+ return pulumi.get(self, "container_runtime")
183
+
184
+ @container_runtime.setter
185
+ def container_runtime(self, value: Optional[pulumi.Input[str]]):
186
+ pulumi.set(self, "container_runtime", value)
187
+
188
+ @property
189
+ @pulumi.getter(name="kubeletArgs")
190
+ def kubelet_args(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
191
+ """
192
+ The Kubelet arguments to be used by this pool
193
+ """
194
+ return pulumi.get(self, "kubelet_args")
195
+
196
+ @kubelet_args.setter
197
+ def kubelet_args(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
198
+ pulumi.set(self, "kubelet_args", value)
199
+
200
+ @property
201
+ @pulumi.getter(name="maxSize")
202
+ def max_size(self) -> Optional[pulumi.Input[int]]:
203
+ """
204
+ The maximum size of the pool, used by the autoscaling feature.
205
+ """
206
+ return pulumi.get(self, "max_size")
207
+
208
+ @max_size.setter
209
+ def max_size(self, value: Optional[pulumi.Input[int]]):
210
+ pulumi.set(self, "max_size", value)
211
+
212
+ @property
213
+ @pulumi.getter(name="minSize")
214
+ def min_size(self) -> Optional[pulumi.Input[int]]:
215
+ """
216
+ The minimum size of the pool, used by the autoscaling feature.
217
+ """
218
+ return pulumi.get(self, "min_size")
219
+
220
+ @min_size.setter
221
+ def min_size(self, value: Optional[pulumi.Input[int]]):
222
+ pulumi.set(self, "min_size", value)
223
+
224
+ @property
225
+ @pulumi.getter
226
+ def name(self) -> Optional[pulumi.Input[str]]:
227
+ """
228
+ The name for the pool.
229
+ > **Important:** Updates to this field will recreate a new resource.
230
+ """
231
+ return pulumi.get(self, "name")
232
+
233
+ @name.setter
234
+ def name(self, value: Optional[pulumi.Input[str]]):
235
+ pulumi.set(self, "name", value)
236
+
237
+ @property
238
+ @pulumi.getter(name="placementGroupId")
239
+ def placement_group_id(self) -> Optional[pulumi.Input[str]]:
240
+ """
241
+ The [placement group](https://www.scaleway.com/en/developers/api/instance/#path-placement-groups-create-a-placement-group) the nodes of the pool will be attached to.
242
+ > **Important:** Updates to this field will recreate a new resource.
243
+ """
244
+ return pulumi.get(self, "placement_group_id")
245
+
246
+ @placement_group_id.setter
247
+ def placement_group_id(self, value: Optional[pulumi.Input[str]]):
248
+ pulumi.set(self, "placement_group_id", value)
249
+
250
+ @property
251
+ @pulumi.getter(name="publicIpDisabled")
252
+ def public_ip_disabled(self) -> Optional[pulumi.Input[bool]]:
253
+ """
254
+ Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
255
+ > **Important:** Updates to this field will recreate a new resource.
256
+ """
257
+ return pulumi.get(self, "public_ip_disabled")
258
+
259
+ @public_ip_disabled.setter
260
+ def public_ip_disabled(self, value: Optional[pulumi.Input[bool]]):
261
+ pulumi.set(self, "public_ip_disabled", value)
262
+
263
+ @property
264
+ @pulumi.getter
265
+ def region(self) -> Optional[pulumi.Input[str]]:
266
+ """
267
+ `region`) The region in which the pool should be created.
268
+ """
269
+ return pulumi.get(self, "region")
270
+
271
+ @region.setter
272
+ def region(self, value: Optional[pulumi.Input[str]]):
273
+ pulumi.set(self, "region", value)
274
+
275
+ @property
276
+ @pulumi.getter(name="rootVolumeSizeInGb")
277
+ def root_volume_size_in_gb(self) -> Optional[pulumi.Input[int]]:
278
+ """
279
+ The size of the system volume of the nodes in gigabyte
280
+ """
281
+ return pulumi.get(self, "root_volume_size_in_gb")
282
+
283
+ @root_volume_size_in_gb.setter
284
+ def root_volume_size_in_gb(self, value: Optional[pulumi.Input[int]]):
285
+ pulumi.set(self, "root_volume_size_in_gb", value)
286
+
287
+ @property
288
+ @pulumi.getter(name="rootVolumeType")
289
+ def root_volume_type(self) -> Optional[pulumi.Input[str]]:
290
+ """
291
+ System volume type of the nodes composing the pool
292
+ """
293
+ return pulumi.get(self, "root_volume_type")
294
+
295
+ @root_volume_type.setter
296
+ def root_volume_type(self, value: Optional[pulumi.Input[str]]):
297
+ pulumi.set(self, "root_volume_type", value)
298
+
299
+ @property
300
+ @pulumi.getter
301
+ def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
302
+ """
303
+ The tags associated with the pool.
304
+ > Note: As mentionned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (Example: "taint=taintName=taineValue:Effect")
305
+ """
306
+ return pulumi.get(self, "tags")
307
+
308
+ @tags.setter
309
+ def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
310
+ pulumi.set(self, "tags", value)
311
+
312
+ @property
313
+ @pulumi.getter(name="upgradePolicy")
314
+ def upgrade_policy(self) -> Optional[pulumi.Input['KubernetesNodePoolUpgradePolicyArgs']]:
315
+ """
316
+ The Pool upgrade policy
317
+ """
318
+ return pulumi.get(self, "upgrade_policy")
319
+
320
+ @upgrade_policy.setter
321
+ def upgrade_policy(self, value: Optional[pulumi.Input['KubernetesNodePoolUpgradePolicyArgs']]):
322
+ pulumi.set(self, "upgrade_policy", value)
323
+
324
+ @property
325
+ @pulumi.getter(name="waitForPoolReady")
326
+ def wait_for_pool_ready(self) -> Optional[pulumi.Input[bool]]:
327
+ """
328
+ Whether to wait for the pool to be ready.
329
+ """
330
+ return pulumi.get(self, "wait_for_pool_ready")
331
+
332
+ @wait_for_pool_ready.setter
333
+ def wait_for_pool_ready(self, value: Optional[pulumi.Input[bool]]):
334
+ pulumi.set(self, "wait_for_pool_ready", value)
335
+
336
+ @property
337
+ @pulumi.getter
338
+ def zone(self) -> Optional[pulumi.Input[str]]:
339
+ """
340
+ `zone`) The zone in which the pool should be created.
341
+ > **Important:** Updates to this field will recreate a new resource.
342
+ """
343
+ return pulumi.get(self, "zone")
344
+
345
+ @zone.setter
346
+ def zone(self, value: Optional[pulumi.Input[str]]):
347
+ pulumi.set(self, "zone", value)
348
+
349
+
350
+ @pulumi.input_type
351
+ class _KubernetesNodePoolState:
352
+ def __init__(__self__, *,
353
+ autohealing: Optional[pulumi.Input[bool]] = None,
354
+ autoscaling: Optional[pulumi.Input[bool]] = None,
355
+ cluster_id: Optional[pulumi.Input[str]] = None,
356
+ container_runtime: Optional[pulumi.Input[str]] = None,
357
+ created_at: Optional[pulumi.Input[str]] = None,
358
+ current_size: Optional[pulumi.Input[int]] = None,
359
+ kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
360
+ max_size: Optional[pulumi.Input[int]] = None,
361
+ min_size: Optional[pulumi.Input[int]] = None,
362
+ name: Optional[pulumi.Input[str]] = None,
363
+ node_type: Optional[pulumi.Input[str]] = None,
364
+ nodes: Optional[pulumi.Input[Sequence[pulumi.Input['KubernetesNodePoolNodeArgs']]]] = None,
365
+ placement_group_id: Optional[pulumi.Input[str]] = None,
366
+ public_ip_disabled: Optional[pulumi.Input[bool]] = None,
367
+ region: Optional[pulumi.Input[str]] = None,
368
+ root_volume_size_in_gb: Optional[pulumi.Input[int]] = None,
369
+ root_volume_type: Optional[pulumi.Input[str]] = None,
370
+ size: Optional[pulumi.Input[int]] = None,
371
+ status: Optional[pulumi.Input[str]] = None,
372
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
373
+ updated_at: Optional[pulumi.Input[str]] = None,
374
+ upgrade_policy: Optional[pulumi.Input['KubernetesNodePoolUpgradePolicyArgs']] = None,
375
+ version: Optional[pulumi.Input[str]] = None,
376
+ wait_for_pool_ready: Optional[pulumi.Input[bool]] = None,
377
+ zone: Optional[pulumi.Input[str]] = None):
378
+ """
379
+ Input properties used for looking up and filtering KubernetesNodePool resources.
380
+ :param pulumi.Input[bool] autohealing: Enables the autohealing feature for this pool.
381
+ :param pulumi.Input[bool] autoscaling: Enables the autoscaling feature for this pool.
382
+ > **Important:** When enabled, an update of the `size` will not be taken into account.
383
+ :param pulumi.Input[str] cluster_id: The ID of the Kubernetes cluster on which this pool will be created.
384
+ :param pulumi.Input[str] container_runtime: The container runtime of the pool.
385
+ > **Important:** Updates to this field will recreate a new resource.
386
+ :param pulumi.Input[str] created_at: The creation date of the pool.
387
+ :param pulumi.Input[int] current_size: The actual size of the pool
388
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kubelet_args: The Kubelet arguments to be used by this pool
389
+ :param pulumi.Input[int] max_size: The maximum size of the pool, used by the autoscaling feature.
390
+ :param pulumi.Input[int] min_size: The minimum size of the pool, used by the autoscaling feature.
391
+ :param pulumi.Input[str] name: The name for the pool.
392
+ > **Important:** Updates to this field will recreate a new resource.
393
+ :param pulumi.Input[str] node_type: The commercial type of the pool instances. Instances with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). `external` is a special node type used to provision from other Cloud providers.
394
+
395
+ > **Important:** Updates to this field will recreate a new resource.
396
+ :param pulumi.Input[Sequence[pulumi.Input['KubernetesNodePoolNodeArgs']]] nodes: (List of) The nodes in the default pool.
397
+ :param pulumi.Input[str] placement_group_id: The [placement group](https://www.scaleway.com/en/developers/api/instance/#path-placement-groups-create-a-placement-group) the nodes of the pool will be attached to.
398
+ > **Important:** Updates to this field will recreate a new resource.
399
+ :param pulumi.Input[bool] public_ip_disabled: Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
400
+ > **Important:** Updates to this field will recreate a new resource.
401
+ :param pulumi.Input[str] region: `region`) The region in which the pool should be created.
402
+ :param pulumi.Input[int] root_volume_size_in_gb: The size of the system volume of the nodes in gigabyte
403
+ :param pulumi.Input[str] root_volume_type: System volume type of the nodes composing the pool
404
+ :param pulumi.Input[int] size: The size of the pool.
405
+ > **Important:** This field will only be used at creation if autoscaling is enabled.
406
+ :param pulumi.Input[str] status: The status of the node.
407
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The tags associated with the pool.
408
+ > Note: As mentionned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (Example: "taint=taintName=taineValue:Effect")
409
+ :param pulumi.Input[str] updated_at: The last update date of the pool.
410
+ :param pulumi.Input['KubernetesNodePoolUpgradePolicyArgs'] upgrade_policy: The Pool upgrade policy
411
+ :param pulumi.Input[str] version: The version of the pool.
412
+ :param pulumi.Input[bool] wait_for_pool_ready: Whether to wait for the pool to be ready.
413
+ :param pulumi.Input[str] zone: `zone`) The zone in which the pool should be created.
414
+ > **Important:** Updates to this field will recreate a new resource.
415
+ """
416
+ if autohealing is not None:
417
+ pulumi.set(__self__, "autohealing", autohealing)
418
+ if autoscaling is not None:
419
+ pulumi.set(__self__, "autoscaling", autoscaling)
420
+ if cluster_id is not None:
421
+ pulumi.set(__self__, "cluster_id", cluster_id)
422
+ if container_runtime is not None:
423
+ pulumi.set(__self__, "container_runtime", container_runtime)
424
+ if created_at is not None:
425
+ pulumi.set(__self__, "created_at", created_at)
426
+ if current_size is not None:
427
+ pulumi.set(__self__, "current_size", current_size)
428
+ if kubelet_args is not None:
429
+ pulumi.set(__self__, "kubelet_args", kubelet_args)
430
+ if max_size is not None:
431
+ pulumi.set(__self__, "max_size", max_size)
432
+ if min_size is not None:
433
+ pulumi.set(__self__, "min_size", min_size)
434
+ if name is not None:
435
+ pulumi.set(__self__, "name", name)
436
+ if node_type is not None:
437
+ pulumi.set(__self__, "node_type", node_type)
438
+ if nodes is not None:
439
+ pulumi.set(__self__, "nodes", nodes)
440
+ if placement_group_id is not None:
441
+ pulumi.set(__self__, "placement_group_id", placement_group_id)
442
+ if public_ip_disabled is not None:
443
+ pulumi.set(__self__, "public_ip_disabled", public_ip_disabled)
444
+ if region is not None:
445
+ pulumi.set(__self__, "region", region)
446
+ if root_volume_size_in_gb is not None:
447
+ pulumi.set(__self__, "root_volume_size_in_gb", root_volume_size_in_gb)
448
+ if root_volume_type is not None:
449
+ pulumi.set(__self__, "root_volume_type", root_volume_type)
450
+ if size is not None:
451
+ pulumi.set(__self__, "size", size)
452
+ if status is not None:
453
+ pulumi.set(__self__, "status", status)
454
+ if tags is not None:
455
+ pulumi.set(__self__, "tags", tags)
456
+ if updated_at is not None:
457
+ pulumi.set(__self__, "updated_at", updated_at)
458
+ if upgrade_policy is not None:
459
+ pulumi.set(__self__, "upgrade_policy", upgrade_policy)
460
+ if version is not None:
461
+ pulumi.set(__self__, "version", version)
462
+ if wait_for_pool_ready is not None:
463
+ pulumi.set(__self__, "wait_for_pool_ready", wait_for_pool_ready)
464
+ if zone is not None:
465
+ pulumi.set(__self__, "zone", zone)
466
+
467
+ @property
468
+ @pulumi.getter
469
+ def autohealing(self) -> Optional[pulumi.Input[bool]]:
470
+ """
471
+ Enables the autohealing feature for this pool.
472
+ """
473
+ return pulumi.get(self, "autohealing")
474
+
475
+ @autohealing.setter
476
+ def autohealing(self, value: Optional[pulumi.Input[bool]]):
477
+ pulumi.set(self, "autohealing", value)
478
+
479
+ @property
480
+ @pulumi.getter
481
+ def autoscaling(self) -> Optional[pulumi.Input[bool]]:
482
+ """
483
+ Enables the autoscaling feature for this pool.
484
+ > **Important:** When enabled, an update of the `size` will not be taken into account.
485
+ """
486
+ return pulumi.get(self, "autoscaling")
487
+
488
+ @autoscaling.setter
489
+ def autoscaling(self, value: Optional[pulumi.Input[bool]]):
490
+ pulumi.set(self, "autoscaling", value)
491
+
492
+ @property
493
+ @pulumi.getter(name="clusterId")
494
+ def cluster_id(self) -> Optional[pulumi.Input[str]]:
495
+ """
496
+ The ID of the Kubernetes cluster on which this pool will be created.
497
+ """
498
+ return pulumi.get(self, "cluster_id")
499
+
500
+ @cluster_id.setter
501
+ def cluster_id(self, value: Optional[pulumi.Input[str]]):
502
+ pulumi.set(self, "cluster_id", value)
503
+
504
+ @property
505
+ @pulumi.getter(name="containerRuntime")
506
+ def container_runtime(self) -> Optional[pulumi.Input[str]]:
507
+ """
508
+ The container runtime of the pool.
509
+ > **Important:** Updates to this field will recreate a new resource.
510
+ """
511
+ return pulumi.get(self, "container_runtime")
512
+
513
+ @container_runtime.setter
514
+ def container_runtime(self, value: Optional[pulumi.Input[str]]):
515
+ pulumi.set(self, "container_runtime", value)
516
+
517
+ @property
518
+ @pulumi.getter(name="createdAt")
519
+ def created_at(self) -> Optional[pulumi.Input[str]]:
520
+ """
521
+ The creation date of the pool.
522
+ """
523
+ return pulumi.get(self, "created_at")
524
+
525
+ @created_at.setter
526
+ def created_at(self, value: Optional[pulumi.Input[str]]):
527
+ pulumi.set(self, "created_at", value)
528
+
529
+ @property
530
+ @pulumi.getter(name="currentSize")
531
+ def current_size(self) -> Optional[pulumi.Input[int]]:
532
+ """
533
+ The actual size of the pool
534
+ """
535
+ return pulumi.get(self, "current_size")
536
+
537
+ @current_size.setter
538
+ def current_size(self, value: Optional[pulumi.Input[int]]):
539
+ pulumi.set(self, "current_size", value)
540
+
541
+ @property
542
+ @pulumi.getter(name="kubeletArgs")
543
+ def kubelet_args(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
544
+ """
545
+ The Kubelet arguments to be used by this pool
546
+ """
547
+ return pulumi.get(self, "kubelet_args")
548
+
549
+ @kubelet_args.setter
550
+ def kubelet_args(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
551
+ pulumi.set(self, "kubelet_args", value)
552
+
553
+ @property
554
+ @pulumi.getter(name="maxSize")
555
+ def max_size(self) -> Optional[pulumi.Input[int]]:
556
+ """
557
+ The maximum size of the pool, used by the autoscaling feature.
558
+ """
559
+ return pulumi.get(self, "max_size")
560
+
561
+ @max_size.setter
562
+ def max_size(self, value: Optional[pulumi.Input[int]]):
563
+ pulumi.set(self, "max_size", value)
564
+
565
+ @property
566
+ @pulumi.getter(name="minSize")
567
+ def min_size(self) -> Optional[pulumi.Input[int]]:
568
+ """
569
+ The minimum size of the pool, used by the autoscaling feature.
570
+ """
571
+ return pulumi.get(self, "min_size")
572
+
573
+ @min_size.setter
574
+ def min_size(self, value: Optional[pulumi.Input[int]]):
575
+ pulumi.set(self, "min_size", value)
576
+
577
+ @property
578
+ @pulumi.getter
579
+ def name(self) -> Optional[pulumi.Input[str]]:
580
+ """
581
+ The name for the pool.
582
+ > **Important:** Updates to this field will recreate a new resource.
583
+ """
584
+ return pulumi.get(self, "name")
585
+
586
+ @name.setter
587
+ def name(self, value: Optional[pulumi.Input[str]]):
588
+ pulumi.set(self, "name", value)
589
+
590
+ @property
591
+ @pulumi.getter(name="nodeType")
592
+ def node_type(self) -> Optional[pulumi.Input[str]]:
593
+ """
594
+ The commercial type of the pool instances. Instances with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). `external` is a special node type used to provision from other Cloud providers.
595
+
596
+ > **Important:** Updates to this field will recreate a new resource.
597
+ """
598
+ return pulumi.get(self, "node_type")
599
+
600
+ @node_type.setter
601
+ def node_type(self, value: Optional[pulumi.Input[str]]):
602
+ pulumi.set(self, "node_type", value)
603
+
604
+ @property
605
+ @pulumi.getter
606
+ def nodes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['KubernetesNodePoolNodeArgs']]]]:
607
+ """
608
+ (List of) The nodes in the default pool.
609
+ """
610
+ return pulumi.get(self, "nodes")
611
+
612
+ @nodes.setter
613
+ def nodes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['KubernetesNodePoolNodeArgs']]]]):
614
+ pulumi.set(self, "nodes", value)
615
+
616
+ @property
617
+ @pulumi.getter(name="placementGroupId")
618
+ def placement_group_id(self) -> Optional[pulumi.Input[str]]:
619
+ """
620
+ The [placement group](https://www.scaleway.com/en/developers/api/instance/#path-placement-groups-create-a-placement-group) the nodes of the pool will be attached to.
621
+ > **Important:** Updates to this field will recreate a new resource.
622
+ """
623
+ return pulumi.get(self, "placement_group_id")
624
+
625
+ @placement_group_id.setter
626
+ def placement_group_id(self, value: Optional[pulumi.Input[str]]):
627
+ pulumi.set(self, "placement_group_id", value)
628
+
629
+ @property
630
+ @pulumi.getter(name="publicIpDisabled")
631
+ def public_ip_disabled(self) -> Optional[pulumi.Input[bool]]:
632
+ """
633
+ Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
634
+ > **Important:** Updates to this field will recreate a new resource.
635
+ """
636
+ return pulumi.get(self, "public_ip_disabled")
637
+
638
+ @public_ip_disabled.setter
639
+ def public_ip_disabled(self, value: Optional[pulumi.Input[bool]]):
640
+ pulumi.set(self, "public_ip_disabled", value)
641
+
642
+ @property
643
+ @pulumi.getter
644
+ def region(self) -> Optional[pulumi.Input[str]]:
645
+ """
646
+ `region`) The region in which the pool should be created.
647
+ """
648
+ return pulumi.get(self, "region")
649
+
650
+ @region.setter
651
+ def region(self, value: Optional[pulumi.Input[str]]):
652
+ pulumi.set(self, "region", value)
653
+
654
+ @property
655
+ @pulumi.getter(name="rootVolumeSizeInGb")
656
+ def root_volume_size_in_gb(self) -> Optional[pulumi.Input[int]]:
657
+ """
658
+ The size of the system volume of the nodes in gigabyte
659
+ """
660
+ return pulumi.get(self, "root_volume_size_in_gb")
661
+
662
+ @root_volume_size_in_gb.setter
663
+ def root_volume_size_in_gb(self, value: Optional[pulumi.Input[int]]):
664
+ pulumi.set(self, "root_volume_size_in_gb", value)
665
+
666
+ @property
667
+ @pulumi.getter(name="rootVolumeType")
668
+ def root_volume_type(self) -> Optional[pulumi.Input[str]]:
669
+ """
670
+ System volume type of the nodes composing the pool
671
+ """
672
+ return pulumi.get(self, "root_volume_type")
673
+
674
+ @root_volume_type.setter
675
+ def root_volume_type(self, value: Optional[pulumi.Input[str]]):
676
+ pulumi.set(self, "root_volume_type", value)
677
+
678
+ @property
679
+ @pulumi.getter
680
+ def size(self) -> Optional[pulumi.Input[int]]:
681
+ """
682
+ The size of the pool.
683
+ > **Important:** This field will only be used at creation if autoscaling is enabled.
684
+ """
685
+ return pulumi.get(self, "size")
686
+
687
+ @size.setter
688
+ def size(self, value: Optional[pulumi.Input[int]]):
689
+ pulumi.set(self, "size", value)
690
+
691
+ @property
692
+ @pulumi.getter
693
+ def status(self) -> Optional[pulumi.Input[str]]:
694
+ """
695
+ The status of the node.
696
+ """
697
+ return pulumi.get(self, "status")
698
+
699
+ @status.setter
700
+ def status(self, value: Optional[pulumi.Input[str]]):
701
+ pulumi.set(self, "status", value)
702
+
703
+ @property
704
+ @pulumi.getter
705
+ def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
706
+ """
707
+ The tags associated with the pool.
708
+ > Note: As mentionned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (Example: "taint=taintName=taineValue:Effect")
709
+ """
710
+ return pulumi.get(self, "tags")
711
+
712
+ @tags.setter
713
+ def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
714
+ pulumi.set(self, "tags", value)
715
+
716
+ @property
717
+ @pulumi.getter(name="updatedAt")
718
+ def updated_at(self) -> Optional[pulumi.Input[str]]:
719
+ """
720
+ The last update date of the pool.
721
+ """
722
+ return pulumi.get(self, "updated_at")
723
+
724
+ @updated_at.setter
725
+ def updated_at(self, value: Optional[pulumi.Input[str]]):
726
+ pulumi.set(self, "updated_at", value)
727
+
728
+ @property
729
+ @pulumi.getter(name="upgradePolicy")
730
+ def upgrade_policy(self) -> Optional[pulumi.Input['KubernetesNodePoolUpgradePolicyArgs']]:
731
+ """
732
+ The Pool upgrade policy
733
+ """
734
+ return pulumi.get(self, "upgrade_policy")
735
+
736
+ @upgrade_policy.setter
737
+ def upgrade_policy(self, value: Optional[pulumi.Input['KubernetesNodePoolUpgradePolicyArgs']]):
738
+ pulumi.set(self, "upgrade_policy", value)
739
+
740
+ @property
741
+ @pulumi.getter
742
+ def version(self) -> Optional[pulumi.Input[str]]:
743
+ """
744
+ The version of the pool.
745
+ """
746
+ return pulumi.get(self, "version")
747
+
748
+ @version.setter
749
+ def version(self, value: Optional[pulumi.Input[str]]):
750
+ pulumi.set(self, "version", value)
751
+
752
+ @property
753
+ @pulumi.getter(name="waitForPoolReady")
754
+ def wait_for_pool_ready(self) -> Optional[pulumi.Input[bool]]:
755
+ """
756
+ Whether to wait for the pool to be ready.
757
+ """
758
+ return pulumi.get(self, "wait_for_pool_ready")
759
+
760
+ @wait_for_pool_ready.setter
761
+ def wait_for_pool_ready(self, value: Optional[pulumi.Input[bool]]):
762
+ pulumi.set(self, "wait_for_pool_ready", value)
763
+
764
+ @property
765
+ @pulumi.getter
766
+ def zone(self) -> Optional[pulumi.Input[str]]:
767
+ """
768
+ `zone`) The zone in which the pool should be created.
769
+ > **Important:** Updates to this field will recreate a new resource.
770
+ """
771
+ return pulumi.get(self, "zone")
772
+
773
+ @zone.setter
774
+ def zone(self, value: Optional[pulumi.Input[str]]):
775
+ pulumi.set(self, "zone", value)
776
+
777
+
778
+ class KubernetesNodePool(pulumi.CustomResource):
779
+ @overload
780
+ def __init__(__self__,
781
+ resource_name: str,
782
+ opts: Optional[pulumi.ResourceOptions] = None,
783
+ autohealing: Optional[pulumi.Input[bool]] = None,
784
+ autoscaling: Optional[pulumi.Input[bool]] = None,
785
+ cluster_id: Optional[pulumi.Input[str]] = None,
786
+ container_runtime: Optional[pulumi.Input[str]] = None,
787
+ kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
788
+ max_size: Optional[pulumi.Input[int]] = None,
789
+ min_size: Optional[pulumi.Input[int]] = None,
790
+ name: Optional[pulumi.Input[str]] = None,
791
+ node_type: Optional[pulumi.Input[str]] = None,
792
+ placement_group_id: Optional[pulumi.Input[str]] = None,
793
+ public_ip_disabled: Optional[pulumi.Input[bool]] = None,
794
+ region: Optional[pulumi.Input[str]] = None,
795
+ root_volume_size_in_gb: Optional[pulumi.Input[int]] = None,
796
+ root_volume_type: Optional[pulumi.Input[str]] = None,
797
+ size: Optional[pulumi.Input[int]] = None,
798
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
799
+ upgrade_policy: Optional[pulumi.Input[Union['KubernetesNodePoolUpgradePolicyArgs', 'KubernetesNodePoolUpgradePolicyArgsDict']]] = None,
800
+ wait_for_pool_ready: Optional[pulumi.Input[bool]] = None,
801
+ zone: Optional[pulumi.Input[str]] = None,
802
+ __props__=None):
803
+ """
804
+ ## Import
805
+
806
+ Kubernetes pools can be imported using the `{region}/{id}`, e.g.
807
+
808
+ bash
809
+
810
+ ```sh
811
+ $ pulumi import scaleway:index/kubernetesNodePool:KubernetesNodePool mypool fr-par/11111111-1111-1111-1111-111111111111
812
+ ```
813
+
814
+ :param str resource_name: The name of the resource.
815
+ :param pulumi.ResourceOptions opts: Options for the resource.
816
+ :param pulumi.Input[bool] autohealing: Enables the autohealing feature for this pool.
817
+ :param pulumi.Input[bool] autoscaling: Enables the autoscaling feature for this pool.
818
+ > **Important:** When enabled, an update of the `size` will not be taken into account.
819
+ :param pulumi.Input[str] cluster_id: The ID of the Kubernetes cluster on which this pool will be created.
820
+ :param pulumi.Input[str] container_runtime: The container runtime of the pool.
821
+ > **Important:** Updates to this field will recreate a new resource.
822
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kubelet_args: The Kubelet arguments to be used by this pool
823
+ :param pulumi.Input[int] max_size: The maximum size of the pool, used by the autoscaling feature.
824
+ :param pulumi.Input[int] min_size: The minimum size of the pool, used by the autoscaling feature.
825
+ :param pulumi.Input[str] name: The name for the pool.
826
+ > **Important:** Updates to this field will recreate a new resource.
827
+ :param pulumi.Input[str] node_type: The commercial type of the pool instances. Instances with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). `external` is a special node type used to provision from other Cloud providers.
828
+
829
+ > **Important:** Updates to this field will recreate a new resource.
830
+ :param pulumi.Input[str] placement_group_id: The [placement group](https://www.scaleway.com/en/developers/api/instance/#path-placement-groups-create-a-placement-group) the nodes of the pool will be attached to.
831
+ > **Important:** Updates to this field will recreate a new resource.
832
+ :param pulumi.Input[bool] public_ip_disabled: Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
833
+ > **Important:** Updates to this field will recreate a new resource.
834
+ :param pulumi.Input[str] region: `region`) The region in which the pool should be created.
835
+ :param pulumi.Input[int] root_volume_size_in_gb: The size of the system volume of the nodes in gigabyte
836
+ :param pulumi.Input[str] root_volume_type: System volume type of the nodes composing the pool
837
+ :param pulumi.Input[int] size: The size of the pool.
838
+ > **Important:** This field will only be used at creation if autoscaling is enabled.
839
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The tags associated with the pool.
840
+ > Note: As mentionned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (Example: "taint=taintName=taineValue:Effect")
841
+ :param pulumi.Input[Union['KubernetesNodePoolUpgradePolicyArgs', 'KubernetesNodePoolUpgradePolicyArgsDict']] upgrade_policy: The Pool upgrade policy
842
+ :param pulumi.Input[bool] wait_for_pool_ready: Whether to wait for the pool to be ready.
843
+ :param pulumi.Input[str] zone: `zone`) The zone in which the pool should be created.
844
+ > **Important:** Updates to this field will recreate a new resource.
845
+ """
846
+ ...
847
+ @overload
848
+ def __init__(__self__,
849
+ resource_name: str,
850
+ args: KubernetesNodePoolArgs,
851
+ opts: Optional[pulumi.ResourceOptions] = None):
852
+ """
853
+ ## Import
854
+
855
+ Kubernetes pools can be imported using the `{region}/{id}`, e.g.
856
+
857
+ bash
858
+
859
+ ```sh
860
+ $ pulumi import scaleway:index/kubernetesNodePool:KubernetesNodePool mypool fr-par/11111111-1111-1111-1111-111111111111
861
+ ```
862
+
863
+ :param str resource_name: The name of the resource.
864
+ :param KubernetesNodePoolArgs args: The arguments to use to populate this resource's properties.
865
+ :param pulumi.ResourceOptions opts: Options for the resource.
866
+ """
867
+ ...
868
+ def __init__(__self__, resource_name: str, *args, **kwargs):
869
+ resource_args, opts = _utilities.get_resource_args_opts(KubernetesNodePoolArgs, pulumi.ResourceOptions, *args, **kwargs)
870
+ if resource_args is not None:
871
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
872
+ else:
873
+ __self__._internal_init(resource_name, *args, **kwargs)
874
+
875
+ def _internal_init(__self__,
876
+ resource_name: str,
877
+ opts: Optional[pulumi.ResourceOptions] = None,
878
+ autohealing: Optional[pulumi.Input[bool]] = None,
879
+ autoscaling: Optional[pulumi.Input[bool]] = None,
880
+ cluster_id: Optional[pulumi.Input[str]] = None,
881
+ container_runtime: Optional[pulumi.Input[str]] = None,
882
+ kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
883
+ max_size: Optional[pulumi.Input[int]] = None,
884
+ min_size: Optional[pulumi.Input[int]] = None,
885
+ name: Optional[pulumi.Input[str]] = None,
886
+ node_type: Optional[pulumi.Input[str]] = None,
887
+ placement_group_id: Optional[pulumi.Input[str]] = None,
888
+ public_ip_disabled: Optional[pulumi.Input[bool]] = None,
889
+ region: Optional[pulumi.Input[str]] = None,
890
+ root_volume_size_in_gb: Optional[pulumi.Input[int]] = None,
891
+ root_volume_type: Optional[pulumi.Input[str]] = None,
892
+ size: Optional[pulumi.Input[int]] = None,
893
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
894
+ upgrade_policy: Optional[pulumi.Input[Union['KubernetesNodePoolUpgradePolicyArgs', 'KubernetesNodePoolUpgradePolicyArgsDict']]] = None,
895
+ wait_for_pool_ready: Optional[pulumi.Input[bool]] = None,
896
+ zone: Optional[pulumi.Input[str]] = None,
897
+ __props__=None):
898
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
899
+ if not isinstance(opts, pulumi.ResourceOptions):
900
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
901
+ if opts.id is None:
902
+ if __props__ is not None:
903
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
904
+ __props__ = KubernetesNodePoolArgs.__new__(KubernetesNodePoolArgs)
905
+
906
+ __props__.__dict__["autohealing"] = autohealing
907
+ __props__.__dict__["autoscaling"] = autoscaling
908
+ if cluster_id is None and not opts.urn:
909
+ raise TypeError("Missing required property 'cluster_id'")
910
+ __props__.__dict__["cluster_id"] = cluster_id
911
+ __props__.__dict__["container_runtime"] = container_runtime
912
+ __props__.__dict__["kubelet_args"] = kubelet_args
913
+ __props__.__dict__["max_size"] = max_size
914
+ __props__.__dict__["min_size"] = min_size
915
+ __props__.__dict__["name"] = name
916
+ if node_type is None and not opts.urn:
917
+ raise TypeError("Missing required property 'node_type'")
918
+ __props__.__dict__["node_type"] = node_type
919
+ __props__.__dict__["placement_group_id"] = placement_group_id
920
+ __props__.__dict__["public_ip_disabled"] = public_ip_disabled
921
+ __props__.__dict__["region"] = region
922
+ __props__.__dict__["root_volume_size_in_gb"] = root_volume_size_in_gb
923
+ __props__.__dict__["root_volume_type"] = root_volume_type
924
+ if size is None and not opts.urn:
925
+ raise TypeError("Missing required property 'size'")
926
+ __props__.__dict__["size"] = size
927
+ __props__.__dict__["tags"] = tags
928
+ __props__.__dict__["upgrade_policy"] = upgrade_policy
929
+ __props__.__dict__["wait_for_pool_ready"] = wait_for_pool_ready
930
+ __props__.__dict__["zone"] = zone
931
+ __props__.__dict__["created_at"] = None
932
+ __props__.__dict__["current_size"] = None
933
+ __props__.__dict__["nodes"] = None
934
+ __props__.__dict__["status"] = None
935
+ __props__.__dict__["updated_at"] = None
936
+ __props__.__dict__["version"] = None
937
+ super(KubernetesNodePool, __self__).__init__(
938
+ 'scaleway:index/kubernetesNodePool:KubernetesNodePool',
939
+ resource_name,
940
+ __props__,
941
+ opts)
942
+
943
+ @staticmethod
944
+ def get(resource_name: str,
945
+ id: pulumi.Input[str],
946
+ opts: Optional[pulumi.ResourceOptions] = None,
947
+ autohealing: Optional[pulumi.Input[bool]] = None,
948
+ autoscaling: Optional[pulumi.Input[bool]] = None,
949
+ cluster_id: Optional[pulumi.Input[str]] = None,
950
+ container_runtime: Optional[pulumi.Input[str]] = None,
951
+ created_at: Optional[pulumi.Input[str]] = None,
952
+ current_size: Optional[pulumi.Input[int]] = None,
953
+ kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
954
+ max_size: Optional[pulumi.Input[int]] = None,
955
+ min_size: Optional[pulumi.Input[int]] = None,
956
+ name: Optional[pulumi.Input[str]] = None,
957
+ node_type: Optional[pulumi.Input[str]] = None,
958
+ nodes: Optional[pulumi.Input[Sequence[pulumi.Input[Union['KubernetesNodePoolNodeArgs', 'KubernetesNodePoolNodeArgsDict']]]]] = None,
959
+ placement_group_id: Optional[pulumi.Input[str]] = None,
960
+ public_ip_disabled: Optional[pulumi.Input[bool]] = None,
961
+ region: Optional[pulumi.Input[str]] = None,
962
+ root_volume_size_in_gb: Optional[pulumi.Input[int]] = None,
963
+ root_volume_type: Optional[pulumi.Input[str]] = None,
964
+ size: Optional[pulumi.Input[int]] = None,
965
+ status: Optional[pulumi.Input[str]] = None,
966
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
967
+ updated_at: Optional[pulumi.Input[str]] = None,
968
+ upgrade_policy: Optional[pulumi.Input[Union['KubernetesNodePoolUpgradePolicyArgs', 'KubernetesNodePoolUpgradePolicyArgsDict']]] = None,
969
+ version: Optional[pulumi.Input[str]] = None,
970
+ wait_for_pool_ready: Optional[pulumi.Input[bool]] = None,
971
+ zone: Optional[pulumi.Input[str]] = None) -> 'KubernetesNodePool':
972
+ """
973
+ Get an existing KubernetesNodePool resource's state with the given name, id, and optional extra
974
+ properties used to qualify the lookup.
975
+
976
+ :param str resource_name: The unique name of the resulting resource.
977
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
978
+ :param pulumi.ResourceOptions opts: Options for the resource.
979
+ :param pulumi.Input[bool] autohealing: Enables the autohealing feature for this pool.
980
+ :param pulumi.Input[bool] autoscaling: Enables the autoscaling feature for this pool.
981
+ > **Important:** When enabled, an update of the `size` will not be taken into account.
982
+ :param pulumi.Input[str] cluster_id: The ID of the Kubernetes cluster on which this pool will be created.
983
+ :param pulumi.Input[str] container_runtime: The container runtime of the pool.
984
+ > **Important:** Updates to this field will recreate a new resource.
985
+ :param pulumi.Input[str] created_at: The creation date of the pool.
986
+ :param pulumi.Input[int] current_size: The actual size of the pool
987
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kubelet_args: The Kubelet arguments to be used by this pool
988
+ :param pulumi.Input[int] max_size: The maximum size of the pool, used by the autoscaling feature.
989
+ :param pulumi.Input[int] min_size: The minimum size of the pool, used by the autoscaling feature.
990
+ :param pulumi.Input[str] name: The name for the pool.
991
+ > **Important:** Updates to this field will recreate a new resource.
992
+ :param pulumi.Input[str] node_type: The commercial type of the pool instances. Instances with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). `external` is a special node type used to provision from other Cloud providers.
993
+
994
+ > **Important:** Updates to this field will recreate a new resource.
995
+ :param pulumi.Input[Sequence[pulumi.Input[Union['KubernetesNodePoolNodeArgs', 'KubernetesNodePoolNodeArgsDict']]]] nodes: (List of) The nodes in the default pool.
996
+ :param pulumi.Input[str] placement_group_id: The [placement group](https://www.scaleway.com/en/developers/api/instance/#path-placement-groups-create-a-placement-group) the nodes of the pool will be attached to.
997
+ > **Important:** Updates to this field will recreate a new resource.
998
+ :param pulumi.Input[bool] public_ip_disabled: Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
999
+ > **Important:** Updates to this field will recreate a new resource.
1000
+ :param pulumi.Input[str] region: `region`) The region in which the pool should be created.
1001
+ :param pulumi.Input[int] root_volume_size_in_gb: The size of the system volume of the nodes in gigabyte
1002
+ :param pulumi.Input[str] root_volume_type: System volume type of the nodes composing the pool
1003
+ :param pulumi.Input[int] size: The size of the pool.
1004
+ > **Important:** This field will only be used at creation if autoscaling is enabled.
1005
+ :param pulumi.Input[str] status: The status of the node.
1006
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The tags associated with the pool.
1007
+ > Note: As mentionned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (Example: "taint=taintName=taineValue:Effect")
1008
+ :param pulumi.Input[str] updated_at: The last update date of the pool.
1009
+ :param pulumi.Input[Union['KubernetesNodePoolUpgradePolicyArgs', 'KubernetesNodePoolUpgradePolicyArgsDict']] upgrade_policy: The Pool upgrade policy
1010
+ :param pulumi.Input[str] version: The version of the pool.
1011
+ :param pulumi.Input[bool] wait_for_pool_ready: Whether to wait for the pool to be ready.
1012
+ :param pulumi.Input[str] zone: `zone`) The zone in which the pool should be created.
1013
+ > **Important:** Updates to this field will recreate a new resource.
1014
+ """
1015
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
1016
+
1017
+ __props__ = _KubernetesNodePoolState.__new__(_KubernetesNodePoolState)
1018
+
1019
+ __props__.__dict__["autohealing"] = autohealing
1020
+ __props__.__dict__["autoscaling"] = autoscaling
1021
+ __props__.__dict__["cluster_id"] = cluster_id
1022
+ __props__.__dict__["container_runtime"] = container_runtime
1023
+ __props__.__dict__["created_at"] = created_at
1024
+ __props__.__dict__["current_size"] = current_size
1025
+ __props__.__dict__["kubelet_args"] = kubelet_args
1026
+ __props__.__dict__["max_size"] = max_size
1027
+ __props__.__dict__["min_size"] = min_size
1028
+ __props__.__dict__["name"] = name
1029
+ __props__.__dict__["node_type"] = node_type
1030
+ __props__.__dict__["nodes"] = nodes
1031
+ __props__.__dict__["placement_group_id"] = placement_group_id
1032
+ __props__.__dict__["public_ip_disabled"] = public_ip_disabled
1033
+ __props__.__dict__["region"] = region
1034
+ __props__.__dict__["root_volume_size_in_gb"] = root_volume_size_in_gb
1035
+ __props__.__dict__["root_volume_type"] = root_volume_type
1036
+ __props__.__dict__["size"] = size
1037
+ __props__.__dict__["status"] = status
1038
+ __props__.__dict__["tags"] = tags
1039
+ __props__.__dict__["updated_at"] = updated_at
1040
+ __props__.__dict__["upgrade_policy"] = upgrade_policy
1041
+ __props__.__dict__["version"] = version
1042
+ __props__.__dict__["wait_for_pool_ready"] = wait_for_pool_ready
1043
+ __props__.__dict__["zone"] = zone
1044
+ return KubernetesNodePool(resource_name, opts=opts, __props__=__props__)
1045
+
1046
+ @property
1047
+ @pulumi.getter
1048
+ def autohealing(self) -> pulumi.Output[Optional[bool]]:
1049
+ """
1050
+ Enables the autohealing feature for this pool.
1051
+ """
1052
+ return pulumi.get(self, "autohealing")
1053
+
1054
+ @property
1055
+ @pulumi.getter
1056
+ def autoscaling(self) -> pulumi.Output[Optional[bool]]:
1057
+ """
1058
+ Enables the autoscaling feature for this pool.
1059
+ > **Important:** When enabled, an update of the `size` will not be taken into account.
1060
+ """
1061
+ return pulumi.get(self, "autoscaling")
1062
+
1063
+ @property
1064
+ @pulumi.getter(name="clusterId")
1065
+ def cluster_id(self) -> pulumi.Output[str]:
1066
+ """
1067
+ The ID of the Kubernetes cluster on which this pool will be created.
1068
+ """
1069
+ return pulumi.get(self, "cluster_id")
1070
+
1071
+ @property
1072
+ @pulumi.getter(name="containerRuntime")
1073
+ def container_runtime(self) -> pulumi.Output[Optional[str]]:
1074
+ """
1075
+ The container runtime of the pool.
1076
+ > **Important:** Updates to this field will recreate a new resource.
1077
+ """
1078
+ return pulumi.get(self, "container_runtime")
1079
+
1080
+ @property
1081
+ @pulumi.getter(name="createdAt")
1082
+ def created_at(self) -> pulumi.Output[str]:
1083
+ """
1084
+ The creation date of the pool.
1085
+ """
1086
+ return pulumi.get(self, "created_at")
1087
+
1088
+ @property
1089
+ @pulumi.getter(name="currentSize")
1090
+ def current_size(self) -> pulumi.Output[int]:
1091
+ """
1092
+ The actual size of the pool
1093
+ """
1094
+ return pulumi.get(self, "current_size")
1095
+
1096
+ @property
1097
+ @pulumi.getter(name="kubeletArgs")
1098
+ def kubelet_args(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
1099
+ """
1100
+ The Kubelet arguments to be used by this pool
1101
+ """
1102
+ return pulumi.get(self, "kubelet_args")
1103
+
1104
+ @property
1105
+ @pulumi.getter(name="maxSize")
1106
+ def max_size(self) -> pulumi.Output[int]:
1107
+ """
1108
+ The maximum size of the pool, used by the autoscaling feature.
1109
+ """
1110
+ return pulumi.get(self, "max_size")
1111
+
1112
+ @property
1113
+ @pulumi.getter(name="minSize")
1114
+ def min_size(self) -> pulumi.Output[Optional[int]]:
1115
+ """
1116
+ The minimum size of the pool, used by the autoscaling feature.
1117
+ """
1118
+ return pulumi.get(self, "min_size")
1119
+
1120
+ @property
1121
+ @pulumi.getter
1122
+ def name(self) -> pulumi.Output[str]:
1123
+ """
1124
+ The name for the pool.
1125
+ > **Important:** Updates to this field will recreate a new resource.
1126
+ """
1127
+ return pulumi.get(self, "name")
1128
+
1129
+ @property
1130
+ @pulumi.getter(name="nodeType")
1131
+ def node_type(self) -> pulumi.Output[str]:
1132
+ """
1133
+ The commercial type of the pool instances. Instances with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). `external` is a special node type used to provision from other Cloud providers.
1134
+
1135
+ > **Important:** Updates to this field will recreate a new resource.
1136
+ """
1137
+ return pulumi.get(self, "node_type")
1138
+
1139
+ @property
1140
+ @pulumi.getter
1141
+ def nodes(self) -> pulumi.Output[Sequence['outputs.KubernetesNodePoolNode']]:
1142
+ """
1143
+ (List of) The nodes in the default pool.
1144
+ """
1145
+ return pulumi.get(self, "nodes")
1146
+
1147
+ @property
1148
+ @pulumi.getter(name="placementGroupId")
1149
+ def placement_group_id(self) -> pulumi.Output[Optional[str]]:
1150
+ """
1151
+ The [placement group](https://www.scaleway.com/en/developers/api/instance/#path-placement-groups-create-a-placement-group) the nodes of the pool will be attached to.
1152
+ > **Important:** Updates to this field will recreate a new resource.
1153
+ """
1154
+ return pulumi.get(self, "placement_group_id")
1155
+
1156
+ @property
1157
+ @pulumi.getter(name="publicIpDisabled")
1158
+ def public_ip_disabled(self) -> pulumi.Output[Optional[bool]]:
1159
+ """
1160
+ Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
1161
+ > **Important:** Updates to this field will recreate a new resource.
1162
+ """
1163
+ return pulumi.get(self, "public_ip_disabled")
1164
+
1165
+ @property
1166
+ @pulumi.getter
1167
+ def region(self) -> pulumi.Output[str]:
1168
+ """
1169
+ `region`) The region in which the pool should be created.
1170
+ """
1171
+ return pulumi.get(self, "region")
1172
+
1173
+ @property
1174
+ @pulumi.getter(name="rootVolumeSizeInGb")
1175
+ def root_volume_size_in_gb(self) -> pulumi.Output[int]:
1176
+ """
1177
+ The size of the system volume of the nodes in gigabyte
1178
+ """
1179
+ return pulumi.get(self, "root_volume_size_in_gb")
1180
+
1181
+ @property
1182
+ @pulumi.getter(name="rootVolumeType")
1183
+ def root_volume_type(self) -> pulumi.Output[str]:
1184
+ """
1185
+ System volume type of the nodes composing the pool
1186
+ """
1187
+ return pulumi.get(self, "root_volume_type")
1188
+
1189
+ @property
1190
+ @pulumi.getter
1191
+ def size(self) -> pulumi.Output[int]:
1192
+ """
1193
+ The size of the pool.
1194
+ > **Important:** This field will only be used at creation if autoscaling is enabled.
1195
+ """
1196
+ return pulumi.get(self, "size")
1197
+
1198
+ @property
1199
+ @pulumi.getter
1200
+ def status(self) -> pulumi.Output[str]:
1201
+ """
1202
+ The status of the node.
1203
+ """
1204
+ return pulumi.get(self, "status")
1205
+
1206
+ @property
1207
+ @pulumi.getter
1208
+ def tags(self) -> pulumi.Output[Optional[Sequence[str]]]:
1209
+ """
1210
+ The tags associated with the pool.
1211
+ > Note: As mentionned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (Example: "taint=taintName=taineValue:Effect")
1212
+ """
1213
+ return pulumi.get(self, "tags")
1214
+
1215
+ @property
1216
+ @pulumi.getter(name="updatedAt")
1217
+ def updated_at(self) -> pulumi.Output[str]:
1218
+ """
1219
+ The last update date of the pool.
1220
+ """
1221
+ return pulumi.get(self, "updated_at")
1222
+
1223
+ @property
1224
+ @pulumi.getter(name="upgradePolicy")
1225
+ def upgrade_policy(self) -> pulumi.Output['outputs.KubernetesNodePoolUpgradePolicy']:
1226
+ """
1227
+ The Pool upgrade policy
1228
+ """
1229
+ return pulumi.get(self, "upgrade_policy")
1230
+
1231
+ @property
1232
+ @pulumi.getter
1233
+ def version(self) -> pulumi.Output[str]:
1234
+ """
1235
+ The version of the pool.
1236
+ """
1237
+ return pulumi.get(self, "version")
1238
+
1239
+ @property
1240
+ @pulumi.getter(name="waitForPoolReady")
1241
+ def wait_for_pool_ready(self) -> pulumi.Output[Optional[bool]]:
1242
+ """
1243
+ Whether to wait for the pool to be ready.
1244
+ """
1245
+ return pulumi.get(self, "wait_for_pool_ready")
1246
+
1247
+ @property
1248
+ @pulumi.getter
1249
+ def zone(self) -> pulumi.Output[str]:
1250
+ """
1251
+ `zone`) The zone in which the pool should be created.
1252
+ > **Important:** Updates to this field will recreate a new resource.
1253
+ """
1254
+ return pulumi.get(self, "zone")
1255
+