pulumi-linode 5.2.0a1756506768__py3-none-any.whl → 5.3.0a1757052548__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pulumi-linode might be problematic. Click here for more details.

pulumi_linode/outputs.py CHANGED
@@ -241,6 +241,8 @@ __all__ = [
241
241
  'GetLkeTypesTypePriceResult',
242
242
  'GetLkeTypesTypeRegionPriceResult',
243
243
  'GetLkeVersionsVersionResult',
244
+ 'GetMaintenancePoliciesFilterResult',
245
+ 'GetMaintenancePoliciesMaintenancePolicyResult',
244
246
  'GetNbTypesFilterResult',
245
247
  'GetNbTypesTypeResult',
246
248
  'GetNbTypesTypePriceResult',
@@ -3147,6 +3149,7 @@ class LkeClusterPool(dict):
3147
3149
  disk_encryption: Optional[_builtins.str] = None,
3148
3150
  id: Optional[_builtins.int] = None,
3149
3151
  k8s_version: Optional[_builtins.str] = None,
3152
+ label: Optional[_builtins.str] = None,
3150
3153
  labels: Optional[Mapping[str, _builtins.str]] = None,
3151
3154
  nodes: Optional[Sequence['outputs.LkeClusterPoolNode']] = None,
3152
3155
  tags: Optional[Sequence[_builtins.str]] = None,
@@ -3159,6 +3162,7 @@ class LkeClusterPool(dict):
3159
3162
  :param _builtins.str disk_encryption: The disk encryption policy for nodes in this pool.
3160
3163
  :param _builtins.int id: The ID of the node.
3161
3164
  :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.
3165
+ :param _builtins.str label: A label for the Node Pool. If not provided, it defaults to empty string.
3162
3166
  :param Mapping[str, _builtins.str] labels: A map of key/value pairs to apply to all nodes in the pool. Labels are used to identify and organize Kubernetes resources within your cluster.
3163
3167
  :param Sequence['LkeClusterPoolNodeArgs'] nodes: The nodes in the node pool.
3164
3168
  :param Sequence[_builtins.str] tags: A set of tags applied to this node pool. Tags can be used to flag node pools as externally managed. See Externally Managed Node Pools for more details.
@@ -3176,6 +3180,8 @@ class LkeClusterPool(dict):
3176
3180
  pulumi.set(__self__, "id", id)
3177
3181
  if k8s_version is not None:
3178
3182
  pulumi.set(__self__, "k8s_version", k8s_version)
3183
+ if label is not None:
3184
+ pulumi.set(__self__, "label", label)
3179
3185
  if labels is not None:
3180
3186
  pulumi.set(__self__, "labels", labels)
3181
3187
  if nodes is not None:
@@ -3235,6 +3241,14 @@ class LkeClusterPool(dict):
3235
3241
  """
3236
3242
  return pulumi.get(self, "k8s_version")
3237
3243
 
3244
+ @_builtins.property
3245
+ @pulumi.getter
3246
+ def label(self) -> Optional[_builtins.str]:
3247
+ """
3248
+ A label for the Node Pool. If not provided, it defaults to empty string.
3249
+ """
3250
+ return pulumi.get(self, "label")
3251
+
3238
3252
  @_builtins.property
3239
3253
  @pulumi.getter
3240
3254
  def labels(self) -> Optional[Mapping[str, _builtins.str]]:
@@ -11294,6 +11308,7 @@ class GetInstancesInstanceResult(dict):
11294
11308
  ipv6: _builtins.str,
11295
11309
  label: _builtins.str,
11296
11310
  lke_cluster_id: _builtins.int,
11311
+ maintenance_policy: _builtins.str,
11297
11312
  placement_groups: Sequence['outputs.GetInstancesInstancePlacementGroupResult'],
11298
11313
  private_ip_address: _builtins.str,
11299
11314
  region: _builtins.str,
@@ -11320,6 +11335,7 @@ class GetInstancesInstanceResult(dict):
11320
11335
  :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.
11321
11336
  :param _builtins.str label: The label of the Placement Group. This field can only contain ASCII letters, digits and dashes.
11322
11337
  :param _builtins.int lke_cluster_id: If applicable, the ID of the LKE cluster this instance is a part of.
11338
+ :param _builtins.str maintenance_policy: The maintenance policy of this Linode instance. (**Note: v4beta only.**)
11323
11339
  :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.
11324
11340
  :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).
11325
11341
  :param _builtins.str status: The status of the instance, indicating the current readiness state. (`running`, `offline`, ...)
@@ -11345,6 +11361,7 @@ class GetInstancesInstanceResult(dict):
11345
11361
  pulumi.set(__self__, "ipv6", ipv6)
11346
11362
  pulumi.set(__self__, "label", label)
11347
11363
  pulumi.set(__self__, "lke_cluster_id", lke_cluster_id)
11364
+ pulumi.set(__self__, "maintenance_policy", maintenance_policy)
11348
11365
  pulumi.set(__self__, "placement_groups", placement_groups)
11349
11366
  pulumi.set(__self__, "private_ip_address", private_ip_address)
11350
11367
  pulumi.set(__self__, "region", region)
@@ -11488,6 +11505,14 @@ class GetInstancesInstanceResult(dict):
11488
11505
  """
11489
11506
  return pulumi.get(self, "lke_cluster_id")
11490
11507
 
11508
+ @_builtins.property
11509
+ @pulumi.getter(name="maintenancePolicy")
11510
+ def maintenance_policy(self) -> _builtins.str:
11511
+ """
11512
+ The maintenance policy of this Linode instance. (**Note: v4beta only.**)
11513
+ """
11514
+ return pulumi.get(self, "maintenance_policy")
11515
+
11491
11516
  @_builtins.property
11492
11517
  @pulumi.getter(name="placementGroups")
11493
11518
  def placement_groups(self) -> Sequence['outputs.GetInstancesInstancePlacementGroupResult']:
@@ -12971,6 +12996,7 @@ class GetLkeClusterPoolResult(dict):
12971
12996
  update_strategy: _builtins.str,
12972
12997
  autoscalers: Optional[Sequence['outputs.GetLkeClusterPoolAutoscalerResult']] = None,
12973
12998
  disks: Optional[Sequence['outputs.GetLkeClusterPoolDiskResult']] = None,
12999
+ label: Optional[_builtins.str] = None,
12974
13000
  nodes: Optional[Sequence['outputs.GetLkeClusterPoolNodeResult']] = None):
12975
13001
  """
12976
13002
  :param _builtins.int count: The number of nodes in the Node Pool.
@@ -12984,6 +13010,7 @@ class GetLkeClusterPoolResult(dict):
12984
13010
  :param _builtins.str update_strategy: The strategy for updating the Node Pool k8s version. For LKE enterprise only and may not currently available to all users even under v4beta.
12985
13011
  :param Sequence['GetLkeClusterPoolAutoscalerArgs'] autoscalers: The configuration options for the autoscaler. This field only contains an autoscaler configuration if autoscaling is enabled on this cluster.
12986
13012
  :param Sequence['GetLkeClusterPoolDiskArgs'] disks: This Node Pool’s custom disk layout.
13013
+ :param _builtins.str label: The label of the Node Pool.
12987
13014
  :param Sequence['GetLkeClusterPoolNodeArgs'] nodes: The nodes in the Node Pool.
12988
13015
  """
12989
13016
  pulumi.set(__self__, "count", count)
@@ -12999,6 +13026,8 @@ class GetLkeClusterPoolResult(dict):
12999
13026
  pulumi.set(__self__, "autoscalers", autoscalers)
13000
13027
  if disks is not None:
13001
13028
  pulumi.set(__self__, "disks", disks)
13029
+ if label is not None:
13030
+ pulumi.set(__self__, "label", label)
13002
13031
  if nodes is not None:
13003
13032
  pulumi.set(__self__, "nodes", nodes)
13004
13033
 
@@ -13090,6 +13119,14 @@ class GetLkeClusterPoolResult(dict):
13090
13119
  """
13091
13120
  return pulumi.get(self, "disks")
13092
13121
 
13122
+ @_builtins.property
13123
+ @pulumi.getter
13124
+ def label(self) -> Optional[_builtins.str]:
13125
+ """
13126
+ The label of the Node Pool.
13127
+ """
13128
+ return pulumi.get(self, "label")
13129
+
13093
13130
  @_builtins.property
13094
13131
  @pulumi.getter
13095
13132
  def nodes(self) -> Optional[Sequence['outputs.GetLkeClusterPoolNodeResult']]:
@@ -13629,6 +13666,120 @@ class GetLkeVersionsVersionResult(dict):
13629
13666
  return pulumi.get(self, "tier")
13630
13667
 
13631
13668
 
13669
+ @pulumi.output_type
13670
+ class GetMaintenancePoliciesFilterResult(dict):
13671
+ def __init__(__self__, *,
13672
+ name: _builtins.str,
13673
+ values: Sequence[_builtins.str],
13674
+ match_by: Optional[_builtins.str] = None):
13675
+ """
13676
+ :param _builtins.str name: The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
13677
+ :param Sequence[_builtins.str] values: A list of values for the filter to allow. These values should all be in string form.
13678
+ :param _builtins.str match_by: The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
13679
+ """
13680
+ pulumi.set(__self__, "name", name)
13681
+ pulumi.set(__self__, "values", values)
13682
+ if match_by is not None:
13683
+ pulumi.set(__self__, "match_by", match_by)
13684
+
13685
+ @_builtins.property
13686
+ @pulumi.getter
13687
+ def name(self) -> _builtins.str:
13688
+ """
13689
+ The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
13690
+ """
13691
+ return pulumi.get(self, "name")
13692
+
13693
+ @_builtins.property
13694
+ @pulumi.getter
13695
+ def values(self) -> Sequence[_builtins.str]:
13696
+ """
13697
+ A list of values for the filter to allow. These values should all be in string form.
13698
+ """
13699
+ return pulumi.get(self, "values")
13700
+
13701
+ @_builtins.property
13702
+ @pulumi.getter(name="matchBy")
13703
+ def match_by(self) -> Optional[_builtins.str]:
13704
+ """
13705
+ The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
13706
+ """
13707
+ return pulumi.get(self, "match_by")
13708
+
13709
+
13710
+ @pulumi.output_type
13711
+ class GetMaintenancePoliciesMaintenancePolicyResult(dict):
13712
+ def __init__(__self__, *,
13713
+ description: _builtins.str,
13714
+ is_default: _builtins.bool,
13715
+ label: _builtins.str,
13716
+ notification_period_sec: _builtins.int,
13717
+ slug: _builtins.str,
13718
+ type: _builtins.str):
13719
+ """
13720
+ :param _builtins.str description: Description of this policy
13721
+ :param _builtins.bool is_default: Whether this is the default policy for the account.
13722
+ :param _builtins.str label: The label for this policy.
13723
+ :param _builtins.int notification_period_sec: The notification lead time in seconds.
13724
+ :param _builtins.str slug: Unique identifier for this policy
13725
+ :param _builtins.str type: The type of action taken during maintenance.
13726
+ """
13727
+ pulumi.set(__self__, "description", description)
13728
+ pulumi.set(__self__, "is_default", is_default)
13729
+ pulumi.set(__self__, "label", label)
13730
+ pulumi.set(__self__, "notification_period_sec", notification_period_sec)
13731
+ pulumi.set(__self__, "slug", slug)
13732
+ pulumi.set(__self__, "type", type)
13733
+
13734
+ @_builtins.property
13735
+ @pulumi.getter
13736
+ def description(self) -> _builtins.str:
13737
+ """
13738
+ Description of this policy
13739
+ """
13740
+ return pulumi.get(self, "description")
13741
+
13742
+ @_builtins.property
13743
+ @pulumi.getter(name="isDefault")
13744
+ def is_default(self) -> _builtins.bool:
13745
+ """
13746
+ Whether this is the default policy for the account.
13747
+ """
13748
+ return pulumi.get(self, "is_default")
13749
+
13750
+ @_builtins.property
13751
+ @pulumi.getter
13752
+ def label(self) -> _builtins.str:
13753
+ """
13754
+ The label for this policy.
13755
+ """
13756
+ return pulumi.get(self, "label")
13757
+
13758
+ @_builtins.property
13759
+ @pulumi.getter(name="notificationPeriodSec")
13760
+ def notification_period_sec(self) -> _builtins.int:
13761
+ """
13762
+ The notification lead time in seconds.
13763
+ """
13764
+ return pulumi.get(self, "notification_period_sec")
13765
+
13766
+ @_builtins.property
13767
+ @pulumi.getter
13768
+ def slug(self) -> _builtins.str:
13769
+ """
13770
+ Unique identifier for this policy
13771
+ """
13772
+ return pulumi.get(self, "slug")
13773
+
13774
+ @_builtins.property
13775
+ @pulumi.getter
13776
+ def type(self) -> _builtins.str:
13777
+ """
13778
+ The type of action taken during maintenance.
13779
+ """
13780
+ return pulumi.get(self, "type")
13781
+
13782
+
13632
13783
  @pulumi.output_type
13633
13784
  class GetNbTypesFilterResult(dict):
13634
13785
  def __init__(__self__, *,
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "linode",
4
- "version": "5.2.0-alpha.1756506768"
4
+ "version": "5.3.0-alpha.1757052548"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_linode
3
- Version: 5.2.0a1756506768
3
+ Version: 5.3.0a1757052548
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,7 +1,7 @@
1
- pulumi_linode/__init__.py,sha256=-F2B8v-kYhaqmWcmm6PRQkB5wW3evMMHdx5_iunAlK8,10546
2
- pulumi_linode/_inputs.py,sha256=5NeC5zq5atnjSKJgmLa3lqEypTFTuV3ZMawKxchRYJE,769556
1
+ pulumi_linode/__init__.py,sha256=IWKSLOYMFhV5go6BzBGEnaXXpc5urphJe9zn6GosUyc,10586
2
+ pulumi_linode/_inputs.py,sha256=TZQbAKoromg-kHKONhqo7C1Sti_iyh4QLui4IkpcX6Q,777713
3
3
  pulumi_linode/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
4
- pulumi_linode/account_settings.py,sha256=x57-FqMP-QZxNl2sKLiI4QO5A9p7HOBDNHTPbdyD_JA,17766
4
+ pulumi_linode/account_settings.py,sha256=UWngx9uOVtGfI9IieEf8G6dGkPdyC88YxKWFAmMWCgo,20993
5
5
  pulumi_linode/database_access_controls.py,sha256=I0F2ORRsi9ZMyJiVF0XLOTfbkGbl5aDu5EfshCx3oGw,13871
6
6
  pulumi_linode/database_mysql.py,sha256=TQdE0eNJ_-Oir1Tmt1zad6kw6NBlVAPn4LWQL3KI2Ks,47614
7
7
  pulumi_linode/database_mysql_v2.py,sha256=vJcshea9eQnCOCeqMW5HVDQn_5Ri-XEExrYtP1zepvQ,159077
@@ -16,7 +16,7 @@ pulumi_linode/get_account_availabilities.py,sha256=X99caadGZl_GL598LwgdtJkPeq6D2
16
16
  pulumi_linode/get_account_availability.py,sha256=sXuPtXNW-KmC940Pq3oFqtZPEATAEb0K99hGTcL2bac,5609
17
17
  pulumi_linode/get_account_login.py,sha256=2XHdNmVbZ3GlyLMidD5INXRHmlg53krA2WnYSKzfNTA,6160
18
18
  pulumi_linode/get_account_logins.py,sha256=HCBaFy4gbFdyziSYMOUaVv8GBlAd01SKiEDlsp_eKV8,5785
19
- pulumi_linode/get_account_settings.py,sha256=wiYsSzLnKO7Deq6aJInixAS6FKTnFXET-IkKB4D7XmE,6584
19
+ pulumi_linode/get_account_settings.py,sha256=5RHOMwO9dh8pFz4dZMiatJI_qbJ3ipACMSQaawk1c0k,7319
20
20
  pulumi_linode/get_child_account.py,sha256=4vIST5e8habmA70BJEFlrtIO-qLaHZ2qvG_ybMfVMaM,12449
21
21
  pulumi_linode/get_child_accounts.py,sha256=smvVWP4FFoSh_gsBjau8EDnfszV36QLNQHfIHsvJQ0I,6872
22
22
  pulumi_linode/get_database_backups.py,sha256=SBzz2Og4f4uF66ulvXObRJkH_xDgHV7LZYWUJ9QQlPc,11069
@@ -47,11 +47,12 @@ pulumi_linode/get_ipv6_ranges.py,sha256=29bLPyf0N9YEuRca06pZ3fpcRAfV-lWwRQytFz9L
47
47
  pulumi_linode/get_kernel.py,sha256=JsbxgYihjjfbts2hK5LTKVO_uyfdIXa4_T4Bjaw1hQI,7334
48
48
  pulumi_linode/get_kernels.py,sha256=yyaQhU04Y26LwJsmf7k69iDSUDJvXlHmjI0nIsj14bo,7328
49
49
  pulumi_linode/get_linode_object_storage_bucket.py,sha256=36puiAf4yRX-1xAupDi3fUkhAwmiLzHhMnn7V6M-i9A,9321
50
- pulumi_linode/get_lke_cluster.py,sha256=21yGHHpCWV1zda3Xyfne4E4HQKwlQfKkFs5N5jsn5-M,12631
50
+ pulumi_linode/get_lke_cluster.py,sha256=_ueazpcBADj506h2CDzNp8ABoU3sLbdH97oxtZYIDBM,12625
51
51
  pulumi_linode/get_lke_clusters.py,sha256=hUEIGwa52g_Za-zE19liPtByW7DTAK3CRUWIRxmtUjo,7498
52
52
  pulumi_linode/get_lke_types.py,sha256=n7Dac-0shTPa-dF5ObXxWhdNJr2lTbc5ngidO9qjVUY,6144
53
53
  pulumi_linode/get_lke_version.py,sha256=I7hmk-rXmmWJvYBVUNVlWvxVxQTpmV5rZD7oSl21PGk,5646
54
54
  pulumi_linode/get_lke_versions.py,sha256=3sEB1Jgvm2rbRa3BfpPzTwmTiJ2p1_OuO5VgzQ3-408,6763
55
+ pulumi_linode/get_maintenance_policies.py,sha256=Fa00Y8WyqFjB5c0KQLigxsBnk6W8pGSq_DHEW2FM6K4,6013
55
56
  pulumi_linode/get_nb_types.py,sha256=t7szCjNY_2za9gYuWZpwdc6L_372ea9KH8PV--0DDKE,5294
56
57
  pulumi_linode/get_network_transfer_prices.py,sha256=I3P56p6Q1l7oOnHyuMzsfI7PRxU75Pixdt2GcUlIvQU,6726
57
58
  pulumi_linode/get_networking_ip.py,sha256=ESNgohwdR_FNvtxyqqHh4NaM7j7oFo2GSTL_uVoDaGM,9932
@@ -86,14 +87,14 @@ pulumi_linode/get_vpc_subnet.py,sha256=3Bn9dgHw9SP-BApXkw48UyaCuTPy-bLMhTlibXKJ_
86
87
  pulumi_linode/get_vpc_subnets.py,sha256=zTavCk8b26AscarN-3aj7JvDFYMT88M9dfkdFW2BSjw,6564
87
88
  pulumi_linode/get_vpcs.py,sha256=Bh1BaB91C2ISEXilEhFwin1pJBBqY0cIJ1KWT0RiK7g,4965
88
89
  pulumi_linode/image.py,sha256=nBKTAd7T24-kLbJrWPW87zI5YEmEYPjF7JscVQVUCBA,54747
89
- pulumi_linode/instance.py,sha256=oGOBo2H2WmC9p8DC8lytOxbnUT_nsVO1jQ18i_srWhc,137605
90
+ pulumi_linode/instance.py,sha256=4ymwcfdI-Hwi4dNvr-hlScA1r2lEahBScGgHf8lB6_A,141014
90
91
  pulumi_linode/instance_config.py,sha256=XkUreQSaVptB1OtvTnmmLOFozTKgeoE_P1INFs4S73g,42141
91
92
  pulumi_linode/instance_disk.py,sha256=d8IfpBkdsfd9qQPrgX80L-Ecl3oZYk9IX5NqrvWI1fM,40574
92
93
  pulumi_linode/instance_ip.py,sha256=FlQYwITmNUjSWFwFmXkRKV8qlQvBoVgErZUMcwXEHMQ,22323
93
94
  pulumi_linode/instance_shared_ips.py,sha256=IkNiLmaCJ8QPwXPg3Rs3sb8GsijGT8HKHSprgRPjHg4,14531
94
95
  pulumi_linode/ipv6_range.py,sha256=6GwFTV7TeSkc6bF5bs_Jd7xwXrl4N5A2Xmqxw9uYss4,16060
95
96
  pulumi_linode/lke_cluster.py,sha256=UU4KS6rmt1WQYuuQcHyfL-WPLvxHxfC7KiE5T4NMja0,34147
96
- pulumi_linode/lke_node_pool.py,sha256=oNmSPra7i1ZXogQfLHxGUJWdhhojcOSQvA5TOe2qQiA,36360
97
+ pulumi_linode/lke_node_pool.py,sha256=-1MvgVnNprFgA73KUK6odlCxmhWUVOxSuwe5nMsz7ek,38448
97
98
  pulumi_linode/networking_ip.py,sha256=FCygbQlP1QGgtL_p3LXdIRttfS-9-ou5F8Wc5nB_qRQ,23921
98
99
  pulumi_linode/networking_ip_assignment.py,sha256=dlmLRP8NhQjt9_fV5kU9qfa56sD7Dah_LfvjnhiYeTM,9650
99
100
  pulumi_linode/node_balancer.py,sha256=yRYsAKAHplmbShap8Nt1Hw0-kKfMO5m4mQ_q8hhV4h8,31035
@@ -102,11 +103,11 @@ pulumi_linode/node_balancer_node.py,sha256=4tEdbLGfGTI09kFP6o9Pjwbu4W3hhlSlU30AW
102
103
  pulumi_linode/object_storage_bucket.py,sha256=1KxXcawPw0XGJAn1A8BkgMdmbaIyMAc_u_ND1h_xAf0,48315
103
104
  pulumi_linode/object_storage_key.py,sha256=DCwmYlnipDM_tsqW6GSKMGlYL7kKDiQyQySjBuBugZk,21932
104
105
  pulumi_linode/object_storage_object.py,sha256=MQSDkOlFLNktHMmN1OcYm13E_t-XAaPCTUcQdZaE_UE,65505
105
- pulumi_linode/outputs.py,sha256=F_KZIX4hOgeUdTkEMg_mG8gRPzmVjOlD3piaq4ircb0,720516
106
+ pulumi_linode/outputs.py,sha256=FX4DgRuyoYW0g5ZCBCdlp3RmuQM_5FyIRIo0Jq6xPoQ,726095
106
107
  pulumi_linode/placement_group.py,sha256=VMkn_ZWb7nyU2d9uvPDq9WtpaO4VtP1_tWEet0tXZZg,17909
107
108
  pulumi_linode/placement_group_assignment.py,sha256=VS41EglL2bMz-OGO5ut-mI4qztJ1JOTwJdYYH_6T2rE,13127
108
109
  pulumi_linode/provider.py,sha256=3u-3yR4HC0WM7nENM_fmVdnhTVkMVvofuNjqCek2dOY,31154
109
- pulumi_linode/pulumi-plugin.json,sha256=rNOcl2Iay6oLDqrFTbEodWjTNLBFHA23KTud_nJrrhA,82
110
+ pulumi_linode/pulumi-plugin.json,sha256=KogLVCp5Ob4SorOGc21qJ1p13A65m0NAhRxfc0Oh_I8,82
110
111
  pulumi_linode/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
111
112
  pulumi_linode/rdns.py,sha256=KSsmS3FJ-LTPL1TJgryhPV0S73hgZ5d3MXn71o3n9uE,16875
112
113
  pulumi_linode/reserved_ip_assignment.py,sha256=x0msvRRh3P4LocXq4FWGC_VMXUttMTzJMAISJ2O71qI,23494
@@ -120,7 +121,7 @@ pulumi_linode/vpc_subnet.py,sha256=8hnZ0Qgag4ukZ780J6QzoQYRVOvcMKnLQwLtMMQy3EA,1
120
121
  pulumi_linode/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
121
122
  pulumi_linode/config/__init__.pyi,sha256=LvOCsq3YYxRuU8teN4ZTDH2Nx_BlzOzM75EluLMpw80,2587
122
123
  pulumi_linode/config/vars.py,sha256=Ypi1LOwkZcSV8Q4iq89-tWZGaG-4B8CAJCGefemZ-DY,5147
123
- pulumi_linode-5.2.0a1756506768.dist-info/METADATA,sha256=7yE185_prXzyIQNh2NwYu4XCFqJi1LIGJNmUvWaSWxk,2897
124
- pulumi_linode-5.2.0a1756506768.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
125
- pulumi_linode-5.2.0a1756506768.dist-info/top_level.txt,sha256=AWbmZiRcnH6wR1iM52uHc3e-Dy7bdm_0fyCSbLQVI84,14
126
- pulumi_linode-5.2.0a1756506768.dist-info/RECORD,,
124
+ pulumi_linode-5.3.0a1757052548.dist-info/METADATA,sha256=3RSlX5zpPEN84Iotb8nENebN5G7tmwlRERTsHHnn3Fk,2897
125
+ pulumi_linode-5.3.0a1757052548.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
126
+ pulumi_linode-5.3.0a1757052548.dist-info/top_level.txt,sha256=AWbmZiRcnH6wR1iM52uHc3e-Dy7bdm_0fyCSbLQVI84,14
127
+ pulumi_linode-5.3.0a1757052548.dist-info/RECORD,,