pulumi-vsphere 4.11.0a1715339766__py3-none-any.whl → 4.11.0a1715362101__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-vsphere might be problematic. Click here for more details.

@@ -0,0 +1,440 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from . import _utilities
11
+
12
+ __all__ = ['VirtualMachineClassArgs', 'VirtualMachineClass']
13
+
14
+ @pulumi.input_type
15
+ class VirtualMachineClassArgs:
16
+ def __init__(__self__, *,
17
+ cpus: pulumi.Input[int],
18
+ memory: pulumi.Input[int],
19
+ cpu_reservation: Optional[pulumi.Input[int]] = None,
20
+ memory_reservation: Optional[pulumi.Input[int]] = None,
21
+ name: Optional[pulumi.Input[str]] = None,
22
+ vgpu_devices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
23
+ """
24
+ The set of arguments for constructing a VirtualMachineClass resource.
25
+ :param pulumi.Input[int] cpus: The number of CPUs.
26
+ :param pulumi.Input[int] memory: The amount of memory in MB.
27
+ :param pulumi.Input[int] cpu_reservation: The percentage of the available CPU capacity which will be reserved.
28
+ :param pulumi.Input[int] memory_reservation: The percentage of memory reservation.
29
+ :param pulumi.Input[str] name: The name for the class.
30
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] vgpu_devices: The identifiers of the vGPU devices for the class. If this is set memory reservation needs to be 100.
31
+ """
32
+ pulumi.set(__self__, "cpus", cpus)
33
+ pulumi.set(__self__, "memory", memory)
34
+ if cpu_reservation is not None:
35
+ pulumi.set(__self__, "cpu_reservation", cpu_reservation)
36
+ if memory_reservation is not None:
37
+ pulumi.set(__self__, "memory_reservation", memory_reservation)
38
+ if name is not None:
39
+ pulumi.set(__self__, "name", name)
40
+ if vgpu_devices is not None:
41
+ pulumi.set(__self__, "vgpu_devices", vgpu_devices)
42
+
43
+ @property
44
+ @pulumi.getter
45
+ def cpus(self) -> pulumi.Input[int]:
46
+ """
47
+ The number of CPUs.
48
+ """
49
+ return pulumi.get(self, "cpus")
50
+
51
+ @cpus.setter
52
+ def cpus(self, value: pulumi.Input[int]):
53
+ pulumi.set(self, "cpus", value)
54
+
55
+ @property
56
+ @pulumi.getter
57
+ def memory(self) -> pulumi.Input[int]:
58
+ """
59
+ The amount of memory in MB.
60
+ """
61
+ return pulumi.get(self, "memory")
62
+
63
+ @memory.setter
64
+ def memory(self, value: pulumi.Input[int]):
65
+ pulumi.set(self, "memory", value)
66
+
67
+ @property
68
+ @pulumi.getter(name="cpuReservation")
69
+ def cpu_reservation(self) -> Optional[pulumi.Input[int]]:
70
+ """
71
+ The percentage of the available CPU capacity which will be reserved.
72
+ """
73
+ return pulumi.get(self, "cpu_reservation")
74
+
75
+ @cpu_reservation.setter
76
+ def cpu_reservation(self, value: Optional[pulumi.Input[int]]):
77
+ pulumi.set(self, "cpu_reservation", value)
78
+
79
+ @property
80
+ @pulumi.getter(name="memoryReservation")
81
+ def memory_reservation(self) -> Optional[pulumi.Input[int]]:
82
+ """
83
+ The percentage of memory reservation.
84
+ """
85
+ return pulumi.get(self, "memory_reservation")
86
+
87
+ @memory_reservation.setter
88
+ def memory_reservation(self, value: Optional[pulumi.Input[int]]):
89
+ pulumi.set(self, "memory_reservation", value)
90
+
91
+ @property
92
+ @pulumi.getter
93
+ def name(self) -> Optional[pulumi.Input[str]]:
94
+ """
95
+ The name for the class.
96
+ """
97
+ return pulumi.get(self, "name")
98
+
99
+ @name.setter
100
+ def name(self, value: Optional[pulumi.Input[str]]):
101
+ pulumi.set(self, "name", value)
102
+
103
+ @property
104
+ @pulumi.getter(name="vgpuDevices")
105
+ def vgpu_devices(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
106
+ """
107
+ The identifiers of the vGPU devices for the class. If this is set memory reservation needs to be 100.
108
+ """
109
+ return pulumi.get(self, "vgpu_devices")
110
+
111
+ @vgpu_devices.setter
112
+ def vgpu_devices(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
113
+ pulumi.set(self, "vgpu_devices", value)
114
+
115
+
116
+ @pulumi.input_type
117
+ class _VirtualMachineClassState:
118
+ def __init__(__self__, *,
119
+ cpu_reservation: Optional[pulumi.Input[int]] = None,
120
+ cpus: Optional[pulumi.Input[int]] = None,
121
+ memory: Optional[pulumi.Input[int]] = None,
122
+ memory_reservation: Optional[pulumi.Input[int]] = None,
123
+ name: Optional[pulumi.Input[str]] = None,
124
+ vgpu_devices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
125
+ """
126
+ Input properties used for looking up and filtering VirtualMachineClass resources.
127
+ :param pulumi.Input[int] cpu_reservation: The percentage of the available CPU capacity which will be reserved.
128
+ :param pulumi.Input[int] cpus: The number of CPUs.
129
+ :param pulumi.Input[int] memory: The amount of memory in MB.
130
+ :param pulumi.Input[int] memory_reservation: The percentage of memory reservation.
131
+ :param pulumi.Input[str] name: The name for the class.
132
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] vgpu_devices: The identifiers of the vGPU devices for the class. If this is set memory reservation needs to be 100.
133
+ """
134
+ if cpu_reservation is not None:
135
+ pulumi.set(__self__, "cpu_reservation", cpu_reservation)
136
+ if cpus is not None:
137
+ pulumi.set(__self__, "cpus", cpus)
138
+ if memory is not None:
139
+ pulumi.set(__self__, "memory", memory)
140
+ if memory_reservation is not None:
141
+ pulumi.set(__self__, "memory_reservation", memory_reservation)
142
+ if name is not None:
143
+ pulumi.set(__self__, "name", name)
144
+ if vgpu_devices is not None:
145
+ pulumi.set(__self__, "vgpu_devices", vgpu_devices)
146
+
147
+ @property
148
+ @pulumi.getter(name="cpuReservation")
149
+ def cpu_reservation(self) -> Optional[pulumi.Input[int]]:
150
+ """
151
+ The percentage of the available CPU capacity which will be reserved.
152
+ """
153
+ return pulumi.get(self, "cpu_reservation")
154
+
155
+ @cpu_reservation.setter
156
+ def cpu_reservation(self, value: Optional[pulumi.Input[int]]):
157
+ pulumi.set(self, "cpu_reservation", value)
158
+
159
+ @property
160
+ @pulumi.getter
161
+ def cpus(self) -> Optional[pulumi.Input[int]]:
162
+ """
163
+ The number of CPUs.
164
+ """
165
+ return pulumi.get(self, "cpus")
166
+
167
+ @cpus.setter
168
+ def cpus(self, value: Optional[pulumi.Input[int]]):
169
+ pulumi.set(self, "cpus", value)
170
+
171
+ @property
172
+ @pulumi.getter
173
+ def memory(self) -> Optional[pulumi.Input[int]]:
174
+ """
175
+ The amount of memory in MB.
176
+ """
177
+ return pulumi.get(self, "memory")
178
+
179
+ @memory.setter
180
+ def memory(self, value: Optional[pulumi.Input[int]]):
181
+ pulumi.set(self, "memory", value)
182
+
183
+ @property
184
+ @pulumi.getter(name="memoryReservation")
185
+ def memory_reservation(self) -> Optional[pulumi.Input[int]]:
186
+ """
187
+ The percentage of memory reservation.
188
+ """
189
+ return pulumi.get(self, "memory_reservation")
190
+
191
+ @memory_reservation.setter
192
+ def memory_reservation(self, value: Optional[pulumi.Input[int]]):
193
+ pulumi.set(self, "memory_reservation", value)
194
+
195
+ @property
196
+ @pulumi.getter
197
+ def name(self) -> Optional[pulumi.Input[str]]:
198
+ """
199
+ The name for the class.
200
+ """
201
+ return pulumi.get(self, "name")
202
+
203
+ @name.setter
204
+ def name(self, value: Optional[pulumi.Input[str]]):
205
+ pulumi.set(self, "name", value)
206
+
207
+ @property
208
+ @pulumi.getter(name="vgpuDevices")
209
+ def vgpu_devices(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
210
+ """
211
+ The identifiers of the vGPU devices for the class. If this is set memory reservation needs to be 100.
212
+ """
213
+ return pulumi.get(self, "vgpu_devices")
214
+
215
+ @vgpu_devices.setter
216
+ def vgpu_devices(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
217
+ pulumi.set(self, "vgpu_devices", value)
218
+
219
+
220
+ class VirtualMachineClass(pulumi.CustomResource):
221
+ @overload
222
+ def __init__(__self__,
223
+ resource_name: str,
224
+ opts: Optional[pulumi.ResourceOptions] = None,
225
+ cpu_reservation: Optional[pulumi.Input[int]] = None,
226
+ cpus: Optional[pulumi.Input[int]] = None,
227
+ memory: Optional[pulumi.Input[int]] = None,
228
+ memory_reservation: Optional[pulumi.Input[int]] = None,
229
+ name: Optional[pulumi.Input[str]] = None,
230
+ vgpu_devices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
231
+ __props__=None):
232
+ """
233
+ Provides a resource for configuring a Virtual Machine class.
234
+
235
+ ## Example Usage
236
+
237
+ ### S
238
+
239
+ **Create a basic class**
240
+
241
+ ```python
242
+ import pulumi
243
+ import pulumi_vsphere as vsphere
244
+
245
+ basic_class = vsphere.VirtualMachineClass("basic_class",
246
+ name="basic-class",
247
+ cpus=4,
248
+ memory=4096)
249
+ ```
250
+
251
+ **Create a class with a vGPU**
252
+ ```python
253
+ import pulumi
254
+ import pulumi_vsphere as vsphere
255
+
256
+ vgp_class = vsphere.VirtualMachineClass("vgp_class",
257
+ name="vgpu-class",
258
+ cpus=4,
259
+ memory=4096,
260
+ memory_reservation=100,
261
+ vgpu_devices=["vgpu1"])
262
+ ```
263
+
264
+ :param str resource_name: The name of the resource.
265
+ :param pulumi.ResourceOptions opts: Options for the resource.
266
+ :param pulumi.Input[int] cpu_reservation: The percentage of the available CPU capacity which will be reserved.
267
+ :param pulumi.Input[int] cpus: The number of CPUs.
268
+ :param pulumi.Input[int] memory: The amount of memory in MB.
269
+ :param pulumi.Input[int] memory_reservation: The percentage of memory reservation.
270
+ :param pulumi.Input[str] name: The name for the class.
271
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] vgpu_devices: The identifiers of the vGPU devices for the class. If this is set memory reservation needs to be 100.
272
+ """
273
+ ...
274
+ @overload
275
+ def __init__(__self__,
276
+ resource_name: str,
277
+ args: VirtualMachineClassArgs,
278
+ opts: Optional[pulumi.ResourceOptions] = None):
279
+ """
280
+ Provides a resource for configuring a Virtual Machine class.
281
+
282
+ ## Example Usage
283
+
284
+ ### S
285
+
286
+ **Create a basic class**
287
+
288
+ ```python
289
+ import pulumi
290
+ import pulumi_vsphere as vsphere
291
+
292
+ basic_class = vsphere.VirtualMachineClass("basic_class",
293
+ name="basic-class",
294
+ cpus=4,
295
+ memory=4096)
296
+ ```
297
+
298
+ **Create a class with a vGPU**
299
+ ```python
300
+ import pulumi
301
+ import pulumi_vsphere as vsphere
302
+
303
+ vgp_class = vsphere.VirtualMachineClass("vgp_class",
304
+ name="vgpu-class",
305
+ cpus=4,
306
+ memory=4096,
307
+ memory_reservation=100,
308
+ vgpu_devices=["vgpu1"])
309
+ ```
310
+
311
+ :param str resource_name: The name of the resource.
312
+ :param VirtualMachineClassArgs args: The arguments to use to populate this resource's properties.
313
+ :param pulumi.ResourceOptions opts: Options for the resource.
314
+ """
315
+ ...
316
+ def __init__(__self__, resource_name: str, *args, **kwargs):
317
+ resource_args, opts = _utilities.get_resource_args_opts(VirtualMachineClassArgs, pulumi.ResourceOptions, *args, **kwargs)
318
+ if resource_args is not None:
319
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
320
+ else:
321
+ __self__._internal_init(resource_name, *args, **kwargs)
322
+
323
+ def _internal_init(__self__,
324
+ resource_name: str,
325
+ opts: Optional[pulumi.ResourceOptions] = None,
326
+ cpu_reservation: Optional[pulumi.Input[int]] = None,
327
+ cpus: Optional[pulumi.Input[int]] = None,
328
+ memory: Optional[pulumi.Input[int]] = None,
329
+ memory_reservation: Optional[pulumi.Input[int]] = None,
330
+ name: Optional[pulumi.Input[str]] = None,
331
+ vgpu_devices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
332
+ __props__=None):
333
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
334
+ if not isinstance(opts, pulumi.ResourceOptions):
335
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
336
+ if opts.id is None:
337
+ if __props__ is not None:
338
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
339
+ __props__ = VirtualMachineClassArgs.__new__(VirtualMachineClassArgs)
340
+
341
+ __props__.__dict__["cpu_reservation"] = cpu_reservation
342
+ if cpus is None and not opts.urn:
343
+ raise TypeError("Missing required property 'cpus'")
344
+ __props__.__dict__["cpus"] = cpus
345
+ if memory is None and not opts.urn:
346
+ raise TypeError("Missing required property 'memory'")
347
+ __props__.__dict__["memory"] = memory
348
+ __props__.__dict__["memory_reservation"] = memory_reservation
349
+ __props__.__dict__["name"] = name
350
+ __props__.__dict__["vgpu_devices"] = vgpu_devices
351
+ super(VirtualMachineClass, __self__).__init__(
352
+ 'vsphere:index/virtualMachineClass:VirtualMachineClass',
353
+ resource_name,
354
+ __props__,
355
+ opts)
356
+
357
+ @staticmethod
358
+ def get(resource_name: str,
359
+ id: pulumi.Input[str],
360
+ opts: Optional[pulumi.ResourceOptions] = None,
361
+ cpu_reservation: Optional[pulumi.Input[int]] = None,
362
+ cpus: Optional[pulumi.Input[int]] = None,
363
+ memory: Optional[pulumi.Input[int]] = None,
364
+ memory_reservation: Optional[pulumi.Input[int]] = None,
365
+ name: Optional[pulumi.Input[str]] = None,
366
+ vgpu_devices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None) -> 'VirtualMachineClass':
367
+ """
368
+ Get an existing VirtualMachineClass resource's state with the given name, id, and optional extra
369
+ properties used to qualify the lookup.
370
+
371
+ :param str resource_name: The unique name of the resulting resource.
372
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
373
+ :param pulumi.ResourceOptions opts: Options for the resource.
374
+ :param pulumi.Input[int] cpu_reservation: The percentage of the available CPU capacity which will be reserved.
375
+ :param pulumi.Input[int] cpus: The number of CPUs.
376
+ :param pulumi.Input[int] memory: The amount of memory in MB.
377
+ :param pulumi.Input[int] memory_reservation: The percentage of memory reservation.
378
+ :param pulumi.Input[str] name: The name for the class.
379
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] vgpu_devices: The identifiers of the vGPU devices for the class. If this is set memory reservation needs to be 100.
380
+ """
381
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
382
+
383
+ __props__ = _VirtualMachineClassState.__new__(_VirtualMachineClassState)
384
+
385
+ __props__.__dict__["cpu_reservation"] = cpu_reservation
386
+ __props__.__dict__["cpus"] = cpus
387
+ __props__.__dict__["memory"] = memory
388
+ __props__.__dict__["memory_reservation"] = memory_reservation
389
+ __props__.__dict__["name"] = name
390
+ __props__.__dict__["vgpu_devices"] = vgpu_devices
391
+ return VirtualMachineClass(resource_name, opts=opts, __props__=__props__)
392
+
393
+ @property
394
+ @pulumi.getter(name="cpuReservation")
395
+ def cpu_reservation(self) -> pulumi.Output[Optional[int]]:
396
+ """
397
+ The percentage of the available CPU capacity which will be reserved.
398
+ """
399
+ return pulumi.get(self, "cpu_reservation")
400
+
401
+ @property
402
+ @pulumi.getter
403
+ def cpus(self) -> pulumi.Output[int]:
404
+ """
405
+ The number of CPUs.
406
+ """
407
+ return pulumi.get(self, "cpus")
408
+
409
+ @property
410
+ @pulumi.getter
411
+ def memory(self) -> pulumi.Output[int]:
412
+ """
413
+ The amount of memory in MB.
414
+ """
415
+ return pulumi.get(self, "memory")
416
+
417
+ @property
418
+ @pulumi.getter(name="memoryReservation")
419
+ def memory_reservation(self) -> pulumi.Output[Optional[int]]:
420
+ """
421
+ The percentage of memory reservation.
422
+ """
423
+ return pulumi.get(self, "memory_reservation")
424
+
425
+ @property
426
+ @pulumi.getter
427
+ def name(self) -> pulumi.Output[str]:
428
+ """
429
+ The name for the class.
430
+ """
431
+ return pulumi.get(self, "name")
432
+
433
+ @property
434
+ @pulumi.getter(name="vgpuDevices")
435
+ def vgpu_devices(self) -> pulumi.Output[Optional[Sequence[str]]]:
436
+ """
437
+ The identifiers of the vGPU devices for the class. If this is set memory reservation needs to be 100.
438
+ """
439
+ return pulumi.get(self, "vgpu_devices")
440
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_vsphere
3
- Version: 4.11.0a1715339766
3
+ Version: 4.11.0a1715362101
4
4
  Summary: A Pulumi package for creating vsphere resources
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -1,7 +1,7 @@
1
- pulumi_vsphere/__init__.py,sha256=D0xUdIG9TzexthoPimJXUxoqiIfxr5H0lOHIAJhhsjE,10114
2
- pulumi_vsphere/_inputs.py,sha256=A-AOdN3vdiKw2uby1zoJFhf68yNyHP-marLknmDO2vU,125235
1
+ pulumi_vsphere/__init__.py,sha256=7zI4b3F2NEW8hz7TIVEWb1MZI_HqHV4GUM2o9lJKez0,10798
2
+ pulumi_vsphere/_inputs.py,sha256=ixkfGk_Yv3BJXWUEX2vtyKxe-1k_g501JLA0LCRjsAE,140246
3
3
  pulumi_vsphere/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
4
- pulumi_vsphere/compute_cluster.py,sha256=4R4A8J41iSG3xpfYd8kSpeDtte3E_HmOf9iqEJf82yA,223844
4
+ pulumi_vsphere/compute_cluster.py,sha256=FLa9KrvlULmst9Cip4LkGhKmxnM_6-x2bwHkjvxMRPs,226411
5
5
  pulumi_vsphere/compute_cluster_host_group.py,sha256=QUCBKwC2RaJI6ZuC_qBDZJl5gey-rs3iVsbPrFFK-1g,13437
6
6
  pulumi_vsphere/compute_cluster_vm_affinity_rule.py,sha256=UuLsBkI_YfSdpuGVMurBxC_if3nbjKGZwryeQNkIRGw,25317
7
7
  pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py,sha256=-5K0E6HRhIWGBKAcMZsqXNFQLWIAhJs07_PKVi-3PBg,17554
@@ -20,7 +20,7 @@ pulumi_vsphere/dpm_host_override.py,sha256=i3eG4PkI3Hi2KodP6OFAGC6QLczmNDRcSIt9M
20
20
  pulumi_vsphere/drs_vm_override.py,sha256=qGlUe9gq9StYW4OHDSZKA03j0ru3Ruvb9SEaVcpHo1c,16657
21
21
  pulumi_vsphere/entity_permissions.py,sha256=uPVnBk47c6csM0kQLwJC3Niml9uCTq23KGOfhNyNrrk,12429
22
22
  pulumi_vsphere/file.py,sha256=uJeBCHJ2IXJO6Dj5vYeZvkYaHNNoWhkQ6PzmWVwkRIE,23397
23
- pulumi_vsphere/folder.py,sha256=wCsVzpLVQn5tbx0kn4hKNUBxQpalVn9ydGemsbz_MLc,25630
23
+ pulumi_vsphere/folder.py,sha256=YP47W3BA_1Z8prCz2NTwMQlyxIHesu5o4FpT3XIkozY,25623
24
24
  pulumi_vsphere/get_compute_cluster.py,sha256=nBgxOLhF9RV5vGGwgCxeNCyVNKr_tQi44VnaBhBbX1M,5997
25
25
  pulumi_vsphere/get_compute_cluster_host_group.py,sha256=J-pjwUhXIc4f0S9swi-UaNszb0c8x4m7Ja5wsgLr4gw,6174
26
26
  pulumi_vsphere/get_content_library.py,sha256=r1v63MViQ-uXD92M81VCWv-6dzpmB82AHjDytMR6x6I,3218
@@ -32,9 +32,10 @@ pulumi_vsphere/get_datastore_cluster.py,sha256=4nkwUsNLdqWIoxYhiFzkFoYjr4zyOf-5U
32
32
  pulumi_vsphere/get_datastore_stats.py,sha256=2WAAe8o9BQL6Uq3jsPUd4MOx2quy_Cw-_okOBqIGKI0,7625
33
33
  pulumi_vsphere/get_distributed_virtual_switch.py,sha256=icwEpCtIYmPBXvT_3M_dHV0fjwPzbR7cQWQtN-75F0c,6922
34
34
  pulumi_vsphere/get_dynamic.py,sha256=-s--cho8svTCbBr9C2jvqPuhyV39CVpWWyGgfwwDx2c,5974
35
- pulumi_vsphere/get_folder.py,sha256=7g9DRvEFP2WEudM8PEZFApsCpgKLzABYEqo4ixznkGA,3625
35
+ pulumi_vsphere/get_folder.py,sha256=rkdRDdJGuZpbcuA1PIVYr90vSTZIk26L-FCSql1H7rE,3999
36
36
  pulumi_vsphere/get_guest_os_customization.py,sha256=IWLONiIdg-z06VbYAVL-fBBoQjRiVw7NQVa4DNf32ck,6370
37
37
  pulumi_vsphere/get_host.py,sha256=aZ-2kism0hoSyeCGALJr759ILDrk2ohDskmexXRwSb8,5200
38
+ pulumi_vsphere/get_host_base_images.py,sha256=Z3sBapAoI6XeUs6XxWEAwtfb-8ka_uEUjmtbRy0jucw,2934
38
39
  pulumi_vsphere/get_host_pci_device.py,sha256=LCow2auxsoSB7p45FnQ4u0WDGUJTjyXrxcvQ2ZpSoqE,7612
39
40
  pulumi_vsphere/get_host_thumbprint.py,sha256=Xj4plQOyPh5QXBFZFQFhR8VULbuozkWISNDuCdCizhM,4963
40
41
  pulumi_vsphere/get_host_vgpu_profile.py,sha256=afbe_YuQVS676bCz96W0d-3VrPqYY0Cxa0j5dFo8xJ8,6348
@@ -56,19 +57,22 @@ pulumi_vsphere/host_port_group.py,sha256=jtSm7mmPU0SWP54n-dr_5fgEHz6Y3fHb5YNl_Ar
56
57
  pulumi_vsphere/host_virtual_switch.py,sha256=WTZtqM4GDzLIcmviM_fQ47SHNXQrEHVqV0q3wEB0sFA,57317
57
58
  pulumi_vsphere/license.py,sha256=4IhaSHnAjOFSlSKu4AYGcbraULzzTRASs29wB7nw7aU,12022
58
59
  pulumi_vsphere/nas_datastore.py,sha256=X5PeUipclE4MG0uHS_SlmpaHBrz4jtaLhVEfOybjYQY,48202
59
- pulumi_vsphere/outputs.py,sha256=SJymtFJHp5nI8qOSAHVzyN4RTgS3NZ2I1Te_LOTK-e4,139415
60
+ pulumi_vsphere/offline_software_depot.py,sha256=GKoYb1AzKVXA34GNOIvrcslSHN7IVySWAkDZ-APVkLc,7319
61
+ pulumi_vsphere/outputs.py,sha256=pHQWKY3l15rEvlhXYBFL8IRAztYGlPwFJqXnK_R8XJg,153273
60
62
  pulumi_vsphere/provider.py,sha256=ljEs3n-BiTMtFb7qqPn6YDZh3M-L5Oq2LAbX1QfV274,20511
61
63
  pulumi_vsphere/pulumi-plugin.json,sha256=GPkzWdIfUGLp-CeSzzIZ8ksrThmeZnOYMcpaT3JCpTU,44
62
64
  pulumi_vsphere/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
63
65
  pulumi_vsphere/resource_pool.py,sha256=WMj87tZbw5JBb-wAcvncdnVY8FvmDHpy0go7Go5fNvg,54815
64
66
  pulumi_vsphere/role.py,sha256=kO9DfdLWHq5bfwD0EBAsZuWQxrcX7amJBVUrfREHf3c,8528
65
67
  pulumi_vsphere/storage_drs_vm_override.py,sha256=f1DoLBiMk4_JQdPaemv5RW6xPksw5p4w-AFLZsC6Jr8,20828
68
+ pulumi_vsphere/supervisor.py,sha256=HeS61exRz8wkjxoapwlkDjvhpR-zY28BWID10NRm4fM,42959
66
69
  pulumi_vsphere/tag.py,sha256=gF7uOgj1Xm_k2cV7YIiwBGakQvhi-jlsNYKDm7JDFWw,9943
67
70
  pulumi_vsphere/tag_category.py,sha256=FzqdUOMwmAo7W6Xuw3-CByCbBSmsvkCGXiLRaMUVVQ4,15120
68
71
  pulumi_vsphere/vapp_container.py,sha256=1On1t7PnLEqnQvNIt1XIh9VFu7LaSegyRyDaJf8lQmQ,48255
69
72
  pulumi_vsphere/vapp_entity.py,sha256=JePz7OF__e1x7aFp_9I257S61HnDT7gdHsWK-u17nlM,29555
70
73
  pulumi_vsphere/virtual_disk.py,sha256=wFycNUG7WdYogDgWDRc5zP1u9n2afPtQOUiX_987ito,28633
71
74
  pulumi_vsphere/virtual_machine.py,sha256=it5F-ML0tRVEsXti0MNLi6eqoUvSYlNVot1tt23IA2U,214932
75
+ pulumi_vsphere/virtual_machine_class.py,sha256=PuDyxZffdDfR3nOouNiXEBkIf-NPiXx0to2z0q_WM8g,17161
72
76
  pulumi_vsphere/virtual_machine_snapshot.py,sha256=znCP8B7dt2lvsEa7nTzzqACttXjQNKWNjxCZGjThYNs,23926
73
77
  pulumi_vsphere/vm_storage_policy.py,sha256=IgoanyDCih8ALdG-wdewI9KvrYfSiew1Z7Xhb3SSqwA,20198
74
78
  pulumi_vsphere/vmfs_datastore.py,sha256=gNhmetE0wMDKMEM_ImATFpnTJhqMEPd0q8eOgqpedr0,34596
@@ -76,7 +80,7 @@ pulumi_vsphere/vnic.py,sha256=uaj0DqvKOflKM4Sb_W6F3TCp1uikL8WhGxWCu4907aw,30503
76
80
  pulumi_vsphere/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
77
81
  pulumi_vsphere/config/__init__.pyi,sha256=ZO6ktIIpO1bKQNe2__l8JqDti_ZKgnRvHTcXcRWzb0M,1351
78
82
  pulumi_vsphere/config/vars.py,sha256=fcurb1Hwqp3evWnRD4s2t--MUjqR9R11nIm04F1UMW0,3210
79
- pulumi_vsphere-4.11.0a1715339766.dist-info/METADATA,sha256=GrigAJBPa4NnIj_cPxrLY2HSWQXN9alX524PXTOUOEg,4958
80
- pulumi_vsphere-4.11.0a1715339766.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
81
- pulumi_vsphere-4.11.0a1715339766.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
82
- pulumi_vsphere-4.11.0a1715339766.dist-info/RECORD,,
83
+ pulumi_vsphere-4.11.0a1715362101.dist-info/METADATA,sha256=kQF2ldyemAAosC1U6MksfLlYSIhxh-n_xmo5TwDhMRU,4958
84
+ pulumi_vsphere-4.11.0a1715362101.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
85
+ pulumi_vsphere-4.11.0a1715362101.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
86
+ pulumi_vsphere-4.11.0a1715362101.dist-info/RECORD,,