pulumi-hcloud 1.25.0a1758693790__py3-none-any.whl → 1.25.0a1758943464__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.
@@ -13,6 +13,7 @@ if sys.version_info >= (3, 11):
13
13
  else:
14
14
  from typing_extensions import NotRequired, TypedDict, TypeAlias
15
15
  from . import _utilities
16
+ from . import outputs
16
17
 
17
18
  __all__ = [
18
19
  'GetServerTypeResult',
@@ -26,10 +27,13 @@ class GetServerTypeResult:
26
27
  """
27
28
  A collection of values returned by getServerType.
28
29
  """
29
- def __init__(__self__, architecture=None, cores=None, cpu_type=None, deprecation_announced=None, description=None, disk=None, id=None, included_traffic=None, is_deprecated=None, memory=None, name=None, storage_type=None, unavailable_after=None):
30
+ def __init__(__self__, architecture=None, category=None, cores=None, cpu_type=None, deprecation_announced=None, description=None, disk=None, id=None, included_traffic=None, is_deprecated=None, locations=None, memory=None, name=None, storage_type=None, unavailable_after=None):
30
31
  if architecture and not isinstance(architecture, str):
31
32
  raise TypeError("Expected argument 'architecture' to be a str")
32
33
  pulumi.set(__self__, "architecture", architecture)
34
+ if category and not isinstance(category, str):
35
+ raise TypeError("Expected argument 'category' to be a str")
36
+ pulumi.set(__self__, "category", category)
33
37
  if cores and not isinstance(cores, int):
34
38
  raise TypeError("Expected argument 'cores' to be a int")
35
39
  pulumi.set(__self__, "cores", cores)
@@ -54,6 +58,9 @@ class GetServerTypeResult:
54
58
  if is_deprecated and not isinstance(is_deprecated, bool):
55
59
  raise TypeError("Expected argument 'is_deprecated' to be a bool")
56
60
  pulumi.set(__self__, "is_deprecated", is_deprecated)
61
+ if locations and not isinstance(locations, list):
62
+ raise TypeError("Expected argument 'locations' to be a list")
63
+ pulumi.set(__self__, "locations", locations)
57
64
  if memory and not isinstance(memory, int):
58
65
  raise TypeError("Expected argument 'memory' to be a int")
59
66
  pulumi.set(__self__, "memory", memory)
@@ -75,6 +82,14 @@ class GetServerTypeResult:
75
82
  """
76
83
  return pulumi.get(self, "architecture")
77
84
 
85
+ @_builtins.property
86
+ @pulumi.getter
87
+ def category(self) -> _builtins.str:
88
+ """
89
+ Category of the Server Type.
90
+ """
91
+ return pulumi.get(self, "category")
92
+
78
93
  @_builtins.property
79
94
  @pulumi.getter
80
95
  def cores(self) -> _builtins.int:
@@ -93,6 +108,7 @@ class GetServerTypeResult:
93
108
 
94
109
  @_builtins.property
95
110
  @pulumi.getter(name="deprecationAnnounced")
111
+ @_utilities.deprecated("""The field is deprecated and will gradually be phased out starting 2025-09-24. Use the deprecation in the locations list instead.""")
96
112
  def deprecation_announced(self) -> _builtins.str:
97
113
  """
98
114
  Date of the Server Type deprecation announcement.
@@ -131,12 +147,21 @@ class GetServerTypeResult:
131
147
 
132
148
  @_builtins.property
133
149
  @pulumi.getter(name="isDeprecated")
150
+ @_utilities.deprecated("""The field is deprecated and will gradually be phased out starting 2025-09-24. Use the deprecation in the locations list instead.""")
134
151
  def is_deprecated(self) -> _builtins.bool:
135
152
  """
136
153
  Whether the Server Type is deprecated.
137
154
  """
138
155
  return pulumi.get(self, "is_deprecated")
139
156
 
157
+ @_builtins.property
158
+ @pulumi.getter
159
+ def locations(self) -> Sequence['outputs.GetServerTypeLocationResult']:
160
+ """
161
+ List of supported Locations for this Server Type.
162
+ """
163
+ return pulumi.get(self, "locations")
164
+
140
165
  @_builtins.property
141
166
  @pulumi.getter
142
167
  def memory(self) -> _builtins.int:
@@ -163,6 +188,7 @@ class GetServerTypeResult:
163
188
 
164
189
  @_builtins.property
165
190
  @pulumi.getter(name="unavailableAfter")
191
+ @_utilities.deprecated("""The field is deprecated and will gradually be phased out starting 2025-09-24. Use the deprecation in the locations list instead.""")
166
192
  def unavailable_after(self) -> _builtins.str:
167
193
  """
168
194
  Date of the Server Type removal. After this date, the Server Type cannot be used anymore.
@@ -177,6 +203,7 @@ class AwaitableGetServerTypeResult(GetServerTypeResult):
177
203
  yield self
178
204
  return GetServerTypeResult(
179
205
  architecture=self.architecture,
206
+ category=self.category,
180
207
  cores=self.cores,
181
208
  cpu_type=self.cpu_type,
182
209
  deprecation_announced=self.deprecation_announced,
@@ -185,6 +212,7 @@ class AwaitableGetServerTypeResult(GetServerTypeResult):
185
212
  id=self.id,
186
213
  included_traffic=self.included_traffic,
187
214
  is_deprecated=self.is_deprecated,
215
+ locations=self.locations,
188
216
  memory=self.memory,
189
217
  name=self.name,
190
218
  storage_type=self.storage_type,
@@ -226,6 +254,7 @@ def get_server_type(id: Optional[_builtins.int] = None,
226
254
 
227
255
  return AwaitableGetServerTypeResult(
228
256
  architecture=pulumi.get(__ret__, 'architecture'),
257
+ category=pulumi.get(__ret__, 'category'),
229
258
  cores=pulumi.get(__ret__, 'cores'),
230
259
  cpu_type=pulumi.get(__ret__, 'cpu_type'),
231
260
  deprecation_announced=pulumi.get(__ret__, 'deprecation_announced'),
@@ -234,6 +263,7 @@ def get_server_type(id: Optional[_builtins.int] = None,
234
263
  id=pulumi.get(__ret__, 'id'),
235
264
  included_traffic=pulumi.get(__ret__, 'included_traffic'),
236
265
  is_deprecated=pulumi.get(__ret__, 'is_deprecated'),
266
+ locations=pulumi.get(__ret__, 'locations'),
237
267
  memory=pulumi.get(__ret__, 'memory'),
238
268
  name=pulumi.get(__ret__, 'name'),
239
269
  storage_type=pulumi.get(__ret__, 'storage_type'),
@@ -272,6 +302,7 @@ def get_server_type_output(id: Optional[pulumi.Input[Optional[_builtins.int]]] =
272
302
  __ret__ = pulumi.runtime.invoke_output('hcloud:index/getServerType:getServerType', __args__, opts=opts, typ=GetServerTypeResult)
273
303
  return __ret__.apply(lambda __response__: GetServerTypeResult(
274
304
  architecture=pulumi.get(__response__, 'architecture'),
305
+ category=pulumi.get(__response__, 'category'),
275
306
  cores=pulumi.get(__response__, 'cores'),
276
307
  cpu_type=pulumi.get(__response__, 'cpu_type'),
277
308
  deprecation_announced=pulumi.get(__response__, 'deprecation_announced'),
@@ -280,6 +311,7 @@ def get_server_type_output(id: Optional[pulumi.Input[Optional[_builtins.int]]] =
280
311
  id=pulumi.get(__response__, 'id'),
281
312
  included_traffic=pulumi.get(__response__, 'included_traffic'),
282
313
  is_deprecated=pulumi.get(__response__, 'is_deprecated'),
314
+ locations=pulumi.get(__response__, 'locations'),
283
315
  memory=pulumi.get(__response__, 'memory'),
284
316
  name=pulumi.get(__response__, 'name'),
285
317
  storage_type=pulumi.get(__response__, 'storage_type'),
pulumi_hcloud/outputs.py CHANGED
@@ -53,7 +53,9 @@ __all__ = [
53
53
  'GetPlacementGroupsPlacementGroupResult',
54
54
  'GetPrimaryIpsPrimaryIpResult',
55
55
  'GetServerNetworkResult',
56
+ 'GetServerTypeLocationResult',
56
57
  'GetServerTypesServerTypeResult',
58
+ 'GetServerTypesServerTypeLocationResult',
57
59
  'GetServersServerResult',
58
60
  'GetServersServerNetworkResult',
59
61
  'GetSshKeysSshKeyResult',
@@ -2253,10 +2255,73 @@ class GetServerNetworkResult(dict):
2253
2255
  return pulumi.get(self, "network_id")
2254
2256
 
2255
2257
 
2258
+ @pulumi.output_type
2259
+ class GetServerTypeLocationResult(dict):
2260
+ def __init__(__self__, *,
2261
+ deprecation_announced: _builtins.str,
2262
+ id: _builtins.int,
2263
+ is_deprecated: _builtins.bool,
2264
+ name: _builtins.str,
2265
+ unavailable_after: _builtins.str):
2266
+ """
2267
+ :param _builtins.str deprecation_announced: Date of the Server Type deprecation announcement.
2268
+ :param _builtins.int id: ID of the Location.
2269
+ :param _builtins.bool is_deprecated: Whether the Server Type is deprecated.
2270
+ :param _builtins.str name: Name of the Location.
2271
+ :param _builtins.str unavailable_after: Date of the Server Type removal. After this date, the Server Type cannot be used anymore.
2272
+ """
2273
+ pulumi.set(__self__, "deprecation_announced", deprecation_announced)
2274
+ pulumi.set(__self__, "id", id)
2275
+ pulumi.set(__self__, "is_deprecated", is_deprecated)
2276
+ pulumi.set(__self__, "name", name)
2277
+ pulumi.set(__self__, "unavailable_after", unavailable_after)
2278
+
2279
+ @_builtins.property
2280
+ @pulumi.getter(name="deprecationAnnounced")
2281
+ def deprecation_announced(self) -> _builtins.str:
2282
+ """
2283
+ Date of the Server Type deprecation announcement.
2284
+ """
2285
+ return pulumi.get(self, "deprecation_announced")
2286
+
2287
+ @_builtins.property
2288
+ @pulumi.getter
2289
+ def id(self) -> _builtins.int:
2290
+ """
2291
+ ID of the Location.
2292
+ """
2293
+ return pulumi.get(self, "id")
2294
+
2295
+ @_builtins.property
2296
+ @pulumi.getter(name="isDeprecated")
2297
+ def is_deprecated(self) -> _builtins.bool:
2298
+ """
2299
+ Whether the Server Type is deprecated.
2300
+ """
2301
+ return pulumi.get(self, "is_deprecated")
2302
+
2303
+ @_builtins.property
2304
+ @pulumi.getter
2305
+ def name(self) -> _builtins.str:
2306
+ """
2307
+ Name of the Location.
2308
+ """
2309
+ return pulumi.get(self, "name")
2310
+
2311
+ @_builtins.property
2312
+ @pulumi.getter(name="unavailableAfter")
2313
+ def unavailable_after(self) -> _builtins.str:
2314
+ """
2315
+ Date of the Server Type removal. After this date, the Server Type cannot be used anymore.
2316
+ """
2317
+ return pulumi.get(self, "unavailable_after")
2318
+
2319
+
2256
2320
  @pulumi.output_type
2257
2321
  class GetServerTypesServerTypeResult(dict):
2258
2322
  def __init__(__self__, *,
2259
2323
  architecture: _builtins.str,
2324
+ category: _builtins.str,
2260
2325
  cores: _builtins.int,
2261
2326
  cpu_type: _builtins.str,
2262
2327
  deprecation_announced: _builtins.str,
@@ -2265,12 +2330,14 @@ class GetServerTypesServerTypeResult(dict):
2265
2330
  id: _builtins.int,
2266
2331
  included_traffic: _builtins.int,
2267
2332
  is_deprecated: _builtins.bool,
2333
+ locations: Sequence['outputs.GetServerTypesServerTypeLocationResult'],
2268
2334
  memory: _builtins.int,
2269
2335
  name: _builtins.str,
2270
2336
  storage_type: _builtins.str,
2271
2337
  unavailable_after: _builtins.str):
2272
2338
  """
2273
2339
  :param _builtins.str architecture: Architecture of the cpu for a Server of this type.
2340
+ :param _builtins.str category: Category of the Server Type.
2274
2341
  :param _builtins.int cores: Number of cpu cores for a Server of this type.
2275
2342
  :param _builtins.str cpu_type: Type of cpu for a Server of this type.
2276
2343
  :param _builtins.str deprecation_announced: Date of the Server Type deprecation announcement.
@@ -2278,12 +2345,14 @@ class GetServerTypesServerTypeResult(dict):
2278
2345
  :param _builtins.int disk: Disk size in GB for a Server of this type.
2279
2346
  :param _builtins.int id: ID of the Server Type.
2280
2347
  :param _builtins.bool is_deprecated: Whether the Server Type is deprecated.
2348
+ :param Sequence['GetServerTypesServerTypeLocationArgs'] locations: List of supported Locations for this Server Type.
2281
2349
  :param _builtins.int memory: Memory in GB for a Server of this type.
2282
2350
  :param _builtins.str name: Name of the Server Type.
2283
2351
  :param _builtins.str storage_type: Type of boot drive for a Server of this type.
2284
2352
  :param _builtins.str unavailable_after: Date of the Server Type removal. After this date, the Server Type cannot be used anymore.
2285
2353
  """
2286
2354
  pulumi.set(__self__, "architecture", architecture)
2355
+ pulumi.set(__self__, "category", category)
2287
2356
  pulumi.set(__self__, "cores", cores)
2288
2357
  pulumi.set(__self__, "cpu_type", cpu_type)
2289
2358
  pulumi.set(__self__, "deprecation_announced", deprecation_announced)
@@ -2292,6 +2361,7 @@ class GetServerTypesServerTypeResult(dict):
2292
2361
  pulumi.set(__self__, "id", id)
2293
2362
  pulumi.set(__self__, "included_traffic", included_traffic)
2294
2363
  pulumi.set(__self__, "is_deprecated", is_deprecated)
2364
+ pulumi.set(__self__, "locations", locations)
2295
2365
  pulumi.set(__self__, "memory", memory)
2296
2366
  pulumi.set(__self__, "name", name)
2297
2367
  pulumi.set(__self__, "storage_type", storage_type)
@@ -2305,6 +2375,14 @@ class GetServerTypesServerTypeResult(dict):
2305
2375
  """
2306
2376
  return pulumi.get(self, "architecture")
2307
2377
 
2378
+ @_builtins.property
2379
+ @pulumi.getter
2380
+ def category(self) -> _builtins.str:
2381
+ """
2382
+ Category of the Server Type.
2383
+ """
2384
+ return pulumi.get(self, "category")
2385
+
2308
2386
  @_builtins.property
2309
2387
  @pulumi.getter
2310
2388
  def cores(self) -> _builtins.int:
@@ -2323,6 +2401,7 @@ class GetServerTypesServerTypeResult(dict):
2323
2401
 
2324
2402
  @_builtins.property
2325
2403
  @pulumi.getter(name="deprecationAnnounced")
2404
+ @_utilities.deprecated("""The field is deprecated and will gradually be phased out starting 2025-09-24. Use the deprecation in the locations list instead.""")
2326
2405
  def deprecation_announced(self) -> _builtins.str:
2327
2406
  """
2328
2407
  Date of the Server Type deprecation announcement.
@@ -2361,12 +2440,21 @@ class GetServerTypesServerTypeResult(dict):
2361
2440
 
2362
2441
  @_builtins.property
2363
2442
  @pulumi.getter(name="isDeprecated")
2443
+ @_utilities.deprecated("""The field is deprecated and will gradually be phased out starting 2025-09-24. Use the deprecation in the locations list instead.""")
2364
2444
  def is_deprecated(self) -> _builtins.bool:
2365
2445
  """
2366
2446
  Whether the Server Type is deprecated.
2367
2447
  """
2368
2448
  return pulumi.get(self, "is_deprecated")
2369
2449
 
2450
+ @_builtins.property
2451
+ @pulumi.getter
2452
+ def locations(self) -> Sequence['outputs.GetServerTypesServerTypeLocationResult']:
2453
+ """
2454
+ List of supported Locations for this Server Type.
2455
+ """
2456
+ return pulumi.get(self, "locations")
2457
+
2370
2458
  @_builtins.property
2371
2459
  @pulumi.getter
2372
2460
  def memory(self) -> _builtins.int:
@@ -2391,6 +2479,69 @@ class GetServerTypesServerTypeResult(dict):
2391
2479
  """
2392
2480
  return pulumi.get(self, "storage_type")
2393
2481
 
2482
+ @_builtins.property
2483
+ @pulumi.getter(name="unavailableAfter")
2484
+ @_utilities.deprecated("""The field is deprecated and will gradually be phased out starting 2025-09-24. Use the deprecation in the locations list instead.""")
2485
+ def unavailable_after(self) -> _builtins.str:
2486
+ """
2487
+ Date of the Server Type removal. After this date, the Server Type cannot be used anymore.
2488
+ """
2489
+ return pulumi.get(self, "unavailable_after")
2490
+
2491
+
2492
+ @pulumi.output_type
2493
+ class GetServerTypesServerTypeLocationResult(dict):
2494
+ def __init__(__self__, *,
2495
+ deprecation_announced: _builtins.str,
2496
+ id: _builtins.int,
2497
+ is_deprecated: _builtins.bool,
2498
+ name: _builtins.str,
2499
+ unavailable_after: _builtins.str):
2500
+ """
2501
+ :param _builtins.str deprecation_announced: Date of the Server Type deprecation announcement.
2502
+ :param _builtins.int id: ID of the Location.
2503
+ :param _builtins.bool is_deprecated: Whether the Server Type is deprecated.
2504
+ :param _builtins.str name: Name of the Location.
2505
+ :param _builtins.str unavailable_after: Date of the Server Type removal. After this date, the Server Type cannot be used anymore.
2506
+ """
2507
+ pulumi.set(__self__, "deprecation_announced", deprecation_announced)
2508
+ pulumi.set(__self__, "id", id)
2509
+ pulumi.set(__self__, "is_deprecated", is_deprecated)
2510
+ pulumi.set(__self__, "name", name)
2511
+ pulumi.set(__self__, "unavailable_after", unavailable_after)
2512
+
2513
+ @_builtins.property
2514
+ @pulumi.getter(name="deprecationAnnounced")
2515
+ def deprecation_announced(self) -> _builtins.str:
2516
+ """
2517
+ Date of the Server Type deprecation announcement.
2518
+ """
2519
+ return pulumi.get(self, "deprecation_announced")
2520
+
2521
+ @_builtins.property
2522
+ @pulumi.getter
2523
+ def id(self) -> _builtins.int:
2524
+ """
2525
+ ID of the Location.
2526
+ """
2527
+ return pulumi.get(self, "id")
2528
+
2529
+ @_builtins.property
2530
+ @pulumi.getter(name="isDeprecated")
2531
+ def is_deprecated(self) -> _builtins.bool:
2532
+ """
2533
+ Whether the Server Type is deprecated.
2534
+ """
2535
+ return pulumi.get(self, "is_deprecated")
2536
+
2537
+ @_builtins.property
2538
+ @pulumi.getter
2539
+ def name(self) -> _builtins.str:
2540
+ """
2541
+ Name of the Location.
2542
+ """
2543
+ return pulumi.get(self, "name")
2544
+
2394
2545
  @_builtins.property
2395
2546
  @pulumi.getter(name="unavailableAfter")
2396
2547
  def unavailable_after(self) -> _builtins.str:
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "hcloud",
4
- "version": "1.25.0-alpha.1758693790"
4
+ "version": "1.25.0-alpha.1758943464"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_hcloud
3
- Version: 1.25.0a1758693790
3
+ Version: 1.25.0a1758943464
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
@@ -29,7 +29,7 @@ pulumi_hcloud/get_placement_groups.py,sha256=-Q9zgSP70Q4RfwsujfLoUQyuJF9-muUBDw9
29
29
  pulumi_hcloud/get_primary_ip.py,sha256=zl3ein_pTRQv44djQUxGYSBv1OyXOPNrnZ5xTDFDwNc,13129
30
30
  pulumi_hcloud/get_primary_ips.py,sha256=ISWAFO2WjDUBAL1lqpyT6sQLsfUeH2lNa0CkM4GGWfg,4531
31
31
  pulumi_hcloud/get_server.py,sha256=2MzRkZYGoaPxIpkud8mmeb1ADz3qpSfFVlYAsS5PAPE,19603
32
- pulumi_hcloud/get_server_type.py,sha256=ap-_fRr04MczDdUGvZWuwQCSkBlPOpd80EPtf37Q9WQ,11004
32
+ pulumi_hcloud/get_server_type.py,sha256=z-QkHBrXA-yK3gXTxVXibpikUjJwzH6dYZE74rHPwcQ,12634
33
33
  pulumi_hcloud/get_server_types.py,sha256=QPvZsdouhCeVEWAgSOk8aHEN27vPOI_vMtKY8O0FT1w,5065
34
34
  pulumi_hcloud/get_servers.py,sha256=HtAEc6WwuJHUWIl9BTe2SPyXyubDVWuQgCyPhAOm5g0,5674
35
35
  pulumi_hcloud/get_ssh_key.py,sha256=sAAVDcUuA-SQBDY144DDVsrmvfQoPcXrAo9Vht4vkbY,8728
@@ -44,11 +44,11 @@ pulumi_hcloud/managed_certificate.py,sha256=q6gAyJl00PjDHJjaBs_vvEPt8TAb-Yiczqiv
44
44
  pulumi_hcloud/network.py,sha256=EBySDBb29ONLN6-BuRSvopEZINVfYwMf2aBm3Qh6LoI,17773
45
45
  pulumi_hcloud/network_route.py,sha256=901fDIx0Xu6MDK4bx1BJz46xCvrsru3bO0l5PdB7nm4,14110
46
46
  pulumi_hcloud/network_subnet.py,sha256=uvsqAGEV9Izwx1HgsGYloadkWoAH5CGcZjkiYZYSRKs,17309
47
- pulumi_hcloud/outputs.py,sha256=bUs9OA-1C4Rny79i2C0nZrJTxd_jSZHWP403-uH3fKM,98599
47
+ pulumi_hcloud/outputs.py,sha256=XpSYoXHDUT-0WH1Sr4R8H0bSaNh0zflOB_RtfTzOnFE,104465
48
48
  pulumi_hcloud/placement_group.py,sha256=YDpB8TVfelSUqcBwsUDigJoww5amPVHNQBHM0IGOovs,12340
49
49
  pulumi_hcloud/primary_ip.py,sha256=Ask82YuOme6GnPyGYeze_j7redqzBdp1Eh1tubvtH3Y,29214
50
50
  pulumi_hcloud/provider.py,sha256=JwgeLIqko4xAqlyBC1WbPXRSllosqUgtDqrbAobdU8I,10369
51
- pulumi_hcloud/pulumi-plugin.json,sha256=0RE0KX-m8zI2IFliWV27-HpqnoMTpPp-hBrKD_LA6Rk,83
51
+ pulumi_hcloud/pulumi-plugin.json,sha256=DmBzuIxz6x91z1heZ_Mr2zsdVMTQU1BtAR64PRNkzak,83
52
52
  pulumi_hcloud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
53
  pulumi_hcloud/rdns.py,sha256=YZyg0fCx-x_TDnBCjS5rEMC5qaLTMkq2Iy9KJ2tjJOA,22584
54
54
  pulumi_hcloud/server.py,sha256=a9N01wV-hE661SYiWbwVZekIRtenDGtOALwJXqAfgb0,75248
@@ -61,7 +61,7 @@ pulumi_hcloud/volume_attachment.py,sha256=1D7jZdsSUo-Ocds6m4TPMPxB7TCoj2s9D53RAp
61
61
  pulumi_hcloud/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
62
62
  pulumi_hcloud/config/__init__.pyi,sha256=ufVor_wstIKKnZ0S9aCsZe6gbc5M9vCuvve3c8p51GY,1047
63
63
  pulumi_hcloud/config/vars.py,sha256=Wzm5__XfmXh6WYf1oNXdtK329kfQoTenlg_hSj-J9MI,1578
64
- pulumi_hcloud-1.25.0a1758693790.dist-info/METADATA,sha256=l-ji8DIeR5H4bdNOSrGpO6DGYB_RhvRW8rQJIp3XIu4,2123
65
- pulumi_hcloud-1.25.0a1758693790.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
66
- pulumi_hcloud-1.25.0a1758693790.dist-info/top_level.txt,sha256=1P62wdJ9bVotT2lSpU9iMUl24bR9TwEGl2JyhNg4Xy8,14
67
- pulumi_hcloud-1.25.0a1758693790.dist-info/RECORD,,
64
+ pulumi_hcloud-1.25.0a1758943464.dist-info/METADATA,sha256=h5DkVflmz66KsU84sO4NTy8wnxLvW_FT-PwXgzhq9qw,2123
65
+ pulumi_hcloud-1.25.0a1758943464.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
66
+ pulumi_hcloud-1.25.0a1758943464.dist-info/top_level.txt,sha256=1P62wdJ9bVotT2lSpU9iMUl24bR9TwEGl2JyhNg4Xy8,14
67
+ pulumi_hcloud-1.25.0a1758943464.dist-info/RECORD,,