@pulumi/vsphere 4.10.1 → 4.10.2-alpha.1720054582

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
@@ -0,0 +1,143 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * Provides a resource for configuring a Virtual Machine class.
4
+ *
5
+ * ## Example Usage
6
+ *
7
+ * ### S
8
+ *
9
+ * **Create a basic class**
10
+ *
11
+ * ```typescript
12
+ * import * as pulumi from "@pulumi/pulumi";
13
+ * import * as vsphere from "@pulumi/vsphere";
14
+ *
15
+ * const basicClass = new vsphere.VirtualMachineClass("basic_class", {
16
+ * name: "basic-class",
17
+ * cpus: 4,
18
+ * memory: 4096,
19
+ * });
20
+ * ```
21
+ *
22
+ * **Create a class with a vGPU**
23
+ *
24
+ * ```typescript
25
+ * import * as pulumi from "@pulumi/pulumi";
26
+ * import * as vsphere from "@pulumi/vsphere";
27
+ *
28
+ * const vgpClass = new vsphere.VirtualMachineClass("vgp_class", {
29
+ * name: "vgpu-class",
30
+ * cpus: 4,
31
+ * memory: 4096,
32
+ * memoryReservation: 100,
33
+ * vgpuDevices: ["vgpu1"],
34
+ * });
35
+ * ```
36
+ */
37
+ export declare class VirtualMachineClass extends pulumi.CustomResource {
38
+ /**
39
+ * Get an existing VirtualMachineClass resource's state with the given name, ID, and optional extra
40
+ * properties used to qualify the lookup.
41
+ *
42
+ * @param name The _unique_ name of the resulting resource.
43
+ * @param id The _unique_ provider ID of the resource to lookup.
44
+ * @param state Any extra arguments used during the lookup.
45
+ * @param opts Optional settings to control the behavior of the CustomResource.
46
+ */
47
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: VirtualMachineClassState, opts?: pulumi.CustomResourceOptions): VirtualMachineClass;
48
+ /**
49
+ * Returns true if the given object is an instance of VirtualMachineClass. This is designed to work even
50
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
51
+ */
52
+ static isInstance(obj: any): obj is VirtualMachineClass;
53
+ /**
54
+ * The percentage of the available CPU capacity which will be reserved.
55
+ */
56
+ readonly cpuReservation: pulumi.Output<number | undefined>;
57
+ /**
58
+ * The number of CPUs.
59
+ */
60
+ readonly cpus: pulumi.Output<number>;
61
+ /**
62
+ * The amount of memory in MB.
63
+ */
64
+ readonly memory: pulumi.Output<number>;
65
+ /**
66
+ * The percentage of memory reservation.
67
+ */
68
+ readonly memoryReservation: pulumi.Output<number | undefined>;
69
+ /**
70
+ * The name for the class.
71
+ */
72
+ readonly name: pulumi.Output<string>;
73
+ /**
74
+ * The identifiers of the vGPU devices for the class. If this is set memory reservation needs to be 100.
75
+ */
76
+ readonly vgpuDevices: pulumi.Output<string[] | undefined>;
77
+ /**
78
+ * Create a VirtualMachineClass resource with the given unique name, arguments, and options.
79
+ *
80
+ * @param name The _unique_ name of the resource.
81
+ * @param args The arguments to use to populate this resource's properties.
82
+ * @param opts A bag of options that control this resource's behavior.
83
+ */
84
+ constructor(name: string, args: VirtualMachineClassArgs, opts?: pulumi.CustomResourceOptions);
85
+ }
86
+ /**
87
+ * Input properties used for looking up and filtering VirtualMachineClass resources.
88
+ */
89
+ export interface VirtualMachineClassState {
90
+ /**
91
+ * The percentage of the available CPU capacity which will be reserved.
92
+ */
93
+ cpuReservation?: pulumi.Input<number>;
94
+ /**
95
+ * The number of CPUs.
96
+ */
97
+ cpus?: pulumi.Input<number>;
98
+ /**
99
+ * The amount of memory in MB.
100
+ */
101
+ memory?: pulumi.Input<number>;
102
+ /**
103
+ * The percentage of memory reservation.
104
+ */
105
+ memoryReservation?: pulumi.Input<number>;
106
+ /**
107
+ * The name for the class.
108
+ */
109
+ name?: pulumi.Input<string>;
110
+ /**
111
+ * The identifiers of the vGPU devices for the class. If this is set memory reservation needs to be 100.
112
+ */
113
+ vgpuDevices?: pulumi.Input<pulumi.Input<string>[]>;
114
+ }
115
+ /**
116
+ * The set of arguments for constructing a VirtualMachineClass resource.
117
+ */
118
+ export interface VirtualMachineClassArgs {
119
+ /**
120
+ * The percentage of the available CPU capacity which will be reserved.
121
+ */
122
+ cpuReservation?: pulumi.Input<number>;
123
+ /**
124
+ * The number of CPUs.
125
+ */
126
+ cpus: pulumi.Input<number>;
127
+ /**
128
+ * The amount of memory in MB.
129
+ */
130
+ memory: pulumi.Input<number>;
131
+ /**
132
+ * The percentage of memory reservation.
133
+ */
134
+ memoryReservation?: pulumi.Input<number>;
135
+ /**
136
+ * The name for the class.
137
+ */
138
+ name?: pulumi.Input<string>;
139
+ /**
140
+ * The identifiers of the vGPU devices for the class. If this is set memory reservation needs to be 100.
141
+ */
142
+ vgpuDevices?: pulumi.Input<pulumi.Input<string>[]>;
143
+ }
@@ -0,0 +1,100 @@
1
+ "use strict";
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
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.VirtualMachineClass = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * Provides a resource for configuring a Virtual Machine class.
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * ### S
14
+ *
15
+ * **Create a basic class**
16
+ *
17
+ * ```typescript
18
+ * import * as pulumi from "@pulumi/pulumi";
19
+ * import * as vsphere from "@pulumi/vsphere";
20
+ *
21
+ * const basicClass = new vsphere.VirtualMachineClass("basic_class", {
22
+ * name: "basic-class",
23
+ * cpus: 4,
24
+ * memory: 4096,
25
+ * });
26
+ * ```
27
+ *
28
+ * **Create a class with a vGPU**
29
+ *
30
+ * ```typescript
31
+ * import * as pulumi from "@pulumi/pulumi";
32
+ * import * as vsphere from "@pulumi/vsphere";
33
+ *
34
+ * const vgpClass = new vsphere.VirtualMachineClass("vgp_class", {
35
+ * name: "vgpu-class",
36
+ * cpus: 4,
37
+ * memory: 4096,
38
+ * memoryReservation: 100,
39
+ * vgpuDevices: ["vgpu1"],
40
+ * });
41
+ * ```
42
+ */
43
+ class VirtualMachineClass extends pulumi.CustomResource {
44
+ /**
45
+ * Get an existing VirtualMachineClass resource's state with the given name, ID, and optional extra
46
+ * properties used to qualify the lookup.
47
+ *
48
+ * @param name The _unique_ name of the resulting resource.
49
+ * @param id The _unique_ provider ID of the resource to lookup.
50
+ * @param state Any extra arguments used during the lookup.
51
+ * @param opts Optional settings to control the behavior of the CustomResource.
52
+ */
53
+ static get(name, id, state, opts) {
54
+ return new VirtualMachineClass(name, state, Object.assign(Object.assign({}, opts), { id: id }));
55
+ }
56
+ /**
57
+ * Returns true if the given object is an instance of VirtualMachineClass. This is designed to work even
58
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
59
+ */
60
+ static isInstance(obj) {
61
+ if (obj === undefined || obj === null) {
62
+ return false;
63
+ }
64
+ return obj['__pulumiType'] === VirtualMachineClass.__pulumiType;
65
+ }
66
+ constructor(name, argsOrState, opts) {
67
+ let resourceInputs = {};
68
+ opts = opts || {};
69
+ if (opts.id) {
70
+ const state = argsOrState;
71
+ resourceInputs["cpuReservation"] = state ? state.cpuReservation : undefined;
72
+ resourceInputs["cpus"] = state ? state.cpus : undefined;
73
+ resourceInputs["memory"] = state ? state.memory : undefined;
74
+ resourceInputs["memoryReservation"] = state ? state.memoryReservation : undefined;
75
+ resourceInputs["name"] = state ? state.name : undefined;
76
+ resourceInputs["vgpuDevices"] = state ? state.vgpuDevices : undefined;
77
+ }
78
+ else {
79
+ const args = argsOrState;
80
+ if ((!args || args.cpus === undefined) && !opts.urn) {
81
+ throw new Error("Missing required property 'cpus'");
82
+ }
83
+ if ((!args || args.memory === undefined) && !opts.urn) {
84
+ throw new Error("Missing required property 'memory'");
85
+ }
86
+ resourceInputs["cpuReservation"] = args ? args.cpuReservation : undefined;
87
+ resourceInputs["cpus"] = args ? args.cpus : undefined;
88
+ resourceInputs["memory"] = args ? args.memory : undefined;
89
+ resourceInputs["memoryReservation"] = args ? args.memoryReservation : undefined;
90
+ resourceInputs["name"] = args ? args.name : undefined;
91
+ resourceInputs["vgpuDevices"] = args ? args.vgpuDevices : undefined;
92
+ }
93
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
94
+ super(VirtualMachineClass.__pulumiType, name, resourceInputs, opts);
95
+ }
96
+ }
97
+ exports.VirtualMachineClass = VirtualMachineClass;
98
+ /** @internal */
99
+ VirtualMachineClass.__pulumiType = 'vsphere:index/virtualMachineClass:VirtualMachineClass';
100
+ //# sourceMappingURL=virtualMachineClass.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"virtualMachineClass.js","sourceRoot":"","sources":["../virtualMachineClass.ts"],"names":[],"mappings":"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"}
@@ -6,7 +6,7 @@ import * as pulumi from "@pulumi/pulumi";
6
6
  * For more information on managing snapshots and how they work in VMware, see
7
7
  * [here][ext-vm-snapshot-management].
8
8
  *
9
- * [ext-vm-snapshot-management]: https://docs.vmware.com/en/VMware-vSphere/7.0/com.vmware.vsphere.vm_admin.doc/GUID-CA948C69-7F58-4519-AEB1-739545EA94E5.html
9
+ * [ext-vm-snapshot-management]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-esxi-host-client/GUID-CA948C69-7F58-4519-AEB1-739545EA94E5.html
10
10
  *
11
11
  * > **NOTE:** A snapshot in VMware differs from traditional disk snapshots, and
12
12
  * can contain the actual running state of the virtual machine, data for all disks
@@ -12,7 +12,7 @@ const utilities = require("./utilities");
12
12
  * For more information on managing snapshots and how they work in VMware, see
13
13
  * [here][ext-vm-snapshot-management].
14
14
  *
15
- * [ext-vm-snapshot-management]: https://docs.vmware.com/en/VMware-vSphere/7.0/com.vmware.vsphere.vm_admin.doc/GUID-CA948C69-7F58-4519-AEB1-739545EA94E5.html
15
+ * [ext-vm-snapshot-management]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-esxi-host-client/GUID-CA948C69-7F58-4519-AEB1-739545EA94E5.html
16
16
  *
17
17
  * > **NOTE:** A snapshot in VMware differs from traditional disk snapshots, and
18
18
  * can contain the actual running state of the virtual machine, data for all disks
@@ -119,7 +119,7 @@ import * as outputs from "./types/output";
119
119
  * });
120
120
  * ```
121
121
  *
122
- * 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 `tagsRules`.
122
+ * Lastly, when creating a virtual machine resource, a storage policy can be specified to direct virtual machine placement to a datastore which matches the policy's `tagsRules`.
123
123
  *
124
124
  * ```typescript
125
125
  * import * as pulumi from "@pulumi/pulumi";
@@ -123,7 +123,7 @@ const utilities = require("./utilities");
123
123
  * });
124
124
  * ```
125
125
  *
126
- * 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 `tagsRules`.
126
+ * Lastly, when creating a virtual machine resource, a storage policy can be specified to direct virtual machine placement to a datastore which matches the policy's `tagsRules`.
127
127
  *
128
128
  * ```typescript
129
129
  * import * as pulumi from "@pulumi/pulumi";
package/vnic.d.ts CHANGED
@@ -6,38 +6,36 @@ import * as outputs from "./types/output";
6
6
  *
7
7
  * ## Example Usage
8
8
  *
9
- * ### S
10
- *
11
9
  * ### Create a vnic attached to a distributed virtual switch using the vmotion TCP/IP stack
12
10
  *
13
11
  * ```typescript
14
12
  * import * as pulumi from "@pulumi/pulumi";
15
13
  * import * as vsphere from "@pulumi/vsphere";
16
14
  *
17
- * const dc = vsphere.getDatacenter({
18
- * name: "mydc",
15
+ * const datacenter = vsphere.getDatacenter({
16
+ * name: "dc-01",
19
17
  * });
20
- * const h1 = dc.then(dc => vsphere.getHost({
21
- * name: "esxi1.host.test",
22
- * datacenterId: dc.id,
18
+ * const host = datacenter.then(datacenter => vsphere.getHost({
19
+ * name: "esxi-01.example.com",
20
+ * datacenterId: datacenter.id,
23
21
  * }));
24
- * const d1 = new vsphere.DistributedVirtualSwitch("d1", {
25
- * name: "dc_DVPG0",
26
- * datacenterId: dc.then(dc => dc.id),
22
+ * const vds = new vsphere.DistributedVirtualSwitch("vds", {
23
+ * name: "vds-01",
24
+ * datacenterId: datacenter.then(datacenter => datacenter.id),
27
25
  * hosts: [{
28
- * hostSystemId: h1.then(h1 => h1.id),
26
+ * hostSystemId: host.then(host => host.id),
29
27
  * devices: ["vnic3"],
30
28
  * }],
31
29
  * });
32
- * const p1 = new vsphere.DistributedPortGroup("p1", {
33
- * name: "test-pg",
30
+ * const pg = new vsphere.DistributedPortGroup("pg", {
31
+ * name: "pg-01",
34
32
  * vlanId: 1234,
35
- * distributedVirtualSwitchUuid: d1.id,
33
+ * distributedVirtualSwitchUuid: vds.id,
36
34
  * });
37
- * const v1 = new vsphere.Vnic("v1", {
38
- * host: h1.then(h1 => h1.id),
39
- * distributedSwitchPort: d1.id,
40
- * distributedPortGroup: p1.id,
35
+ * const vnic = new vsphere.Vnic("vnic", {
36
+ * host: host.then(host => host.id),
37
+ * distributedSwitchPort: vds.id,
38
+ * distributedPortGroup: pg.id,
41
39
  * ipv4: {
42
40
  * dhcp: true,
43
41
  * },
@@ -51,16 +49,16 @@ import * as outputs from "./types/output";
51
49
  * import * as pulumi from "@pulumi/pulumi";
52
50
  * import * as vsphere from "@pulumi/vsphere";
53
51
  *
54
- * const dc = vsphere.getDatacenter({
55
- * name: "mydc",
52
+ * const datacenter = vsphere.getDatacenter({
53
+ * name: "dc-01",
56
54
  * });
57
- * const h1 = dc.then(dc => vsphere.getHost({
58
- * name: "esxi1.host.test",
59
- * datacenterId: dc.id,
55
+ * const host = datacenter.then(datacenter => vsphere.getHost({
56
+ * name: "esxi-01.example.com",
57
+ * datacenterId: datacenter.id,
60
58
  * }));
61
- * const hvs1 = new vsphere.HostVirtualSwitch("hvs1", {
62
- * name: "dc_HPG0",
63
- * hostSystemId: h1.then(h1 => h1.id),
59
+ * const hvs = new vsphere.HostVirtualSwitch("hvs", {
60
+ * name: "hvs-01",
61
+ * hostSystemId: host.then(host => host.id),
64
62
  * networkAdapters: [
65
63
  * "vmnic3",
66
64
  * "vmnic4",
@@ -68,14 +66,14 @@ import * as outputs from "./types/output";
68
66
  * activeNics: ["vmnic3"],
69
67
  * standbyNics: ["vmnic4"],
70
68
  * });
71
- * const p1 = new vsphere.HostPortGroup("p1", {
72
- * name: "my-pg",
73
- * virtualSwitchName: hvs1.name,
74
- * hostSystemId: h1.then(h1 => h1.id),
69
+ * const pg = new vsphere.HostPortGroup("pg", {
70
+ * name: "pg-01",
71
+ * virtualSwitchName: hvs.name,
72
+ * hostSystemId: host.then(host => host.id),
75
73
  * });
76
- * const v1 = new vsphere.Vnic("v1", {
77
- * host: h1.then(h1 => h1.id),
78
- * portgroup: p1.name,
74
+ * const vnic = new vsphere.Vnic("vnic", {
75
+ * host: host.then(host => host.id),
76
+ * portgroup: pg.name,
79
77
  * ipv4: {
80
78
  * dhcp: true,
81
79
  * },
@@ -116,7 +114,7 @@ export declare class Vnic extends pulumi.CustomResource {
116
114
  */
117
115
  readonly distributedPortGroup: pulumi.Output<string | undefined>;
118
116
  /**
119
- * UUID of the DVSwitch the nic will be attached to. Do not set if you set portgroup.
117
+ * UUID of the vdswitch the nic will be attached to. Do not set if you set portgroup.
120
118
  */
121
119
  readonly distributedSwitchPort: pulumi.Output<string | undefined>;
122
120
  /**
@@ -169,7 +167,7 @@ export interface VnicState {
169
167
  */
170
168
  distributedPortGroup?: pulumi.Input<string>;
171
169
  /**
172
- * UUID of the DVSwitch the nic will be attached to. Do not set if you set portgroup.
170
+ * UUID of the vdswitch the nic will be attached to. Do not set if you set portgroup.
173
171
  */
174
172
  distributedSwitchPort?: pulumi.Input<string>;
175
173
  /**
@@ -214,7 +212,7 @@ export interface VnicArgs {
214
212
  */
215
213
  distributedPortGroup?: pulumi.Input<string>;
216
214
  /**
217
- * UUID of the DVSwitch the nic will be attached to. Do not set if you set portgroup.
215
+ * UUID of the vdswitch the nic will be attached to. Do not set if you set portgroup.
218
216
  */
219
217
  distributedSwitchPort?: pulumi.Input<string>;
220
218
  /**
package/vnic.js CHANGED
@@ -10,38 +10,36 @@ const utilities = require("./utilities");
10
10
  *
11
11
  * ## Example Usage
12
12
  *
13
- * ### S
14
- *
15
13
  * ### Create a vnic attached to a distributed virtual switch using the vmotion TCP/IP stack
16
14
  *
17
15
  * ```typescript
18
16
  * import * as pulumi from "@pulumi/pulumi";
19
17
  * import * as vsphere from "@pulumi/vsphere";
20
18
  *
21
- * const dc = vsphere.getDatacenter({
22
- * name: "mydc",
19
+ * const datacenter = vsphere.getDatacenter({
20
+ * name: "dc-01",
23
21
  * });
24
- * const h1 = dc.then(dc => vsphere.getHost({
25
- * name: "esxi1.host.test",
26
- * datacenterId: dc.id,
22
+ * const host = datacenter.then(datacenter => vsphere.getHost({
23
+ * name: "esxi-01.example.com",
24
+ * datacenterId: datacenter.id,
27
25
  * }));
28
- * const d1 = new vsphere.DistributedVirtualSwitch("d1", {
29
- * name: "dc_DVPG0",
30
- * datacenterId: dc.then(dc => dc.id),
26
+ * const vds = new vsphere.DistributedVirtualSwitch("vds", {
27
+ * name: "vds-01",
28
+ * datacenterId: datacenter.then(datacenter => datacenter.id),
31
29
  * hosts: [{
32
- * hostSystemId: h1.then(h1 => h1.id),
30
+ * hostSystemId: host.then(host => host.id),
33
31
  * devices: ["vnic3"],
34
32
  * }],
35
33
  * });
36
- * const p1 = new vsphere.DistributedPortGroup("p1", {
37
- * name: "test-pg",
34
+ * const pg = new vsphere.DistributedPortGroup("pg", {
35
+ * name: "pg-01",
38
36
  * vlanId: 1234,
39
- * distributedVirtualSwitchUuid: d1.id,
37
+ * distributedVirtualSwitchUuid: vds.id,
40
38
  * });
41
- * const v1 = new vsphere.Vnic("v1", {
42
- * host: h1.then(h1 => h1.id),
43
- * distributedSwitchPort: d1.id,
44
- * distributedPortGroup: p1.id,
39
+ * const vnic = new vsphere.Vnic("vnic", {
40
+ * host: host.then(host => host.id),
41
+ * distributedSwitchPort: vds.id,
42
+ * distributedPortGroup: pg.id,
45
43
  * ipv4: {
46
44
  * dhcp: true,
47
45
  * },
@@ -55,16 +53,16 @@ const utilities = require("./utilities");
55
53
  * import * as pulumi from "@pulumi/pulumi";
56
54
  * import * as vsphere from "@pulumi/vsphere";
57
55
  *
58
- * const dc = vsphere.getDatacenter({
59
- * name: "mydc",
56
+ * const datacenter = vsphere.getDatacenter({
57
+ * name: "dc-01",
60
58
  * });
61
- * const h1 = dc.then(dc => vsphere.getHost({
62
- * name: "esxi1.host.test",
63
- * datacenterId: dc.id,
59
+ * const host = datacenter.then(datacenter => vsphere.getHost({
60
+ * name: "esxi-01.example.com",
61
+ * datacenterId: datacenter.id,
64
62
  * }));
65
- * const hvs1 = new vsphere.HostVirtualSwitch("hvs1", {
66
- * name: "dc_HPG0",
67
- * hostSystemId: h1.then(h1 => h1.id),
63
+ * const hvs = new vsphere.HostVirtualSwitch("hvs", {
64
+ * name: "hvs-01",
65
+ * hostSystemId: host.then(host => host.id),
68
66
  * networkAdapters: [
69
67
  * "vmnic3",
70
68
  * "vmnic4",
@@ -72,14 +70,14 @@ const utilities = require("./utilities");
72
70
  * activeNics: ["vmnic3"],
73
71
  * standbyNics: ["vmnic4"],
74
72
  * });
75
- * const p1 = new vsphere.HostPortGroup("p1", {
76
- * name: "my-pg",
77
- * virtualSwitchName: hvs1.name,
78
- * hostSystemId: h1.then(h1 => h1.id),
73
+ * const pg = new vsphere.HostPortGroup("pg", {
74
+ * name: "pg-01",
75
+ * virtualSwitchName: hvs.name,
76
+ * hostSystemId: host.then(host => host.id),
79
77
  * });
80
- * const v1 = new vsphere.Vnic("v1", {
81
- * host: h1.then(h1 => h1.id),
82
- * portgroup: p1.name,
78
+ * const vnic = new vsphere.Vnic("vnic", {
79
+ * host: host.then(host => host.id),
80
+ * portgroup: pg.name,
83
81
  * ipv4: {
84
82
  * dhcp: true,
85
83
  * },
package/vnic.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"vnic.js","sourceRoot":"","sources":["../vnic.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"vnic.js","sourceRoot":"","sources":["../vnic.ts"],"names":[],"mappings":"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"}
package/package.json.bak DELETED
@@ -1,29 +0,0 @@
1
- {
2
- "name": "@pulumi/vsphere",
3
- "version": "${VERSION}",
4
- "description": "A Pulumi package for creating vsphere resources",
5
- "keywords": [
6
- "pulumi",
7
- "vsphere"
8
- ],
9
- "homepage": "https://pulumi.io",
10
- "repository": "https://github.com/pulumi/pulumi-vsphere",
11
- "license": "Apache-2.0",
12
- "scripts": {
13
- "build": "tsc"
14
- },
15
- "dependencies": {
16
- "@pulumi/pulumi": "^3.0.0",
17
- "builtin-modules": "3.0.0",
18
- "read-package-tree": "^5.2.1",
19
- "resolve": "^1.8.1"
20
- },
21
- "devDependencies": {
22
- "@types/node": "^10.9.2",
23
- "typescript": "^4.3.5"
24
- },
25
- "pulumi": {
26
- "resource": true,
27
- "name": "vsphere"
28
- }
29
- }