pulumi-hcloud 1.20.4__py3-none-any.whl → 1.21.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_hcloud/__init__.py +2 -0
- pulumi_hcloud/_inputs.py +234 -0
- pulumi_hcloud/_utilities.py +1 -1
- pulumi_hcloud/certificate.py +5 -0
- pulumi_hcloud/config/__init__.pyi +5 -0
- pulumi_hcloud/config/vars.py +5 -0
- pulumi_hcloud/firewall.py +5 -0
- pulumi_hcloud/firewall_attachment.py +7 -2
- pulumi_hcloud/floating_ip.py +5 -0
- pulumi_hcloud/floating_ip_assignment.py +5 -0
- pulumi_hcloud/get_certificate.py +23 -4
- pulumi_hcloud/get_certificates.py +13 -4
- pulumi_hcloud/get_datacenter.py +18 -5
- pulumi_hcloud/get_datacenters.py +18 -4
- pulumi_hcloud/get_firewall.py +26 -7
- pulumi_hcloud/get_firewalls.py +15 -4
- pulumi_hcloud/get_floating_ip.py +30 -4
- pulumi_hcloud/get_floating_ips.py +13 -4
- pulumi_hcloud/get_image.py +34 -4
- pulumi_hcloud/get_images.py +21 -4
- pulumi_hcloud/get_load_balancer.py +28 -5
- pulumi_hcloud/get_load_balancer_type.py +200 -0
- pulumi_hcloud/get_load_balancer_types.py +100 -0
- pulumi_hcloud/get_load_balancers.py +13 -4
- pulumi_hcloud/get_location.py +19 -4
- pulumi_hcloud/get_locations.py +18 -4
- pulumi_hcloud/get_network.py +23 -4
- pulumi_hcloud/get_networks.py +13 -4
- pulumi_hcloud/get_placement_group.py +25 -7
- pulumi_hcloud/get_placement_groups.py +15 -4
- pulumi_hcloud/get_primary_ip.py +28 -6
- pulumi_hcloud/get_primary_ips.py +13 -4
- pulumi_hcloud/get_server.py +40 -6
- pulumi_hcloud/get_server_type.py +35 -13
- pulumi_hcloud/get_server_types.py +32 -12
- pulumi_hcloud/get_servers.py +15 -4
- pulumi_hcloud/get_ssh_key.py +23 -4
- pulumi_hcloud/get_ssh_keys.py +14 -4
- pulumi_hcloud/get_volume.py +30 -7
- pulumi_hcloud/get_volumes.py +17 -6
- pulumi_hcloud/load_balancer.py +12 -7
- pulumi_hcloud/load_balancer_network.py +12 -7
- pulumi_hcloud/load_balancer_service.py +5 -0
- pulumi_hcloud/load_balancer_target.py +5 -0
- pulumi_hcloud/managed_certificate.py +5 -0
- pulumi_hcloud/network.py +5 -0
- pulumi_hcloud/network_route.py +5 -0
- pulumi_hcloud/network_subnet.py +5 -0
- pulumi_hcloud/outputs.py +68 -8
- pulumi_hcloud/placement_group.py +5 -0
- pulumi_hcloud/primary_ip.py +40 -21
- pulumi_hcloud/provider.py +5 -0
- pulumi_hcloud/pulumi-plugin.json +1 -1
- pulumi_hcloud/rdns.py +5 -0
- pulumi_hcloud/server.py +25 -14
- pulumi_hcloud/server_network.py +12 -7
- pulumi_hcloud/snapshot.py +5 -0
- pulumi_hcloud/ssh_key.py +5 -0
- pulumi_hcloud/uploaded_certificate.py +5 -0
- pulumi_hcloud/volume.py +19 -14
- pulumi_hcloud/volume_attachment.py +5 -0
- {pulumi_hcloud-1.20.4.dist-info → pulumi_hcloud-1.21.0.dist-info}/METADATA +3 -2
- pulumi_hcloud-1.21.0.dist-info/RECORD +67 -0
- {pulumi_hcloud-1.20.4.dist-info → pulumi_hcloud-1.21.0.dist-info}/WHEEL +1 -1
- pulumi_hcloud-1.20.4.dist-info/RECORD +0 -65
- {pulumi_hcloud-1.20.4.dist-info → pulumi_hcloud-1.21.0.dist-info}/top_level.txt +0 -0
pulumi_hcloud/server_network.py
CHANGED
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = ['ServerNetworkInitArgs', 'ServerNetwork']
|
|
@@ -37,7 +42,7 @@ class ServerNetworkInitArgs:
|
|
|
37
42
|
the existence of a subnet.
|
|
38
43
|
:param pulumi.Input[str] subnet_id: ID of the sub-network which should be
|
|
39
44
|
added to the Server. Required if `network_id` is not set.
|
|
40
|
-
|
|
45
|
+
_Note_: if the `ip` property is missing, the Server is currently added
|
|
41
46
|
to the last created subnet.
|
|
42
47
|
"""
|
|
43
48
|
pulumi.set(__self__, "server_id", server_id)
|
|
@@ -114,7 +119,7 @@ class ServerNetworkInitArgs:
|
|
|
114
119
|
"""
|
|
115
120
|
ID of the sub-network which should be
|
|
116
121
|
added to the Server. Required if `network_id` is not set.
|
|
117
|
-
|
|
122
|
+
_Note_: if the `ip` property is missing, the Server is currently added
|
|
118
123
|
to the last created subnet.
|
|
119
124
|
"""
|
|
120
125
|
return pulumi.get(self, "subnet_id")
|
|
@@ -151,7 +156,7 @@ class _ServerNetworkState:
|
|
|
151
156
|
:param pulumi.Input[int] server_id: ID of the server.
|
|
152
157
|
:param pulumi.Input[str] subnet_id: ID of the sub-network which should be
|
|
153
158
|
added to the Server. Required if `network_id` is not set.
|
|
154
|
-
|
|
159
|
+
_Note_: if the `ip` property is missing, the Server is currently added
|
|
155
160
|
to the last created subnet.
|
|
156
161
|
"""
|
|
157
162
|
if alias_ips is not None:
|
|
@@ -240,7 +245,7 @@ class _ServerNetworkState:
|
|
|
240
245
|
"""
|
|
241
246
|
ID of the sub-network which should be
|
|
242
247
|
added to the Server. Required if `network_id` is not set.
|
|
243
|
-
|
|
248
|
+
_Note_: if the `ip` property is missing, the Server is currently added
|
|
244
249
|
to the last created subnet.
|
|
245
250
|
"""
|
|
246
251
|
return pulumi.get(self, "subnet_id")
|
|
@@ -316,7 +321,7 @@ class ServerNetwork(pulumi.CustomResource):
|
|
|
316
321
|
:param pulumi.Input[int] server_id: ID of the server.
|
|
317
322
|
:param pulumi.Input[str] subnet_id: ID of the sub-network which should be
|
|
318
323
|
added to the Server. Required if `network_id` is not set.
|
|
319
|
-
|
|
324
|
+
_Note_: if the `ip` property is missing, the Server is currently added
|
|
320
325
|
to the last created subnet.
|
|
321
326
|
"""
|
|
322
327
|
...
|
|
@@ -438,7 +443,7 @@ class ServerNetwork(pulumi.CustomResource):
|
|
|
438
443
|
:param pulumi.Input[int] server_id: ID of the server.
|
|
439
444
|
:param pulumi.Input[str] subnet_id: ID of the sub-network which should be
|
|
440
445
|
added to the Server. Required if `network_id` is not set.
|
|
441
|
-
|
|
446
|
+
_Note_: if the `ip` property is missing, the Server is currently added
|
|
442
447
|
to the last created subnet.
|
|
443
448
|
"""
|
|
444
449
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -506,7 +511,7 @@ class ServerNetwork(pulumi.CustomResource):
|
|
|
506
511
|
"""
|
|
507
512
|
ID of the sub-network which should be
|
|
508
513
|
added to the Server. Required if `network_id` is not set.
|
|
509
|
-
|
|
514
|
+
_Note_: if the `ip` property is missing, the Server is currently added
|
|
510
515
|
to the last created subnet.
|
|
511
516
|
"""
|
|
512
517
|
return pulumi.get(self, "subnet_id")
|
pulumi_hcloud/snapshot.py
CHANGED
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = ['SnapshotArgs', 'Snapshot']
|
pulumi_hcloud/ssh_key.py
CHANGED
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = ['SshKeyArgs', 'SshKey']
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = ['UploadedCertificateArgs', 'UploadedCertificate']
|
pulumi_hcloud/volume.py
CHANGED
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = ['VolumeArgs', 'Volume']
|
|
@@ -30,8 +35,8 @@ class VolumeArgs:
|
|
|
30
35
|
|
|
31
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.
|
|
32
37
|
:param pulumi.Input[str] format: Format volume after creation. `xfs` or `ext4`
|
|
33
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels:
|
|
34
|
-
: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.
|
|
35
40
|
:param pulumi.Input[str] name: Name of the volume to create (must be unique per project).
|
|
36
41
|
:param pulumi.Input[int] server_id: Server to attach the Volume to, not allowed if location argument is passed.
|
|
37
42
|
"""
|
|
@@ -105,7 +110,7 @@ class VolumeArgs:
|
|
|
105
110
|
@pulumi.getter
|
|
106
111
|
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
107
112
|
"""
|
|
108
|
-
|
|
113
|
+
User-defined labels (key-value pairs).
|
|
109
114
|
"""
|
|
110
115
|
return pulumi.get(self, "labels")
|
|
111
116
|
|
|
@@ -117,7 +122,7 @@ class VolumeArgs:
|
|
|
117
122
|
@pulumi.getter
|
|
118
123
|
def location(self) -> Optional[pulumi.Input[str]]:
|
|
119
124
|
"""
|
|
120
|
-
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.
|
|
121
126
|
"""
|
|
122
127
|
return pulumi.get(self, "location")
|
|
123
128
|
|
|
@@ -169,9 +174,9 @@ class _VolumeState:
|
|
|
169
174
|
|
|
170
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.
|
|
171
176
|
:param pulumi.Input[str] format: Format volume after creation. `xfs` or `ext4`
|
|
172
|
-
: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).
|
|
173
178
|
:param pulumi.Input[str] linux_device: (string) Device path on the file system for the Volume.
|
|
174
|
-
: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.
|
|
175
180
|
:param pulumi.Input[str] name: Name of the volume to create (must be unique per project).
|
|
176
181
|
:param pulumi.Input[int] server_id: Server to attach the Volume to, not allowed if location argument is passed.
|
|
177
182
|
:param pulumi.Input[int] size: Size of the volume (in GB).
|
|
@@ -237,7 +242,7 @@ class _VolumeState:
|
|
|
237
242
|
@pulumi.getter
|
|
238
243
|
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
239
244
|
"""
|
|
240
|
-
|
|
245
|
+
User-defined labels (key-value pairs).
|
|
241
246
|
"""
|
|
242
247
|
return pulumi.get(self, "labels")
|
|
243
248
|
|
|
@@ -261,7 +266,7 @@ class _VolumeState:
|
|
|
261
266
|
@pulumi.getter
|
|
262
267
|
def location(self) -> Optional[pulumi.Input[str]]:
|
|
263
268
|
"""
|
|
264
|
-
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.
|
|
265
270
|
"""
|
|
266
271
|
return pulumi.get(self, "location")
|
|
267
272
|
|
|
@@ -356,8 +361,8 @@ class Volume(pulumi.CustomResource):
|
|
|
356
361
|
|
|
357
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.
|
|
358
363
|
:param pulumi.Input[str] format: Format volume after creation. `xfs` or `ext4`
|
|
359
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels:
|
|
360
|
-
: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.
|
|
361
366
|
:param pulumi.Input[str] name: Name of the volume to create (must be unique per project).
|
|
362
367
|
:param pulumi.Input[int] server_id: Server to attach the Volume to, not allowed if location argument is passed.
|
|
363
368
|
:param pulumi.Input[int] size: Size of the volume (in GB).
|
|
@@ -471,9 +476,9 @@ class Volume(pulumi.CustomResource):
|
|
|
471
476
|
|
|
472
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.
|
|
473
478
|
:param pulumi.Input[str] format: Format volume after creation. `xfs` or `ext4`
|
|
474
|
-
: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).
|
|
475
480
|
:param pulumi.Input[str] linux_device: (string) Device path on the file system for the Volume.
|
|
476
|
-
: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.
|
|
477
482
|
:param pulumi.Input[str] name: Name of the volume to create (must be unique per project).
|
|
478
483
|
:param pulumi.Input[int] server_id: Server to attach the Volume to, not allowed if location argument is passed.
|
|
479
484
|
:param pulumi.Input[int] size: Size of the volume (in GB).
|
|
@@ -523,7 +528,7 @@ class Volume(pulumi.CustomResource):
|
|
|
523
528
|
@pulumi.getter
|
|
524
529
|
def labels(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
|
525
530
|
"""
|
|
526
|
-
|
|
531
|
+
User-defined labels (key-value pairs).
|
|
527
532
|
"""
|
|
528
533
|
return pulumi.get(self, "labels")
|
|
529
534
|
|
|
@@ -539,7 +544,7 @@ class Volume(pulumi.CustomResource):
|
|
|
539
544
|
@pulumi.getter
|
|
540
545
|
def location(self) -> pulumi.Output[str]:
|
|
541
546
|
"""
|
|
542
|
-
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.
|
|
543
548
|
"""
|
|
544
549
|
return pulumi.get(self, "location")
|
|
545
550
|
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = ['VolumeAttachmentArgs', 'VolumeAttachment']
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pulumi_hcloud
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.21.0
|
|
4
4
|
Summary: A Pulumi package for creating and managing hcloud cloud resources.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Project-URL: Homepage, https://pulumi.io
|
|
@@ -9,8 +9,9 @@ Keywords: pulumi,hcloud
|
|
|
9
9
|
Requires-Python: >=3.8
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
11
|
Requires-Dist: parver >=0.2.1
|
|
12
|
-
Requires-Dist: pulumi <4.0.0,>=3.
|
|
12
|
+
Requires-Dist: pulumi <4.0.0,>=3.136.0
|
|
13
13
|
Requires-Dist: semver >=2.8.1
|
|
14
|
+
Requires-Dist: typing-extensions >=4.11 ; python_version < "3.11"
|
|
14
15
|
|
|
15
16
|
# HCloud provider
|
|
16
17
|
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
pulumi_hcloud/__init__.py,sha256=1sBKVfYXaAAjoPydg7dg9RCL0NwkQo0AjUngGqPbvAQ,6074
|
|
2
|
+
pulumi_hcloud/_inputs.py,sha256=WlVKvGUhGYGoBed2RWJehd7hsPOricjhZQAmI2P_0n4,37675
|
|
3
|
+
pulumi_hcloud/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
|
|
4
|
+
pulumi_hcloud/certificate.py,sha256=bYDdezxWvfaUeO2WA3mOHsvCjdn8LUg5CITGCgCqciM,14164
|
|
5
|
+
pulumi_hcloud/firewall.py,sha256=YYq0c1PeGgHePX-_H1AzR4S3eLGyPZPsmPZn8T8-2EE,14982
|
|
6
|
+
pulumi_hcloud/firewall_attachment.py,sha256=0J68b88TWrFeqBO-mmrP2qYqlicuU_tq1t7wiv6yABA,13924
|
|
7
|
+
pulumi_hcloud/floating_ip.py,sha256=2EJun4abkyBz-Kb2jsDQa9-9Blx8Zr7eB9iKdJ72fR4,21784
|
|
8
|
+
pulumi_hcloud/floating_ip_assignment.py,sha256=4Y5i6g9g974bZLVgQ55Wnm5K8od5AHXdE8X2NZGmRuc,9677
|
|
9
|
+
pulumi_hcloud/get_certificate.py,sha256=PrAcIuAOUrFGqEo7dZG82GLxouBrcN3S6OrtOzGpFiY,9383
|
|
10
|
+
pulumi_hcloud/get_certificates.py,sha256=GO2QT1hYNvdSq8-U4IqX1MCZlUFcZzr_Iaj0KVh-A6k,4466
|
|
11
|
+
pulumi_hcloud/get_datacenter.py,sha256=9LjRdKQDntVVz-I1b2TDjnNXg21ckL_mJhtymXIo6lo,6710
|
|
12
|
+
pulumi_hcloud/get_datacenters.py,sha256=97ropR7EzhDztjEE6kkERgo2kQKf-GoRvRloLPjGMrE,6988
|
|
13
|
+
pulumi_hcloud/get_firewall.py,sha256=bSzfgS2zPTKAoHcUabyKQ5D3YJnuctOe6-cTHs7rVgc,8825
|
|
14
|
+
pulumi_hcloud/get_firewalls.py,sha256=kuEvTlqFjqne25N-awlMO2PfPKnQRQ-ZMltxMdeBzNQ,5159
|
|
15
|
+
pulumi_hcloud/get_floating_ip.py,sha256=cxrA6j0mCOF77FKASXLmu6j25QBIBS3kWCIdnZt1Vz4,11425
|
|
16
|
+
pulumi_hcloud/get_floating_ips.py,sha256=Pt-SAT3pXWmcpBSekp61i3tO_0Ol4Otm3UevgE7-Z4c,4435
|
|
17
|
+
pulumi_hcloud/get_image.py,sha256=Wqq2qtJpZcu3D3_grkypbfY-D-nXbgLZQP-cQqWfyYQ,14528
|
|
18
|
+
pulumi_hcloud/get_images.py,sha256=Phyw2T9HElOFzUU5_snIAfne3Rp1oy3U5P1GELjFbIg,8354
|
|
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
|
|
22
|
+
pulumi_hcloud/get_load_balancers.py,sha256=BTuES5_f1j29-fTEz9P1lrItiyCKFzaocRR7JOnzAVs,4603
|
|
23
|
+
pulumi_hcloud/get_location.py,sha256=PPd4ep2lf90JYJNUsFm_gqZiPQALJSraIQtXlTSGJhQ,6916
|
|
24
|
+
pulumi_hcloud/get_locations.py,sha256=E93CUthYSwcu90bRA-8apsSDVnibouVgUqKhdEOnZMo,6798
|
|
25
|
+
pulumi_hcloud/get_network.py,sha256=f19l0xRM1549wbltfHl_dmUe7DrvYskn9u4jYWyDbUA,8599
|
|
26
|
+
pulumi_hcloud/get_networks.py,sha256=_O0nWhGkoYil4lUycSXYlDa8olswnlaJwJZ_bxlkUNc,4334
|
|
27
|
+
pulumi_hcloud/get_placement_group.py,sha256=4RvIqrzQON7vNYrCkUAJgjG0556uivtK5Va-B7K0OvA,7985
|
|
28
|
+
pulumi_hcloud/get_placement_groups.py,sha256=GljaOXR6t8LxYtg-Y9dZ38CHiqCyETKN4iO6XG6_LpQ,5629
|
|
29
|
+
pulumi_hcloud/get_primary_ip.py,sha256=V0qKbXyw0OTnDkHBl2gL5lYRmSxqBR0lhO_45wZgdX8,12637
|
|
30
|
+
pulumi_hcloud/get_primary_ips.py,sha256=QiJODoAjWur3L8SIJxdN-_UC9pkUfmLCONqqQXNZhCA,4389
|
|
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
|
|
34
|
+
pulumi_hcloud/get_servers.py,sha256=pJbqFLQEoHLIUl7-5y_mpJtGKH4nw1fmndQZWFpd8pk,5472
|
|
35
|
+
pulumi_hcloud/get_ssh_key.py,sha256=kauwY0U8MusdlfbBYNvnX4DVuaoCeoxb19m8KVT3a5w,8172
|
|
36
|
+
pulumi_hcloud/get_ssh_keys.py,sha256=Ahp7kb4B7mFotA6lvuibRuWUtylujHUzqEj7Nws0K38,4486
|
|
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
|
|
41
|
+
pulumi_hcloud/load_balancer_service.py,sha256=EyxtWfvoHP_CqH9V0M_1os5p_-El2Ng6mEc3BGtfe98,23051
|
|
42
|
+
pulumi_hcloud/load_balancer_target.py,sha256=zVC04bqHW_78tTSBdGuKx1pVzitfrz4rKznDR2ceqAY,20741
|
|
43
|
+
pulumi_hcloud/managed_certificate.py,sha256=WgvgpTQ30ONJ3CtG-dTq4ugy5TlpumKWPcxnX6F79cg,17633
|
|
44
|
+
pulumi_hcloud/network.py,sha256=80zSwBdoTpzvSX546glmiX1c66lWx5sa-W8QpLz91Vg,16845
|
|
45
|
+
pulumi_hcloud/network_route.py,sha256=cJWOzG7TPVISoD99fMLkM9A2EqQZk4P33O2jRBsprnw,13518
|
|
46
|
+
pulumi_hcloud/network_subnet.py,sha256=4BMxhVl3stOqmp_pYJlw7mQLJ3oBb8eogztFCFk67BI,16313
|
|
47
|
+
pulumi_hcloud/outputs.py,sha256=VdHeG8qm7rnXroC7Cw2bV4J4dzJiWgFKG-eUAlmMeX0,81657
|
|
48
|
+
pulumi_hcloud/placement_group.py,sha256=mpjVByy_1O1zvCUQEhKVZECMZ6kktF37Gj3LU0qokTo,11680
|
|
49
|
+
pulumi_hcloud/primary_ip.py,sha256=jip7SSl97oA8F_k26XDrC_1otquZosxi0GlUz0AIPaY,27586
|
|
50
|
+
pulumi_hcloud/provider.py,sha256=Jw8xKT08pJiSbhWzqso4gLrWo54k1uvoCze5HIHZFjs,9091
|
|
51
|
+
pulumi_hcloud/pulumi-plugin.json,sha256=SAV5AMIHNat3SLzmkV-XvFFhJxbk7qDZOY4gJXTWDVo,66
|
|
52
|
+
pulumi_hcloud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
53
|
+
pulumi_hcloud/rdns.py,sha256=PK6dg7kwJcOfM81vQ3t6SlVmgAVtePmB7nrGg77ZfsM,21320
|
|
54
|
+
pulumi_hcloud/server.py,sha256=D78Q-z5wYQc-mzdMHvGcfUHUcmLDvERsSP8eSTBvW-Y,71392
|
|
55
|
+
pulumi_hcloud/server_network.py,sha256=PGx-kQiQOTFAcr6_TK9D5MZ0gIALXJrQlzY1Kc5vfS4,21833
|
|
56
|
+
pulumi_hcloud/snapshot.py,sha256=V3JjIH5kkwZoIfmpLczf8dneTXOMaflayCR-SEoRSKk,11053
|
|
57
|
+
pulumi_hcloud/ssh_key.py,sha256=Gaz5bILHQ6_twr7VeOKElnfsuk9wvgLVGwTGJ_pM7_Q,11943
|
|
58
|
+
pulumi_hcloud/uploaded_certificate.py,sha256=fnql6DvnP-BwNqr2gBw4wM2WCtwT8nEeqU7iXUCZBWY,19530
|
|
59
|
+
pulumi_hcloud/volume.py,sha256=baG_plXSzuKnGlvobIXmDUx2lATmKguGOn2mB1WcIRc,24518
|
|
60
|
+
pulumi_hcloud/volume_attachment.py,sha256=8Vu4P_gHeEZUC2SO7rU8FcoEmxp4nnir6G3xBW_OJ7s,11094
|
|
61
|
+
pulumi_hcloud/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
62
|
+
pulumi_hcloud/config/__init__.pyi,sha256=2EjDsBZ7-A0tF1fn3DHDv597aXmwwig2eLRtqSElp9Q,1048
|
|
63
|
+
pulumi_hcloud/config/vars.py,sha256=p-bMQxLGvw7_95R-cEOhkadIYqdZI6MXJwD5zkbLqHY,1547
|
|
64
|
+
pulumi_hcloud-1.21.0.dist-info/METADATA,sha256=x35azXCJhVqQupGau5Y1fbk9MqOpPse6UrSQhAM7PyM,2114
|
|
65
|
+
pulumi_hcloud-1.21.0.dist-info/WHEEL,sha256=R06PA3UVYHThwHvxuRWMqaGcr-PuniXahwjmQRFMEkY,91
|
|
66
|
+
pulumi_hcloud-1.21.0.dist-info/top_level.txt,sha256=1P62wdJ9bVotT2lSpU9iMUl24bR9TwEGl2JyhNg4Xy8,14
|
|
67
|
+
pulumi_hcloud-1.21.0.dist-info/RECORD,,
|
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
pulumi_hcloud/__init__.py,sha256=XwQa2Q0Eg_R5TkcbSLgGALRZfGdMSrSFXLNkGyxrXrA,5997
|
|
2
|
-
pulumi_hcloud/_inputs.py,sha256=Rlk9_PYoPsVWu6lG5jVTmgozE4kOI6wtk53Gp_AP18s,29245
|
|
3
|
-
pulumi_hcloud/_utilities.py,sha256=aNnnaO6zRha3FhNHonuabR4fJLWGXANtK5dlh1Mz95k,10506
|
|
4
|
-
pulumi_hcloud/certificate.py,sha256=LLO1nm93uvSVjc45wInFr4DjfEVmeYtGZOx04219Mw4,13990
|
|
5
|
-
pulumi_hcloud/firewall.py,sha256=XLtmCn6lWF_gXyGaLzTd3g0eYSRbInZQ0CqnWaquXqc,14808
|
|
6
|
-
pulumi_hcloud/firewall_attachment.py,sha256=oyhKqps1-MDfLbOGrHyguqVkCn07n93qqb1bRwsLF3s,13750
|
|
7
|
-
pulumi_hcloud/floating_ip.py,sha256=DIYU4bP1VsrzJL1jGzeOlUgNjNyNgcDv3KLqR1Run-A,21610
|
|
8
|
-
pulumi_hcloud/floating_ip_assignment.py,sha256=V9f2vFHTzTUueO44hskXo0WlDfLARD8gCTvej9bEfFA,9503
|
|
9
|
-
pulumi_hcloud/get_certificate.py,sha256=U1q72vnGLSK5FgcyC6vAMkZkqpu3GoQi8AoTUShQ_8M,8227
|
|
10
|
-
pulumi_hcloud/get_certificates.py,sha256=yXDSAZb86871_j1uYr9bHafyfo1F-CEn09b4yJo6mEA,3819
|
|
11
|
-
pulumi_hcloud/get_datacenter.py,sha256=auj5EhCQkEfAhPrjIkWY1TzA3uCK1_BJDtFxuAb7fr8,5710
|
|
12
|
-
pulumi_hcloud/get_datacenters.py,sha256=zXAcU896Ar4Zy09NWHLbQL-X1xnJ7aECYOlq7rmqJ_I,6132
|
|
13
|
-
pulumi_hcloud/get_firewall.py,sha256=WQrZ7mK-7mh3CLINwipCEGIQqQ_C2Fzpv1i81SAyls4,7799
|
|
14
|
-
pulumi_hcloud/get_firewalls.py,sha256=c4CmTar7R1HsD4OI1U-zgWv7PUvYb7NgkFgscQfJVlU,4425
|
|
15
|
-
pulumi_hcloud/get_floating_ip.py,sha256=adgKeszkIEjG3v9LoMO2OQppU0WB9XIxXB2imC-Pbb8,10143
|
|
16
|
-
pulumi_hcloud/get_floating_ips.py,sha256=PgFAaQC8p0vli9fmKrmwN__hXpt_y8F1OV8rfi6s90U,3792
|
|
17
|
-
pulumi_hcloud/get_image.py,sha256=uOZfY3I1zniCMv7pSNzR_lN3HVjWFtFVXOtzNVm59Vc,12794
|
|
18
|
-
pulumi_hcloud/get_images.py,sha256=razac7rpcOX8ECdLiV-yjtD85577W6jcw4VGfaOFm4Q,7265
|
|
19
|
-
pulumi_hcloud/get_load_balancer.py,sha256=hiMqIz5Si2eC0EvE_m4RbZsoBEOQmTCgZzhFO15qDl8,10563
|
|
20
|
-
pulumi_hcloud/get_load_balancers.py,sha256=Stqjt3Er-L9Whah0RA8wP-Dji1sHR7HvtP6Wi147rnk,3950
|
|
21
|
-
pulumi_hcloud/get_location.py,sha256=6ZkFO_teojyIcalZ3WYkbgZnjBoeeg3UD7uZsM2yIxY,6019
|
|
22
|
-
pulumi_hcloud/get_locations.py,sha256=mfCb_egh_ullB2tKs_V1-fKq1sOSZYs4LRYp2tkQ2hc,5960
|
|
23
|
-
pulumi_hcloud/get_network.py,sha256=2oiZD-ztNxHgGTb7luJbz3uUnD9LwL-sYyMVIzKRh4U,7496
|
|
24
|
-
pulumi_hcloud/get_networks.py,sha256=NzqwrGRB1WGbQUecMBtfqjPooKU1Jn0u5Q5cJ16hmqk,3707
|
|
25
|
-
pulumi_hcloud/get_placement_group.py,sha256=tv72zb5aQxeXismYPGNGtIKHGqj0hnXiwpHaLKna5xc,6987
|
|
26
|
-
pulumi_hcloud/get_placement_groups.py,sha256=n69TZ_ywHJcMPq55ARd7e6kh33kA6diZuSlBYgYNSlo,4864
|
|
27
|
-
pulumi_hcloud/get_primary_ip.py,sha256=4GZwOv89bKx72KcINqqujf9v3heun822zdjkOgBIviw,11207
|
|
28
|
-
pulumi_hcloud/get_primary_ips.py,sha256=5-6kek1hpa66l6oh58GaJ-uplzQBfDqQBlRZ9yOX-dI,3751
|
|
29
|
-
pulumi_hcloud/get_server.py,sha256=IB7dsEy1jkRzyduBf2_AIJHD0cWgaNKni74wHAdCP1g,15362
|
|
30
|
-
pulumi_hcloud/get_server_type.py,sha256=sZRX34-o79gatFIGUIzIgMa04EbXTw4dpRf0wx5rSKc,10303
|
|
31
|
-
pulumi_hcloud/get_server_types.py,sha256=DA9awpfuGuKlihDDRvwLB5mCpvypwCZRvpcSWw7q0DU,4321
|
|
32
|
-
pulumi_hcloud/get_servers.py,sha256=XvRYTYFbkJ6XDN9tiqa6ECQwwB2sqtYskfA6eNBtXyo,4740
|
|
33
|
-
pulumi_hcloud/get_ssh_key.py,sha256=0yeUib8e8lQR3yLj27FC8TiLrXF2BbVEM8Ojs1CnJX8,7133
|
|
34
|
-
pulumi_hcloud/get_ssh_keys.py,sha256=294EdNbP-FYG2_0oaqZNbY5Zhk09YE6SCtlZf5_eGBs,3839
|
|
35
|
-
pulumi_hcloud/get_volume.py,sha256=-7dayD9ChRCVau24VM4mGEu3zijW23AKwcB2rNK99YI,9208
|
|
36
|
-
pulumi_hcloud/get_volumes.py,sha256=FyWyii9XrJ1dMHLZ1Dgnq8RagWSY1VSOG0kfJtbW5AY,4610
|
|
37
|
-
pulumi_hcloud/load_balancer.py,sha256=vqH7kp3hKOys-QU3cKytN--9w2XV3WyOoO6xvotqgHM,27841
|
|
38
|
-
pulumi_hcloud/load_balancer_network.py,sha256=EjRT1qAXeLwN_n-zzxu4kAisA6WFO0yk2wn3pP4uRFg,22274
|
|
39
|
-
pulumi_hcloud/load_balancer_service.py,sha256=WvB230t2RYIUI7SAZukT3lGdHjPNiqvfaAHaY8GOV4M,22877
|
|
40
|
-
pulumi_hcloud/load_balancer_target.py,sha256=WjEuMIdWxNcXQgUrMXhVilDQpbDGkLcnyb3OeSq76AM,20567
|
|
41
|
-
pulumi_hcloud/managed_certificate.py,sha256=NhWFm4jjiVCyidrKZtGed1v-NKxDH7LQqwlC07k5BZg,17459
|
|
42
|
-
pulumi_hcloud/network.py,sha256=e8DMgyxq_yn8wz2rYzsyDRuiOM18uFmQ_FQX4cq-EME,16671
|
|
43
|
-
pulumi_hcloud/network_route.py,sha256=6EM4sbqqPjSm7O2YkXp04lQZyaF9RxDn7GCBSyF6vP0,13344
|
|
44
|
-
pulumi_hcloud/network_subnet.py,sha256=hKqM7LgK145mCG8n47OJFzxdg5T67krE61tANESUAks,16139
|
|
45
|
-
pulumi_hcloud/outputs.py,sha256=vHAKkXWKjJYYADKcg54H3QDe_lRYMHf5pxtIoQWkyY0,79756
|
|
46
|
-
pulumi_hcloud/placement_group.py,sha256=Rmy-wUKzq-B5YvZYPK-nEfSmOAbrfot69vk54DD1FZg,11506
|
|
47
|
-
pulumi_hcloud/primary_ip.py,sha256=bVdixz-IdC0mVBUpcMadj1cKgUQ38OyssxGEZlbZxuI,25784
|
|
48
|
-
pulumi_hcloud/provider.py,sha256=BGX9c2zJAjkm5t8YreUCz3fgJv5IK05aWIXkQ0IuffI,8917
|
|
49
|
-
pulumi_hcloud/pulumi-plugin.json,sha256=tBld9264oJsumKXGhYmld69fJ5hiHexOUpXa51hcR_o,66
|
|
50
|
-
pulumi_hcloud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
|
-
pulumi_hcloud/rdns.py,sha256=EwL5d8vTaVVgjUrjhnAwFH84SGS-7QlwMZAWFIJ0Bag,21146
|
|
52
|
-
pulumi_hcloud/server.py,sha256=r8TFeMzkjvXykKDQGESBcrdUBJjJlf1YmWdSTOuJmv8,70015
|
|
53
|
-
pulumi_hcloud/server_network.py,sha256=dBNIIQjV5oYvETOuAhATvuxSwDStFWxOi0k_JkjJjfE,21659
|
|
54
|
-
pulumi_hcloud/snapshot.py,sha256=WYNfT_CHnnGL42jluiZ-X82fAMcfoyF3EuKx6v7IxRM,10879
|
|
55
|
-
pulumi_hcloud/ssh_key.py,sha256=zBl4CqkbCkJQD_VMCd3CTkdBnjGt5Jkwoex12bG39QM,11769
|
|
56
|
-
pulumi_hcloud/uploaded_certificate.py,sha256=40XSeKoqiGcjQjx9GNe-VSzfVZhH_91GrGGrPIfHgek,19356
|
|
57
|
-
pulumi_hcloud/volume.py,sha256=UFJKLN-DnDHDfWN_N4H7KvbyWWJj4_cN0gUxuaPKrdo,23455
|
|
58
|
-
pulumi_hcloud/volume_attachment.py,sha256=OWnHOxbeBX4fD6DisELelHzMFM1qsUNcUCnednTgPkY,10920
|
|
59
|
-
pulumi_hcloud/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
60
|
-
pulumi_hcloud/config/__init__.pyi,sha256=4bpGLSFeQhmBy1CMlGWAYufBHOHA52j0P4UByDPszFM,874
|
|
61
|
-
pulumi_hcloud/config/vars.py,sha256=o6SBB7RAqxNQoWfaqxYE490nxVqemzQ8-NztDlx284Q,1373
|
|
62
|
-
pulumi_hcloud-1.20.4.dist-info/METADATA,sha256=m7UkyrEJI9wII25YXZN2HunxgyIKj0Be1CQc3dIkpqk,2046
|
|
63
|
-
pulumi_hcloud-1.20.4.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
64
|
-
pulumi_hcloud-1.20.4.dist-info/top_level.txt,sha256=1P62wdJ9bVotT2lSpU9iMUl24bR9TwEGl2JyhNg4Xy8,14
|
|
65
|
-
pulumi_hcloud-1.20.4.dist-info/RECORD,,
|
|
File without changes
|