pulumi-vsphere 4.11.0a1__py3-none-any.whl → 4.11.0a1711033215__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.

Files changed (58) hide show
  1. pulumi_vsphere/__init__.py +0 -28
  2. pulumi_vsphere/_inputs.py +230 -554
  3. pulumi_vsphere/compute_cluster.py +1477 -747
  4. pulumi_vsphere/compute_cluster_vm_affinity_rule.py +16 -28
  5. pulumi_vsphere/datacenter.py +12 -26
  6. pulumi_vsphere/datastore_cluster.py +350 -154
  7. pulumi_vsphere/distributed_port_group.py +175 -70
  8. pulumi_vsphere/distributed_virtual_switch.py +805 -308
  9. pulumi_vsphere/file.py +24 -16
  10. pulumi_vsphere/folder.py +7 -7
  11. pulumi_vsphere/get_compute_cluster.py +4 -0
  12. pulumi_vsphere/get_compute_cluster_host_group.py +10 -8
  13. pulumi_vsphere/get_content_library.py +4 -0
  14. pulumi_vsphere/get_custom_attribute.py +4 -0
  15. pulumi_vsphere/get_datacenter.py +4 -0
  16. pulumi_vsphere/get_datastore.py +4 -0
  17. pulumi_vsphere/get_datastore_cluster.py +4 -0
  18. pulumi_vsphere/get_datastore_stats.py +12 -4
  19. pulumi_vsphere/get_distributed_virtual_switch.py +4 -2
  20. pulumi_vsphere/get_dynamic.py +8 -4
  21. pulumi_vsphere/get_folder.py +6 -10
  22. pulumi_vsphere/get_guest_os_customization.py +4 -0
  23. pulumi_vsphere/get_host.py +4 -0
  24. pulumi_vsphere/get_host_pci_device.py +12 -4
  25. pulumi_vsphere/get_host_thumbprint.py +4 -0
  26. pulumi_vsphere/get_host_vgpu_profile.py +8 -0
  27. pulumi_vsphere/get_license.py +4 -0
  28. pulumi_vsphere/get_network.py +4 -0
  29. pulumi_vsphere/get_policy.py +4 -0
  30. pulumi_vsphere/get_resource_pool.py +10 -2
  31. pulumi_vsphere/get_role.py +4 -0
  32. pulumi_vsphere/get_tag.py +4 -0
  33. pulumi_vsphere/get_tag_category.py +4 -0
  34. pulumi_vsphere/get_vapp_container.py +4 -0
  35. pulumi_vsphere/get_virtual_machine.py +8 -0
  36. pulumi_vsphere/get_vmfs_disks.py +4 -0
  37. pulumi_vsphere/guest_os_customization.py +0 -50
  38. pulumi_vsphere/ha_vm_override.py +378 -189
  39. pulumi_vsphere/host.py +20 -0
  40. pulumi_vsphere/host_port_group.py +24 -12
  41. pulumi_vsphere/host_virtual_switch.py +287 -140
  42. pulumi_vsphere/license.py +32 -0
  43. pulumi_vsphere/outputs.py +230 -543
  44. pulumi_vsphere/pulumi-plugin.json +1 -2
  45. pulumi_vsphere/resource_pool.py +22 -48
  46. pulumi_vsphere/virtual_machine.py +807 -578
  47. pulumi_vsphere/virtual_machine_snapshot.py +10 -6
  48. pulumi_vsphere/vm_storage_policy.py +84 -72
  49. pulumi_vsphere/vnic.py +20 -8
  50. {pulumi_vsphere-4.11.0a1.dist-info → pulumi_vsphere-4.11.0a1711033215.dist-info}/METADATA +1 -1
  51. pulumi_vsphere-4.11.0a1711033215.dist-info/RECORD +82 -0
  52. pulumi_vsphere/get_host_base_images.py +0 -97
  53. pulumi_vsphere/offline_software_depot.py +0 -180
  54. pulumi_vsphere/supervisor.py +0 -858
  55. pulumi_vsphere/virtual_machine_class.py +0 -440
  56. pulumi_vsphere-4.11.0a1.dist-info/RECORD +0 -86
  57. {pulumi_vsphere-4.11.0a1.dist-info → pulumi_vsphere-4.11.0a1711033215.dist-info}/WHEEL +0 -0
  58. {pulumi_vsphere-4.11.0a1.dist-info → pulumi_vsphere-4.11.0a1711033215.dist-info}/top_level.txt +0 -0
@@ -1,440 +0,0 @@
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,86 +0,0 @@
1
- pulumi_vsphere/__init__.py,sha256=7zI4b3F2NEW8hz7TIVEWb1MZI_HqHV4GUM2o9lJKez0,10798
2
- pulumi_vsphere/_inputs.py,sha256=ixkfGk_Yv3BJXWUEX2vtyKxe-1k_g501JLA0LCRjsAE,140246
3
- pulumi_vsphere/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
4
- pulumi_vsphere/compute_cluster.py,sha256=FLa9KrvlULmst9Cip4LkGhKmxnM_6-x2bwHkjvxMRPs,226411
5
- pulumi_vsphere/compute_cluster_host_group.py,sha256=QUCBKwC2RaJI6ZuC_qBDZJl5gey-rs3iVsbPrFFK-1g,13437
6
- pulumi_vsphere/compute_cluster_vm_affinity_rule.py,sha256=UuLsBkI_YfSdpuGVMurBxC_if3nbjKGZwryeQNkIRGw,25317
7
- pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py,sha256=-5K0E6HRhIWGBKAcMZsqXNFQLWIAhJs07_PKVi-3PBg,17554
8
- pulumi_vsphere/compute_cluster_vm_dependency_rule.py,sha256=_q1lrkr1pWzl10dGA1PdRSOXibmYvLKBLTdZG0O0YNQ,21613
9
- pulumi_vsphere/compute_cluster_vm_group.py,sha256=l3gk0qAc9UiX6DpkCZl30L6qmTigu4pGo5O1YBJoatU,13459
10
- pulumi_vsphere/compute_cluster_vm_host_rule.py,sha256=Am9PFFU8PghrdOTRbqJzeFS6nLxgX5Pob-SKqCEaY3k,24422
11
- pulumi_vsphere/content_library.py,sha256=-3mst76bjX3vq4izMl8pIlZR2B9RjEG3A0VA7jpOfRc,15087
12
- pulumi_vsphere/content_library_item.py,sha256=qjHPcnsxpNiFOzCPxQXngZXtR1R1RrsqAhdJgpqgZUc,15640
13
- pulumi_vsphere/custom_attribute.py,sha256=wTuv97G4uXpJ9kv_TaKZc1OYj1e_68c9dAsFc9Ds5nQ,9031
14
- pulumi_vsphere/datacenter.py,sha256=VheWVrfjRFZMQjI2M_8dNKG93ixCwuKj1ecGyqNTok0,19614
15
- pulumi_vsphere/datastore_cluster.py,sha256=76rYqp4f7WjBTYtn_1xpb5TE2taxUBSAkGk8z_hrZ4w,82939
16
- pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py,sha256=8eKwKS9ZYaZICVxjNrNLDDBqBKyQqOJmC_nt0jlqYJY,16842
17
- pulumi_vsphere/distributed_port_group.py,sha256=4Lm22mCkYArB_SdSW7sS-_n0QVc-jPQaTburJgPVNic,132133
18
- pulumi_vsphere/distributed_virtual_switch.py,sha256=Hu1MuRC9eZhVYOfGJgnSssDosYsynbUXeUZMxND_c5Q,249390
19
- pulumi_vsphere/dpm_host_override.py,sha256=i3eG4PkI3Hi2KodP6OFAGC6QLczmNDRcSIt9MbK7U1Q,15371
20
- pulumi_vsphere/drs_vm_override.py,sha256=qGlUe9gq9StYW4OHDSZKA03j0ru3Ruvb9SEaVcpHo1c,16657
21
- pulumi_vsphere/entity_permissions.py,sha256=uPVnBk47c6csM0kQLwJC3Niml9uCTq23KGOfhNyNrrk,12429
22
- pulumi_vsphere/file.py,sha256=uJeBCHJ2IXJO6Dj5vYeZvkYaHNNoWhkQ6PzmWVwkRIE,23397
23
- pulumi_vsphere/folder.py,sha256=YP47W3BA_1Z8prCz2NTwMQlyxIHesu5o4FpT3XIkozY,25623
24
- pulumi_vsphere/get_compute_cluster.py,sha256=nBgxOLhF9RV5vGGwgCxeNCyVNKr_tQi44VnaBhBbX1M,5997
25
- pulumi_vsphere/get_compute_cluster_host_group.py,sha256=J-pjwUhXIc4f0S9swi-UaNszb0c8x4m7Ja5wsgLr4gw,6174
26
- pulumi_vsphere/get_content_library.py,sha256=r1v63MViQ-uXD92M81VCWv-6dzpmB82AHjDytMR6x6I,3218
27
- pulumi_vsphere/get_content_library_item.py,sha256=-yztx7VLc3cyG8nwjZ4iA4QbwvVGgL6K81YHOrYHJ4U,4496
28
- pulumi_vsphere/get_custom_attribute.py,sha256=skM0hjQmPyYCQdEgXjbofu9Ulez4ylw9jQKb9g3Zz2I,4354
29
- pulumi_vsphere/get_datacenter.py,sha256=sfXiHyHNnm9S-bUpcbaGw1ei7ZMNJ1-s_lV6Z7B0UH4,4083
30
- pulumi_vsphere/get_datastore.py,sha256=vAkqhKmMU5DEVVgFnaGMb7GL8FTX6aDcg2CIiaOfkO8,5979
31
- pulumi_vsphere/get_datastore_cluster.py,sha256=4nkwUsNLdqWIoxYhiFzkFoYjr4zyOf-5UToK_0vbELg,5157
32
- pulumi_vsphere/get_datastore_stats.py,sha256=2WAAe8o9BQL6Uq3jsPUd4MOx2quy_Cw-_okOBqIGKI0,7625
33
- pulumi_vsphere/get_distributed_virtual_switch.py,sha256=icwEpCtIYmPBXvT_3M_dHV0fjwPzbR7cQWQtN-75F0c,6922
34
- pulumi_vsphere/get_dynamic.py,sha256=-s--cho8svTCbBr9C2jvqPuhyV39CVpWWyGgfwwDx2c,5974
35
- pulumi_vsphere/get_folder.py,sha256=rkdRDdJGuZpbcuA1PIVYr90vSTZIk26L-FCSql1H7rE,3999
36
- pulumi_vsphere/get_guest_os_customization.py,sha256=IWLONiIdg-z06VbYAVL-fBBoQjRiVw7NQVa4DNf32ck,6370
37
- pulumi_vsphere/get_host.py,sha256=aZ-2kism0hoSyeCGALJr759ILDrk2ohDskmexXRwSb8,5200
38
- pulumi_vsphere/get_host_base_images.py,sha256=Z3sBapAoI6XeUs6XxWEAwtfb-8ka_uEUjmtbRy0jucw,2934
39
- pulumi_vsphere/get_host_pci_device.py,sha256=LCow2auxsoSB7p45FnQ4u0WDGUJTjyXrxcvQ2ZpSoqE,7612
40
- pulumi_vsphere/get_host_thumbprint.py,sha256=Xj4plQOyPh5QXBFZFQFhR8VULbuozkWISNDuCdCizhM,4963
41
- pulumi_vsphere/get_host_vgpu_profile.py,sha256=afbe_YuQVS676bCz96W0d-3VrPqYY0Cxa0j5dFo8xJ8,6348
42
- pulumi_vsphere/get_license.py,sha256=NPtNrjcdrDFODRrd6gFnFo9IgVlGOocwrUW24r71lI4,5258
43
- pulumi_vsphere/get_network.py,sha256=bm8QyrAhHs32jZnfwpqMOiSV8Pmyr03DqTMEOMGo-NI,7133
44
- pulumi_vsphere/get_ovf_vm_template.py,sha256=1C3sBBXBAzpxaZBiv4knADbzSNN7XaV3ItNLwRcFwb4,25791
45
- pulumi_vsphere/get_policy.py,sha256=ntQk22TpTCHRg4X5aYx4-oTfxyofEqfywYmFHmCF-II,3425
46
- pulumi_vsphere/get_resource_pool.py,sha256=AYqjQdLIVB_kIcqRx8l14Aey3KebJE_ybTjAdVAAsjU,7257
47
- pulumi_vsphere/get_role.py,sha256=XpjnMAWOVCp9-L8HUkEi5q7KKnQVtbl4jbLG2_XHWPM,5211
48
- pulumi_vsphere/get_tag.py,sha256=NJIo7J9NsSr0SxCScu7QrNn41dWVc5vXAcIQN5VmAj8,4816
49
- pulumi_vsphere/get_tag_category.py,sha256=R-kLcRAuATkFp8PPKt01OGp8lpmceKnRf9lEn_ZJzUk,5034
50
- pulumi_vsphere/get_vapp_container.py,sha256=1OUABHMT3qFbSQRqFBCQNltmuo_OF983GJR09vnJUsY,4473
51
- pulumi_vsphere/get_virtual_machine.py,sha256=tvaOuo8cvtOTXyGxMKaQ8-tKxd5-gBVfQ0cWpfM2LXs,58531
52
- pulumi_vsphere/get_vmfs_disks.py,sha256=KotPjKN7ncgdWzl6qSU1DuuxIxu8BoQ5CLDH1JAgShg,6717
53
- pulumi_vsphere/guest_os_customization.py,sha256=yfWCEDEdo2MIACZwJo7DhbUyLEp8dhYm_b0d7QPwGKs,17018
54
- pulumi_vsphere/ha_vm_override.py,sha256=Z2p_A1fowtS4_UGq-SHP_dfw2ruZuYVMTo5DizkeOEQ,52698
55
- pulumi_vsphere/host.py,sha256=iLAODc_Ez09iYoOZ_opB3xfINe17ZohHnN_ZTq98owc,45815
56
- pulumi_vsphere/host_port_group.py,sha256=jtSm7mmPU0SWP54n-dr_5fgEHz6Y3fHb5YNl_ArRuKE,56940
57
- pulumi_vsphere/host_virtual_switch.py,sha256=WTZtqM4GDzLIcmviM_fQ47SHNXQrEHVqV0q3wEB0sFA,57317
58
- pulumi_vsphere/license.py,sha256=4IhaSHnAjOFSlSKu4AYGcbraULzzTRASs29wB7nw7aU,12022
59
- pulumi_vsphere/nas_datastore.py,sha256=X5PeUipclE4MG0uHS_SlmpaHBrz4jtaLhVEfOybjYQY,48202
60
- pulumi_vsphere/offline_software_depot.py,sha256=GKoYb1AzKVXA34GNOIvrcslSHN7IVySWAkDZ-APVkLc,7319
61
- pulumi_vsphere/outputs.py,sha256=pHQWKY3l15rEvlhXYBFL8IRAztYGlPwFJqXnK_R8XJg,153273
62
- pulumi_vsphere/provider.py,sha256=ljEs3n-BiTMtFb7qqPn6YDZh3M-L5Oq2LAbX1QfV274,20511
63
- pulumi_vsphere/pulumi-plugin.json,sha256=NFN02Cgqt3zP6lw3HH3uZxeX8D4Ufg_TeytUR8x0fOo,75
64
- pulumi_vsphere/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
65
- pulumi_vsphere/resource_pool.py,sha256=WMj87tZbw5JBb-wAcvncdnVY8FvmDHpy0go7Go5fNvg,54815
66
- pulumi_vsphere/role.py,sha256=kO9DfdLWHq5bfwD0EBAsZuWQxrcX7amJBVUrfREHf3c,8528
67
- pulumi_vsphere/storage_drs_vm_override.py,sha256=f1DoLBiMk4_JQdPaemv5RW6xPksw5p4w-AFLZsC6Jr8,20828
68
- pulumi_vsphere/supervisor.py,sha256=HeS61exRz8wkjxoapwlkDjvhpR-zY28BWID10NRm4fM,42959
69
- pulumi_vsphere/tag.py,sha256=gF7uOgj1Xm_k2cV7YIiwBGakQvhi-jlsNYKDm7JDFWw,9943
70
- pulumi_vsphere/tag_category.py,sha256=FzqdUOMwmAo7W6Xuw3-CByCbBSmsvkCGXiLRaMUVVQ4,15120
71
- pulumi_vsphere/vapp_container.py,sha256=1On1t7PnLEqnQvNIt1XIh9VFu7LaSegyRyDaJf8lQmQ,48255
72
- pulumi_vsphere/vapp_entity.py,sha256=JePz7OF__e1x7aFp_9I257S61HnDT7gdHsWK-u17nlM,29555
73
- pulumi_vsphere/virtual_disk.py,sha256=wFycNUG7WdYogDgWDRc5zP1u9n2afPtQOUiX_987ito,28633
74
- pulumi_vsphere/virtual_machine.py,sha256=it5F-ML0tRVEsXti0MNLi6eqoUvSYlNVot1tt23IA2U,214932
75
- pulumi_vsphere/virtual_machine_class.py,sha256=PuDyxZffdDfR3nOouNiXEBkIf-NPiXx0to2z0q_WM8g,17161
76
- pulumi_vsphere/virtual_machine_snapshot.py,sha256=znCP8B7dt2lvsEa7nTzzqACttXjQNKWNjxCZGjThYNs,23926
77
- pulumi_vsphere/vm_storage_policy.py,sha256=IgoanyDCih8ALdG-wdewI9KvrYfSiew1Z7Xhb3SSqwA,20198
78
- pulumi_vsphere/vmfs_datastore.py,sha256=gNhmetE0wMDKMEM_ImATFpnTJhqMEPd0q8eOgqpedr0,34596
79
- pulumi_vsphere/vnic.py,sha256=uaj0DqvKOflKM4Sb_W6F3TCp1uikL8WhGxWCu4907aw,30503
80
- pulumi_vsphere/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
81
- pulumi_vsphere/config/__init__.pyi,sha256=ZO6ktIIpO1bKQNe2__l8JqDti_ZKgnRvHTcXcRWzb0M,1351
82
- pulumi_vsphere/config/vars.py,sha256=fcurb1Hwqp3evWnRD4s2t--MUjqR9R11nIm04F1UMW0,3210
83
- pulumi_vsphere-4.11.0a1.dist-info/METADATA,sha256=BzxJkAE7jURFnsgp7VKvkTaw_m5bLT-rAToLB_KE8xg,4949
84
- pulumi_vsphere-4.11.0a1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
85
- pulumi_vsphere-4.11.0a1.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
86
- pulumi_vsphere-4.11.0a1.dist-info/RECORD,,