pulumi-linode 5.5.0a1766596462__py3-none-any.whl → 5.7.0__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.
pulumi_linode/_inputs.py CHANGED
@@ -6478,6 +6478,10 @@ if not MYPY:
6478
6478
  """
6479
6479
  The disk encryption policy for nodes in this pool.
6480
6480
  """
6481
+ firewall_id: NotRequired[pulumi.Input[_builtins.int]]
6482
+ """
6483
+ The ID of the firewall to associate with this node pool. If not provided, default firewall will be associated.
6484
+ """
6481
6485
  id: NotRequired[pulumi.Input[_builtins.int]]
6482
6486
  """
6483
6487
  The ID of the node.
@@ -6520,6 +6524,7 @@ class LkeClusterPoolArgs:
6520
6524
  autoscaler: Optional[pulumi.Input['LkeClusterPoolAutoscalerArgs']] = None,
6521
6525
  count: Optional[pulumi.Input[_builtins.int]] = None,
6522
6526
  disk_encryption: Optional[pulumi.Input[_builtins.str]] = None,
6527
+ firewall_id: Optional[pulumi.Input[_builtins.int]] = None,
6523
6528
  id: Optional[pulumi.Input[_builtins.int]] = None,
6524
6529
  k8s_version: Optional[pulumi.Input[_builtins.str]] = None,
6525
6530
  label: Optional[pulumi.Input[_builtins.str]] = None,
@@ -6533,6 +6538,7 @@ class LkeClusterPoolArgs:
6533
6538
  :param pulumi.Input['LkeClusterPoolAutoscalerArgs'] autoscaler: When specified, the number of nodes autoscales within the defined minimum and maximum values.
6534
6539
  :param pulumi.Input[_builtins.int] count: The number of nodes in the Node Pool. If undefined with an autoscaler the initial node count will equal the autoscaler minimum.
6535
6540
  :param pulumi.Input[_builtins.str] disk_encryption: The disk encryption policy for nodes in this pool.
6541
+ :param pulumi.Input[_builtins.int] firewall_id: The ID of the firewall to associate with this node pool. If not provided, default firewall will be associated.
6536
6542
  :param pulumi.Input[_builtins.int] id: The ID of the node.
6537
6543
  :param pulumi.Input[_builtins.str] k8s_version: The k8s version of the nodes in this Node Pool. For LKE enterprise only and may not currently available to all users even under v4beta.
6538
6544
  :param pulumi.Input[_builtins.str] label: A label for the Node Pool. If not provided, it defaults to empty string.
@@ -6549,6 +6555,8 @@ class LkeClusterPoolArgs:
6549
6555
  pulumi.set(__self__, "count", count)
6550
6556
  if disk_encryption is not None:
6551
6557
  pulumi.set(__self__, "disk_encryption", disk_encryption)
6558
+ if firewall_id is not None:
6559
+ pulumi.set(__self__, "firewall_id", firewall_id)
6552
6560
  if id is not None:
6553
6561
  pulumi.set(__self__, "id", id)
6554
6562
  if k8s_version is not None:
@@ -6614,6 +6622,18 @@ class LkeClusterPoolArgs:
6614
6622
  def disk_encryption(self, value: Optional[pulumi.Input[_builtins.str]]):
6615
6623
  pulumi.set(self, "disk_encryption", value)
6616
6624
 
6625
+ @_builtins.property
6626
+ @pulumi.getter(name="firewallId")
6627
+ def firewall_id(self) -> Optional[pulumi.Input[_builtins.int]]:
6628
+ """
6629
+ The ID of the firewall to associate with this node pool. If not provided, default firewall will be associated.
6630
+ """
6631
+ return pulumi.get(self, "firewall_id")
6632
+
6633
+ @firewall_id.setter
6634
+ def firewall_id(self, value: Optional[pulumi.Input[_builtins.int]]):
6635
+ pulumi.set(self, "firewall_id", value)
6636
+
6617
6637
  @_builtins.property
6618
6638
  @pulumi.getter
6619
6639
  def id(self) -> Optional[pulumi.Input[_builtins.int]]:
pulumi_linode/instance.py CHANGED
@@ -652,6 +652,7 @@ class _InstanceState:
652
652
  ipv6: Optional[pulumi.Input[_builtins.str]] = None,
653
653
  label: Optional[pulumi.Input[_builtins.str]] = None,
654
654
  lke_cluster_id: Optional[pulumi.Input[_builtins.int]] = None,
655
+ locks: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
655
656
  maintenance_policy: Optional[pulumi.Input[_builtins.str]] = None,
656
657
  metadatas: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceMetadataArgs']]]] = None,
657
658
  migration_type: Optional[pulumi.Input[_builtins.str]] = None,
@@ -703,6 +704,7 @@ class _InstanceState:
703
704
  :param pulumi.Input[_builtins.str] ipv6: This Linode's IPv6 SLAAC addresses. This address is specific to a Linode, and may not be shared. The prefix (`/128`) is included in this attribute.
704
705
  :param pulumi.Input[_builtins.str] label: The Linode's label is for display purposes only. If no label is provided for a Linode, a default will be assigned.
705
706
  :param pulumi.Input[_builtins.int] lke_cluster_id: If applicable, the ID of the LKE cluster this instance is a part of.
707
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] locks: A list of locks applied to this Linode.
706
708
  :param pulumi.Input[_builtins.str] maintenance_policy: The maintenance policy of this Linode instance. Examples are `"linode/migrate"` and `"linode/power_off_on"`. Defaults to the default maintenance policy of the account. (**Note: v4beta only.**)
707
709
  :param pulumi.Input[Sequence[pulumi.Input['InstanceMetadataArgs']]] metadatas: Various fields related to the Linode Metadata service.
708
710
  :param pulumi.Input[_builtins.str] migration_type: The type of migration to use when updating the type or region of a Linode. (`cold`, `warm`; default `cold`)
@@ -802,6 +804,8 @@ class _InstanceState:
802
804
  pulumi.set(__self__, "label", label)
803
805
  if lke_cluster_id is not None:
804
806
  pulumi.set(__self__, "lke_cluster_id", lke_cluster_id)
807
+ if locks is not None:
808
+ pulumi.set(__self__, "locks", locks)
805
809
  if maintenance_policy is not None:
806
810
  pulumi.set(__self__, "maintenance_policy", maintenance_policy)
807
811
  if metadatas is not None:
@@ -1138,6 +1142,18 @@ class _InstanceState:
1138
1142
  def lke_cluster_id(self, value: Optional[pulumi.Input[_builtins.int]]):
1139
1143
  pulumi.set(self, "lke_cluster_id", value)
1140
1144
 
1145
+ @_builtins.property
1146
+ @pulumi.getter
1147
+ def locks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
1148
+ """
1149
+ A list of locks applied to this Linode.
1150
+ """
1151
+ return pulumi.get(self, "locks")
1152
+
1153
+ @locks.setter
1154
+ def locks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
1155
+ pulumi.set(self, "locks", value)
1156
+
1141
1157
  @_builtins.property
1142
1158
  @pulumi.getter(name="maintenancePolicy")
1143
1159
  def maintenance_policy(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -1875,6 +1891,7 @@ class Instance(pulumi.CustomResource):
1875
1891
  __props__.__dict__["ip_address"] = None
1876
1892
  __props__.__dict__["ipv6"] = None
1877
1893
  __props__.__dict__["lke_cluster_id"] = None
1894
+ __props__.__dict__["locks"] = None
1878
1895
  __props__.__dict__["private_ip_address"] = None
1879
1896
  __props__.__dict__["specs"] = None
1880
1897
  __props__.__dict__["status"] = None
@@ -1914,6 +1931,7 @@ class Instance(pulumi.CustomResource):
1914
1931
  ipv6: Optional[pulumi.Input[_builtins.str]] = None,
1915
1932
  label: Optional[pulumi.Input[_builtins.str]] = None,
1916
1933
  lke_cluster_id: Optional[pulumi.Input[_builtins.int]] = None,
1934
+ locks: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
1917
1935
  maintenance_policy: Optional[pulumi.Input[_builtins.str]] = None,
1918
1936
  metadatas: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InstanceMetadataArgs', 'InstanceMetadataArgsDict']]]]] = None,
1919
1937
  migration_type: Optional[pulumi.Input[_builtins.str]] = None,
@@ -1970,6 +1988,7 @@ class Instance(pulumi.CustomResource):
1970
1988
  :param pulumi.Input[_builtins.str] ipv6: This Linode's IPv6 SLAAC addresses. This address is specific to a Linode, and may not be shared. The prefix (`/128`) is included in this attribute.
1971
1989
  :param pulumi.Input[_builtins.str] label: The Linode's label is for display purposes only. If no label is provided for a Linode, a default will be assigned.
1972
1990
  :param pulumi.Input[_builtins.int] lke_cluster_id: If applicable, the ID of the LKE cluster this instance is a part of.
1991
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] locks: A list of locks applied to this Linode.
1973
1992
  :param pulumi.Input[_builtins.str] maintenance_policy: The maintenance policy of this Linode instance. Examples are `"linode/migrate"` and `"linode/power_off_on"`. Defaults to the default maintenance policy of the account. (**Note: v4beta only.**)
1974
1993
  :param pulumi.Input[Sequence[pulumi.Input[Union['InstanceMetadataArgs', 'InstanceMetadataArgsDict']]]] metadatas: Various fields related to the Linode Metadata service.
1975
1994
  :param pulumi.Input[_builtins.str] migration_type: The type of migration to use when updating the type or region of a Linode. (`cold`, `warm`; default `cold`)
@@ -2037,6 +2056,7 @@ class Instance(pulumi.CustomResource):
2037
2056
  __props__.__dict__["ipv6"] = ipv6
2038
2057
  __props__.__dict__["label"] = label
2039
2058
  __props__.__dict__["lke_cluster_id"] = lke_cluster_id
2059
+ __props__.__dict__["locks"] = locks
2040
2060
  __props__.__dict__["maintenance_policy"] = maintenance_policy
2041
2061
  __props__.__dict__["metadatas"] = metadatas
2042
2062
  __props__.__dict__["migration_type"] = migration_type
@@ -2258,6 +2278,14 @@ class Instance(pulumi.CustomResource):
2258
2278
  """
2259
2279
  return pulumi.get(self, "lke_cluster_id")
2260
2280
 
2281
+ @_builtins.property
2282
+ @pulumi.getter
2283
+ def locks(self) -> pulumi.Output[Sequence[_builtins.str]]:
2284
+ """
2285
+ A list of locks applied to this Linode.
2286
+ """
2287
+ return pulumi.get(self, "locks")
2288
+
2261
2289
  @_builtins.property
2262
2290
  @pulumi.getter(name="maintenancePolicy")
2263
2291
  def maintenance_policy(self) -> pulumi.Output[_builtins.str]:
@@ -24,6 +24,7 @@ class LkeNodePoolArgs:
24
24
  cluster_id: pulumi.Input[_builtins.int],
25
25
  type: pulumi.Input[_builtins.str],
26
26
  autoscaler: Optional[pulumi.Input['LkeNodePoolAutoscalerArgs']] = None,
27
+ firewall_id: Optional[pulumi.Input[_builtins.int]] = None,
27
28
  k8s_version: Optional[pulumi.Input[_builtins.str]] = None,
28
29
  label: Optional[pulumi.Input[_builtins.str]] = None,
29
30
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
@@ -35,6 +36,7 @@ class LkeNodePoolArgs:
35
36
  The set of arguments for constructing a LkeNodePool resource.
36
37
  :param pulumi.Input[_builtins.int] cluster_id: ID of the LKE Cluster where to create the current Node Pool.
37
38
  :param pulumi.Input[_builtins.str] type: A Linode Type for all nodes in the Node Pool. See all node types [here](https://api.linode.com/v4/linode/types).
39
+ :param pulumi.Input[_builtins.int] firewall_id: The ID of the firewall to associate with this node pool. If not provided, default firewall will be associated.
38
40
  :param pulumi.Input[_builtins.str] k8s_version: The k8s version of the nodes in this node pool. For LKE enterprise only and may not currently available to all users even under v4beta.
39
41
  :param pulumi.Input[_builtins.str] label: A label for the Node Pool. If not provided, it defaults to empty string.
40
42
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: A map attribute containing key-value pairs to be added as labels to nodes in the node pool. Labels help classify your nodes and to easily select subsets of objects. To learn more, review [Add Labels and Taints to your LKE Node Pools](https://www.linode.com/docs/products/compute/kubernetes/guides/deploy-and-manage-cluster-with-the-linode-api/#add-labels-and-taints-to-your-lke-node-pools).
@@ -51,6 +53,8 @@ class LkeNodePoolArgs:
51
53
  pulumi.set(__self__, "type", type)
52
54
  if autoscaler is not None:
53
55
  pulumi.set(__self__, "autoscaler", autoscaler)
56
+ if firewall_id is not None:
57
+ pulumi.set(__self__, "firewall_id", firewall_id)
54
58
  if k8s_version is not None:
55
59
  pulumi.set(__self__, "k8s_version", k8s_version)
56
60
  if label is not None:
@@ -99,6 +103,18 @@ class LkeNodePoolArgs:
99
103
  def autoscaler(self, value: Optional[pulumi.Input['LkeNodePoolAutoscalerArgs']]):
100
104
  pulumi.set(self, "autoscaler", value)
101
105
 
106
+ @_builtins.property
107
+ @pulumi.getter(name="firewallId")
108
+ def firewall_id(self) -> Optional[pulumi.Input[_builtins.int]]:
109
+ """
110
+ The ID of the firewall to associate with this node pool. If not provided, default firewall will be associated.
111
+ """
112
+ return pulumi.get(self, "firewall_id")
113
+
114
+ @firewall_id.setter
115
+ def firewall_id(self, value: Optional[pulumi.Input[_builtins.int]]):
116
+ pulumi.set(self, "firewall_id", value)
117
+
102
118
  @_builtins.property
103
119
  @pulumi.getter(name="k8sVersion")
104
120
  def k8s_version(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -194,6 +210,7 @@ class _LkeNodePoolState:
194
210
  autoscaler: Optional[pulumi.Input['LkeNodePoolAutoscalerArgs']] = None,
195
211
  cluster_id: Optional[pulumi.Input[_builtins.int]] = None,
196
212
  disk_encryption: Optional[pulumi.Input[_builtins.str]] = None,
213
+ firewall_id: Optional[pulumi.Input[_builtins.int]] = None,
197
214
  k8s_version: Optional[pulumi.Input[_builtins.str]] = None,
198
215
  label: Optional[pulumi.Input[_builtins.str]] = None,
199
216
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
@@ -207,6 +224,7 @@ class _LkeNodePoolState:
207
224
  Input properties used for looking up and filtering LkeNodePool resources.
208
225
  :param pulumi.Input[_builtins.int] cluster_id: ID of the LKE Cluster where to create the current Node Pool.
209
226
  :param pulumi.Input[_builtins.str] disk_encryption: The disk encryption policy for nodes in this pool.
227
+ :param pulumi.Input[_builtins.int] firewall_id: The ID of the firewall to associate with this node pool. If not provided, default firewall will be associated.
210
228
  :param pulumi.Input[_builtins.str] k8s_version: The k8s version of the nodes in this node pool. For LKE enterprise only and may not currently available to all users even under v4beta.
211
229
  :param pulumi.Input[_builtins.str] label: A label for the Node Pool. If not provided, it defaults to empty string.
212
230
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: A map attribute containing key-value pairs to be added as labels to nodes in the node pool. Labels help classify your nodes and to easily select subsets of objects. To learn more, review [Add Labels and Taints to your LKE Node Pools](https://www.linode.com/docs/products/compute/kubernetes/guides/deploy-and-manage-cluster-with-the-linode-api/#add-labels-and-taints-to-your-lke-node-pools).
@@ -227,6 +245,8 @@ class _LkeNodePoolState:
227
245
  pulumi.set(__self__, "cluster_id", cluster_id)
228
246
  if disk_encryption is not None:
229
247
  pulumi.set(__self__, "disk_encryption", disk_encryption)
248
+ if firewall_id is not None:
249
+ pulumi.set(__self__, "firewall_id", firewall_id)
230
250
  if k8s_version is not None:
231
251
  pulumi.set(__self__, "k8s_version", k8s_version)
232
252
  if label is not None:
@@ -279,6 +299,18 @@ class _LkeNodePoolState:
279
299
  def disk_encryption(self, value: Optional[pulumi.Input[_builtins.str]]):
280
300
  pulumi.set(self, "disk_encryption", value)
281
301
 
302
+ @_builtins.property
303
+ @pulumi.getter(name="firewallId")
304
+ def firewall_id(self) -> Optional[pulumi.Input[_builtins.int]]:
305
+ """
306
+ The ID of the firewall to associate with this node pool. If not provided, default firewall will be associated.
307
+ """
308
+ return pulumi.get(self, "firewall_id")
309
+
310
+ @firewall_id.setter
311
+ def firewall_id(self, value: Optional[pulumi.Input[_builtins.int]]):
312
+ pulumi.set(self, "firewall_id", value)
313
+
282
314
  @_builtins.property
283
315
  @pulumi.getter(name="k8sVersion")
284
316
  def k8s_version(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -400,6 +432,7 @@ class LkeNodePool(pulumi.CustomResource):
400
432
  opts: Optional[pulumi.ResourceOptions] = None,
401
433
  autoscaler: Optional[pulumi.Input[Union['LkeNodePoolAutoscalerArgs', 'LkeNodePoolAutoscalerArgsDict']]] = None,
402
434
  cluster_id: Optional[pulumi.Input[_builtins.int]] = None,
435
+ firewall_id: Optional[pulumi.Input[_builtins.int]] = None,
403
436
  k8s_version: Optional[pulumi.Input[_builtins.str]] = None,
404
437
  label: Optional[pulumi.Input[_builtins.str]] = None,
405
438
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
@@ -421,6 +454,7 @@ class LkeNodePool(pulumi.CustomResource):
421
454
  :param str resource_name: The name of the resource.
422
455
  :param pulumi.ResourceOptions opts: Options for the resource.
423
456
  :param pulumi.Input[_builtins.int] cluster_id: ID of the LKE Cluster where to create the current Node Pool.
457
+ :param pulumi.Input[_builtins.int] firewall_id: The ID of the firewall to associate with this node pool. If not provided, default firewall will be associated.
424
458
  :param pulumi.Input[_builtins.str] k8s_version: The k8s version of the nodes in this node pool. For LKE enterprise only and may not currently available to all users even under v4beta.
425
459
  :param pulumi.Input[_builtins.str] label: A label for the Node Pool. If not provided, it defaults to empty string.
426
460
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: A map attribute containing key-value pairs to be added as labels to nodes in the node pool. Labels help classify your nodes and to easily select subsets of objects. To learn more, review [Add Labels and Taints to your LKE Node Pools](https://www.linode.com/docs/products/compute/kubernetes/guides/deploy-and-manage-cluster-with-the-linode-api/#add-labels-and-taints-to-your-lke-node-pools).
@@ -466,6 +500,7 @@ class LkeNodePool(pulumi.CustomResource):
466
500
  opts: Optional[pulumi.ResourceOptions] = None,
467
501
  autoscaler: Optional[pulumi.Input[Union['LkeNodePoolAutoscalerArgs', 'LkeNodePoolAutoscalerArgsDict']]] = None,
468
502
  cluster_id: Optional[pulumi.Input[_builtins.int]] = None,
503
+ firewall_id: Optional[pulumi.Input[_builtins.int]] = None,
469
504
  k8s_version: Optional[pulumi.Input[_builtins.str]] = None,
470
505
  label: Optional[pulumi.Input[_builtins.str]] = None,
471
506
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
@@ -487,6 +522,7 @@ class LkeNodePool(pulumi.CustomResource):
487
522
  if cluster_id is None and not opts.urn:
488
523
  raise TypeError("Missing required property 'cluster_id'")
489
524
  __props__.__dict__["cluster_id"] = cluster_id
525
+ __props__.__dict__["firewall_id"] = firewall_id
490
526
  __props__.__dict__["k8s_version"] = k8s_version
491
527
  __props__.__dict__["label"] = label
492
528
  __props__.__dict__["labels"] = labels
@@ -512,6 +548,7 @@ class LkeNodePool(pulumi.CustomResource):
512
548
  autoscaler: Optional[pulumi.Input[Union['LkeNodePoolAutoscalerArgs', 'LkeNodePoolAutoscalerArgsDict']]] = None,
513
549
  cluster_id: Optional[pulumi.Input[_builtins.int]] = None,
514
550
  disk_encryption: Optional[pulumi.Input[_builtins.str]] = None,
551
+ firewall_id: Optional[pulumi.Input[_builtins.int]] = None,
515
552
  k8s_version: Optional[pulumi.Input[_builtins.str]] = None,
516
553
  label: Optional[pulumi.Input[_builtins.str]] = None,
517
554
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
@@ -530,6 +567,7 @@ class LkeNodePool(pulumi.CustomResource):
530
567
  :param pulumi.ResourceOptions opts: Options for the resource.
531
568
  :param pulumi.Input[_builtins.int] cluster_id: ID of the LKE Cluster where to create the current Node Pool.
532
569
  :param pulumi.Input[_builtins.str] disk_encryption: The disk encryption policy for nodes in this pool.
570
+ :param pulumi.Input[_builtins.int] firewall_id: The ID of the firewall to associate with this node pool. If not provided, default firewall will be associated.
533
571
  :param pulumi.Input[_builtins.str] k8s_version: The k8s version of the nodes in this node pool. For LKE enterprise only and may not currently available to all users even under v4beta.
534
572
  :param pulumi.Input[_builtins.str] label: A label for the Node Pool. If not provided, it defaults to empty string.
535
573
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: A map attribute containing key-value pairs to be added as labels to nodes in the node pool. Labels help classify your nodes and to easily select subsets of objects. To learn more, review [Add Labels and Taints to your LKE Node Pools](https://www.linode.com/docs/products/compute/kubernetes/guides/deploy-and-manage-cluster-with-the-linode-api/#add-labels-and-taints-to-your-lke-node-pools).
@@ -551,6 +589,7 @@ class LkeNodePool(pulumi.CustomResource):
551
589
  __props__.__dict__["autoscaler"] = autoscaler
552
590
  __props__.__dict__["cluster_id"] = cluster_id
553
591
  __props__.__dict__["disk_encryption"] = disk_encryption
592
+ __props__.__dict__["firewall_id"] = firewall_id
554
593
  __props__.__dict__["k8s_version"] = k8s_version
555
594
  __props__.__dict__["label"] = label
556
595
  __props__.__dict__["labels"] = labels
@@ -583,6 +622,14 @@ class LkeNodePool(pulumi.CustomResource):
583
622
  """
584
623
  return pulumi.get(self, "disk_encryption")
585
624
 
625
+ @_builtins.property
626
+ @pulumi.getter(name="firewallId")
627
+ def firewall_id(self) -> pulumi.Output[_builtins.int]:
628
+ """
629
+ The ID of the firewall to associate with this node pool. If not provided, default firewall will be associated.
630
+ """
631
+ return pulumi.get(self, "firewall_id")
632
+
586
633
  @_builtins.property
587
634
  @pulumi.getter(name="k8sVersion")
588
635
  def k8s_version(self) -> pulumi.Output[_builtins.str]:
pulumi_linode/outputs.py CHANGED
@@ -5042,6 +5042,8 @@ class LkeClusterPool(dict):
5042
5042
  suggest = None
5043
5043
  if key == "diskEncryption":
5044
5044
  suggest = "disk_encryption"
5045
+ elif key == "firewallId":
5046
+ suggest = "firewall_id"
5045
5047
  elif key == "k8sVersion":
5046
5048
  suggest = "k8s_version"
5047
5049
  elif key == "updateStrategy":
@@ -5063,6 +5065,7 @@ class LkeClusterPool(dict):
5063
5065
  autoscaler: Optional['outputs.LkeClusterPoolAutoscaler'] = None,
5064
5066
  count: Optional[_builtins.int] = None,
5065
5067
  disk_encryption: Optional[_builtins.str] = None,
5068
+ firewall_id: Optional[_builtins.int] = None,
5066
5069
  id: Optional[_builtins.int] = None,
5067
5070
  k8s_version: Optional[_builtins.str] = None,
5068
5071
  label: Optional[_builtins.str] = None,
@@ -5076,6 +5079,7 @@ class LkeClusterPool(dict):
5076
5079
  :param 'LkeClusterPoolAutoscalerArgs' autoscaler: When specified, the number of nodes autoscales within the defined minimum and maximum values.
5077
5080
  :param _builtins.int count: The number of nodes in the Node Pool. If undefined with an autoscaler the initial node count will equal the autoscaler minimum.
5078
5081
  :param _builtins.str disk_encryption: The disk encryption policy for nodes in this pool.
5082
+ :param _builtins.int firewall_id: The ID of the firewall to associate with this node pool. If not provided, default firewall will be associated.
5079
5083
  :param _builtins.int id: The ID of the node.
5080
5084
  :param _builtins.str k8s_version: The k8s version of the nodes in this Node Pool. For LKE enterprise only and may not currently available to all users even under v4beta.
5081
5085
  :param _builtins.str label: A label for the Node Pool. If not provided, it defaults to empty string.
@@ -5092,6 +5096,8 @@ class LkeClusterPool(dict):
5092
5096
  pulumi.set(__self__, "count", count)
5093
5097
  if disk_encryption is not None:
5094
5098
  pulumi.set(__self__, "disk_encryption", disk_encryption)
5099
+ if firewall_id is not None:
5100
+ pulumi.set(__self__, "firewall_id", firewall_id)
5095
5101
  if id is not None:
5096
5102
  pulumi.set(__self__, "id", id)
5097
5103
  if k8s_version is not None:
@@ -5141,6 +5147,14 @@ class LkeClusterPool(dict):
5141
5147
  """
5142
5148
  return pulumi.get(self, "disk_encryption")
5143
5149
 
5150
+ @_builtins.property
5151
+ @pulumi.getter(name="firewallId")
5152
+ def firewall_id(self) -> Optional[_builtins.int]:
5153
+ """
5154
+ The ID of the firewall to associate with this node pool. If not provided, default firewall will be associated.
5155
+ """
5156
+ return pulumi.get(self, "firewall_id")
5157
+
5144
5158
  @_builtins.property
5145
5159
  @pulumi.getter
5146
5160
  def id(self) -> Optional[_builtins.int]:
@@ -14748,6 +14762,7 @@ class GetInstancesInstanceResult(dict):
14748
14762
  ipv6: _builtins.str,
14749
14763
  label: _builtins.str,
14750
14764
  lke_cluster_id: _builtins.int,
14765
+ locks: Sequence[_builtins.str],
14751
14766
  maintenance_policy: _builtins.str,
14752
14767
  placement_groups: Sequence['outputs.GetInstancesInstancePlacementGroupResult'],
14753
14768
  private_ip_address: _builtins.str,
@@ -14776,6 +14791,7 @@ class GetInstancesInstanceResult(dict):
14776
14791
  :param _builtins.str ipv6: This Linode's IPv6 SLAAC addresses. This address is specific to a Linode, and may not be shared. The prefix (`/128`) is included in this attribute.
14777
14792
  :param _builtins.str label: The label of the Placement Group. This field can only contain ASCII letters, digits and dashes.
14778
14793
  :param _builtins.int lke_cluster_id: If applicable, the ID of the LKE cluster this instance is a part of.
14794
+ :param Sequence[_builtins.str] locks: A list of locks applied to this Linode.
14779
14795
  :param _builtins.str maintenance_policy: The maintenance policy of this Linode instance. (**Note: v4beta only.**)
14780
14796
  :param _builtins.str private_ip_address: This Linode's Private IPv4 Address, if enabled. The regional private IP address range, 192.168.128.0/17, is shared by all Linode Instances in a region.
14781
14797
  :param _builtins.str region: This is the location where the Linode is deployed. Examples are `"us-east"`, `"us-west"`, `"ap-south"`, etc. See all regions [here](https://api.linode.com/v4/regions).
@@ -14803,6 +14819,7 @@ class GetInstancesInstanceResult(dict):
14803
14819
  pulumi.set(__self__, "ipv6", ipv6)
14804
14820
  pulumi.set(__self__, "label", label)
14805
14821
  pulumi.set(__self__, "lke_cluster_id", lke_cluster_id)
14822
+ pulumi.set(__self__, "locks", locks)
14806
14823
  pulumi.set(__self__, "maintenance_policy", maintenance_policy)
14807
14824
  pulumi.set(__self__, "placement_groups", placement_groups)
14808
14825
  pulumi.set(__self__, "private_ip_address", private_ip_address)
@@ -14955,6 +14972,14 @@ class GetInstancesInstanceResult(dict):
14955
14972
  """
14956
14973
  return pulumi.get(self, "lke_cluster_id")
14957
14974
 
14975
+ @_builtins.property
14976
+ @pulumi.getter
14977
+ def locks(self) -> Sequence[_builtins.str]:
14978
+ """
14979
+ A list of locks applied to this Linode.
14980
+ """
14981
+ return pulumi.get(self, "locks")
14982
+
14958
14983
  @_builtins.property
14959
14984
  @pulumi.getter(name="maintenancePolicy")
14960
14985
  def maintenance_policy(self) -> _builtins.str:
@@ -17085,6 +17110,7 @@ class GetLkeClusterPoolResult(dict):
17085
17110
  count: _builtins.int,
17086
17111
  disk_encryption: _builtins.str,
17087
17112
  disks: Sequence['outputs.GetLkeClusterPoolDiskResult'],
17113
+ firewall_id: _builtins.int,
17088
17114
  id: _builtins.int,
17089
17115
  k8s_version: _builtins.str,
17090
17116
  labels: Mapping[str, _builtins.str],
@@ -17099,6 +17125,7 @@ class GetLkeClusterPoolResult(dict):
17099
17125
  :param _builtins.int count: The number of nodes in the Node Pool.
17100
17126
  :param _builtins.str disk_encryption: The disk encryption policy for nodes in this pool.
17101
17127
  :param Sequence['GetLkeClusterPoolDiskArgs'] disks: This Node Pool’s custom disk layout.
17128
+ :param _builtins.int firewall_id: The ID of the firewall associated with the Node Pool.
17102
17129
  :param _builtins.int id: The LKE Cluster's ID.
17103
17130
  :param _builtins.str k8s_version: The k8s version of the nodes in this Node Pool. For LKE enterprise only and may not currently available to all users even under v4beta.
17104
17131
  :param Mapping[str, _builtins.str] labels: Key-value pairs added as labels to nodes in the node pool. Labels help classify your nodes and to easily select subsets of objects.
@@ -17113,6 +17140,7 @@ class GetLkeClusterPoolResult(dict):
17113
17140
  pulumi.set(__self__, "count", count)
17114
17141
  pulumi.set(__self__, "disk_encryption", disk_encryption)
17115
17142
  pulumi.set(__self__, "disks", disks)
17143
+ pulumi.set(__self__, "firewall_id", firewall_id)
17116
17144
  pulumi.set(__self__, "id", id)
17117
17145
  pulumi.set(__self__, "k8s_version", k8s_version)
17118
17146
  pulumi.set(__self__, "labels", labels)
@@ -17156,6 +17184,14 @@ class GetLkeClusterPoolResult(dict):
17156
17184
  """
17157
17185
  return pulumi.get(self, "disks")
17158
17186
 
17187
+ @_builtins.property
17188
+ @pulumi.getter(name="firewallId")
17189
+ def firewall_id(self) -> _builtins.int:
17190
+ """
17191
+ The ID of the firewall associated with the Node Pool.
17192
+ """
17193
+ return pulumi.get(self, "firewall_id")
17194
+
17159
17195
  @_builtins.property
17160
17196
  @pulumi.getter
17161
17197
  def id(self) -> _builtins.int:
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "linode",
4
- "version": "5.5.0-alpha.1766596462"
4
+ "version": "5.7.0"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_linode
3
- Version: 5.5.0a1766596462
3
+ Version: 5.7.0
4
4
  Summary: A Pulumi package for creating and managing linode cloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -1,5 +1,5 @@
1
1
  pulumi_linode/__init__.py,sha256=LUGUQydwimUYuZA7ZNBCYE2fZrHSPIiPwCywJcWsmY4,12655
2
- pulumi_linode/_inputs.py,sha256=5rss59ROMP2bwj1LJA0r8oTL_KFhZJPhn28AFlbHv7g,591936
2
+ pulumi_linode/_inputs.py,sha256=TWe4GC_tENn7_3yqlkfQSLk50h7eGCf6SZHYumvuec8,592947
3
3
  pulumi_linode/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
4
4
  pulumi_linode/account_settings.py,sha256=gR3PVEnTt4CHuTPls00r8lyNTkyJS_bI7SLXScrhSJ4,24738
5
5
  pulumi_linode/consumer_image_share_group_token.py,sha256=z7fQy-85xEm0drqn1JjwvFS2DoO2u2CP0nyWmWyLLeg,19096
@@ -106,7 +106,7 @@ pulumi_linode/get_vpc_subnet.py,sha256=TBiN66k02BNPZ3miP1BHcYey7rCkZOUlde9d-D6yy
106
106
  pulumi_linode/get_vpc_subnets.py,sha256=jfaUzvkBRC05h6ommVatroLi1rTqBodsNNS7OHFlGys,6673
107
107
  pulumi_linode/get_vpcs.py,sha256=lpUvIkBTEpvhxAuYhUVWFIDcctzWyu3HEZJBpa1my2Q,5128
108
108
  pulumi_linode/image.py,sha256=XXvdksEn0Lw-tVKDy_eYFOu84Zi5GCghehxfbGmV594,57946
109
- pulumi_linode/instance.py,sha256=INVA5n4pg4eT0HPSGPuczVtcL69iktvILg46zwutOV4,151714
109
+ pulumi_linode/instance.py,sha256=DT4gGdeu0mH4pvRdLwmnH83xEuXXHhHIg8R4TV8lsmI,152909
110
110
  pulumi_linode/instance_config.py,sha256=nQBOLqZOfmaHblKmFMa_181dGsGn05vAormXuDyqcwk,48025
111
111
  pulumi_linode/instance_disk.py,sha256=d8IfpBkdsfd9qQPrgX80L-Ecl3oZYk9IX5NqrvWI1fM,40574
112
112
  pulumi_linode/instance_ip.py,sha256=FlQYwITmNUjSWFwFmXkRKV8qlQvBoVgErZUMcwXEHMQ,22323
@@ -114,7 +114,7 @@ pulumi_linode/instance_shared_ips.py,sha256=IkNiLmaCJ8QPwXPg3Rs3sb8GsijGT8HKHSpr
114
114
  pulumi_linode/interface.py,sha256=u7pYCqoDXRIbCY6rJzgg0P5hSe5zzQP-6mX7hl1_JiQ,31285
115
115
  pulumi_linode/ipv6_range.py,sha256=6GwFTV7TeSkc6bF5bs_Jd7xwXrl4N5A2Xmqxw9uYss4,16060
116
116
  pulumi_linode/lke_cluster.py,sha256=r2NfPpv8ntaLu9IrvNvPyQTgWtFdvqI8eX3MLwE7FNM,42268
117
- pulumi_linode/lke_node_pool.py,sha256=-1MvgVnNprFgA73KUK6odlCxmhWUVOxSuwe5nMsz7ek,38448
117
+ pulumi_linode/lke_node_pool.py,sha256=6_IrBwhWmW3JtbXzk-J2KCMZYSdA1QmleUuQTnyFrm8,41045
118
118
  pulumi_linode/lock.py,sha256=IBSeUXDtDSk8xXIumVqf8MtiPx87ARcGHiaykdmEPmA,17196
119
119
  pulumi_linode/networking_ip.py,sha256=1-oeVFQeO2erRCY161ZebCw-I4PCVdshvqJopz-Xq7w,24222
120
120
  pulumi_linode/networking_ip_assignment.py,sha256=M75jGx1dBj6oqYC7PEpR6IfAhfyx8ottx8UTVH8Zn1M,10876
@@ -124,13 +124,13 @@ pulumi_linode/node_balancer_node.py,sha256=bn_4Hdp2q-EHiD6BIxVaIZQUYWl0uabBvYa-U
124
124
  pulumi_linode/object_storage_bucket.py,sha256=7Y7TTHnN87X0v3gUqGNCm9bQJbipSTU5ROxcWZs3_5c,48553
125
125
  pulumi_linode/object_storage_key.py,sha256=DCwmYlnipDM_tsqW6GSKMGlYL7kKDiQyQySjBuBugZk,21932
126
126
  pulumi_linode/object_storage_object.py,sha256=MQSDkOlFLNktHMmN1OcYm13E_t-XAaPCTUcQdZaE_UE,65505
127
- pulumi_linode/outputs.py,sha256=FTuy8sHhK__gZELsVP1BZk-STIJ5VTyJp2z-uDxzjPg,922804
127
+ pulumi_linode/outputs.py,sha256=BDXXLWCRQQknJMcIZfdglDAdPwBCK1mbQ6_sNV0aHgo,924316
128
128
  pulumi_linode/placement_group.py,sha256=VMkn_ZWb7nyU2d9uvPDq9WtpaO4VtP1_tWEet0tXZZg,17909
129
129
  pulumi_linode/placement_group_assignment.py,sha256=VS41EglL2bMz-OGO5ut-mI4qztJ1JOTwJdYYH_6T2rE,13127
130
130
  pulumi_linode/producer_image_share_group.py,sha256=owcvP_IxYZHh0Rh-OFWhZ0iy6woKWf2PIMwAmDaCRKU,21744
131
131
  pulumi_linode/producer_image_share_group_member.py,sha256=Q9uwFZ_EWRguYMlr8ODSBV3oxzVOT24TQAbmojhv06U,16930
132
132
  pulumi_linode/provider.py,sha256=3u-3yR4HC0WM7nENM_fmVdnhTVkMVvofuNjqCek2dOY,31154
133
- pulumi_linode/pulumi-plugin.json,sha256=Qrrsf-gTfK5ChvBD0tBWDbXEejnMWFTUTK4CPndc8o0,82
133
+ pulumi_linode/pulumi-plugin.json,sha256=k3yPpd2jVr-D2nNxTQ0CK5v30abeUA_K4KYXL_oZC18,65
134
134
  pulumi_linode/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
135
135
  pulumi_linode/rdns.py,sha256=KSsmS3FJ-LTPL1TJgryhPV0S73hgZ5d3MXn71o3n9uE,16875
136
136
  pulumi_linode/reserved_ip_assignment.py,sha256=x0msvRRh3P4LocXq4FWGC_VMXUttMTzJMAISJ2O71qI,23494
@@ -144,7 +144,7 @@ pulumi_linode/vpc_subnet.py,sha256=mB_OJxGrKpKKQHyBzi_C64w1pewGuvkAZxfMIsELWLk,2
144
144
  pulumi_linode/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
145
145
  pulumi_linode/config/__init__.pyi,sha256=LvOCsq3YYxRuU8teN4ZTDH2Nx_BlzOzM75EluLMpw80,2587
146
146
  pulumi_linode/config/vars.py,sha256=Ypi1LOwkZcSV8Q4iq89-tWZGaG-4B8CAJCGefemZ-DY,5147
147
- pulumi_linode-5.5.0a1766596462.dist-info/METADATA,sha256=gfRjnRgwGtkzmyBXl2xweianQm6xKN1YGhZGKhQ29gw,2897
148
- pulumi_linode-5.5.0a1766596462.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
149
- pulumi_linode-5.5.0a1766596462.dist-info/top_level.txt,sha256=AWbmZiRcnH6wR1iM52uHc3e-Dy7bdm_0fyCSbLQVI84,14
150
- pulumi_linode-5.5.0a1766596462.dist-info/RECORD,,
147
+ pulumi_linode-5.7.0.dist-info/METADATA,sha256=0_hwLNf8a6kCPOr-tr5xER9rkDquhXP3z0Nz8SO2Vs4,2886
148
+ pulumi_linode-5.7.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
149
+ pulumi_linode-5.7.0.dist-info/top_level.txt,sha256=AWbmZiRcnH6wR1iM52uHc3e-Dy7bdm_0fyCSbLQVI84,14
150
+ pulumi_linode-5.7.0.dist-info/RECORD,,