@pulumi/vsphere 4.10.1 → 4.10.2

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.
Files changed (91) hide show
  1. package/computeCluster.d.ts +12 -0
  2. package/computeCluster.js +2 -0
  3. package/computeCluster.js.map +1 -1
  4. package/computeClusterVmAffinityRule.d.ts +0 -2
  5. package/computeClusterVmAffinityRule.js +0 -2
  6. package/computeClusterVmAffinityRule.js.map +1 -1
  7. package/datacenter.d.ts +0 -9
  8. package/datacenter.js.map +1 -1
  9. package/datastoreCluster.d.ts +0 -6
  10. package/datastoreCluster.js.map +1 -1
  11. package/distributedPortGroup.d.ts +24 -3
  12. package/distributedPortGroup.js.map +1 -1
  13. package/distributedVirtualSwitch.d.ts +3 -12
  14. package/distributedVirtualSwitch.js.map +1 -1
  15. package/entityPermissions.d.ts +24 -15
  16. package/entityPermissions.js.map +1 -1
  17. package/folder.d.ts +0 -9
  18. package/folder.js.map +1 -1
  19. package/getComputeClusterHostGroup.d.ts +20 -18
  20. package/getComputeClusterHostGroup.js +14 -14
  21. package/getComputeClusterHostGroup.js.map +1 -1
  22. package/getContentLibrary.d.ts +10 -6
  23. package/getContentLibrary.js +10 -6
  24. package/getContentLibrary.js.map +1 -1
  25. package/getContentLibraryItem.d.ts +12 -8
  26. package/getContentLibraryItem.js +4 -4
  27. package/getContentLibraryItem.js.map +1 -1
  28. package/getDatastore.d.ts +9 -9
  29. package/getDatastoreStats.d.ts +34 -32
  30. package/getDatastoreStats.js +12 -12
  31. package/getDatastoreStats.js.map +1 -1
  32. package/getDynamic.d.ts +14 -12
  33. package/getDynamic.js +8 -6
  34. package/getDynamic.js.map +1 -1
  35. package/getFolder.d.ts +10 -2
  36. package/getFolder.js +10 -2
  37. package/getFolder.js.map +1 -1
  38. package/getGuestOsCustomization.d.ts +8 -47
  39. package/getGuestOsCustomization.js +4 -30
  40. package/getGuestOsCustomization.js.map +1 -1
  41. package/getHostBaseImages.d.ts +42 -0
  42. package/getHostBaseImages.js +43 -0
  43. package/getHostBaseImages.js.map +1 -0
  44. package/getHostPciDevice.d.ts +4 -2
  45. package/getHostPciDevice.js.map +1 -1
  46. package/getHostThumbprint.d.ts +12 -12
  47. package/getHostThumbprint.js +8 -8
  48. package/getHostVgpuProfile.d.ts +4 -2
  49. package/getHostVgpuProfile.js.map +1 -1
  50. package/getLicense.d.ts +2 -1
  51. package/getLicense.js.map +1 -1
  52. package/getNetwork.d.ts +14 -14
  53. package/getNetwork.js +10 -10
  54. package/getResourcePool.d.ts +12 -8
  55. package/getResourcePool.js +12 -8
  56. package/getResourcePool.js.map +1 -1
  57. package/getRole.d.ts +4 -4
  58. package/getRole.js +4 -4
  59. package/getVirtualMachine.d.ts +48 -32
  60. package/getVirtualMachine.js +6 -4
  61. package/getVirtualMachine.js.map +1 -1
  62. package/guestOsCustomization.d.ts +2 -2
  63. package/guestOsCustomization.js +2 -2
  64. package/index.d.ts +12 -0
  65. package/index.js +21 -2
  66. package/index.js.map +1 -1
  67. package/nasDatastore.d.ts +3 -3
  68. package/offlineSoftwareDepot.d.ts +63 -0
  69. package/offlineSoftwareDepot.js +59 -0
  70. package/offlineSoftwareDepot.js.map +1 -0
  71. package/package.json +3 -2
  72. package/resourcePool.d.ts +1 -1
  73. package/resourcePool.js +1 -1
  74. package/supervisor.d.ts +292 -0
  75. package/supervisor.js +178 -0
  76. package/supervisor.js.map +1 -0
  77. package/types/input.d.ts +124 -3
  78. package/types/output.d.ts +144 -18
  79. package/virtualDisk.d.ts +3 -3
  80. package/virtualMachine.d.ts +2 -2
  81. package/virtualMachineClass.d.ts +143 -0
  82. package/virtualMachineClass.js +100 -0
  83. package/virtualMachineClass.js.map +1 -0
  84. package/virtualMachineSnapshot.d.ts +1 -1
  85. package/virtualMachineSnapshot.js +1 -1
  86. package/vmStoragePolicy.d.ts +1 -1
  87. package/vmStoragePolicy.js +1 -1
  88. package/vnic.d.ts +34 -36
  89. package/vnic.js +31 -33
  90. package/vnic.js.map +1 -1
  91. package/package.json.bak +0 -29
@@ -27,8 +27,8 @@ import * as pulumi from "@pulumi/pulumi";
27
27
  * data source.
28
28
  *
29
29
  * All compute resources in vSphere have a resource pool, even if one has not been
30
- * explicitly created. This resource pool is referred to as the
31
- * _root resource pool_ and can be looked up by specifying the path.
30
+ * explicitly created. This resource pool is referred to as the _root resource
31
+ * pool_ and can be looked up by specifying the path.
32
32
  *
33
33
  * ```typescript
34
34
  * import * as pulumi from "@pulumi/pulumi";
@@ -40,9 +40,11 @@ import * as pulumi from "@pulumi/pulumi";
40
40
  * });
41
41
  * ```
42
42
  *
43
- * For more information on the root resource pool, see [Managing Resource Pools][vmware-docs-resource-pools] in the vSphere documentation.
43
+ * For more information on the root resource pool, see
44
+ * [Managing Resource Pools][vmware-docs-resource-pools] in the vSphere
45
+ * documentation.
44
46
  *
45
- * [vmware-docs-resource-pools]: https://docs.vmware.com/en/VMware-vSphere/7.0/com.vmware.vsphere.resmgmt.doc/GUID-60077B40-66FF-4625-934A-641703ED7601.html
47
+ * [vmware-docs-resource-pools]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-resource-management/GUID-60077B40-66FF-4625-934A-641703ED7601.html
46
48
  */
47
49
  export declare function getResourcePool(args?: GetResourcePoolArgs, opts?: pulumi.InvokeOptions): Promise<GetResourcePoolResult>;
48
50
  /**
@@ -106,8 +108,8 @@ export interface GetResourcePoolResult {
106
108
  * data source.
107
109
  *
108
110
  * All compute resources in vSphere have a resource pool, even if one has not been
109
- * explicitly created. This resource pool is referred to as the
110
- * _root resource pool_ and can be looked up by specifying the path.
111
+ * explicitly created. This resource pool is referred to as the _root resource
112
+ * pool_ and can be looked up by specifying the path.
111
113
  *
112
114
  * ```typescript
113
115
  * import * as pulumi from "@pulumi/pulumi";
@@ -119,9 +121,11 @@ export interface GetResourcePoolResult {
119
121
  * });
120
122
  * ```
121
123
  *
122
- * For more information on the root resource pool, see [Managing Resource Pools][vmware-docs-resource-pools] in the vSphere documentation.
124
+ * For more information on the root resource pool, see
125
+ * [Managing Resource Pools][vmware-docs-resource-pools] in the vSphere
126
+ * documentation.
123
127
  *
124
- * [vmware-docs-resource-pools]: https://docs.vmware.com/en/VMware-vSphere/7.0/com.vmware.vsphere.resmgmt.doc/GUID-60077B40-66FF-4625-934A-641703ED7601.html
128
+ * [vmware-docs-resource-pools]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-resource-management/GUID-60077B40-66FF-4625-934A-641703ED7601.html
125
129
  */
126
130
  export declare function getResourcePoolOutput(args?: GetResourcePoolOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetResourcePoolResult>;
127
131
  /**
@@ -33,8 +33,8 @@ const utilities = require("./utilities");
33
33
  * data source.
34
34
  *
35
35
  * All compute resources in vSphere have a resource pool, even if one has not been
36
- * explicitly created. This resource pool is referred to as the
37
- * _root resource pool_ and can be looked up by specifying the path.
36
+ * explicitly created. This resource pool is referred to as the _root resource
37
+ * pool_ and can be looked up by specifying the path.
38
38
  *
39
39
  * ```typescript
40
40
  * import * as pulumi from "@pulumi/pulumi";
@@ -46,9 +46,11 @@ const utilities = require("./utilities");
46
46
  * });
47
47
  * ```
48
48
  *
49
- * For more information on the root resource pool, see [Managing Resource Pools][vmware-docs-resource-pools] in the vSphere documentation.
49
+ * For more information on the root resource pool, see
50
+ * [Managing Resource Pools][vmware-docs-resource-pools] in the vSphere
51
+ * documentation.
50
52
  *
51
- * [vmware-docs-resource-pools]: https://docs.vmware.com/en/VMware-vSphere/7.0/com.vmware.vsphere.resmgmt.doc/GUID-60077B40-66FF-4625-934A-641703ED7601.html
53
+ * [vmware-docs-resource-pools]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-resource-management/GUID-60077B40-66FF-4625-934A-641703ED7601.html
52
54
  */
53
55
  function getResourcePool(args, opts) {
54
56
  args = args || {};
@@ -87,8 +89,8 @@ exports.getResourcePool = getResourcePool;
87
89
  * data source.
88
90
  *
89
91
  * All compute resources in vSphere have a resource pool, even if one has not been
90
- * explicitly created. This resource pool is referred to as the
91
- * _root resource pool_ and can be looked up by specifying the path.
92
+ * explicitly created. This resource pool is referred to as the _root resource
93
+ * pool_ and can be looked up by specifying the path.
92
94
  *
93
95
  * ```typescript
94
96
  * import * as pulumi from "@pulumi/pulumi";
@@ -100,9 +102,11 @@ exports.getResourcePool = getResourcePool;
100
102
  * });
101
103
  * ```
102
104
  *
103
- * For more information on the root resource pool, see [Managing Resource Pools][vmware-docs-resource-pools] in the vSphere documentation.
105
+ * For more information on the root resource pool, see
106
+ * [Managing Resource Pools][vmware-docs-resource-pools] in the vSphere
107
+ * documentation.
104
108
  *
105
- * [vmware-docs-resource-pools]: https://docs.vmware.com/en/VMware-vSphere/7.0/com.vmware.vsphere.resmgmt.doc/GUID-60077B40-66FF-4625-934A-641703ED7601.html
109
+ * [vmware-docs-resource-pools]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-resource-management/GUID-60077B40-66FF-4625-934A-641703ED7601.html
106
110
  */
107
111
  function getResourcePoolOutput(args, opts) {
108
112
  return pulumi.output(args).apply((a) => getResourcePool(a, opts));
@@ -1 +1 @@
1
- {"version":3,"file":"getResourcePool.js","sourceRoot":"","sources":["../getResourcePool.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4CG;AACH,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAA2B;IACnF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+CAA+C,EAAE;QAC1E,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,0CAQC;AAoCD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4CG;AACH,SAAgB,qBAAqB,CAAC,IAAgC,EAAE,IAA2B;IAC/F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,eAAe,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC1E,CAAC;AAFD,sDAEC"}
1
+ {"version":3,"file":"getResourcePool.js","sourceRoot":"","sources":["../getResourcePool.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8CG;AACH,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAA2B;IACnF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+CAA+C,EAAE;QAC1E,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,0CAQC;AAoCD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8CG;AACH,SAAgB,qBAAqB,CAAC,IAAgC,EAAE,IAA2B;IAC/F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,eAAe,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC1E,CAAC;AAFD,sDAEC"}
package/getRole.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  /**
3
- * The `vsphere.Role` data source can be used to discover the `id` and privileges associated
4
- * with a role given its name or display label.
3
+ * The `vsphere.Role` data source can be used to discover the `id` and privileges
4
+ * associated with a role given its name or display label.
5
5
  *
6
6
  * ## Example Usage
7
7
  *
@@ -56,8 +56,8 @@ export interface GetRoleResult {
56
56
  readonly rolePrivileges?: string[];
57
57
  }
58
58
  /**
59
- * The `vsphere.Role` data source can be used to discover the `id` and privileges associated
60
- * with a role given its name or display label.
59
+ * The `vsphere.Role` data source can be used to discover the `id` and privileges
60
+ * associated with a role given its name or display label.
61
61
  *
62
62
  * ## Example Usage
63
63
  *
package/getRole.js CHANGED
@@ -6,8 +6,8 @@ exports.getRoleOutput = exports.getRole = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("./utilities");
8
8
  /**
9
- * The `vsphere.Role` data source can be used to discover the `id` and privileges associated
10
- * with a role given its name or display label.
9
+ * The `vsphere.Role` data source can be used to discover the `id` and privileges
10
+ * associated with a role given its name or display label.
11
11
  *
12
12
  * ## Example Usage
13
13
  *
@@ -31,8 +31,8 @@ function getRole(args, opts) {
31
31
  }
32
32
  exports.getRole = getRole;
33
33
  /**
34
- * The `vsphere.Role` data source can be used to discover the `id` and privileges associated
35
- * with a role given its name or display label.
34
+ * The `vsphere.Role` data source can be used to discover the `id` and privileges
35
+ * associated with a role given its name or display label.
36
36
  *
37
37
  * ## Example Usage
38
38
  *
@@ -10,8 +10,8 @@ import * as outputs from "./types/output";
10
10
  *
11
11
  * ## Example Usage
12
12
  *
13
- * In the following example, a virtual machine template is returned by its
14
- * unique name within the `vsphere.Datacenter`.
13
+ * In the following example, a virtual machine template is returned by its unique
14
+ * name within the `vsphere.Datacenter`.
15
15
  *
16
16
  * ```typescript
17
17
  * import * as pulumi from "@pulumi/pulumi";
@@ -25,6 +25,7 @@ import * as outputs from "./types/output";
25
25
  * datacenterId: datacenter.id,
26
26
  * }));
27
27
  * ```
28
+ *
28
29
  * In the following example, each virtual machine template is returned by its
29
30
  * unique full path within the `vsphere.Datacenter`.
30
31
  *
@@ -52,7 +53,8 @@ export declare function getVirtualMachine(args?: GetVirtualMachineArgs, opts?: p
52
53
  export interface GetVirtualMachineArgs {
53
54
  /**
54
55
  * The alternate guest name of the virtual machine when
55
- * `guestId` is a non-specific operating system, like `otherGuest` or `otherGuest64`.
56
+ * `guestId` is a non-specific operating system, like `otherGuest` or
57
+ * `otherGuest64`.
56
58
  */
57
59
  alternateGuestName?: string;
58
60
  /**
@@ -86,7 +88,8 @@ export interface GetVirtualMachineArgs {
86
88
  };
87
89
  extraConfigRebootRequired?: boolean;
88
90
  /**
89
- * The firmware type for this virtual machine. Can be `bios` or `efi`.
91
+ * The firmware type for this virtual machine. Can be `bios` or
92
+ * `efi`.
90
93
  */
91
94
  firmware?: string;
92
95
  /**
@@ -123,7 +126,8 @@ export interface GetVirtualMachineArgs {
123
126
  name?: string;
124
127
  nestedHvEnabled?: boolean;
125
128
  /**
126
- * The number of cores per socket for this virtual machine.
129
+ * The number of cores per socket for this virtual
130
+ * machine.
127
131
  */
128
132
  numCoresPerSocket?: number;
129
133
  /**
@@ -169,7 +173,8 @@ export interface GetVirtualMachineArgs {
169
173
  export interface GetVirtualMachineResult {
170
174
  /**
171
175
  * The alternate guest name of the virtual machine when
172
- * `guestId` is a non-specific operating system, like `otherGuest` or `otherGuest64`.
176
+ * `guestId` is a non-specific operating system, like `otherGuest` or
177
+ * `otherGuest64`.
173
178
  */
174
179
  readonly alternateGuestName?: string;
175
180
  /**
@@ -189,11 +194,11 @@ export interface GetVirtualMachineResult {
189
194
  readonly cpuShareLevel?: string;
190
195
  readonly datacenterId?: string;
191
196
  /**
192
- * Whenever possible, this is the first IPv4 address that is reachable through
193
- * the default gateway configured on the machine, then the first reachable IPv6
194
- * address, and then the first general discovered address if neither exist. If
195
- * VMware Tools is not running on the virtual machine, or if the VM is powered
196
- * off, this value will be blank.
197
+ * Whenever possible, this is the first IPv4 address that
198
+ * is reachable through the default gateway configured on the machine, then the
199
+ * first reachable IPv6 address, and then the first general discovered address if
200
+ * neither exist. If VMware Tools is not running on the virtual machine, or if
201
+ * the VM is powered off, this value will be blank.
197
202
  */
198
203
  readonly defaultIpAddress: string;
199
204
  /**
@@ -201,22 +206,23 @@ export interface GetVirtualMachineResult {
201
206
  * template. These are sorted by bus and unit number so that they can be applied
202
207
  * to a `vsphere.VirtualMachine` resource in the order the resource expects
203
208
  * while cloning. This is useful for discovering certain disk settings while
204
- * performing a linked clone, as all settings that are output by this data
205
- * source must be the same on the destination virtual machine as the source.
206
- * Only the first number of controllers defined by `scsiControllerScanCount`
207
- * are scanned for disks. The sub-attributes are:
209
+ * performing a linked clone, as all settings that are output by this data source
210
+ * must be the same on the destination virtual machine as the source. Only the
211
+ * first number of controllers defined by `scsiControllerScanCount` are
212
+ * scanned for disks. The sub-attributes are:
208
213
  */
209
214
  readonly disks: outputs.GetVirtualMachineDisk[];
210
215
  readonly efiSecureBootEnabled?: boolean;
211
216
  readonly enableDiskUuid?: boolean;
212
217
  readonly enableLogging?: boolean;
213
- readonly eptRviMode?: string;
218
+ readonly eptRviMode: string;
214
219
  readonly extraConfig?: {
215
220
  [key: string]: string;
216
221
  };
217
222
  readonly extraConfigRebootRequired?: boolean;
218
223
  /**
219
- * The firmware type for this virtual machine. Can be `bios` or `efi`.
224
+ * The firmware type for this virtual machine. Can be `bios` or
225
+ * `efi`.
220
226
  */
221
227
  readonly firmware?: string;
222
228
  readonly folder?: string;
@@ -232,12 +238,16 @@ export interface GetVirtualMachineResult {
232
238
  * The hardware version number on this virtual machine.
233
239
  */
234
240
  readonly hardwareVersion: number;
235
- readonly hvMode?: string;
241
+ readonly hvMode: string;
236
242
  /**
237
243
  * The provider-assigned unique ID for this managed resource.
238
244
  */
239
245
  readonly id: string;
240
246
  readonly ideControllerScanCount?: number;
247
+ /**
248
+ * The instance UUID of the virtual machine or template.
249
+ */
250
+ readonly instanceUuid: string;
241
251
  readonly latencySensitivity?: string;
242
252
  /**
243
253
  * The size of the virtual machine's memory, in MB.
@@ -255,21 +265,23 @@ export interface GetVirtualMachineResult {
255
265
  /**
256
266
  * The network interface types for each network
257
267
  * interface found on the virtual machine, in device bus order. Will be one of
258
- * `e1000`, `e1000e`, `pcnet32`, `sriov`, `vmxnet2`, `vmxnet3vrdma`, or `vmxnet3`.
268
+ * `e1000`, `e1000e`, `pcnet32`, `sriov`, `vmxnet2`, `vmxnet3vrdma`, or
269
+ * `vmxnet3`.
259
270
  */
260
271
  readonly networkInterfaceTypes: string[];
261
272
  /**
262
- * Information about each of the network interfaces on this
263
- * virtual machine or template. These are sorted by device bus order so that they
264
- * can be applied to a `vsphere.VirtualMachine` resource in the order the resource
265
- * expects while cloning. This is useful for discovering certain network interface
266
- * settings while performing a linked clone, as all settings that are output by this
267
- * data source must be the same on the destination virtual machine as the source.
268
- * The sub-attributes are:
273
+ * Information about each of the network interfaces on
274
+ * this virtual machine or template. These are sorted by device bus order so that
275
+ * they can be applied to a `vsphere.VirtualMachine` resource in the order the
276
+ * resource expects while cloning. This is useful for discovering certain network
277
+ * interface settings while performing a linked clone, as all settings that are
278
+ * output by this data source must be the same on the destination virtual machine
279
+ * as the source. The sub-attributes are:
269
280
  */
270
281
  readonly networkInterfaces: outputs.GetVirtualMachineNetworkInterface[];
271
282
  /**
272
- * The number of cores per socket for this virtual machine.
283
+ * The number of cores per socket for this virtual
284
+ * machine.
273
285
  */
274
286
  readonly numCoresPerSocket?: number;
275
287
  /**
@@ -319,8 +331,8 @@ export interface GetVirtualMachineResult {
319
331
  *
320
332
  * ## Example Usage
321
333
  *
322
- * In the following example, a virtual machine template is returned by its
323
- * unique name within the `vsphere.Datacenter`.
334
+ * In the following example, a virtual machine template is returned by its unique
335
+ * name within the `vsphere.Datacenter`.
324
336
  *
325
337
  * ```typescript
326
338
  * import * as pulumi from "@pulumi/pulumi";
@@ -334,6 +346,7 @@ export interface GetVirtualMachineResult {
334
346
  * datacenterId: datacenter.id,
335
347
  * }));
336
348
  * ```
349
+ *
337
350
  * In the following example, each virtual machine template is returned by its
338
351
  * unique full path within the `vsphere.Datacenter`.
339
352
  *
@@ -361,7 +374,8 @@ export declare function getVirtualMachineOutput(args?: GetVirtualMachineOutputAr
361
374
  export interface GetVirtualMachineOutputArgs {
362
375
  /**
363
376
  * The alternate guest name of the virtual machine when
364
- * `guestId` is a non-specific operating system, like `otherGuest` or `otherGuest64`.
377
+ * `guestId` is a non-specific operating system, like `otherGuest` or
378
+ * `otherGuest64`.
365
379
  */
366
380
  alternateGuestName?: pulumi.Input<string>;
367
381
  /**
@@ -395,7 +409,8 @@ export interface GetVirtualMachineOutputArgs {
395
409
  }>;
396
410
  extraConfigRebootRequired?: pulumi.Input<boolean>;
397
411
  /**
398
- * The firmware type for this virtual machine. Can be `bios` or `efi`.
412
+ * The firmware type for this virtual machine. Can be `bios` or
413
+ * `efi`.
399
414
  */
400
415
  firmware?: pulumi.Input<string>;
401
416
  /**
@@ -432,7 +447,8 @@ export interface GetVirtualMachineOutputArgs {
432
447
  name?: pulumi.Input<string>;
433
448
  nestedHvEnabled?: pulumi.Input<boolean>;
434
449
  /**
435
- * The number of cores per socket for this virtual machine.
450
+ * The number of cores per socket for this virtual
451
+ * machine.
436
452
  */
437
453
  numCoresPerSocket?: pulumi.Input<number>;
438
454
  /**
@@ -14,8 +14,8 @@ const utilities = require("./utilities");
14
14
  *
15
15
  * ## Example Usage
16
16
  *
17
- * In the following example, a virtual machine template is returned by its
18
- * unique name within the `vsphere.Datacenter`.
17
+ * In the following example, a virtual machine template is returned by its unique
18
+ * name within the `vsphere.Datacenter`.
19
19
  *
20
20
  * ```typescript
21
21
  * import * as pulumi from "@pulumi/pulumi";
@@ -29,6 +29,7 @@ const utilities = require("./utilities");
29
29
  * datacenterId: datacenter.id,
30
30
  * }));
31
31
  * ```
32
+ *
32
33
  * In the following example, each virtual machine template is returned by its
33
34
  * unique full path within the `vsphere.Datacenter`.
34
35
  *
@@ -120,8 +121,8 @@ exports.getVirtualMachine = getVirtualMachine;
120
121
  *
121
122
  * ## Example Usage
122
123
  *
123
- * In the following example, a virtual machine template is returned by its
124
- * unique name within the `vsphere.Datacenter`.
124
+ * In the following example, a virtual machine template is returned by its unique
125
+ * name within the `vsphere.Datacenter`.
125
126
  *
126
127
  * ```typescript
127
128
  * import * as pulumi from "@pulumi/pulumi";
@@ -135,6 +136,7 @@ exports.getVirtualMachine = getVirtualMachine;
135
136
  * datacenterId: datacenter.id,
136
137
  * }));
137
138
  * ```
139
+ *
138
140
  * In the following example, each virtual machine template is returned by its
139
141
  * unique full path within the `vsphere.Datacenter`.
140
142
  *
@@ -1 +1 @@
1
- {"version":3,"file":"getVirtualMachine.js","sourceRoot":"","sources":["../getVirtualMachine.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"getVirtualMachine.js","sourceRoot":"","sources":["../getVirtualMachine.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4CG;AACH,SAAgB,iBAAiB,CAAC,IAA4B,EAAE,IAA2B;IACvF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,mDAAmD,EAAE;QAC9E,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;QAC7C,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;QAC/C,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,+BAA+B,EAAE,IAAI,CAAC,6BAA6B;QACnE,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;QACjD,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,2BAA2B,EAAE,IAAI,CAAC,yBAAyB;QAC3D,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;QACrD,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;QAC7C,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;QAC/C,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,8BAA8B,EAAE,IAAI,CAAC,4BAA4B;QACjE,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,6BAA6B,EAAE,IAAI,CAAC,2BAA2B;QAC/D,4BAA4B,EAAE,IAAI,CAAC,0BAA0B;QAC7D,kCAAkC,EAAE,IAAI,CAAC,gCAAgC;QACzE,oCAAoC,EAAE,IAAI,CAAC,kCAAkC;QAC7E,mCAAmC,EAAE,IAAI,CAAC,iCAAiC;QAC3E,yBAAyB,EAAE,IAAI,CAAC,uBAAuB;QACvD,yBAAyB,EAAE,IAAI,CAAC,uBAAuB;QACvD,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;QAC/C,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,8BAA8B,EAAE,IAAI,CAAC,4BAA4B;QACjE,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;QAC7C,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,aAAa,EAAE,IAAI,CAAC,WAAW;KAClC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AA7DD,8CA6DC;AAkRD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4CG;AACH,SAAgB,uBAAuB,CAAC,IAAkC,EAAE,IAA2B;IACnG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,iBAAiB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC5E,CAAC;AAFD,0DAEC"}
@@ -12,8 +12,8 @@ import * as outputs from "./types/output";
12
12
  * import * as pulumi from "@pulumi/pulumi";
13
13
  * import * as vsphere from "@pulumi/vsphere";
14
14
  *
15
- * const windowsCustomization = new vsphere.GuestOsCustomization("windows_customization", {
16
- * name: "windows-spec",
15
+ * const windows = new vsphere.GuestOsCustomization("windows", {
16
+ * name: "windows",
17
17
  * type: "Windows",
18
18
  * spec: {
19
19
  * windowsOptions: {
@@ -16,8 +16,8 @@ const utilities = require("./utilities");
16
16
  * import * as pulumi from "@pulumi/pulumi";
17
17
  * import * as vsphere from "@pulumi/vsphere";
18
18
  *
19
- * const windowsCustomization = new vsphere.GuestOsCustomization("windows_customization", {
20
- * name: "windows-spec",
19
+ * const windows = new vsphere.GuestOsCustomization("windows", {
20
+ * name: "windows",
21
21
  * type: "Windows",
22
22
  * spec: {
23
23
  * windowsOptions: {
package/index.d.ts CHANGED
@@ -100,6 +100,9 @@ export declare const getGuestOsCustomizationOutput: typeof import("./getGuestOsC
100
100
  export { GetHostArgs, GetHostResult, GetHostOutputArgs } from "./getHost";
101
101
  export declare const getHost: typeof import("./getHost").getHost;
102
102
  export declare const getHostOutput: typeof import("./getHost").getHostOutput;
103
+ export { GetHostBaseImagesResult } from "./getHostBaseImages";
104
+ export declare const getHostBaseImages: typeof import("./getHostBaseImages").getHostBaseImages;
105
+ export declare const getHostBaseImagesOutput: typeof import("./getHostBaseImages").getHostBaseImagesOutput;
103
106
  export { GetHostPciDeviceArgs, GetHostPciDeviceResult, GetHostPciDeviceOutputArgs } from "./getHostPciDevice";
104
107
  export declare const getHostPciDevice: typeof import("./getHostPciDevice").getHostPciDevice;
105
108
  export declare const getHostPciDeviceOutput: typeof import("./getHostPciDevice").getHostPciDeviceOutput;
@@ -163,6 +166,9 @@ export declare const License: typeof import("./license").License;
163
166
  export { NasDatastoreArgs, NasDatastoreState } from "./nasDatastore";
164
167
  export type NasDatastore = import("./nasDatastore").NasDatastore;
165
168
  export declare const NasDatastore: typeof import("./nasDatastore").NasDatastore;
169
+ export { OfflineSoftwareDepotArgs, OfflineSoftwareDepotState } from "./offlineSoftwareDepot";
170
+ export type OfflineSoftwareDepot = import("./offlineSoftwareDepot").OfflineSoftwareDepot;
171
+ export declare const OfflineSoftwareDepot: typeof import("./offlineSoftwareDepot").OfflineSoftwareDepot;
166
172
  export { ProviderArgs } from "./provider";
167
173
  export type Provider = import("./provider").Provider;
168
174
  export declare const Provider: typeof import("./provider").Provider;
@@ -175,6 +181,9 @@ export declare const Role: typeof import("./role").Role;
175
181
  export { StorageDrsVmOverrideArgs, StorageDrsVmOverrideState } from "./storageDrsVmOverride";
176
182
  export type StorageDrsVmOverride = import("./storageDrsVmOverride").StorageDrsVmOverride;
177
183
  export declare const StorageDrsVmOverride: typeof import("./storageDrsVmOverride").StorageDrsVmOverride;
184
+ export { SupervisorArgs, SupervisorState } from "./supervisor";
185
+ export type Supervisor = import("./supervisor").Supervisor;
186
+ export declare const Supervisor: typeof import("./supervisor").Supervisor;
178
187
  export { TagArgs, TagState } from "./tag";
179
188
  export type Tag = import("./tag").Tag;
180
189
  export declare const Tag: typeof import("./tag").Tag;
@@ -193,6 +202,9 @@ export declare const VirtualDisk: typeof import("./virtualDisk").VirtualDisk;
193
202
  export { VirtualMachineArgs, VirtualMachineState } from "./virtualMachine";
194
203
  export type VirtualMachine = import("./virtualMachine").VirtualMachine;
195
204
  export declare const VirtualMachine: typeof import("./virtualMachine").VirtualMachine;
205
+ export { VirtualMachineClassArgs, VirtualMachineClassState } from "./virtualMachineClass";
206
+ export type VirtualMachineClass = import("./virtualMachineClass").VirtualMachineClass;
207
+ export declare const VirtualMachineClass: typeof import("./virtualMachineClass").VirtualMachineClass;
196
208
  export { VirtualMachineSnapshotArgs, VirtualMachineSnapshotState } from "./virtualMachineSnapshot";
197
209
  export type VirtualMachineSnapshot = import("./virtualMachineSnapshot").VirtualMachineSnapshot;
198
210
  export declare const VirtualMachineSnapshot: typeof import("./virtualMachineSnapshot").VirtualMachineSnapshot;
package/index.js CHANGED
@@ -2,8 +2,9 @@
2
2
  // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
  Object.defineProperty(exports, "__esModule", { value: true });
5
- exports.getHostPciDeviceOutput = exports.getHostPciDevice = exports.getHostOutput = exports.getHost = exports.getGuestOsCustomizationOutput = exports.getGuestOsCustomization = exports.getFolderOutput = exports.getFolder = exports.getDynamicOutput = exports.getDynamic = exports.getDistributedVirtualSwitchOutput = exports.getDistributedVirtualSwitch = exports.getDatastoreStatsOutput = exports.getDatastoreStats = exports.getDatastoreClusterOutput = exports.getDatastoreCluster = exports.getDatastoreOutput = exports.getDatastore = exports.getDatacenterOutput = exports.getDatacenter = exports.getCustomAttributeOutput = exports.getCustomAttribute = exports.getContentLibraryItemOutput = exports.getContentLibraryItem = exports.getContentLibraryOutput = exports.getContentLibrary = exports.getComputeClusterHostGroupOutput = exports.getComputeClusterHostGroup = exports.getComputeClusterOutput = exports.getComputeCluster = exports.Folder = exports.File = exports.EntityPermissions = exports.DrsVmOverride = exports.DpmHostOverride = exports.DistributedVirtualSwitch = exports.DistributedPortGroup = exports.DatastoreClusterVmAntiAffinityRule = exports.DatastoreCluster = exports.Datacenter = exports.CustomAttribute = exports.ContentLibraryItem = exports.ContentLibrary = exports.ComputeClusterVmHostRule = exports.ComputeClusterVmGroup = exports.ComputeClusterVmDependencyRule = exports.ComputeClusterVmAntiAffinityRule = exports.ComputeClusterVmAffinityRule = exports.ComputeClusterHostGroup = exports.ComputeCluster = void 0;
6
- exports.types = exports.config = exports.Vnic = exports.VmfsDatastore = exports.VmStoragePolicy = exports.VirtualMachineSnapshot = exports.VirtualMachine = exports.VirtualDisk = exports.VappEntity = exports.VappContainer = exports.TagCategory = exports.Tag = exports.StorageDrsVmOverride = exports.Role = exports.ResourcePool = exports.Provider = exports.NasDatastore = exports.License = exports.HostVirtualSwitch = exports.HostPortGroup = exports.Host = exports.HaVmOverride = exports.GuestOsCustomization = exports.getVmfsDisksOutput = exports.getVmfsDisks = exports.getVirtualMachineOutput = exports.getVirtualMachine = exports.getVappContainerOutput = exports.getVappContainer = exports.getTagCategoryOutput = exports.getTagCategory = exports.getTagOutput = exports.getTag = exports.getRoleOutput = exports.getRole = exports.getResourcePoolOutput = exports.getResourcePool = exports.getPolicyOutput = exports.getPolicy = exports.getOvfVmTemplateOutput = exports.getOvfVmTemplate = exports.getNetworkOutput = exports.getNetwork = exports.getLicenseOutput = exports.getLicense = exports.getHostVgpuProfileOutput = exports.getHostVgpuProfile = exports.getHostThumbprintOutput = exports.getHostThumbprint = void 0;
5
+ exports.getHostBaseImagesOutput = exports.getHostBaseImages = exports.getHostOutput = exports.getHost = exports.getGuestOsCustomizationOutput = exports.getGuestOsCustomization = exports.getFolderOutput = exports.getFolder = exports.getDynamicOutput = exports.getDynamic = exports.getDistributedVirtualSwitchOutput = exports.getDistributedVirtualSwitch = exports.getDatastoreStatsOutput = exports.getDatastoreStats = exports.getDatastoreClusterOutput = exports.getDatastoreCluster = exports.getDatastoreOutput = exports.getDatastore = exports.getDatacenterOutput = exports.getDatacenter = exports.getCustomAttributeOutput = exports.getCustomAttribute = exports.getContentLibraryItemOutput = exports.getContentLibraryItem = exports.getContentLibraryOutput = exports.getContentLibrary = exports.getComputeClusterHostGroupOutput = exports.getComputeClusterHostGroup = exports.getComputeClusterOutput = exports.getComputeCluster = exports.Folder = exports.File = exports.EntityPermissions = exports.DrsVmOverride = exports.DpmHostOverride = exports.DistributedVirtualSwitch = exports.DistributedPortGroup = exports.DatastoreClusterVmAntiAffinityRule = exports.DatastoreCluster = exports.Datacenter = exports.CustomAttribute = exports.ContentLibraryItem = exports.ContentLibrary = exports.ComputeClusterVmHostRule = exports.ComputeClusterVmGroup = exports.ComputeClusterVmDependencyRule = exports.ComputeClusterVmAntiAffinityRule = exports.ComputeClusterVmAffinityRule = exports.ComputeClusterHostGroup = exports.ComputeCluster = void 0;
6
+ exports.VmStoragePolicy = exports.VirtualMachineSnapshot = exports.VirtualMachineClass = exports.VirtualMachine = exports.VirtualDisk = exports.VappEntity = exports.VappContainer = exports.TagCategory = exports.Tag = exports.Supervisor = exports.StorageDrsVmOverride = exports.Role = exports.ResourcePool = exports.Provider = exports.OfflineSoftwareDepot = exports.NasDatastore = exports.License = exports.HostVirtualSwitch = exports.HostPortGroup = exports.Host = exports.HaVmOverride = exports.GuestOsCustomization = exports.getVmfsDisksOutput = exports.getVmfsDisks = exports.getVirtualMachineOutput = exports.getVirtualMachine = exports.getVappContainerOutput = exports.getVappContainer = exports.getTagCategoryOutput = exports.getTagCategory = exports.getTagOutput = exports.getTag = exports.getRoleOutput = exports.getRole = exports.getResourcePoolOutput = exports.getResourcePool = exports.getPolicyOutput = exports.getPolicy = exports.getOvfVmTemplateOutput = exports.getOvfVmTemplate = exports.getNetworkOutput = exports.getNetwork = exports.getLicenseOutput = exports.getLicense = exports.getHostVgpuProfileOutput = exports.getHostVgpuProfile = exports.getHostThumbprintOutput = exports.getHostThumbprint = exports.getHostPciDeviceOutput = exports.getHostPciDevice = void 0;
7
+ exports.types = exports.config = exports.Vnic = exports.VmfsDatastore = void 0;
7
8
  const pulumi = require("@pulumi/pulumi");
8
9
  const utilities = require("./utilities");
9
10
  exports.ComputeCluster = null;
@@ -88,6 +89,9 @@ utilities.lazyLoad(exports, ["getGuestOsCustomization", "getGuestOsCustomization
88
89
  exports.getHost = null;
89
90
  exports.getHostOutput = null;
90
91
  utilities.lazyLoad(exports, ["getHost", "getHostOutput"], () => require("./getHost"));
92
+ exports.getHostBaseImages = null;
93
+ exports.getHostBaseImagesOutput = null;
94
+ utilities.lazyLoad(exports, ["getHostBaseImages", "getHostBaseImagesOutput"], () => require("./getHostBaseImages"));
91
95
  exports.getHostPciDevice = null;
92
96
  exports.getHostPciDeviceOutput = null;
93
97
  utilities.lazyLoad(exports, ["getHostPciDevice", "getHostPciDeviceOutput"], () => require("./getHostPciDevice"));
@@ -144,6 +148,8 @@ exports.License = null;
144
148
  utilities.lazyLoad(exports, ["License"], () => require("./license"));
145
149
  exports.NasDatastore = null;
146
150
  utilities.lazyLoad(exports, ["NasDatastore"], () => require("./nasDatastore"));
151
+ exports.OfflineSoftwareDepot = null;
152
+ utilities.lazyLoad(exports, ["OfflineSoftwareDepot"], () => require("./offlineSoftwareDepot"));
147
153
  exports.Provider = null;
148
154
  utilities.lazyLoad(exports, ["Provider"], () => require("./provider"));
149
155
  exports.ResourcePool = null;
@@ -152,6 +158,8 @@ exports.Role = null;
152
158
  utilities.lazyLoad(exports, ["Role"], () => require("./role"));
153
159
  exports.StorageDrsVmOverride = null;
154
160
  utilities.lazyLoad(exports, ["StorageDrsVmOverride"], () => require("./storageDrsVmOverride"));
161
+ exports.Supervisor = null;
162
+ utilities.lazyLoad(exports, ["Supervisor"], () => require("./supervisor"));
155
163
  exports.Tag = null;
156
164
  utilities.lazyLoad(exports, ["Tag"], () => require("./tag"));
157
165
  exports.TagCategory = null;
@@ -164,6 +172,8 @@ exports.VirtualDisk = null;
164
172
  utilities.lazyLoad(exports, ["VirtualDisk"], () => require("./virtualDisk"));
165
173
  exports.VirtualMachine = null;
166
174
  utilities.lazyLoad(exports, ["VirtualMachine"], () => require("./virtualMachine"));
175
+ exports.VirtualMachineClass = null;
176
+ utilities.lazyLoad(exports, ["VirtualMachineClass"], () => require("./virtualMachineClass"));
167
177
  exports.VirtualMachineSnapshot = null;
168
178
  utilities.lazyLoad(exports, ["VirtualMachineSnapshot"], () => require("./virtualMachineSnapshot"));
169
179
  exports.VmStoragePolicy = null;
@@ -235,12 +245,16 @@ const _module = {
235
245
  return new exports.License(name, undefined, { urn });
236
246
  case "vsphere:index/nasDatastore:NasDatastore":
237
247
  return new exports.NasDatastore(name, undefined, { urn });
248
+ case "vsphere:index/offlineSoftwareDepot:OfflineSoftwareDepot":
249
+ return new exports.OfflineSoftwareDepot(name, undefined, { urn });
238
250
  case "vsphere:index/resourcePool:ResourcePool":
239
251
  return new exports.ResourcePool(name, undefined, { urn });
240
252
  case "vsphere:index/role:Role":
241
253
  return new exports.Role(name, undefined, { urn });
242
254
  case "vsphere:index/storageDrsVmOverride:StorageDrsVmOverride":
243
255
  return new exports.StorageDrsVmOverride(name, undefined, { urn });
256
+ case "vsphere:index/supervisor:Supervisor":
257
+ return new exports.Supervisor(name, undefined, { urn });
244
258
  case "vsphere:index/tag:Tag":
245
259
  return new exports.Tag(name, undefined, { urn });
246
260
  case "vsphere:index/tagCategory:TagCategory":
@@ -253,6 +267,8 @@ const _module = {
253
267
  return new exports.VirtualDisk(name, undefined, { urn });
254
268
  case "vsphere:index/virtualMachine:VirtualMachine":
255
269
  return new exports.VirtualMachine(name, undefined, { urn });
270
+ case "vsphere:index/virtualMachineClass:VirtualMachineClass":
271
+ return new exports.VirtualMachineClass(name, undefined, { urn });
256
272
  case "vsphere:index/virtualMachineSnapshot:VirtualMachineSnapshot":
257
273
  return new exports.VirtualMachineSnapshot(name, undefined, { urn });
258
274
  case "vsphere:index/vmStoragePolicy:VmStoragePolicy":
@@ -293,15 +309,18 @@ pulumi.runtime.registerResourceModule("vsphere", "index/hostPortGroup", _module)
293
309
  pulumi.runtime.registerResourceModule("vsphere", "index/hostVirtualSwitch", _module);
294
310
  pulumi.runtime.registerResourceModule("vsphere", "index/license", _module);
295
311
  pulumi.runtime.registerResourceModule("vsphere", "index/nasDatastore", _module);
312
+ pulumi.runtime.registerResourceModule("vsphere", "index/offlineSoftwareDepot", _module);
296
313
  pulumi.runtime.registerResourceModule("vsphere", "index/resourcePool", _module);
297
314
  pulumi.runtime.registerResourceModule("vsphere", "index/role", _module);
298
315
  pulumi.runtime.registerResourceModule("vsphere", "index/storageDrsVmOverride", _module);
316
+ pulumi.runtime.registerResourceModule("vsphere", "index/supervisor", _module);
299
317
  pulumi.runtime.registerResourceModule("vsphere", "index/tag", _module);
300
318
  pulumi.runtime.registerResourceModule("vsphere", "index/tagCategory", _module);
301
319
  pulumi.runtime.registerResourceModule("vsphere", "index/vappContainer", _module);
302
320
  pulumi.runtime.registerResourceModule("vsphere", "index/vappEntity", _module);
303
321
  pulumi.runtime.registerResourceModule("vsphere", "index/virtualDisk", _module);
304
322
  pulumi.runtime.registerResourceModule("vsphere", "index/virtualMachine", _module);
323
+ pulumi.runtime.registerResourceModule("vsphere", "index/virtualMachineClass", _module);
305
324
  pulumi.runtime.registerResourceModule("vsphere", "index/virtualMachineSnapshot", _module);
306
325
  pulumi.runtime.registerResourceModule("vsphere", "index/vmStoragePolicy", _module);
307
326
  pulumi.runtime.registerResourceModule("vsphere", "index/vmfsDatastore", _module);