pulumi-linode 5.1.1__py3-none-any.whl → 5.2.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.
Potentially problematic release.
This version of pulumi-linode might be problematic. Click here for more details.
- pulumi_linode/__init__.py +1 -0
- pulumi_linode/_inputs.py +240 -0
- pulumi_linode/account_settings.py +47 -0
- pulumi_linode/config/__init__.pyi +1 -2
- pulumi_linode/config/vars.py +1 -2
- pulumi_linode/get_account_settings.py +15 -1
- pulumi_linode/get_lke_cluster.py +1 -1
- pulumi_linode/get_maintenance_policies.py +129 -0
- pulumi_linode/instance.py +96 -112
- pulumi_linode/lke_node_pool.py +54 -14
- pulumi_linode/node_balancer_config.py +11 -22
- pulumi_linode/object_storage_bucket.py +4 -8
- pulumi_linode/outputs.py +151 -0
- pulumi_linode/provider.py +3 -6
- pulumi_linode/pulumi-plugin.json +1 -1
- pulumi_linode/reserved_ip_assignment.py +7 -14
- {pulumi_linode-5.1.1.dist-info → pulumi_linode-5.2.0.dist-info}/METADATA +1 -1
- {pulumi_linode-5.1.1.dist-info → pulumi_linode-5.2.0.dist-info}/RECORD +20 -19
- {pulumi_linode-5.1.1.dist-info → pulumi_linode-5.2.0.dist-info}/WHEEL +0 -0
- {pulumi_linode-5.1.1.dist-info → pulumi_linode-5.2.0.dist-info}/top_level.txt +0 -0
pulumi_linode/provider.py
CHANGED
|
@@ -54,8 +54,7 @@ class ProviderArgs:
|
|
|
54
54
|
:param pulumi.Input[_builtins.str] obj_access_key: The access key to be used in ObjectStorageBucket and linode_object_storage_object.
|
|
55
55
|
:param pulumi.Input[_builtins.bool] obj_bucket_force_delete: If true, when deleting a ObjectStorageBucket any objects and versions will be force deleted.
|
|
56
56
|
:param pulumi.Input[_builtins.str] obj_secret_key: The secret key to be used in ObjectStorageBucket and linode_object_storage_object.
|
|
57
|
-
:param pulumi.Input[_builtins.bool] obj_use_temp_keys: If true, temporary object keys will be created implicitly at apply-time for the ObjectStorageObject and
|
|
58
|
-
linode_object_sorage_bucket resource.
|
|
57
|
+
:param pulumi.Input[_builtins.bool] obj_use_temp_keys: If true, temporary object keys will be created implicitly at apply-time for the ObjectStorageObject and linode_object_sorage_bucket resource.
|
|
59
58
|
:param pulumi.Input[_builtins.bool] skip_implicit_reboots: If true, Linode Instances will not be rebooted on config and interface changes.
|
|
60
59
|
:param pulumi.Input[_builtins.bool] skip_instance_delete_poll: Skip waiting for a Instance resource to finish deleting.
|
|
61
60
|
:param pulumi.Input[_builtins.bool] skip_instance_ready_poll: Skip waiting for a Instance resource to be running.
|
|
@@ -270,8 +269,7 @@ class ProviderArgs:
|
|
|
270
269
|
@pulumi.getter(name="objUseTempKeys")
|
|
271
270
|
def obj_use_temp_keys(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
272
271
|
"""
|
|
273
|
-
If true, temporary object keys will be created implicitly at apply-time for the ObjectStorageObject and
|
|
274
|
-
linode_object_sorage_bucket resource.
|
|
272
|
+
If true, temporary object keys will be created implicitly at apply-time for the ObjectStorageObject and linode_object_sorage_bucket resource.
|
|
275
273
|
"""
|
|
276
274
|
return pulumi.get(self, "obj_use_temp_keys")
|
|
277
275
|
|
|
@@ -400,8 +398,7 @@ class Provider(pulumi.ProviderResource):
|
|
|
400
398
|
:param pulumi.Input[_builtins.str] obj_access_key: The access key to be used in ObjectStorageBucket and linode_object_storage_object.
|
|
401
399
|
:param pulumi.Input[_builtins.bool] obj_bucket_force_delete: If true, when deleting a ObjectStorageBucket any objects and versions will be force deleted.
|
|
402
400
|
:param pulumi.Input[_builtins.str] obj_secret_key: The secret key to be used in ObjectStorageBucket and linode_object_storage_object.
|
|
403
|
-
:param pulumi.Input[_builtins.bool] obj_use_temp_keys: If true, temporary object keys will be created implicitly at apply-time for the ObjectStorageObject and
|
|
404
|
-
linode_object_sorage_bucket resource.
|
|
401
|
+
:param pulumi.Input[_builtins.bool] obj_use_temp_keys: If true, temporary object keys will be created implicitly at apply-time for the ObjectStorageObject and linode_object_sorage_bucket resource.
|
|
405
402
|
:param pulumi.Input[_builtins.bool] skip_implicit_reboots: If true, Linode Instances will not be rebooted on config and interface changes.
|
|
406
403
|
:param pulumi.Input[_builtins.bool] skip_instance_delete_poll: Skip waiting for a Instance resource to finish deleting.
|
|
407
404
|
:param pulumi.Input[_builtins.bool] skip_instance_ready_poll: Skip waiting for a Instance resource to be running.
|
pulumi_linode/pulumi-plugin.json
CHANGED
|
@@ -30,8 +30,7 @@ class ReservedIpAssignmentArgs:
|
|
|
30
30
|
The set of arguments for constructing a ReservedIpAssignment resource.
|
|
31
31
|
:param pulumi.Input[_builtins.str] address: The resulting IPv4 address.
|
|
32
32
|
:param pulumi.Input[_builtins.int] linode_id: The ID of the Linode to allocate an IPv4 address for.
|
|
33
|
-
:param pulumi.Input[_builtins.bool] apply_immediately: If true, the instance will be rebooted to update network interfaces. This functionality is not affected by the
|
|
34
|
-
`skip_implicit_reboots` provider argument.
|
|
33
|
+
:param pulumi.Input[_builtins.bool] apply_immediately: If true, the instance will be rebooted to update network interfaces. This functionality is not affected by the `skip_implicit_reboots` provider argument.
|
|
35
34
|
:param pulumi.Input[_builtins.bool] public: Whether the IPv4 address is public or private.
|
|
36
35
|
:param pulumi.Input[_builtins.str] rdns: The reverse DNS assigned to this address.
|
|
37
36
|
"""
|
|
@@ -72,8 +71,7 @@ class ReservedIpAssignmentArgs:
|
|
|
72
71
|
@pulumi.getter(name="applyImmediately")
|
|
73
72
|
def apply_immediately(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
74
73
|
"""
|
|
75
|
-
If true, the instance will be rebooted to update network interfaces. This functionality is not affected by the
|
|
76
|
-
`skip_implicit_reboots` provider argument.
|
|
74
|
+
If true, the instance will be rebooted to update network interfaces. This functionality is not affected by the `skip_implicit_reboots` provider argument.
|
|
77
75
|
"""
|
|
78
76
|
return pulumi.get(self, "apply_immediately")
|
|
79
77
|
|
|
@@ -124,8 +122,7 @@ class _ReservedIpAssignmentState:
|
|
|
124
122
|
"""
|
|
125
123
|
Input properties used for looking up and filtering ReservedIpAssignment resources.
|
|
126
124
|
:param pulumi.Input[_builtins.str] address: The resulting IPv4 address.
|
|
127
|
-
:param pulumi.Input[_builtins.bool] apply_immediately: If true, the instance will be rebooted to update network interfaces. This functionality is not affected by the
|
|
128
|
-
`skip_implicit_reboots` provider argument.
|
|
125
|
+
:param pulumi.Input[_builtins.bool] apply_immediately: If true, the instance will be rebooted to update network interfaces. This functionality is not affected by the `skip_implicit_reboots` provider argument.
|
|
129
126
|
:param pulumi.Input[_builtins.str] gateway: The default gateway for this address
|
|
130
127
|
:param pulumi.Input[_builtins.int] linode_id: The ID of the Linode to allocate an IPv4 address for.
|
|
131
128
|
:param pulumi.Input[_builtins.int] prefix: The number of bits set in the subnet mask.
|
|
@@ -178,8 +175,7 @@ class _ReservedIpAssignmentState:
|
|
|
178
175
|
@pulumi.getter(name="applyImmediately")
|
|
179
176
|
def apply_immediately(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
180
177
|
"""
|
|
181
|
-
If true, the instance will be rebooted to update network interfaces. This functionality is not affected by the
|
|
182
|
-
`skip_implicit_reboots` provider argument.
|
|
178
|
+
If true, the instance will be rebooted to update network interfaces. This functionality is not affected by the `skip_implicit_reboots` provider argument.
|
|
183
179
|
"""
|
|
184
180
|
return pulumi.get(self, "apply_immediately")
|
|
185
181
|
|
|
@@ -325,8 +321,7 @@ class ReservedIpAssignment(pulumi.CustomResource):
|
|
|
325
321
|
:param str resource_name: The name of the resource.
|
|
326
322
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
327
323
|
:param pulumi.Input[_builtins.str] address: The resulting IPv4 address.
|
|
328
|
-
:param pulumi.Input[_builtins.bool] apply_immediately: If true, the instance will be rebooted to update network interfaces. This functionality is not affected by the
|
|
329
|
-
`skip_implicit_reboots` provider argument.
|
|
324
|
+
:param pulumi.Input[_builtins.bool] apply_immediately: If true, the instance will be rebooted to update network interfaces. This functionality is not affected by the `skip_implicit_reboots` provider argument.
|
|
330
325
|
:param pulumi.Input[_builtins.int] linode_id: The ID of the Linode to allocate an IPv4 address for.
|
|
331
326
|
:param pulumi.Input[_builtins.bool] public: Whether the IPv4 address is public or private.
|
|
332
327
|
:param pulumi.Input[_builtins.str] rdns: The reverse DNS assigned to this address.
|
|
@@ -414,8 +409,7 @@ class ReservedIpAssignment(pulumi.CustomResource):
|
|
|
414
409
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
415
410
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
416
411
|
:param pulumi.Input[_builtins.str] address: The resulting IPv4 address.
|
|
417
|
-
:param pulumi.Input[_builtins.bool] apply_immediately: If true, the instance will be rebooted to update network interfaces. This functionality is not affected by the
|
|
418
|
-
`skip_implicit_reboots` provider argument.
|
|
412
|
+
:param pulumi.Input[_builtins.bool] apply_immediately: If true, the instance will be rebooted to update network interfaces. This functionality is not affected by the `skip_implicit_reboots` provider argument.
|
|
419
413
|
:param pulumi.Input[_builtins.str] gateway: The default gateway for this address
|
|
420
414
|
:param pulumi.Input[_builtins.int] linode_id: The ID of the Linode to allocate an IPv4 address for.
|
|
421
415
|
:param pulumi.Input[_builtins.int] prefix: The number of bits set in the subnet mask.
|
|
@@ -457,8 +451,7 @@ class ReservedIpAssignment(pulumi.CustomResource):
|
|
|
457
451
|
@pulumi.getter(name="applyImmediately")
|
|
458
452
|
def apply_immediately(self) -> pulumi.Output[_builtins.bool]:
|
|
459
453
|
"""
|
|
460
|
-
If true, the instance will be rebooted to update network interfaces. This functionality is not affected by the
|
|
461
|
-
`skip_implicit_reboots` provider argument.
|
|
454
|
+
If true, the instance will be rebooted to update network interfaces. This functionality is not affected by the `skip_implicit_reboots` provider argument.
|
|
462
455
|
"""
|
|
463
456
|
return pulumi.get(self, "apply_immediately")
|
|
464
457
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
pulumi_linode/__init__.py,sha256
|
|
2
|
-
pulumi_linode/_inputs.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
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,30 +87,30 @@ 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=
|
|
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
|
|
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
|
|
100
|
-
pulumi_linode/node_balancer_config.py,sha256=
|
|
101
|
+
pulumi_linode/node_balancer_config.py,sha256=bq-boWfPBwk0-gD7tX-B74IYmgKY3qnvx_AU3TcbyZc,65345
|
|
101
102
|
pulumi_linode/node_balancer_node.py,sha256=4tEdbLGfGTI09kFP6o9Pjwbu4W3hhlSlU30AWRHPrBI,22634
|
|
102
|
-
pulumi_linode/object_storage_bucket.py,sha256=
|
|
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=
|
|
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
|
-
pulumi_linode/provider.py,sha256=
|
|
109
|
-
pulumi_linode/pulumi-plugin.json,sha256=
|
|
109
|
+
pulumi_linode/provider.py,sha256=3u-3yR4HC0WM7nENM_fmVdnhTVkMVvofuNjqCek2dOY,31154
|
|
110
|
+
pulumi_linode/pulumi-plugin.json,sha256=yaKyKWAaGoyRK7KgM6ZG26JlZLjKNyD--i7afDpaByA,65
|
|
110
111
|
pulumi_linode/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
111
112
|
pulumi_linode/rdns.py,sha256=KSsmS3FJ-LTPL1TJgryhPV0S73hgZ5d3MXn71o3n9uE,16875
|
|
112
|
-
pulumi_linode/reserved_ip_assignment.py,sha256=
|
|
113
|
+
pulumi_linode/reserved_ip_assignment.py,sha256=x0msvRRh3P4LocXq4FWGC_VMXUttMTzJMAISJ2O71qI,23494
|
|
113
114
|
pulumi_linode/ssh_key.py,sha256=gkU9V_f_JvhSw2R7Y4wEsZEC-5vLh8eQq0CVZ7qg6Rw,11736
|
|
114
115
|
pulumi_linode/stack_script.py,sha256=pqB5NcPgHEN2STPGsloRvrI9sRD_dCEDdkC6ZrSVnxg,33080
|
|
115
116
|
pulumi_linode/token.py,sha256=3tHvmBggo7wb5VvUh6D4UeeD_Q6QByS4d-93gLgXkjQ,18606
|
|
@@ -118,9 +119,9 @@ pulumi_linode/volume.py,sha256=6IM9vsH2lbSDdphoyOHBiP6iw6t8GlH2jZ14mH32Gh8,28696
|
|
|
118
119
|
pulumi_linode/vpc.py,sha256=DejZ76dtjHnx8Ow3GB-3I0t_D9k4NYx1ZMGbRWJj1TU,12937
|
|
119
120
|
pulumi_linode/vpc_subnet.py,sha256=8hnZ0Qgag4ukZ780J6QzoQYRVOvcMKnLQwLtMMQy3EA,14903
|
|
120
121
|
pulumi_linode/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
|
|
121
|
-
pulumi_linode/config/__init__.pyi,sha256=
|
|
122
|
-
pulumi_linode/config/vars.py,sha256=
|
|
123
|
-
pulumi_linode-5.
|
|
124
|
-
pulumi_linode-5.
|
|
125
|
-
pulumi_linode-5.
|
|
126
|
-
pulumi_linode-5.
|
|
122
|
+
pulumi_linode/config/__init__.pyi,sha256=LvOCsq3YYxRuU8teN4ZTDH2Nx_BlzOzM75EluLMpw80,2587
|
|
123
|
+
pulumi_linode/config/vars.py,sha256=Ypi1LOwkZcSV8Q4iq89-tWZGaG-4B8CAJCGefemZ-DY,5147
|
|
124
|
+
pulumi_linode-5.2.0.dist-info/METADATA,sha256=GwdIOKzuf7MJ8pCZDsXPygCKcIF3tkIIZKUfwyiM8UU,2886
|
|
125
|
+
pulumi_linode-5.2.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
126
|
+
pulumi_linode-5.2.0.dist-info/top_level.txt,sha256=AWbmZiRcnH6wR1iM52uHc3e-Dy7bdm_0fyCSbLQVI84,14
|
|
127
|
+
pulumi_linode-5.2.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|