pulumi-vsphere 4.11.0a1713340048__py3-none-any.whl → 4.11.0a1713905355__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.
- pulumi_vsphere/_inputs.py +96 -230
- pulumi_vsphere/compute_cluster.py +700 -1477
- pulumi_vsphere/compute_cluster_vm_affinity_rule.py +14 -16
- pulumi_vsphere/datacenter.py +8 -12
- pulumi_vsphere/datastore_cluster.py +154 -350
- pulumi_vsphere/distributed_port_group.py +70 -175
- pulumi_vsphere/distributed_virtual_switch.py +308 -798
- pulumi_vsphere/file.py +16 -24
- pulumi_vsphere/get_compute_cluster.py +0 -4
- pulumi_vsphere/get_compute_cluster_host_group.py +8 -10
- pulumi_vsphere/get_content_library.py +0 -4
- pulumi_vsphere/get_custom_attribute.py +0 -4
- pulumi_vsphere/get_datacenter.py +0 -4
- pulumi_vsphere/get_datastore.py +0 -4
- pulumi_vsphere/get_datastore_cluster.py +0 -4
- pulumi_vsphere/get_datastore_stats.py +4 -12
- pulumi_vsphere/get_distributed_virtual_switch.py +2 -4
- pulumi_vsphere/get_dynamic.py +4 -8
- pulumi_vsphere/get_folder.py +0 -4
- pulumi_vsphere/get_guest_os_customization.py +0 -4
- pulumi_vsphere/get_host.py +0 -4
- pulumi_vsphere/get_host_pci_device.py +4 -12
- pulumi_vsphere/get_host_thumbprint.py +0 -4
- pulumi_vsphere/get_host_vgpu_profile.py +0 -8
- pulumi_vsphere/get_license.py +0 -4
- pulumi_vsphere/get_network.py +0 -4
- pulumi_vsphere/get_policy.py +0 -4
- pulumi_vsphere/get_resource_pool.py +2 -10
- pulumi_vsphere/get_role.py +0 -4
- pulumi_vsphere/get_tag.py +0 -4
- pulumi_vsphere/get_tag_category.py +0 -4
- pulumi_vsphere/get_vapp_container.py +0 -4
- pulumi_vsphere/get_virtual_machine.py +0 -8
- pulumi_vsphere/get_vmfs_disks.py +0 -4
- pulumi_vsphere/guest_os_customization.py +50 -0
- pulumi_vsphere/ha_vm_override.py +189 -378
- pulumi_vsphere/host.py +0 -8
- pulumi_vsphere/host_port_group.py +12 -12
- pulumi_vsphere/host_virtual_switch.py +140 -287
- pulumi_vsphere/license.py +0 -32
- pulumi_vsphere/outputs.py +96 -230
- pulumi_vsphere/resource_pool.py +20 -22
- pulumi_vsphere/virtual_machine.py +599 -739
- pulumi_vsphere/virtual_machine_snapshot.py +6 -10
- pulumi_vsphere/vm_storage_policy.py +72 -84
- pulumi_vsphere/vnic.py +8 -8
- {pulumi_vsphere-4.11.0a1713340048.dist-info → pulumi_vsphere-4.11.0a1713905355.dist-info}/METADATA +1 -1
- pulumi_vsphere-4.11.0a1713905355.dist-info/RECORD +82 -0
- pulumi_vsphere-4.11.0a1713340048.dist-info/RECORD +0 -82
- {pulumi_vsphere-4.11.0a1713340048.dist-info → pulumi_vsphere-4.11.0a1713905355.dist-info}/WHEEL +0 -0
- {pulumi_vsphere-4.11.0a1713340048.dist-info → pulumi_vsphere-4.11.0a1713905355.dist-info}/top_level.txt +0 -0
|
@@ -308,21 +308,19 @@ class VirtualMachineSnapshot(pulumi.CustomResource):
|
|
|
308
308
|
|
|
309
309
|
## Example Usage
|
|
310
310
|
|
|
311
|
-
<!--Start PulumiCodeChooser -->
|
|
312
311
|
```python
|
|
313
312
|
import pulumi
|
|
314
313
|
import pulumi_vsphere as vsphere
|
|
315
314
|
|
|
316
315
|
demo1 = vsphere.VirtualMachineSnapshot("demo1",
|
|
317
|
-
|
|
316
|
+
virtual_machine_uuid="9aac5551-a351-4158-8c5c-15a71e8ec5c9",
|
|
317
|
+
snapshot_name="Snapshot Name",
|
|
318
318
|
description="This is Demo Snapshot",
|
|
319
319
|
memory=True,
|
|
320
320
|
quiesce=True,
|
|
321
321
|
remove_children=False,
|
|
322
|
-
|
|
323
|
-
virtual_machine_uuid="9aac5551-a351-4158-8c5c-15a71e8ec5c9")
|
|
322
|
+
consolidate=True)
|
|
324
323
|
```
|
|
325
|
-
<!--End PulumiCodeChooser -->
|
|
326
324
|
|
|
327
325
|
:param str resource_name: The name of the resource.
|
|
328
326
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -371,21 +369,19 @@ class VirtualMachineSnapshot(pulumi.CustomResource):
|
|
|
371
369
|
|
|
372
370
|
## Example Usage
|
|
373
371
|
|
|
374
|
-
<!--Start PulumiCodeChooser -->
|
|
375
372
|
```python
|
|
376
373
|
import pulumi
|
|
377
374
|
import pulumi_vsphere as vsphere
|
|
378
375
|
|
|
379
376
|
demo1 = vsphere.VirtualMachineSnapshot("demo1",
|
|
380
|
-
|
|
377
|
+
virtual_machine_uuid="9aac5551-a351-4158-8c5c-15a71e8ec5c9",
|
|
378
|
+
snapshot_name="Snapshot Name",
|
|
381
379
|
description="This is Demo Snapshot",
|
|
382
380
|
memory=True,
|
|
383
381
|
quiesce=True,
|
|
384
382
|
remove_children=False,
|
|
385
|
-
|
|
386
|
-
virtual_machine_uuid="9aac5551-a351-4158-8c5c-15a71e8ec5c9")
|
|
383
|
+
consolidate=True)
|
|
387
384
|
```
|
|
388
|
-
<!--End PulumiCodeChooser -->
|
|
389
385
|
|
|
390
386
|
:param str resource_name: The name of the resource.
|
|
391
387
|
:param VirtualMachineSnapshotArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -144,7 +144,6 @@ class VmStoragePolicy(pulumi.CustomResource):
|
|
|
144
144
|
|
|
145
145
|
In this example, tags are first applied to datastores.
|
|
146
146
|
|
|
147
|
-
<!--Start PulumiCodeChooser -->
|
|
148
147
|
```python
|
|
149
148
|
import pulumi
|
|
150
149
|
import pulumi_vsphere as vsphere
|
|
@@ -152,98 +151,93 @@ class VmStoragePolicy(pulumi.CustomResource):
|
|
|
152
151
|
environment = vsphere.get_tag_category(name="environment")
|
|
153
152
|
service_level = vsphere.get_tag_category(name="service_level")
|
|
154
153
|
replication = vsphere.get_tag_category(name="replication")
|
|
155
|
-
production = vsphere.get_tag(
|
|
156
|
-
|
|
157
|
-
development = vsphere.get_tag(
|
|
158
|
-
|
|
159
|
-
platinum = vsphere.get_tag(
|
|
160
|
-
|
|
161
|
-
gold = vsphere.get_tag(
|
|
162
|
-
|
|
163
|
-
silver = vsphere.get_tag(
|
|
164
|
-
|
|
165
|
-
bronze = vsphere.get_tag(
|
|
166
|
-
|
|
167
|
-
replicated = vsphere.get_tag(
|
|
168
|
-
|
|
169
|
-
non_replicated = vsphere.get_tag(
|
|
170
|
-
|
|
171
|
-
prod_datastore = vsphere.VmfsDatastore("
|
|
154
|
+
production = vsphere.get_tag(name="production",
|
|
155
|
+
category_id="data.vsphere_tag_category.environment.id")
|
|
156
|
+
development = vsphere.get_tag(name="development",
|
|
157
|
+
category_id="data.vsphere_tag_category.environment.id")
|
|
158
|
+
platinum = vsphere.get_tag(name="platinum",
|
|
159
|
+
category_id="data.vsphere_tag_category.service_level.id")
|
|
160
|
+
gold = vsphere.get_tag(name="platinum",
|
|
161
|
+
category_id="data.vsphere_tag_category.service_level.id")
|
|
162
|
+
silver = vsphere.get_tag(name="silver",
|
|
163
|
+
category_id="data.vsphere_tag_category.service_level.id")
|
|
164
|
+
bronze = vsphere.get_tag(name="bronze",
|
|
165
|
+
category_id="data.vsphere_tag_category.service_level.id")
|
|
166
|
+
replicated = vsphere.get_tag(name="replicated",
|
|
167
|
+
category_id="data.vsphere_tag_category.replication.id")
|
|
168
|
+
non_replicated = vsphere.get_tag(name="non_replicated",
|
|
169
|
+
category_id="data.vsphere_tag_category.replication.id")
|
|
170
|
+
prod_datastore = vsphere.VmfsDatastore("prod_datastore", tags=[
|
|
172
171
|
"data.vsphere_tag.production.id",
|
|
173
172
|
"data.vsphere_tag.platinum.id",
|
|
174
173
|
"data.vsphere_tag.replicated.id",
|
|
175
174
|
])
|
|
176
|
-
dev_datastore = vsphere.NasDatastore("
|
|
175
|
+
dev_datastore = vsphere.NasDatastore("dev_datastore", tags=[
|
|
177
176
|
"data.vsphere_tag.development.id",
|
|
178
177
|
"data.vsphere_tag.silver.id",
|
|
179
178
|
"data.vsphere_tag.non_replicated.id",
|
|
180
179
|
])
|
|
181
180
|
```
|
|
182
|
-
<!--End PulumiCodeChooser -->
|
|
183
181
|
|
|
184
182
|
Next, storage policies are created and `tag_rules` are applied.
|
|
185
183
|
|
|
186
|
-
<!--Start PulumiCodeChooser -->
|
|
187
184
|
```python
|
|
188
185
|
import pulumi
|
|
189
186
|
import pulumi_vsphere as vsphere
|
|
190
187
|
|
|
191
|
-
prod_platinum_replicated = vsphere.VmStoragePolicy("
|
|
188
|
+
prod_platinum_replicated = vsphere.VmStoragePolicy("prod_platinum_replicated",
|
|
189
|
+
name="prod_platinum_replicated",
|
|
192
190
|
description="prod_platinum_replicated",
|
|
193
191
|
tag_rules=[
|
|
194
192
|
vsphere.VmStoragePolicyTagRuleArgs(
|
|
195
|
-
tag_category=
|
|
196
|
-
tags=[
|
|
193
|
+
tag_category=environment["name"],
|
|
194
|
+
tags=[production["name"]],
|
|
197
195
|
include_datastores_with_tags=True,
|
|
198
196
|
),
|
|
199
197
|
vsphere.VmStoragePolicyTagRuleArgs(
|
|
200
|
-
tag_category=
|
|
201
|
-
tags=[
|
|
198
|
+
tag_category=service_level["name"],
|
|
199
|
+
tags=[platinum["name"]],
|
|
202
200
|
include_datastores_with_tags=True,
|
|
203
201
|
),
|
|
204
202
|
vsphere.VmStoragePolicyTagRuleArgs(
|
|
205
|
-
tag_category=
|
|
206
|
-
tags=[
|
|
203
|
+
tag_category=replication["name"],
|
|
204
|
+
tags=[replicated["name"]],
|
|
207
205
|
include_datastores_with_tags=True,
|
|
208
206
|
),
|
|
209
207
|
])
|
|
210
|
-
dev_silver_nonreplicated = vsphere.VmStoragePolicy("
|
|
208
|
+
dev_silver_nonreplicated = vsphere.VmStoragePolicy("dev_silver_nonreplicated",
|
|
209
|
+
name="dev_silver_nonreplicated",
|
|
211
210
|
description="dev_silver_nonreplicated",
|
|
212
211
|
tag_rules=[
|
|
213
212
|
vsphere.VmStoragePolicyTagRuleArgs(
|
|
214
|
-
tag_category=
|
|
215
|
-
tags=[
|
|
213
|
+
tag_category=environment["name"],
|
|
214
|
+
tags=[development["name"]],
|
|
216
215
|
include_datastores_with_tags=True,
|
|
217
216
|
),
|
|
218
217
|
vsphere.VmStoragePolicyTagRuleArgs(
|
|
219
|
-
tag_category=
|
|
220
|
-
tags=[
|
|
218
|
+
tag_category=service_level["name"],
|
|
219
|
+
tags=[silver["name"]],
|
|
221
220
|
include_datastores_with_tags=True,
|
|
222
221
|
),
|
|
223
222
|
vsphere.VmStoragePolicyTagRuleArgs(
|
|
224
|
-
tag_category=
|
|
225
|
-
tags=[
|
|
223
|
+
tag_category=replication["name"],
|
|
224
|
+
tags=[non_replicated["name"]],
|
|
226
225
|
include_datastores_with_tags=True,
|
|
227
226
|
),
|
|
228
227
|
])
|
|
229
228
|
```
|
|
230
|
-
<!--End PulumiCodeChooser -->
|
|
231
229
|
|
|
232
230
|
Lasttly, when creating a virtual machine resource, a storage policy can be specificed to direct virtual machine placement to a datastore which matches the policy's `tags_rules`.
|
|
233
231
|
|
|
234
|
-
<!--Start PulumiCodeChooser -->
|
|
235
232
|
```python
|
|
236
233
|
import pulumi
|
|
237
234
|
import pulumi_vsphere as vsphere
|
|
238
235
|
|
|
239
236
|
prod_platinum_replicated = vsphere.get_policy(name="prod_platinum_replicated")
|
|
240
237
|
dev_silver_nonreplicated = vsphere.get_policy(name="dev_silver_nonreplicated")
|
|
241
|
-
prod_vm = vsphere.VirtualMachine("
|
|
242
|
-
|
|
243
|
-
dev_vm = vsphere.VirtualMachine("devVm", storage_policy_id=data["vsphere_storage_policy"]["storage_policy"]["dev_silver_nonreplicated"]["id"])
|
|
244
|
-
# ... other configuration ...
|
|
238
|
+
prod_vm = vsphere.VirtualMachine("prod_vm", storage_policy_id=storage_policy["prodPlatinumReplicated"]["id"])
|
|
239
|
+
dev_vm = vsphere.VirtualMachine("dev_vm", storage_policy_id=storage_policy["devSilverNonreplicated"]["id"])
|
|
245
240
|
```
|
|
246
|
-
<!--End PulumiCodeChooser -->
|
|
247
241
|
|
|
248
242
|
:param str resource_name: The name of the resource.
|
|
249
243
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -268,7 +262,6 @@ class VmStoragePolicy(pulumi.CustomResource):
|
|
|
268
262
|
|
|
269
263
|
In this example, tags are first applied to datastores.
|
|
270
264
|
|
|
271
|
-
<!--Start PulumiCodeChooser -->
|
|
272
265
|
```python
|
|
273
266
|
import pulumi
|
|
274
267
|
import pulumi_vsphere as vsphere
|
|
@@ -276,98 +269,93 @@ class VmStoragePolicy(pulumi.CustomResource):
|
|
|
276
269
|
environment = vsphere.get_tag_category(name="environment")
|
|
277
270
|
service_level = vsphere.get_tag_category(name="service_level")
|
|
278
271
|
replication = vsphere.get_tag_category(name="replication")
|
|
279
|
-
production = vsphere.get_tag(
|
|
280
|
-
|
|
281
|
-
development = vsphere.get_tag(
|
|
282
|
-
|
|
283
|
-
platinum = vsphere.get_tag(
|
|
284
|
-
|
|
285
|
-
gold = vsphere.get_tag(
|
|
286
|
-
|
|
287
|
-
silver = vsphere.get_tag(
|
|
288
|
-
|
|
289
|
-
bronze = vsphere.get_tag(
|
|
290
|
-
|
|
291
|
-
replicated = vsphere.get_tag(
|
|
292
|
-
|
|
293
|
-
non_replicated = vsphere.get_tag(
|
|
294
|
-
|
|
295
|
-
prod_datastore = vsphere.VmfsDatastore("
|
|
272
|
+
production = vsphere.get_tag(name="production",
|
|
273
|
+
category_id="data.vsphere_tag_category.environment.id")
|
|
274
|
+
development = vsphere.get_tag(name="development",
|
|
275
|
+
category_id="data.vsphere_tag_category.environment.id")
|
|
276
|
+
platinum = vsphere.get_tag(name="platinum",
|
|
277
|
+
category_id="data.vsphere_tag_category.service_level.id")
|
|
278
|
+
gold = vsphere.get_tag(name="platinum",
|
|
279
|
+
category_id="data.vsphere_tag_category.service_level.id")
|
|
280
|
+
silver = vsphere.get_tag(name="silver",
|
|
281
|
+
category_id="data.vsphere_tag_category.service_level.id")
|
|
282
|
+
bronze = vsphere.get_tag(name="bronze",
|
|
283
|
+
category_id="data.vsphere_tag_category.service_level.id")
|
|
284
|
+
replicated = vsphere.get_tag(name="replicated",
|
|
285
|
+
category_id="data.vsphere_tag_category.replication.id")
|
|
286
|
+
non_replicated = vsphere.get_tag(name="non_replicated",
|
|
287
|
+
category_id="data.vsphere_tag_category.replication.id")
|
|
288
|
+
prod_datastore = vsphere.VmfsDatastore("prod_datastore", tags=[
|
|
296
289
|
"data.vsphere_tag.production.id",
|
|
297
290
|
"data.vsphere_tag.platinum.id",
|
|
298
291
|
"data.vsphere_tag.replicated.id",
|
|
299
292
|
])
|
|
300
|
-
dev_datastore = vsphere.NasDatastore("
|
|
293
|
+
dev_datastore = vsphere.NasDatastore("dev_datastore", tags=[
|
|
301
294
|
"data.vsphere_tag.development.id",
|
|
302
295
|
"data.vsphere_tag.silver.id",
|
|
303
296
|
"data.vsphere_tag.non_replicated.id",
|
|
304
297
|
])
|
|
305
298
|
```
|
|
306
|
-
<!--End PulumiCodeChooser -->
|
|
307
299
|
|
|
308
300
|
Next, storage policies are created and `tag_rules` are applied.
|
|
309
301
|
|
|
310
|
-
<!--Start PulumiCodeChooser -->
|
|
311
302
|
```python
|
|
312
303
|
import pulumi
|
|
313
304
|
import pulumi_vsphere as vsphere
|
|
314
305
|
|
|
315
|
-
prod_platinum_replicated = vsphere.VmStoragePolicy("
|
|
306
|
+
prod_platinum_replicated = vsphere.VmStoragePolicy("prod_platinum_replicated",
|
|
307
|
+
name="prod_platinum_replicated",
|
|
316
308
|
description="prod_platinum_replicated",
|
|
317
309
|
tag_rules=[
|
|
318
310
|
vsphere.VmStoragePolicyTagRuleArgs(
|
|
319
|
-
tag_category=
|
|
320
|
-
tags=[
|
|
311
|
+
tag_category=environment["name"],
|
|
312
|
+
tags=[production["name"]],
|
|
321
313
|
include_datastores_with_tags=True,
|
|
322
314
|
),
|
|
323
315
|
vsphere.VmStoragePolicyTagRuleArgs(
|
|
324
|
-
tag_category=
|
|
325
|
-
tags=[
|
|
316
|
+
tag_category=service_level["name"],
|
|
317
|
+
tags=[platinum["name"]],
|
|
326
318
|
include_datastores_with_tags=True,
|
|
327
319
|
),
|
|
328
320
|
vsphere.VmStoragePolicyTagRuleArgs(
|
|
329
|
-
tag_category=
|
|
330
|
-
tags=[
|
|
321
|
+
tag_category=replication["name"],
|
|
322
|
+
tags=[replicated["name"]],
|
|
331
323
|
include_datastores_with_tags=True,
|
|
332
324
|
),
|
|
333
325
|
])
|
|
334
|
-
dev_silver_nonreplicated = vsphere.VmStoragePolicy("
|
|
326
|
+
dev_silver_nonreplicated = vsphere.VmStoragePolicy("dev_silver_nonreplicated",
|
|
327
|
+
name="dev_silver_nonreplicated",
|
|
335
328
|
description="dev_silver_nonreplicated",
|
|
336
329
|
tag_rules=[
|
|
337
330
|
vsphere.VmStoragePolicyTagRuleArgs(
|
|
338
|
-
tag_category=
|
|
339
|
-
tags=[
|
|
331
|
+
tag_category=environment["name"],
|
|
332
|
+
tags=[development["name"]],
|
|
340
333
|
include_datastores_with_tags=True,
|
|
341
334
|
),
|
|
342
335
|
vsphere.VmStoragePolicyTagRuleArgs(
|
|
343
|
-
tag_category=
|
|
344
|
-
tags=[
|
|
336
|
+
tag_category=service_level["name"],
|
|
337
|
+
tags=[silver["name"]],
|
|
345
338
|
include_datastores_with_tags=True,
|
|
346
339
|
),
|
|
347
340
|
vsphere.VmStoragePolicyTagRuleArgs(
|
|
348
|
-
tag_category=
|
|
349
|
-
tags=[
|
|
341
|
+
tag_category=replication["name"],
|
|
342
|
+
tags=[non_replicated["name"]],
|
|
350
343
|
include_datastores_with_tags=True,
|
|
351
344
|
),
|
|
352
345
|
])
|
|
353
346
|
```
|
|
354
|
-
<!--End PulumiCodeChooser -->
|
|
355
347
|
|
|
356
348
|
Lasttly, when creating a virtual machine resource, a storage policy can be specificed to direct virtual machine placement to a datastore which matches the policy's `tags_rules`.
|
|
357
349
|
|
|
358
|
-
<!--Start PulumiCodeChooser -->
|
|
359
350
|
```python
|
|
360
351
|
import pulumi
|
|
361
352
|
import pulumi_vsphere as vsphere
|
|
362
353
|
|
|
363
354
|
prod_platinum_replicated = vsphere.get_policy(name="prod_platinum_replicated")
|
|
364
355
|
dev_silver_nonreplicated = vsphere.get_policy(name="dev_silver_nonreplicated")
|
|
365
|
-
prod_vm = vsphere.VirtualMachine("
|
|
366
|
-
|
|
367
|
-
dev_vm = vsphere.VirtualMachine("devVm", storage_policy_id=data["vsphere_storage_policy"]["storage_policy"]["dev_silver_nonreplicated"]["id"])
|
|
368
|
-
# ... other configuration ...
|
|
356
|
+
prod_vm = vsphere.VirtualMachine("prod_vm", storage_policy_id=storage_policy["prodPlatinumReplicated"]["id"])
|
|
357
|
+
dev_vm = vsphere.VirtualMachine("dev_vm", storage_policy_id=storage_policy["devSilverNonreplicated"]["id"])
|
|
369
358
|
```
|
|
370
|
-
<!--End PulumiCodeChooser -->
|
|
371
359
|
|
|
372
360
|
:param str resource_name: The name of the resource.
|
|
373
361
|
:param VmStoragePolicyArgs args: The arguments to use to populate this resource's properties.
|
pulumi_vsphere/vnic.py
CHANGED
|
@@ -373,7 +373,6 @@ class Vnic(pulumi.CustomResource):
|
|
|
373
373
|
|
|
374
374
|
### Create a vnic attached to a distributed virtual switch using the vmotion TCP/IP stack
|
|
375
375
|
|
|
376
|
-
<!--Start PulumiCodeChooser -->
|
|
377
376
|
```python
|
|
378
377
|
import pulumi
|
|
379
378
|
import pulumi_vsphere as vsphere
|
|
@@ -382,12 +381,14 @@ class Vnic(pulumi.CustomResource):
|
|
|
382
381
|
h1 = vsphere.get_host(name="esxi1.host.test",
|
|
383
382
|
datacenter_id=dc.id)
|
|
384
383
|
d1 = vsphere.DistributedVirtualSwitch("d1",
|
|
384
|
+
name="dc_DVPG0",
|
|
385
385
|
datacenter_id=dc.id,
|
|
386
386
|
hosts=[vsphere.DistributedVirtualSwitchHostArgs(
|
|
387
387
|
host_system_id=h1.id,
|
|
388
388
|
devices=["vnic3"],
|
|
389
389
|
)])
|
|
390
390
|
p1 = vsphere.DistributedPortGroup("p1",
|
|
391
|
+
name="test-pg",
|
|
391
392
|
vlan_id=1234,
|
|
392
393
|
distributed_virtual_switch_uuid=d1.id)
|
|
393
394
|
v1 = vsphere.Vnic("v1",
|
|
@@ -399,11 +400,9 @@ class Vnic(pulumi.CustomResource):
|
|
|
399
400
|
),
|
|
400
401
|
netstack="vmotion")
|
|
401
402
|
```
|
|
402
|
-
<!--End PulumiCodeChooser -->
|
|
403
403
|
|
|
404
404
|
### Create a vnic attached to a portgroup using the default TCP/IP stack
|
|
405
405
|
|
|
406
|
-
<!--Start PulumiCodeChooser -->
|
|
407
406
|
```python
|
|
408
407
|
import pulumi
|
|
409
408
|
import pulumi_vsphere as vsphere
|
|
@@ -412,6 +411,7 @@ class Vnic(pulumi.CustomResource):
|
|
|
412
411
|
h1 = vsphere.get_host(name="esxi1.host.test",
|
|
413
412
|
datacenter_id=dc.id)
|
|
414
413
|
hvs1 = vsphere.HostVirtualSwitch("hvs1",
|
|
414
|
+
name="dc_HPG0",
|
|
415
415
|
host_system_id=h1.id,
|
|
416
416
|
network_adapters=[
|
|
417
417
|
"vmnic3",
|
|
@@ -420,6 +420,7 @@ class Vnic(pulumi.CustomResource):
|
|
|
420
420
|
active_nics=["vmnic3"],
|
|
421
421
|
standby_nics=["vmnic4"])
|
|
422
422
|
p1 = vsphere.HostPortGroup("p1",
|
|
423
|
+
name="my-pg",
|
|
423
424
|
virtual_switch_name=hvs1.name,
|
|
424
425
|
host_system_id=h1.id)
|
|
425
426
|
v1 = vsphere.Vnic("v1",
|
|
@@ -433,7 +434,6 @@ class Vnic(pulumi.CustomResource):
|
|
|
433
434
|
"management",
|
|
434
435
|
])
|
|
435
436
|
```
|
|
436
|
-
<!--End PulumiCodeChooser -->
|
|
437
437
|
|
|
438
438
|
## Importing
|
|
439
439
|
|
|
@@ -472,7 +472,6 @@ class Vnic(pulumi.CustomResource):
|
|
|
472
472
|
|
|
473
473
|
### Create a vnic attached to a distributed virtual switch using the vmotion TCP/IP stack
|
|
474
474
|
|
|
475
|
-
<!--Start PulumiCodeChooser -->
|
|
476
475
|
```python
|
|
477
476
|
import pulumi
|
|
478
477
|
import pulumi_vsphere as vsphere
|
|
@@ -481,12 +480,14 @@ class Vnic(pulumi.CustomResource):
|
|
|
481
480
|
h1 = vsphere.get_host(name="esxi1.host.test",
|
|
482
481
|
datacenter_id=dc.id)
|
|
483
482
|
d1 = vsphere.DistributedVirtualSwitch("d1",
|
|
483
|
+
name="dc_DVPG0",
|
|
484
484
|
datacenter_id=dc.id,
|
|
485
485
|
hosts=[vsphere.DistributedVirtualSwitchHostArgs(
|
|
486
486
|
host_system_id=h1.id,
|
|
487
487
|
devices=["vnic3"],
|
|
488
488
|
)])
|
|
489
489
|
p1 = vsphere.DistributedPortGroup("p1",
|
|
490
|
+
name="test-pg",
|
|
490
491
|
vlan_id=1234,
|
|
491
492
|
distributed_virtual_switch_uuid=d1.id)
|
|
492
493
|
v1 = vsphere.Vnic("v1",
|
|
@@ -498,11 +499,9 @@ class Vnic(pulumi.CustomResource):
|
|
|
498
499
|
),
|
|
499
500
|
netstack="vmotion")
|
|
500
501
|
```
|
|
501
|
-
<!--End PulumiCodeChooser -->
|
|
502
502
|
|
|
503
503
|
### Create a vnic attached to a portgroup using the default TCP/IP stack
|
|
504
504
|
|
|
505
|
-
<!--Start PulumiCodeChooser -->
|
|
506
505
|
```python
|
|
507
506
|
import pulumi
|
|
508
507
|
import pulumi_vsphere as vsphere
|
|
@@ -511,6 +510,7 @@ class Vnic(pulumi.CustomResource):
|
|
|
511
510
|
h1 = vsphere.get_host(name="esxi1.host.test",
|
|
512
511
|
datacenter_id=dc.id)
|
|
513
512
|
hvs1 = vsphere.HostVirtualSwitch("hvs1",
|
|
513
|
+
name="dc_HPG0",
|
|
514
514
|
host_system_id=h1.id,
|
|
515
515
|
network_adapters=[
|
|
516
516
|
"vmnic3",
|
|
@@ -519,6 +519,7 @@ class Vnic(pulumi.CustomResource):
|
|
|
519
519
|
active_nics=["vmnic3"],
|
|
520
520
|
standby_nics=["vmnic4"])
|
|
521
521
|
p1 = vsphere.HostPortGroup("p1",
|
|
522
|
+
name="my-pg",
|
|
522
523
|
virtual_switch_name=hvs1.name,
|
|
523
524
|
host_system_id=h1.id)
|
|
524
525
|
v1 = vsphere.Vnic("v1",
|
|
@@ -532,7 +533,6 @@ class Vnic(pulumi.CustomResource):
|
|
|
532
533
|
"management",
|
|
533
534
|
])
|
|
534
535
|
```
|
|
535
|
-
<!--End PulumiCodeChooser -->
|
|
536
536
|
|
|
537
537
|
## Importing
|
|
538
538
|
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
pulumi_vsphere/__init__.py,sha256=D0xUdIG9TzexthoPimJXUxoqiIfxr5H0lOHIAJhhsjE,10114
|
|
2
|
+
pulumi_vsphere/_inputs.py,sha256=A-AOdN3vdiKw2uby1zoJFhf68yNyHP-marLknmDO2vU,125235
|
|
3
|
+
pulumi_vsphere/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
|
|
4
|
+
pulumi_vsphere/compute_cluster.py,sha256=4R4A8J41iSG3xpfYd8kSpeDtte3E_HmOf9iqEJf82yA,223844
|
|
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=wCsVzpLVQn5tbx0kn4hKNUBxQpalVn9ydGemsbz_MLc,25630
|
|
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=7g9DRvEFP2WEudM8PEZFApsCpgKLzABYEqo4ixznkGA,3625
|
|
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_pci_device.py,sha256=LCow2auxsoSB7p45FnQ4u0WDGUJTjyXrxcvQ2ZpSoqE,7612
|
|
39
|
+
pulumi_vsphere/get_host_thumbprint.py,sha256=Xj4plQOyPh5QXBFZFQFhR8VULbuozkWISNDuCdCizhM,4963
|
|
40
|
+
pulumi_vsphere/get_host_vgpu_profile.py,sha256=afbe_YuQVS676bCz96W0d-3VrPqYY0Cxa0j5dFo8xJ8,6348
|
|
41
|
+
pulumi_vsphere/get_license.py,sha256=NPtNrjcdrDFODRrd6gFnFo9IgVlGOocwrUW24r71lI4,5258
|
|
42
|
+
pulumi_vsphere/get_network.py,sha256=bm8QyrAhHs32jZnfwpqMOiSV8Pmyr03DqTMEOMGo-NI,7133
|
|
43
|
+
pulumi_vsphere/get_ovf_vm_template.py,sha256=1C3sBBXBAzpxaZBiv4knADbzSNN7XaV3ItNLwRcFwb4,25791
|
|
44
|
+
pulumi_vsphere/get_policy.py,sha256=ntQk22TpTCHRg4X5aYx4-oTfxyofEqfywYmFHmCF-II,3425
|
|
45
|
+
pulumi_vsphere/get_resource_pool.py,sha256=AYqjQdLIVB_kIcqRx8l14Aey3KebJE_ybTjAdVAAsjU,7257
|
|
46
|
+
pulumi_vsphere/get_role.py,sha256=XpjnMAWOVCp9-L8HUkEi5q7KKnQVtbl4jbLG2_XHWPM,5211
|
|
47
|
+
pulumi_vsphere/get_tag.py,sha256=NJIo7J9NsSr0SxCScu7QrNn41dWVc5vXAcIQN5VmAj8,4816
|
|
48
|
+
pulumi_vsphere/get_tag_category.py,sha256=R-kLcRAuATkFp8PPKt01OGp8lpmceKnRf9lEn_ZJzUk,5034
|
|
49
|
+
pulumi_vsphere/get_vapp_container.py,sha256=1OUABHMT3qFbSQRqFBCQNltmuo_OF983GJR09vnJUsY,4473
|
|
50
|
+
pulumi_vsphere/get_virtual_machine.py,sha256=tvaOuo8cvtOTXyGxMKaQ8-tKxd5-gBVfQ0cWpfM2LXs,58531
|
|
51
|
+
pulumi_vsphere/get_vmfs_disks.py,sha256=KotPjKN7ncgdWzl6qSU1DuuxIxu8BoQ5CLDH1JAgShg,6717
|
|
52
|
+
pulumi_vsphere/guest_os_customization.py,sha256=yfWCEDEdo2MIACZwJo7DhbUyLEp8dhYm_b0d7QPwGKs,17018
|
|
53
|
+
pulumi_vsphere/ha_vm_override.py,sha256=Z2p_A1fowtS4_UGq-SHP_dfw2ruZuYVMTo5DizkeOEQ,52698
|
|
54
|
+
pulumi_vsphere/host.py,sha256=iLAODc_Ez09iYoOZ_opB3xfINe17ZohHnN_ZTq98owc,45815
|
|
55
|
+
pulumi_vsphere/host_port_group.py,sha256=jtSm7mmPU0SWP54n-dr_5fgEHz6Y3fHb5YNl_ArRuKE,56940
|
|
56
|
+
pulumi_vsphere/host_virtual_switch.py,sha256=WTZtqM4GDzLIcmviM_fQ47SHNXQrEHVqV0q3wEB0sFA,57317
|
|
57
|
+
pulumi_vsphere/license.py,sha256=4IhaSHnAjOFSlSKu4AYGcbraULzzTRASs29wB7nw7aU,12022
|
|
58
|
+
pulumi_vsphere/nas_datastore.py,sha256=X5PeUipclE4MG0uHS_SlmpaHBrz4jtaLhVEfOybjYQY,48202
|
|
59
|
+
pulumi_vsphere/outputs.py,sha256=SJymtFJHp5nI8qOSAHVzyN4RTgS3NZ2I1Te_LOTK-e4,139415
|
|
60
|
+
pulumi_vsphere/provider.py,sha256=ljEs3n-BiTMtFb7qqPn6YDZh3M-L5Oq2LAbX1QfV274,20511
|
|
61
|
+
pulumi_vsphere/pulumi-plugin.json,sha256=GPkzWdIfUGLp-CeSzzIZ8ksrThmeZnOYMcpaT3JCpTU,44
|
|
62
|
+
pulumi_vsphere/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
63
|
+
pulumi_vsphere/resource_pool.py,sha256=WMj87tZbw5JBb-wAcvncdnVY8FvmDHpy0go7Go5fNvg,54815
|
|
64
|
+
pulumi_vsphere/role.py,sha256=kO9DfdLWHq5bfwD0EBAsZuWQxrcX7amJBVUrfREHf3c,8528
|
|
65
|
+
pulumi_vsphere/storage_drs_vm_override.py,sha256=f1DoLBiMk4_JQdPaemv5RW6xPksw5p4w-AFLZsC6Jr8,20828
|
|
66
|
+
pulumi_vsphere/tag.py,sha256=gF7uOgj1Xm_k2cV7YIiwBGakQvhi-jlsNYKDm7JDFWw,9943
|
|
67
|
+
pulumi_vsphere/tag_category.py,sha256=FzqdUOMwmAo7W6Xuw3-CByCbBSmsvkCGXiLRaMUVVQ4,15120
|
|
68
|
+
pulumi_vsphere/vapp_container.py,sha256=1On1t7PnLEqnQvNIt1XIh9VFu7LaSegyRyDaJf8lQmQ,48255
|
|
69
|
+
pulumi_vsphere/vapp_entity.py,sha256=JePz7OF__e1x7aFp_9I257S61HnDT7gdHsWK-u17nlM,29555
|
|
70
|
+
pulumi_vsphere/virtual_disk.py,sha256=wFycNUG7WdYogDgWDRc5zP1u9n2afPtQOUiX_987ito,28633
|
|
71
|
+
pulumi_vsphere/virtual_machine.py,sha256=1we33u6iIip3F4XowbQLJrZ_n4sWfUOEoHT31Pkphlo,222160
|
|
72
|
+
pulumi_vsphere/virtual_machine_snapshot.py,sha256=znCP8B7dt2lvsEa7nTzzqACttXjQNKWNjxCZGjThYNs,23926
|
|
73
|
+
pulumi_vsphere/vm_storage_policy.py,sha256=IgoanyDCih8ALdG-wdewI9KvrYfSiew1Z7Xhb3SSqwA,20198
|
|
74
|
+
pulumi_vsphere/vmfs_datastore.py,sha256=gNhmetE0wMDKMEM_ImATFpnTJhqMEPd0q8eOgqpedr0,34596
|
|
75
|
+
pulumi_vsphere/vnic.py,sha256=uaj0DqvKOflKM4Sb_W6F3TCp1uikL8WhGxWCu4907aw,30503
|
|
76
|
+
pulumi_vsphere/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
77
|
+
pulumi_vsphere/config/__init__.pyi,sha256=ZO6ktIIpO1bKQNe2__l8JqDti_ZKgnRvHTcXcRWzb0M,1351
|
|
78
|
+
pulumi_vsphere/config/vars.py,sha256=fcurb1Hwqp3evWnRD4s2t--MUjqR9R11nIm04F1UMW0,3210
|
|
79
|
+
pulumi_vsphere-4.11.0a1713905355.dist-info/METADATA,sha256=ms1iralSFiUcV8GjOhWQOvu-0uZpZlhnMu7vMhamRHo,4958
|
|
80
|
+
pulumi_vsphere-4.11.0a1713905355.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
81
|
+
pulumi_vsphere-4.11.0a1713905355.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
|
|
82
|
+
pulumi_vsphere-4.11.0a1713905355.dist-info/RECORD,,
|
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
pulumi_vsphere/__init__.py,sha256=D0xUdIG9TzexthoPimJXUxoqiIfxr5H0lOHIAJhhsjE,10114
|
|
2
|
-
pulumi_vsphere/_inputs.py,sha256=n7IWt2LMpbsan_Pw5DPlEWWXolg15HOVJQ1dAIgPKGM,136898
|
|
3
|
-
pulumi_vsphere/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
|
|
4
|
-
pulumi_vsphere/compute_cluster.py,sha256=8HJuTuH9JIxCMh2WTG7zT7f6JwUy8qScFsr2S8ozkHg,245818
|
|
5
|
-
pulumi_vsphere/compute_cluster_host_group.py,sha256=QUCBKwC2RaJI6ZuC_qBDZJl5gey-rs3iVsbPrFFK-1g,13437
|
|
6
|
-
pulumi_vsphere/compute_cluster_vm_affinity_rule.py,sha256=Ug08_chfwb-v5myhuyd38P7-PbRGDyHFHogEo0P9frU,25365
|
|
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=TvQtqI5xaZo0Q7LpqO5pC8Y3W_NijncUQ2pmIcLPFgk,19758
|
|
15
|
-
pulumi_vsphere/datastore_cluster.py,sha256=wAgIfzbH5Jyb3F2MsrOzM5OR_mVI0I6nAexPmpgP_qo,90156
|
|
16
|
-
pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py,sha256=8eKwKS9ZYaZICVxjNrNLDDBqBKyQqOJmC_nt0jlqYJY,16842
|
|
17
|
-
pulumi_vsphere/distributed_port_group.py,sha256=LWuv8PgWOo6MRx82QTrpiDAzORv9s6da7qdg3ZyV-KA,134499
|
|
18
|
-
pulumi_vsphere/distributed_virtual_switch.py,sha256=yG6p5Qa_yqk62iK_NbWT5p9p4Ch8AaTrPERFpIUm_rE,263983
|
|
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=00qPdnT7-00SNMacM8_lGQrEbGSXv9rTC_ERTZHtB3U,23703
|
|
23
|
-
pulumi_vsphere/folder.py,sha256=wCsVzpLVQn5tbx0kn4hKNUBxQpalVn9ydGemsbz_MLc,25630
|
|
24
|
-
pulumi_vsphere/get_compute_cluster.py,sha256=rOCQTRMnHzOz3lCSZOQUQJ80qkXUqkxJPOihH_GxrVk,6137
|
|
25
|
-
pulumi_vsphere/get_compute_cluster_host_group.py,sha256=1vMYBvHD7-b4d6k9wPR_DlRAqjoBMSC-vCjFFvtUpgE,6266
|
|
26
|
-
pulumi_vsphere/get_content_library.py,sha256=zaz3CNzLrJLB5rH0D1zQk5Mi_g_LANjeHfHJDXW9o6k,3358
|
|
27
|
-
pulumi_vsphere/get_content_library_item.py,sha256=-yztx7VLc3cyG8nwjZ4iA4QbwvVGgL6K81YHOrYHJ4U,4496
|
|
28
|
-
pulumi_vsphere/get_custom_attribute.py,sha256=KMIPUXKbqrRMzUFgQ91V6A_qwHttMHIaSSof4KOoD9Q,4494
|
|
29
|
-
pulumi_vsphere/get_datacenter.py,sha256=XjgzHmheL3QNXnywVEoJ7dHZqzR2P-_kmJrfx14tX-k,4223
|
|
30
|
-
pulumi_vsphere/get_datastore.py,sha256=paiKxWPfdEyz7Z9yRAe_wcfMVDVeJH59_ezscPg09_s,6119
|
|
31
|
-
pulumi_vsphere/get_datastore_cluster.py,sha256=U108Z7EMqK4Q-7QYzIAuYSLaZQywdA7HVMT417ppC2E,5297
|
|
32
|
-
pulumi_vsphere/get_datastore_stats.py,sha256=O8FhEGF5NT2mlFnNzgU-v3kxqvQjscPCtia-daF4qA4,7917
|
|
33
|
-
pulumi_vsphere/get_distributed_virtual_switch.py,sha256=3Y9Z7qhXnUz60I1WGF3g6UUQu_iwqdmZYumZxM6iFVE,7014
|
|
34
|
-
pulumi_vsphere/get_dynamic.py,sha256=4evdnVACuoARVhytaBkXCPOQTJfAhzU63H1dy2MYYL4,6242
|
|
35
|
-
pulumi_vsphere/get_folder.py,sha256=cZn7YUGiNn6sziSiH1_6v-p9LVLxiiiEwXgUnjR93Qk,3765
|
|
36
|
-
pulumi_vsphere/get_guest_os_customization.py,sha256=a-hctk_ltCSfcjAgx_IxqQtOCd-df9a5vZeKXY8mNoU,6510
|
|
37
|
-
pulumi_vsphere/get_host.py,sha256=PBTK0McfwvgkKjuBeZbQWESeBrhbeIL1mafQO5Au0kY,5340
|
|
38
|
-
pulumi_vsphere/get_host_pci_device.py,sha256=47KyrlqKw_mnLK3eaVMbmI8bEGqUye0BVh6YGPO_cWI,7898
|
|
39
|
-
pulumi_vsphere/get_host_thumbprint.py,sha256=9UmtSmyhiewNXW-7cifViECzkU6RXUN0aNcbhOKsf5k,5103
|
|
40
|
-
pulumi_vsphere/get_host_vgpu_profile.py,sha256=5LP_PDfY3wXA4zCml3Cz_yANEHPIh0OFoMK9PNJnJhI,6628
|
|
41
|
-
pulumi_vsphere/get_license.py,sha256=2egn7bCzJt6Eul_HWgPTrHpzzfruab3JlPBrNWCWfkc,5398
|
|
42
|
-
pulumi_vsphere/get_network.py,sha256=Cm2IZobXCW_RbyfGJybAqULksx4LUNFg-7oNKEWL0qs,7273
|
|
43
|
-
pulumi_vsphere/get_ovf_vm_template.py,sha256=1C3sBBXBAzpxaZBiv4knADbzSNN7XaV3ItNLwRcFwb4,25791
|
|
44
|
-
pulumi_vsphere/get_policy.py,sha256=RmwMeG08vPnbebfPw4Qyvi60zofxLdx5sHFbH73hFBY,3565
|
|
45
|
-
pulumi_vsphere/get_resource_pool.py,sha256=SybwTomV_rYafuE4Xegm67g1exIHi66_PA-ZzNwz_cE,7597
|
|
46
|
-
pulumi_vsphere/get_role.py,sha256=ZH7ycfvudtiCgmFZV3fJobeitdyFYCrZ0gmli46rFCs,5351
|
|
47
|
-
pulumi_vsphere/get_tag.py,sha256=Cf7jDIln9TEHBrjH9AWWUEFreEA9Z2Anm7umdbBWVlA,4956
|
|
48
|
-
pulumi_vsphere/get_tag_category.py,sha256=vB023_5_viINfklL9-KKhvADQKoY8ZDjTTQVgF2w3-Q,5174
|
|
49
|
-
pulumi_vsphere/get_vapp_container.py,sha256=Ae77fQHwunAm8Ab97wEYqjL-ZmdTuyj8yoE57RU6xzs,4613
|
|
50
|
-
pulumi_vsphere/get_virtual_machine.py,sha256=FsY6V0eKMRXr2JBqFtkdyu1nU9PvVmFsLd30FHhMlJc,58811
|
|
51
|
-
pulumi_vsphere/get_vmfs_disks.py,sha256=ItMOx8cK9l12N4Yc4hQb2Ocuk_hCwb4Ql39QX9Tt1HQ,6857
|
|
52
|
-
pulumi_vsphere/guest_os_customization.py,sha256=HB-qrGxduUJH_cUpKyLbnmmV-HOBqJWesV4lWTLdETk,15360
|
|
53
|
-
pulumi_vsphere/ha_vm_override.py,sha256=gGQd5NMeFDznmfLTQvuXuVM5JT_ZAmQRxwuVEDe_FxI,58963
|
|
54
|
-
pulumi_vsphere/host.py,sha256=7KiC53C-Tf8VyILdkPcgSjKFvFLbbD5YazZZFbWq6HM,46127
|
|
55
|
-
pulumi_vsphere/host_port_group.py,sha256=cNYrrmKE-sQSb6UJc4tE_zev4S4hvEY2nU4ZOPGOkTQ,56992
|
|
56
|
-
pulumi_vsphere/host_virtual_switch.py,sha256=gj2BcglObvCxe4tkIze0OxW2xnGDDOhWKUc2Qbz99eQ,61643
|
|
57
|
-
pulumi_vsphere/license.py,sha256=FUrMgYlPCR74DuWahcgZttso7Q2m9kpoKiTb-6IOWy4,12908
|
|
58
|
-
pulumi_vsphere/nas_datastore.py,sha256=X5PeUipclE4MG0uHS_SlmpaHBrz4jtaLhVEfOybjYQY,48202
|
|
59
|
-
pulumi_vsphere/outputs.py,sha256=PQWYuK0-fabmFt2L7I7YXrCRJluhu8mvak_KSlGwMJw,151078
|
|
60
|
-
pulumi_vsphere/provider.py,sha256=ljEs3n-BiTMtFb7qqPn6YDZh3M-L5Oq2LAbX1QfV274,20511
|
|
61
|
-
pulumi_vsphere/pulumi-plugin.json,sha256=GPkzWdIfUGLp-CeSzzIZ8ksrThmeZnOYMcpaT3JCpTU,44
|
|
62
|
-
pulumi_vsphere/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
63
|
-
pulumi_vsphere/resource_pool.py,sha256=gjL1pMkeDXny9ff3c3QiK5fQjmjQhBgNN_NmoU8elSk,55171
|
|
64
|
-
pulumi_vsphere/role.py,sha256=kO9DfdLWHq5bfwD0EBAsZuWQxrcX7amJBVUrfREHf3c,8528
|
|
65
|
-
pulumi_vsphere/storage_drs_vm_override.py,sha256=f1DoLBiMk4_JQdPaemv5RW6xPksw5p4w-AFLZsC6Jr8,20828
|
|
66
|
-
pulumi_vsphere/tag.py,sha256=gF7uOgj1Xm_k2cV7YIiwBGakQvhi-jlsNYKDm7JDFWw,9943
|
|
67
|
-
pulumi_vsphere/tag_category.py,sha256=FzqdUOMwmAo7W6Xuw3-CByCbBSmsvkCGXiLRaMUVVQ4,15120
|
|
68
|
-
pulumi_vsphere/vapp_container.py,sha256=1On1t7PnLEqnQvNIt1XIh9VFu7LaSegyRyDaJf8lQmQ,48255
|
|
69
|
-
pulumi_vsphere/vapp_entity.py,sha256=JePz7OF__e1x7aFp_9I257S61HnDT7gdHsWK-u17nlM,29555
|
|
70
|
-
pulumi_vsphere/virtual_disk.py,sha256=wFycNUG7WdYogDgWDRc5zP1u9n2afPtQOUiX_987ito,28633
|
|
71
|
-
pulumi_vsphere/virtual_machine.py,sha256=Hi5nNs0PL6HnRZRHMCdlaCABwZJBot2yv20W7caJrDM,273790
|
|
72
|
-
pulumi_vsphere/virtual_machine_snapshot.py,sha256=G8-3jJEsViVYhF4v4LSfWSw1ajq3AdaSloMO1rseyww,24082
|
|
73
|
-
pulumi_vsphere/vm_storage_policy.py,sha256=MzAcDxZfj6p25LFT6sS-zho9i_uDXlU6uytttWQyJkg,21426
|
|
74
|
-
pulumi_vsphere/vmfs_datastore.py,sha256=gNhmetE0wMDKMEM_ImATFpnTJhqMEPd0q8eOgqpedr0,34596
|
|
75
|
-
pulumi_vsphere/vnic.py,sha256=dXGU-RPiIdw4OtvzSTwSFLet2ryI2SogeuyxzQgjO20,30593
|
|
76
|
-
pulumi_vsphere/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
77
|
-
pulumi_vsphere/config/__init__.pyi,sha256=ZO6ktIIpO1bKQNe2__l8JqDti_ZKgnRvHTcXcRWzb0M,1351
|
|
78
|
-
pulumi_vsphere/config/vars.py,sha256=fcurb1Hwqp3evWnRD4s2t--MUjqR9R11nIm04F1UMW0,3210
|
|
79
|
-
pulumi_vsphere-4.11.0a1713340048.dist-info/METADATA,sha256=Q7h1LQqk2KXD6rs_fYAmKMbeNZ4uZpk2zYC9KdGLn5s,4958
|
|
80
|
-
pulumi_vsphere-4.11.0a1713340048.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
81
|
-
pulumi_vsphere-4.11.0a1713340048.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
|
|
82
|
-
pulumi_vsphere-4.11.0a1713340048.dist-info/RECORD,,
|
{pulumi_vsphere-4.11.0a1713340048.dist-info → pulumi_vsphere-4.11.0a1713905355.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|