pulumi-hcloud 1.21.0a1731090444__py3-none-any.whl → 1.21.0a1731100190__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_hcloud/__init__.py +2 -0
- pulumi_hcloud/firewall_attachment.py +2 -2
- pulumi_hcloud/get_datacenter.py +1 -1
- pulumi_hcloud/get_firewall.py +3 -3
- pulumi_hcloud/get_floating_ip.py +4 -0
- pulumi_hcloud/get_load_balancer.py +1 -1
- pulumi_hcloud/get_load_balancer_type.py +200 -0
- pulumi_hcloud/get_load_balancer_types.py +100 -0
- pulumi_hcloud/get_placement_group.py +3 -3
- pulumi_hcloud/get_primary_ip.py +2 -2
- pulumi_hcloud/get_server.py +2 -2
- pulumi_hcloud/get_server_type.py +9 -9
- pulumi_hcloud/get_server_types.py +17 -8
- pulumi_hcloud/get_volume.py +3 -3
- pulumi_hcloud/get_volumes.py +2 -2
- pulumi_hcloud/load_balancer.py +7 -7
- pulumi_hcloud/load_balancer_network.py +7 -7
- pulumi_hcloud/outputs.py +63 -8
- pulumi_hcloud/primary_ip.py +35 -21
- pulumi_hcloud/pulumi-plugin.json +1 -1
- pulumi_hcloud/server.py +20 -14
- pulumi_hcloud/server_network.py +7 -7
- pulumi_hcloud/volume.py +14 -14
- {pulumi_hcloud-1.21.0a1731090444.dist-info → pulumi_hcloud-1.21.0a1731100190.dist-info}/METADATA +1 -1
- {pulumi_hcloud-1.21.0a1731090444.dist-info → pulumi_hcloud-1.21.0a1731100190.dist-info}/RECORD +27 -25
- {pulumi_hcloud-1.21.0a1731090444.dist-info → pulumi_hcloud-1.21.0a1731100190.dist-info}/WHEEL +0 -0
- {pulumi_hcloud-1.21.0a1731090444.dist-info → pulumi_hcloud-1.21.0a1731100190.dist-info}/top_level.txt +0 -0
pulumi_hcloud/server_network.py
CHANGED
|
@@ -42,7 +42,7 @@ class ServerNetworkInitArgs:
|
|
|
42
42
|
the existence of a subnet.
|
|
43
43
|
:param pulumi.Input[str] subnet_id: ID of the sub-network which should be
|
|
44
44
|
added to the Server. Required if `network_id` is not set.
|
|
45
|
-
|
|
45
|
+
_Note_: if the `ip` property is missing, the Server is currently added
|
|
46
46
|
to the last created subnet.
|
|
47
47
|
"""
|
|
48
48
|
pulumi.set(__self__, "server_id", server_id)
|
|
@@ -119,7 +119,7 @@ class ServerNetworkInitArgs:
|
|
|
119
119
|
"""
|
|
120
120
|
ID of the sub-network which should be
|
|
121
121
|
added to the Server. Required if `network_id` is not set.
|
|
122
|
-
|
|
122
|
+
_Note_: if the `ip` property is missing, the Server is currently added
|
|
123
123
|
to the last created subnet.
|
|
124
124
|
"""
|
|
125
125
|
return pulumi.get(self, "subnet_id")
|
|
@@ -156,7 +156,7 @@ class _ServerNetworkState:
|
|
|
156
156
|
:param pulumi.Input[int] server_id: ID of the server.
|
|
157
157
|
:param pulumi.Input[str] subnet_id: ID of the sub-network which should be
|
|
158
158
|
added to the Server. Required if `network_id` is not set.
|
|
159
|
-
|
|
159
|
+
_Note_: if the `ip` property is missing, the Server is currently added
|
|
160
160
|
to the last created subnet.
|
|
161
161
|
"""
|
|
162
162
|
if alias_ips is not None:
|
|
@@ -245,7 +245,7 @@ class _ServerNetworkState:
|
|
|
245
245
|
"""
|
|
246
246
|
ID of the sub-network which should be
|
|
247
247
|
added to the Server. Required if `network_id` is not set.
|
|
248
|
-
|
|
248
|
+
_Note_: if the `ip` property is missing, the Server is currently added
|
|
249
249
|
to the last created subnet.
|
|
250
250
|
"""
|
|
251
251
|
return pulumi.get(self, "subnet_id")
|
|
@@ -321,7 +321,7 @@ class ServerNetwork(pulumi.CustomResource):
|
|
|
321
321
|
:param pulumi.Input[int] server_id: ID of the server.
|
|
322
322
|
:param pulumi.Input[str] subnet_id: ID of the sub-network which should be
|
|
323
323
|
added to the Server. Required if `network_id` is not set.
|
|
324
|
-
|
|
324
|
+
_Note_: if the `ip` property is missing, the Server is currently added
|
|
325
325
|
to the last created subnet.
|
|
326
326
|
"""
|
|
327
327
|
...
|
|
@@ -443,7 +443,7 @@ class ServerNetwork(pulumi.CustomResource):
|
|
|
443
443
|
:param pulumi.Input[int] server_id: ID of the server.
|
|
444
444
|
:param pulumi.Input[str] subnet_id: ID of the sub-network which should be
|
|
445
445
|
added to the Server. Required if `network_id` is not set.
|
|
446
|
-
|
|
446
|
+
_Note_: if the `ip` property is missing, the Server is currently added
|
|
447
447
|
to the last created subnet.
|
|
448
448
|
"""
|
|
449
449
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -511,7 +511,7 @@ class ServerNetwork(pulumi.CustomResource):
|
|
|
511
511
|
"""
|
|
512
512
|
ID of the sub-network which should be
|
|
513
513
|
added to the Server. Required if `network_id` is not set.
|
|
514
|
-
|
|
514
|
+
_Note_: if the `ip` property is missing, the Server is currently added
|
|
515
515
|
to the last created subnet.
|
|
516
516
|
"""
|
|
517
517
|
return pulumi.get(self, "subnet_id")
|
pulumi_hcloud/volume.py
CHANGED
|
@@ -35,8 +35,8 @@ class VolumeArgs:
|
|
|
35
35
|
|
|
36
36
|
**Note:** When you want to attach multiple volumes to a server, please use the `VolumeAttachment` resource and the `location` argument instead of the `server_id` argument.
|
|
37
37
|
:param pulumi.Input[str] format: Format volume after creation. `xfs` or `ext4`
|
|
38
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels:
|
|
39
|
-
:param pulumi.Input[str] location: The location name of the volume to create, not allowed if server_id argument is passed.
|
|
38
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: User-defined labels (key-value pairs).
|
|
39
|
+
:param pulumi.Input[str] location: The location name of the volume to create, not allowed if server_id argument is passed. See the [Hetzner Docs](https://docs.hetzner.com/cloud/general/locations/#what-locations-are-there) for more details about locations.
|
|
40
40
|
:param pulumi.Input[str] name: Name of the volume to create (must be unique per project).
|
|
41
41
|
:param pulumi.Input[int] server_id: Server to attach the Volume to, not allowed if location argument is passed.
|
|
42
42
|
"""
|
|
@@ -110,7 +110,7 @@ class VolumeArgs:
|
|
|
110
110
|
@pulumi.getter
|
|
111
111
|
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
112
112
|
"""
|
|
113
|
-
|
|
113
|
+
User-defined labels (key-value pairs).
|
|
114
114
|
"""
|
|
115
115
|
return pulumi.get(self, "labels")
|
|
116
116
|
|
|
@@ -122,7 +122,7 @@ class VolumeArgs:
|
|
|
122
122
|
@pulumi.getter
|
|
123
123
|
def location(self) -> Optional[pulumi.Input[str]]:
|
|
124
124
|
"""
|
|
125
|
-
The location name of the volume to create, not allowed if server_id argument is passed.
|
|
125
|
+
The location name of the volume to create, not allowed if server_id argument is passed. See the [Hetzner Docs](https://docs.hetzner.com/cloud/general/locations/#what-locations-are-there) for more details about locations.
|
|
126
126
|
"""
|
|
127
127
|
return pulumi.get(self, "location")
|
|
128
128
|
|
|
@@ -174,9 +174,9 @@ class _VolumeState:
|
|
|
174
174
|
|
|
175
175
|
**Note:** When you want to attach multiple volumes to a server, please use the `VolumeAttachment` resource and the `location` argument instead of the `server_id` argument.
|
|
176
176
|
:param pulumi.Input[str] format: Format volume after creation. `xfs` or `ext4`
|
|
177
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels:
|
|
177
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: User-defined labels (key-value pairs).
|
|
178
178
|
:param pulumi.Input[str] linux_device: (string) Device path on the file system for the Volume.
|
|
179
|
-
:param pulumi.Input[str] location: The location name of the volume to create, not allowed if server_id argument is passed.
|
|
179
|
+
:param pulumi.Input[str] location: The location name of the volume to create, not allowed if server_id argument is passed. See the [Hetzner Docs](https://docs.hetzner.com/cloud/general/locations/#what-locations-are-there) for more details about locations.
|
|
180
180
|
:param pulumi.Input[str] name: Name of the volume to create (must be unique per project).
|
|
181
181
|
:param pulumi.Input[int] server_id: Server to attach the Volume to, not allowed if location argument is passed.
|
|
182
182
|
:param pulumi.Input[int] size: Size of the volume (in GB).
|
|
@@ -242,7 +242,7 @@ class _VolumeState:
|
|
|
242
242
|
@pulumi.getter
|
|
243
243
|
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
244
244
|
"""
|
|
245
|
-
|
|
245
|
+
User-defined labels (key-value pairs).
|
|
246
246
|
"""
|
|
247
247
|
return pulumi.get(self, "labels")
|
|
248
248
|
|
|
@@ -266,7 +266,7 @@ class _VolumeState:
|
|
|
266
266
|
@pulumi.getter
|
|
267
267
|
def location(self) -> Optional[pulumi.Input[str]]:
|
|
268
268
|
"""
|
|
269
|
-
The location name of the volume to create, not allowed if server_id argument is passed.
|
|
269
|
+
The location name of the volume to create, not allowed if server_id argument is passed. See the [Hetzner Docs](https://docs.hetzner.com/cloud/general/locations/#what-locations-are-there) for more details about locations.
|
|
270
270
|
"""
|
|
271
271
|
return pulumi.get(self, "location")
|
|
272
272
|
|
|
@@ -361,8 +361,8 @@ class Volume(pulumi.CustomResource):
|
|
|
361
361
|
|
|
362
362
|
**Note:** When you want to attach multiple volumes to a server, please use the `VolumeAttachment` resource and the `location` argument instead of the `server_id` argument.
|
|
363
363
|
:param pulumi.Input[str] format: Format volume after creation. `xfs` or `ext4`
|
|
364
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels:
|
|
365
|
-
:param pulumi.Input[str] location: The location name of the volume to create, not allowed if server_id argument is passed.
|
|
364
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: User-defined labels (key-value pairs).
|
|
365
|
+
:param pulumi.Input[str] location: The location name of the volume to create, not allowed if server_id argument is passed. See the [Hetzner Docs](https://docs.hetzner.com/cloud/general/locations/#what-locations-are-there) for more details about locations.
|
|
366
366
|
:param pulumi.Input[str] name: Name of the volume to create (must be unique per project).
|
|
367
367
|
:param pulumi.Input[int] server_id: Server to attach the Volume to, not allowed if location argument is passed.
|
|
368
368
|
:param pulumi.Input[int] size: Size of the volume (in GB).
|
|
@@ -476,9 +476,9 @@ class Volume(pulumi.CustomResource):
|
|
|
476
476
|
|
|
477
477
|
**Note:** When you want to attach multiple volumes to a server, please use the `VolumeAttachment` resource and the `location` argument instead of the `server_id` argument.
|
|
478
478
|
:param pulumi.Input[str] format: Format volume after creation. `xfs` or `ext4`
|
|
479
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels:
|
|
479
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: User-defined labels (key-value pairs).
|
|
480
480
|
:param pulumi.Input[str] linux_device: (string) Device path on the file system for the Volume.
|
|
481
|
-
:param pulumi.Input[str] location: The location name of the volume to create, not allowed if server_id argument is passed.
|
|
481
|
+
:param pulumi.Input[str] location: The location name of the volume to create, not allowed if server_id argument is passed. See the [Hetzner Docs](https://docs.hetzner.com/cloud/general/locations/#what-locations-are-there) for more details about locations.
|
|
482
482
|
:param pulumi.Input[str] name: Name of the volume to create (must be unique per project).
|
|
483
483
|
:param pulumi.Input[int] server_id: Server to attach the Volume to, not allowed if location argument is passed.
|
|
484
484
|
:param pulumi.Input[int] size: Size of the volume (in GB).
|
|
@@ -528,7 +528,7 @@ class Volume(pulumi.CustomResource):
|
|
|
528
528
|
@pulumi.getter
|
|
529
529
|
def labels(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
|
530
530
|
"""
|
|
531
|
-
|
|
531
|
+
User-defined labels (key-value pairs).
|
|
532
532
|
"""
|
|
533
533
|
return pulumi.get(self, "labels")
|
|
534
534
|
|
|
@@ -544,7 +544,7 @@ class Volume(pulumi.CustomResource):
|
|
|
544
544
|
@pulumi.getter
|
|
545
545
|
def location(self) -> pulumi.Output[str]:
|
|
546
546
|
"""
|
|
547
|
-
The location name of the volume to create, not allowed if server_id argument is passed.
|
|
547
|
+
The location name of the volume to create, not allowed if server_id argument is passed. See the [Hetzner Docs](https://docs.hetzner.com/cloud/general/locations/#what-locations-are-there) for more details about locations.
|
|
548
548
|
"""
|
|
549
549
|
return pulumi.get(self, "location")
|
|
550
550
|
|
{pulumi_hcloud-1.21.0a1731090444.dist-info → pulumi_hcloud-1.21.0a1731100190.dist-info}/RECORD
RENAMED
|
@@ -1,65 +1,67 @@
|
|
|
1
|
-
pulumi_hcloud/__init__.py,sha256=
|
|
1
|
+
pulumi_hcloud/__init__.py,sha256=1sBKVfYXaAAjoPydg7dg9RCL0NwkQo0AjUngGqPbvAQ,6074
|
|
2
2
|
pulumi_hcloud/_inputs.py,sha256=WlVKvGUhGYGoBed2RWJehd7hsPOricjhZQAmI2P_0n4,37675
|
|
3
3
|
pulumi_hcloud/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
|
|
4
4
|
pulumi_hcloud/certificate.py,sha256=bYDdezxWvfaUeO2WA3mOHsvCjdn8LUg5CITGCgCqciM,14164
|
|
5
5
|
pulumi_hcloud/firewall.py,sha256=YYq0c1PeGgHePX-_H1AzR4S3eLGyPZPsmPZn8T8-2EE,14982
|
|
6
|
-
pulumi_hcloud/firewall_attachment.py,sha256=
|
|
6
|
+
pulumi_hcloud/firewall_attachment.py,sha256=0J68b88TWrFeqBO-mmrP2qYqlicuU_tq1t7wiv6yABA,13924
|
|
7
7
|
pulumi_hcloud/floating_ip.py,sha256=2EJun4abkyBz-Kb2jsDQa9-9Blx8Zr7eB9iKdJ72fR4,21784
|
|
8
8
|
pulumi_hcloud/floating_ip_assignment.py,sha256=4Y5i6g9g974bZLVgQ55Wnm5K8od5AHXdE8X2NZGmRuc,9677
|
|
9
9
|
pulumi_hcloud/get_certificate.py,sha256=PrAcIuAOUrFGqEo7dZG82GLxouBrcN3S6OrtOzGpFiY,9383
|
|
10
10
|
pulumi_hcloud/get_certificates.py,sha256=GO2QT1hYNvdSq8-U4IqX1MCZlUFcZzr_Iaj0KVh-A6k,4466
|
|
11
|
-
pulumi_hcloud/get_datacenter.py,sha256=
|
|
11
|
+
pulumi_hcloud/get_datacenter.py,sha256=9LjRdKQDntVVz-I1b2TDjnNXg21ckL_mJhtymXIo6lo,6710
|
|
12
12
|
pulumi_hcloud/get_datacenters.py,sha256=97ropR7EzhDztjEE6kkERgo2kQKf-GoRvRloLPjGMrE,6988
|
|
13
|
-
pulumi_hcloud/get_firewall.py,sha256=
|
|
13
|
+
pulumi_hcloud/get_firewall.py,sha256=bSzfgS2zPTKAoHcUabyKQ5D3YJnuctOe6-cTHs7rVgc,8825
|
|
14
14
|
pulumi_hcloud/get_firewalls.py,sha256=kuEvTlqFjqne25N-awlMO2PfPKnQRQ-ZMltxMdeBzNQ,5159
|
|
15
|
-
pulumi_hcloud/get_floating_ip.py,sha256=
|
|
15
|
+
pulumi_hcloud/get_floating_ip.py,sha256=cxrA6j0mCOF77FKASXLmu6j25QBIBS3kWCIdnZt1Vz4,11425
|
|
16
16
|
pulumi_hcloud/get_floating_ips.py,sha256=Pt-SAT3pXWmcpBSekp61i3tO_0Ol4Otm3UevgE7-Z4c,4435
|
|
17
17
|
pulumi_hcloud/get_image.py,sha256=Wqq2qtJpZcu3D3_grkypbfY-D-nXbgLZQP-cQqWfyYQ,14528
|
|
18
18
|
pulumi_hcloud/get_images.py,sha256=Phyw2T9HElOFzUU5_snIAfne3Rp1oy3U5P1GELjFbIg,8354
|
|
19
|
-
pulumi_hcloud/get_load_balancer.py,sha256=
|
|
19
|
+
pulumi_hcloud/get_load_balancer.py,sha256=KjTNb947zG84KS6XEwepdzSxN2LL81EMA9MUxaXTecM,12074
|
|
20
|
+
pulumi_hcloud/get_load_balancer_type.py,sha256=Mjv_U4IrJvy3IngrIfcgKe0Evl0cxrqlifiJ20f7iD0,7774
|
|
21
|
+
pulumi_hcloud/get_load_balancer_types.py,sha256=b58_Hf4IP05DLITZv7X8QscHr-fENNkl7znMAh_SVQk,3586
|
|
20
22
|
pulumi_hcloud/get_load_balancers.py,sha256=BTuES5_f1j29-fTEz9P1lrItiyCKFzaocRR7JOnzAVs,4603
|
|
21
23
|
pulumi_hcloud/get_location.py,sha256=PPd4ep2lf90JYJNUsFm_gqZiPQALJSraIQtXlTSGJhQ,6916
|
|
22
24
|
pulumi_hcloud/get_locations.py,sha256=E93CUthYSwcu90bRA-8apsSDVnibouVgUqKhdEOnZMo,6798
|
|
23
25
|
pulumi_hcloud/get_network.py,sha256=f19l0xRM1549wbltfHl_dmUe7DrvYskn9u4jYWyDbUA,8599
|
|
24
26
|
pulumi_hcloud/get_networks.py,sha256=_O0nWhGkoYil4lUycSXYlDa8olswnlaJwJZ_bxlkUNc,4334
|
|
25
|
-
pulumi_hcloud/get_placement_group.py,sha256=
|
|
27
|
+
pulumi_hcloud/get_placement_group.py,sha256=4RvIqrzQON7vNYrCkUAJgjG0556uivtK5Va-B7K0OvA,7985
|
|
26
28
|
pulumi_hcloud/get_placement_groups.py,sha256=GljaOXR6t8LxYtg-Y9dZ38CHiqCyETKN4iO6XG6_LpQ,5629
|
|
27
|
-
pulumi_hcloud/get_primary_ip.py,sha256=
|
|
29
|
+
pulumi_hcloud/get_primary_ip.py,sha256=V0qKbXyw0OTnDkHBl2gL5lYRmSxqBR0lhO_45wZgdX8,12637
|
|
28
30
|
pulumi_hcloud/get_primary_ips.py,sha256=QiJODoAjWur3L8SIJxdN-_UC9pkUfmLCONqqQXNZhCA,4389
|
|
29
|
-
pulumi_hcloud/get_server.py,sha256=
|
|
30
|
-
pulumi_hcloud/get_server_type.py,sha256=
|
|
31
|
-
pulumi_hcloud/get_server_types.py,sha256=
|
|
31
|
+
pulumi_hcloud/get_server.py,sha256=EiPnB43Ze-PdEWaupgvV_IJ4MyWqjhgWQIqN-6NxBvM,17640
|
|
32
|
+
pulumi_hcloud/get_server_type.py,sha256=jrbQ1Qo0ucYPXPO0w079Vj5ChY6E2ooOu-fuHJQylDw,11680
|
|
33
|
+
pulumi_hcloud/get_server_types.py,sha256=AWUzVyxAc5FNX5Fuly60ZEOwhNJoXbCwsvx740X-QE0,5659
|
|
32
34
|
pulumi_hcloud/get_servers.py,sha256=pJbqFLQEoHLIUl7-5y_mpJtGKH4nw1fmndQZWFpd8pk,5472
|
|
33
35
|
pulumi_hcloud/get_ssh_key.py,sha256=kauwY0U8MusdlfbBYNvnX4DVuaoCeoxb19m8KVT3a5w,8172
|
|
34
36
|
pulumi_hcloud/get_ssh_keys.py,sha256=Ahp7kb4B7mFotA6lvuibRuWUtylujHUzqEj7Nws0K38,4486
|
|
35
|
-
pulumi_hcloud/get_volume.py,sha256=
|
|
36
|
-
pulumi_hcloud/get_volumes.py,sha256=
|
|
37
|
-
pulumi_hcloud/load_balancer.py,sha256=
|
|
38
|
-
pulumi_hcloud/load_balancer_network.py,sha256=
|
|
37
|
+
pulumi_hcloud/get_volume.py,sha256=_O630tu0Hqct9d-IuR0WKs5abHpEwCfbfRRGezKPD9o,10892
|
|
38
|
+
pulumi_hcloud/get_volumes.py,sha256=S36MUVpTFHbyjM4hplZX5mWPrmyEs1WHh_q-_U0V-gw,5342
|
|
39
|
+
pulumi_hcloud/load_balancer.py,sha256=qP7BFfe7vzJzwbePWjwm6C4z55j-0ajGsaZyQwue_O8,28946
|
|
40
|
+
pulumi_hcloud/load_balancer_network.py,sha256=TFQZTI9BZz7c7mVipV8L7ps7aL9VSVPjPU9LfzanwKY,22448
|
|
39
41
|
pulumi_hcloud/load_balancer_service.py,sha256=EyxtWfvoHP_CqH9V0M_1os5p_-El2Ng6mEc3BGtfe98,23051
|
|
40
42
|
pulumi_hcloud/load_balancer_target.py,sha256=zVC04bqHW_78tTSBdGuKx1pVzitfrz4rKznDR2ceqAY,20741
|
|
41
43
|
pulumi_hcloud/managed_certificate.py,sha256=WgvgpTQ30ONJ3CtG-dTq4ugy5TlpumKWPcxnX6F79cg,17633
|
|
42
44
|
pulumi_hcloud/network.py,sha256=80zSwBdoTpzvSX546glmiX1c66lWx5sa-W8QpLz91Vg,16845
|
|
43
45
|
pulumi_hcloud/network_route.py,sha256=cJWOzG7TPVISoD99fMLkM9A2EqQZk4P33O2jRBsprnw,13518
|
|
44
46
|
pulumi_hcloud/network_subnet.py,sha256=4BMxhVl3stOqmp_pYJlw7mQLJ3oBb8eogztFCFk67BI,16313
|
|
45
|
-
pulumi_hcloud/outputs.py,sha256=
|
|
47
|
+
pulumi_hcloud/outputs.py,sha256=VdHeG8qm7rnXroC7Cw2bV4J4dzJiWgFKG-eUAlmMeX0,81657
|
|
46
48
|
pulumi_hcloud/placement_group.py,sha256=mpjVByy_1O1zvCUQEhKVZECMZ6kktF37Gj3LU0qokTo,11680
|
|
47
|
-
pulumi_hcloud/primary_ip.py,sha256=
|
|
49
|
+
pulumi_hcloud/primary_ip.py,sha256=jip7SSl97oA8F_k26XDrC_1otquZosxi0GlUz0AIPaY,27586
|
|
48
50
|
pulumi_hcloud/provider.py,sha256=Jw8xKT08pJiSbhWzqso4gLrWo54k1uvoCze5HIHZFjs,9091
|
|
49
|
-
pulumi_hcloud/pulumi-plugin.json,sha256=
|
|
51
|
+
pulumi_hcloud/pulumi-plugin.json,sha256=lY30Q8PtEBkjB6EpV8Ni87DEzZH_7P9aGPXXpUJcMIw,83
|
|
50
52
|
pulumi_hcloud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
53
|
pulumi_hcloud/rdns.py,sha256=PK6dg7kwJcOfM81vQ3t6SlVmgAVtePmB7nrGg77ZfsM,21320
|
|
52
|
-
pulumi_hcloud/server.py,sha256=
|
|
53
|
-
pulumi_hcloud/server_network.py,sha256=
|
|
54
|
+
pulumi_hcloud/server.py,sha256=D78Q-z5wYQc-mzdMHvGcfUHUcmLDvERsSP8eSTBvW-Y,71392
|
|
55
|
+
pulumi_hcloud/server_network.py,sha256=PGx-kQiQOTFAcr6_TK9D5MZ0gIALXJrQlzY1Kc5vfS4,21833
|
|
54
56
|
pulumi_hcloud/snapshot.py,sha256=V3JjIH5kkwZoIfmpLczf8dneTXOMaflayCR-SEoRSKk,11053
|
|
55
57
|
pulumi_hcloud/ssh_key.py,sha256=Gaz5bILHQ6_twr7VeOKElnfsuk9wvgLVGwTGJ_pM7_Q,11943
|
|
56
58
|
pulumi_hcloud/uploaded_certificate.py,sha256=fnql6DvnP-BwNqr2gBw4wM2WCtwT8nEeqU7iXUCZBWY,19530
|
|
57
|
-
pulumi_hcloud/volume.py,sha256=
|
|
59
|
+
pulumi_hcloud/volume.py,sha256=baG_plXSzuKnGlvobIXmDUx2lATmKguGOn2mB1WcIRc,24518
|
|
58
60
|
pulumi_hcloud/volume_attachment.py,sha256=8Vu4P_gHeEZUC2SO7rU8FcoEmxp4nnir6G3xBW_OJ7s,11094
|
|
59
61
|
pulumi_hcloud/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
60
62
|
pulumi_hcloud/config/__init__.pyi,sha256=2EjDsBZ7-A0tF1fn3DHDv597aXmwwig2eLRtqSElp9Q,1048
|
|
61
63
|
pulumi_hcloud/config/vars.py,sha256=p-bMQxLGvw7_95R-cEOhkadIYqdZI6MXJwD5zkbLqHY,1547
|
|
62
|
-
pulumi_hcloud-1.21.
|
|
63
|
-
pulumi_hcloud-1.21.
|
|
64
|
-
pulumi_hcloud-1.21.
|
|
65
|
-
pulumi_hcloud-1.21.
|
|
64
|
+
pulumi_hcloud-1.21.0a1731100190.dist-info/METADATA,sha256=vx0r3UyCSUqgts0MGAlU53W_neS27f5dL8zmmfhT_OA,2125
|
|
65
|
+
pulumi_hcloud-1.21.0a1731100190.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
|
|
66
|
+
pulumi_hcloud-1.21.0a1731100190.dist-info/top_level.txt,sha256=1P62wdJ9bVotT2lSpU9iMUl24bR9TwEGl2JyhNg4Xy8,14
|
|
67
|
+
pulumi_hcloud-1.21.0a1731100190.dist-info/RECORD,,
|
{pulumi_hcloud-1.21.0a1731090444.dist-info → pulumi_hcloud-1.21.0a1731100190.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|