@pulumi/vsphere 4.16.0 → 4.16.1
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.
- package/computeCluster.d.ts +87 -195
- package/computeCluster.js +141 -141
- package/computeCluster.js.map +1 -1
- package/computeClusterHostGroup.js +8 -8
- package/computeClusterHostGroup.js.map +1 -1
- package/computeClusterVmAffinityRule.js +13 -13
- package/computeClusterVmAffinityRule.js.map +1 -1
- package/computeClusterVmAntiAffinityRule.js +13 -13
- package/computeClusterVmAntiAffinityRule.js.map +1 -1
- package/computeClusterVmDependencyRule.js +16 -16
- package/computeClusterVmDependencyRule.js.map +1 -1
- package/computeClusterVmGroup.js +8 -8
- package/computeClusterVmGroup.js.map +1 -1
- package/computeClusterVmHostRule.js +17 -17
- package/computeClusterVmHostRule.js.map +1 -1
- package/config/vars.js +8 -16
- package/config/vars.js.map +1 -1
- package/configurationProfile.js +9 -9
- package/configurationProfile.js.map +1 -1
- package/contentLibrary.js +12 -12
- package/contentLibrary.js.map +1 -1
- package/contentLibraryItem.js +14 -14
- package/contentLibraryItem.js.map +1 -1
- package/customAttribute.js +5 -5
- package/customAttribute.js.map +1 -1
- package/datacenter.js +10 -10
- package/datacenter.js.map +1 -1
- package/datastoreCluster.d.ts +15 -30
- package/datastoreCluster.js +52 -52
- package/datastoreCluster.js.map +1 -1
- package/datastoreClusterVmAntiAffinityRule.js +13 -13
- package/datastoreClusterVmAntiAffinityRule.js.map +1 -1
- package/distributedPortGroup.d.ts +9 -18
- package/distributedPortGroup.js +96 -96
- package/distributedPortGroup.js.map +1 -1
- package/distributedVirtualSwitch.d.ts +15 -30
- package/distributedVirtualSwitch.js +191 -191
- package/distributedVirtualSwitch.js.map +1 -1
- package/distributedVirtualSwitchPvlanMapping.js +13 -13
- package/distributedVirtualSwitchPvlanMapping.js.map +1 -1
- package/dpmHostOverride.js +11 -11
- package/dpmHostOverride.js.map +1 -1
- package/drsVmOverride.js +11 -11
- package/drsVmOverride.js.map +1 -1
- package/entityPermissions.js +10 -10
- package/entityPermissions.js.map +1 -1
- package/file.js +18 -18
- package/file.js.map +1 -1
- package/folder.js +13 -13
- package/folder.js.map +1 -1
- package/getGuestOsCustomization.d.ts +4 -0
- package/getGuestOsCustomization.js +4 -0
- package/getGuestOsCustomization.js.map +1 -1
- package/guestOsCustomization.js +13 -13
- package/guestOsCustomization.js.map +1 -1
- package/haVmOverride.d.ts +33 -69
- package/haVmOverride.js +33 -33
- package/haVmOverride.js.map +1 -1
- package/host.js +34 -34
- package/host.js.map +1 -1
- package/hostPortGroup.d.ts +9 -18
- package/hostPortGroup.js +40 -40
- package/hostPortGroup.js.map +1 -1
- package/hostVirtualSwitch.d.ts +9 -18
- package/hostVirtualSwitch.js +46 -46
- package/hostVirtualSwitch.js.map +1 -1
- package/license.js +10 -10
- package/license.js.map +1 -1
- package/nasDatastore.js +34 -34
- package/nasDatastore.js.map +1 -1
- package/offlineSoftwareDepot.js +5 -5
- package/offlineSoftwareDepot.js.map +1 -1
- package/package.json +2 -2
- package/provider.js +13 -14
- package/provider.js.map +1 -1
- package/resourcePool.js +32 -32
- package/resourcePool.js.map +1 -1
- package/role.js +6 -6
- package/role.js.map +1 -1
- package/storageDrsVmOverride.js +13 -13
- package/storageDrsVmOverride.js.map +1 -1
- package/supervisor.js +51 -51
- package/supervisor.js.map +1 -1
- package/tag.js +8 -8
- package/tag.js.map +1 -1
- package/tagCategory.js +11 -11
- package/tagCategory.js.map +1 -1
- package/utilities.js +18 -29
- package/utilities.js.map +1 -1
- package/vappContainer.js +32 -32
- package/vappContainer.js.map +1 -1
- package/vappEntity.js +23 -23
- package/vappEntity.js.map +1 -1
- package/virtualDisk.js +18 -18
- package/virtualDisk.js.map +1 -1
- package/virtualMachine.d.ts +39 -84
- package/virtualMachine.js +167 -167
- package/virtualMachine.js.map +1 -1
- package/virtualMachineClass.js +15 -15
- package/virtualMachineClass.js.map +1 -1
- package/virtualMachineSnapshot.js +20 -20
- package/virtualMachineSnapshot.js.map +1 -1
- package/vmStoragePolicy.js +8 -8
- package/vmStoragePolicy.js.map +1 -1
- package/vmfsDatastore.js +24 -24
- package/vmfsDatastore.js.map +1 -1
- package/vnic.js +22 -22
- package/vnic.js.map +1 -1
package/hostPortGroup.js
CHANGED
|
@@ -108,7 +108,7 @@ class HostPortGroup extends pulumi.CustomResource {
|
|
|
108
108
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
109
109
|
*/
|
|
110
110
|
static get(name, id, state, opts) {
|
|
111
|
-
return new HostPortGroup(name, state,
|
|
111
|
+
return new HostPortGroup(name, state, { ...opts, id: id });
|
|
112
112
|
}
|
|
113
113
|
/**
|
|
114
114
|
* Returns true if the given object is an instance of HostPortGroup. This is designed to work even
|
|
@@ -125,52 +125,52 @@ class HostPortGroup extends pulumi.CustomResource {
|
|
|
125
125
|
opts = opts || {};
|
|
126
126
|
if (opts.id) {
|
|
127
127
|
const state = argsOrState;
|
|
128
|
-
resourceInputs["activeNics"] = state
|
|
129
|
-
resourceInputs["allowForgedTransmits"] = state
|
|
130
|
-
resourceInputs["allowMacChanges"] = state
|
|
131
|
-
resourceInputs["allowPromiscuous"] = state
|
|
132
|
-
resourceInputs["checkBeacon"] = state
|
|
133
|
-
resourceInputs["computedPolicy"] = state
|
|
134
|
-
resourceInputs["failback"] = state
|
|
135
|
-
resourceInputs["hostSystemId"] = state
|
|
136
|
-
resourceInputs["key"] = state
|
|
137
|
-
resourceInputs["name"] = state
|
|
138
|
-
resourceInputs["notifySwitches"] = state
|
|
139
|
-
resourceInputs["ports"] = state
|
|
140
|
-
resourceInputs["shapingAverageBandwidth"] = state
|
|
141
|
-
resourceInputs["shapingBurstSize"] = state
|
|
142
|
-
resourceInputs["shapingEnabled"] = state
|
|
143
|
-
resourceInputs["shapingPeakBandwidth"] = state
|
|
144
|
-
resourceInputs["standbyNics"] = state
|
|
145
|
-
resourceInputs["teamingPolicy"] = state
|
|
146
|
-
resourceInputs["virtualSwitchName"] = state
|
|
147
|
-
resourceInputs["vlanId"] = state
|
|
128
|
+
resourceInputs["activeNics"] = state?.activeNics;
|
|
129
|
+
resourceInputs["allowForgedTransmits"] = state?.allowForgedTransmits;
|
|
130
|
+
resourceInputs["allowMacChanges"] = state?.allowMacChanges;
|
|
131
|
+
resourceInputs["allowPromiscuous"] = state?.allowPromiscuous;
|
|
132
|
+
resourceInputs["checkBeacon"] = state?.checkBeacon;
|
|
133
|
+
resourceInputs["computedPolicy"] = state?.computedPolicy;
|
|
134
|
+
resourceInputs["failback"] = state?.failback;
|
|
135
|
+
resourceInputs["hostSystemId"] = state?.hostSystemId;
|
|
136
|
+
resourceInputs["key"] = state?.key;
|
|
137
|
+
resourceInputs["name"] = state?.name;
|
|
138
|
+
resourceInputs["notifySwitches"] = state?.notifySwitches;
|
|
139
|
+
resourceInputs["ports"] = state?.ports;
|
|
140
|
+
resourceInputs["shapingAverageBandwidth"] = state?.shapingAverageBandwidth;
|
|
141
|
+
resourceInputs["shapingBurstSize"] = state?.shapingBurstSize;
|
|
142
|
+
resourceInputs["shapingEnabled"] = state?.shapingEnabled;
|
|
143
|
+
resourceInputs["shapingPeakBandwidth"] = state?.shapingPeakBandwidth;
|
|
144
|
+
resourceInputs["standbyNics"] = state?.standbyNics;
|
|
145
|
+
resourceInputs["teamingPolicy"] = state?.teamingPolicy;
|
|
146
|
+
resourceInputs["virtualSwitchName"] = state?.virtualSwitchName;
|
|
147
|
+
resourceInputs["vlanId"] = state?.vlanId;
|
|
148
148
|
}
|
|
149
149
|
else {
|
|
150
150
|
const args = argsOrState;
|
|
151
|
-
if (
|
|
151
|
+
if (args?.hostSystemId === undefined && !opts.urn) {
|
|
152
152
|
throw new Error("Missing required property 'hostSystemId'");
|
|
153
153
|
}
|
|
154
|
-
if (
|
|
154
|
+
if (args?.virtualSwitchName === undefined && !opts.urn) {
|
|
155
155
|
throw new Error("Missing required property 'virtualSwitchName'");
|
|
156
156
|
}
|
|
157
|
-
resourceInputs["activeNics"] = args
|
|
158
|
-
resourceInputs["allowForgedTransmits"] = args
|
|
159
|
-
resourceInputs["allowMacChanges"] = args
|
|
160
|
-
resourceInputs["allowPromiscuous"] = args
|
|
161
|
-
resourceInputs["checkBeacon"] = args
|
|
162
|
-
resourceInputs["failback"] = args
|
|
163
|
-
resourceInputs["hostSystemId"] = args
|
|
164
|
-
resourceInputs["name"] = args
|
|
165
|
-
resourceInputs["notifySwitches"] = args
|
|
166
|
-
resourceInputs["shapingAverageBandwidth"] = args
|
|
167
|
-
resourceInputs["shapingBurstSize"] = args
|
|
168
|
-
resourceInputs["shapingEnabled"] = args
|
|
169
|
-
resourceInputs["shapingPeakBandwidth"] = args
|
|
170
|
-
resourceInputs["standbyNics"] = args
|
|
171
|
-
resourceInputs["teamingPolicy"] = args
|
|
172
|
-
resourceInputs["virtualSwitchName"] = args
|
|
173
|
-
resourceInputs["vlanId"] = args
|
|
157
|
+
resourceInputs["activeNics"] = args?.activeNics;
|
|
158
|
+
resourceInputs["allowForgedTransmits"] = args?.allowForgedTransmits;
|
|
159
|
+
resourceInputs["allowMacChanges"] = args?.allowMacChanges;
|
|
160
|
+
resourceInputs["allowPromiscuous"] = args?.allowPromiscuous;
|
|
161
|
+
resourceInputs["checkBeacon"] = args?.checkBeacon;
|
|
162
|
+
resourceInputs["failback"] = args?.failback;
|
|
163
|
+
resourceInputs["hostSystemId"] = args?.hostSystemId;
|
|
164
|
+
resourceInputs["name"] = args?.name;
|
|
165
|
+
resourceInputs["notifySwitches"] = args?.notifySwitches;
|
|
166
|
+
resourceInputs["shapingAverageBandwidth"] = args?.shapingAverageBandwidth;
|
|
167
|
+
resourceInputs["shapingBurstSize"] = args?.shapingBurstSize;
|
|
168
|
+
resourceInputs["shapingEnabled"] = args?.shapingEnabled;
|
|
169
|
+
resourceInputs["shapingPeakBandwidth"] = args?.shapingPeakBandwidth;
|
|
170
|
+
resourceInputs["standbyNics"] = args?.standbyNics;
|
|
171
|
+
resourceInputs["teamingPolicy"] = args?.teamingPolicy;
|
|
172
|
+
resourceInputs["virtualSwitchName"] = args?.virtualSwitchName;
|
|
173
|
+
resourceInputs["vlanId"] = args?.vlanId;
|
|
174
174
|
resourceInputs["computedPolicy"] = undefined /*out*/;
|
|
175
175
|
resourceInputs["key"] = undefined /*out*/;
|
|
176
176
|
resourceInputs["ports"] = undefined /*out*/;
|
package/hostPortGroup.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hostPortGroup.js","sourceRoot":"","sources":["../hostPortGroup.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2FG;AACH,MAAa,aAAc,SAAQ,MAAM,CAAC,cAAc;IACpD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA0B,EAAE,IAAmC;QACxH,OAAO,IAAI,aAAa,CAAC,IAAI,EAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"hostPortGroup.js","sourceRoot":"","sources":["../hostPortGroup.ts"],"names":[],"mappings":"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"}
|
package/hostVirtualSwitch.d.ts
CHANGED
|
@@ -113,8 +113,7 @@ export declare class HostVirtualSwitch extends pulumi.CustomResource {
|
|
|
113
113
|
*/
|
|
114
114
|
readonly activeNics: pulumi.Output<string[]>;
|
|
115
115
|
/**
|
|
116
|
-
* Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than
|
|
117
|
-
* that of its own.
|
|
116
|
+
* Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than that of its own.
|
|
118
117
|
*/
|
|
119
118
|
readonly allowForgedTransmits: pulumi.Output<boolean | undefined>;
|
|
120
119
|
/**
|
|
@@ -130,8 +129,7 @@ export declare class HostVirtualSwitch extends pulumi.CustomResource {
|
|
|
130
129
|
*/
|
|
131
130
|
readonly beaconInterval: pulumi.Output<number | undefined>;
|
|
132
131
|
/**
|
|
133
|
-
* Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used
|
|
134
|
-
* only.
|
|
132
|
+
* Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used only.
|
|
135
133
|
*/
|
|
136
134
|
readonly checkBeacon: pulumi.Output<boolean | undefined>;
|
|
137
135
|
/**
|
|
@@ -198,8 +196,7 @@ export declare class HostVirtualSwitch extends pulumi.CustomResource {
|
|
|
198
196
|
*/
|
|
199
197
|
readonly standbyNics: pulumi.Output<string[] | undefined>;
|
|
200
198
|
/**
|
|
201
|
-
* The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or
|
|
202
|
-
* failover_explicit.
|
|
199
|
+
* The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or failover_explicit.
|
|
203
200
|
*/
|
|
204
201
|
readonly teamingPolicy: pulumi.Output<string | undefined>;
|
|
205
202
|
/**
|
|
@@ -220,8 +217,7 @@ export interface HostVirtualSwitchState {
|
|
|
220
217
|
*/
|
|
221
218
|
activeNics?: pulumi.Input<pulumi.Input<string>[]>;
|
|
222
219
|
/**
|
|
223
|
-
* Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than
|
|
224
|
-
* that of its own.
|
|
220
|
+
* Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than that of its own.
|
|
225
221
|
*/
|
|
226
222
|
allowForgedTransmits?: pulumi.Input<boolean>;
|
|
227
223
|
/**
|
|
@@ -237,8 +233,7 @@ export interface HostVirtualSwitchState {
|
|
|
237
233
|
*/
|
|
238
234
|
beaconInterval?: pulumi.Input<number>;
|
|
239
235
|
/**
|
|
240
|
-
* Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used
|
|
241
|
-
* only.
|
|
236
|
+
* Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used only.
|
|
242
237
|
*/
|
|
243
238
|
checkBeacon?: pulumi.Input<boolean>;
|
|
244
239
|
/**
|
|
@@ -305,8 +300,7 @@ export interface HostVirtualSwitchState {
|
|
|
305
300
|
*/
|
|
306
301
|
standbyNics?: pulumi.Input<pulumi.Input<string>[]>;
|
|
307
302
|
/**
|
|
308
|
-
* The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or
|
|
309
|
-
* failover_explicit.
|
|
303
|
+
* The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or failover_explicit.
|
|
310
304
|
*/
|
|
311
305
|
teamingPolicy?: pulumi.Input<string>;
|
|
312
306
|
}
|
|
@@ -319,8 +313,7 @@ export interface HostVirtualSwitchArgs {
|
|
|
319
313
|
*/
|
|
320
314
|
activeNics: pulumi.Input<pulumi.Input<string>[]>;
|
|
321
315
|
/**
|
|
322
|
-
* Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than
|
|
323
|
-
* that of its own.
|
|
316
|
+
* Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than that of its own.
|
|
324
317
|
*/
|
|
325
318
|
allowForgedTransmits?: pulumi.Input<boolean>;
|
|
326
319
|
/**
|
|
@@ -336,8 +329,7 @@ export interface HostVirtualSwitchArgs {
|
|
|
336
329
|
*/
|
|
337
330
|
beaconInterval?: pulumi.Input<number>;
|
|
338
331
|
/**
|
|
339
|
-
* Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used
|
|
340
|
-
* only.
|
|
332
|
+
* Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used only.
|
|
341
333
|
*/
|
|
342
334
|
checkBeacon?: pulumi.Input<boolean>;
|
|
343
335
|
/**
|
|
@@ -404,8 +396,7 @@ export interface HostVirtualSwitchArgs {
|
|
|
404
396
|
*/
|
|
405
397
|
standbyNics?: pulumi.Input<pulumi.Input<string>[]>;
|
|
406
398
|
/**
|
|
407
|
-
* The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or
|
|
408
|
-
* failover_explicit.
|
|
399
|
+
* The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or failover_explicit.
|
|
409
400
|
*/
|
|
410
401
|
teamingPolicy?: pulumi.Input<string>;
|
|
411
402
|
}
|
package/hostVirtualSwitch.js
CHANGED
|
@@ -109,7 +109,7 @@ class HostVirtualSwitch extends pulumi.CustomResource {
|
|
|
109
109
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
110
110
|
*/
|
|
111
111
|
static get(name, id, state, opts) {
|
|
112
|
-
return new HostVirtualSwitch(name, state,
|
|
112
|
+
return new HostVirtualSwitch(name, state, { ...opts, id: id });
|
|
113
113
|
}
|
|
114
114
|
/**
|
|
115
115
|
* Returns true if the given object is an instance of HostVirtualSwitch. This is designed to work even
|
|
@@ -126,60 +126,60 @@ class HostVirtualSwitch extends pulumi.CustomResource {
|
|
|
126
126
|
opts = opts || {};
|
|
127
127
|
if (opts.id) {
|
|
128
128
|
const state = argsOrState;
|
|
129
|
-
resourceInputs["activeNics"] = state
|
|
130
|
-
resourceInputs["allowForgedTransmits"] = state
|
|
131
|
-
resourceInputs["allowMacChanges"] = state
|
|
132
|
-
resourceInputs["allowPromiscuous"] = state
|
|
133
|
-
resourceInputs["beaconInterval"] = state
|
|
134
|
-
resourceInputs["checkBeacon"] = state
|
|
135
|
-
resourceInputs["failback"] = state
|
|
136
|
-
resourceInputs["hostSystemId"] = state
|
|
137
|
-
resourceInputs["linkDiscoveryOperation"] = state
|
|
138
|
-
resourceInputs["linkDiscoveryProtocol"] = state
|
|
139
|
-
resourceInputs["mtu"] = state
|
|
140
|
-
resourceInputs["name"] = state
|
|
141
|
-
resourceInputs["networkAdapters"] = state
|
|
142
|
-
resourceInputs["notifySwitches"] = state
|
|
143
|
-
resourceInputs["numberOfPorts"] = state
|
|
144
|
-
resourceInputs["shapingAverageBandwidth"] = state
|
|
145
|
-
resourceInputs["shapingBurstSize"] = state
|
|
146
|
-
resourceInputs["shapingEnabled"] = state
|
|
147
|
-
resourceInputs["shapingPeakBandwidth"] = state
|
|
148
|
-
resourceInputs["standbyNics"] = state
|
|
149
|
-
resourceInputs["teamingPolicy"] = state
|
|
129
|
+
resourceInputs["activeNics"] = state?.activeNics;
|
|
130
|
+
resourceInputs["allowForgedTransmits"] = state?.allowForgedTransmits;
|
|
131
|
+
resourceInputs["allowMacChanges"] = state?.allowMacChanges;
|
|
132
|
+
resourceInputs["allowPromiscuous"] = state?.allowPromiscuous;
|
|
133
|
+
resourceInputs["beaconInterval"] = state?.beaconInterval;
|
|
134
|
+
resourceInputs["checkBeacon"] = state?.checkBeacon;
|
|
135
|
+
resourceInputs["failback"] = state?.failback;
|
|
136
|
+
resourceInputs["hostSystemId"] = state?.hostSystemId;
|
|
137
|
+
resourceInputs["linkDiscoveryOperation"] = state?.linkDiscoveryOperation;
|
|
138
|
+
resourceInputs["linkDiscoveryProtocol"] = state?.linkDiscoveryProtocol;
|
|
139
|
+
resourceInputs["mtu"] = state?.mtu;
|
|
140
|
+
resourceInputs["name"] = state?.name;
|
|
141
|
+
resourceInputs["networkAdapters"] = state?.networkAdapters;
|
|
142
|
+
resourceInputs["notifySwitches"] = state?.notifySwitches;
|
|
143
|
+
resourceInputs["numberOfPorts"] = state?.numberOfPorts;
|
|
144
|
+
resourceInputs["shapingAverageBandwidth"] = state?.shapingAverageBandwidth;
|
|
145
|
+
resourceInputs["shapingBurstSize"] = state?.shapingBurstSize;
|
|
146
|
+
resourceInputs["shapingEnabled"] = state?.shapingEnabled;
|
|
147
|
+
resourceInputs["shapingPeakBandwidth"] = state?.shapingPeakBandwidth;
|
|
148
|
+
resourceInputs["standbyNics"] = state?.standbyNics;
|
|
149
|
+
resourceInputs["teamingPolicy"] = state?.teamingPolicy;
|
|
150
150
|
}
|
|
151
151
|
else {
|
|
152
152
|
const args = argsOrState;
|
|
153
|
-
if (
|
|
153
|
+
if (args?.activeNics === undefined && !opts.urn) {
|
|
154
154
|
throw new Error("Missing required property 'activeNics'");
|
|
155
155
|
}
|
|
156
|
-
if (
|
|
156
|
+
if (args?.hostSystemId === undefined && !opts.urn) {
|
|
157
157
|
throw new Error("Missing required property 'hostSystemId'");
|
|
158
158
|
}
|
|
159
|
-
if (
|
|
159
|
+
if (args?.networkAdapters === undefined && !opts.urn) {
|
|
160
160
|
throw new Error("Missing required property 'networkAdapters'");
|
|
161
161
|
}
|
|
162
|
-
resourceInputs["activeNics"] = args
|
|
163
|
-
resourceInputs["allowForgedTransmits"] = args
|
|
164
|
-
resourceInputs["allowMacChanges"] = args
|
|
165
|
-
resourceInputs["allowPromiscuous"] = args
|
|
166
|
-
resourceInputs["beaconInterval"] = args
|
|
167
|
-
resourceInputs["checkBeacon"] = args
|
|
168
|
-
resourceInputs["failback"] = args
|
|
169
|
-
resourceInputs["hostSystemId"] = args
|
|
170
|
-
resourceInputs["linkDiscoveryOperation"] = args
|
|
171
|
-
resourceInputs["linkDiscoveryProtocol"] = args
|
|
172
|
-
resourceInputs["mtu"] = args
|
|
173
|
-
resourceInputs["name"] = args
|
|
174
|
-
resourceInputs["networkAdapters"] = args
|
|
175
|
-
resourceInputs["notifySwitches"] = args
|
|
176
|
-
resourceInputs["numberOfPorts"] = args
|
|
177
|
-
resourceInputs["shapingAverageBandwidth"] = args
|
|
178
|
-
resourceInputs["shapingBurstSize"] = args
|
|
179
|
-
resourceInputs["shapingEnabled"] = args
|
|
180
|
-
resourceInputs["shapingPeakBandwidth"] = args
|
|
181
|
-
resourceInputs["standbyNics"] = args
|
|
182
|
-
resourceInputs["teamingPolicy"] = args
|
|
162
|
+
resourceInputs["activeNics"] = args?.activeNics;
|
|
163
|
+
resourceInputs["allowForgedTransmits"] = args?.allowForgedTransmits;
|
|
164
|
+
resourceInputs["allowMacChanges"] = args?.allowMacChanges;
|
|
165
|
+
resourceInputs["allowPromiscuous"] = args?.allowPromiscuous;
|
|
166
|
+
resourceInputs["beaconInterval"] = args?.beaconInterval;
|
|
167
|
+
resourceInputs["checkBeacon"] = args?.checkBeacon;
|
|
168
|
+
resourceInputs["failback"] = args?.failback;
|
|
169
|
+
resourceInputs["hostSystemId"] = args?.hostSystemId;
|
|
170
|
+
resourceInputs["linkDiscoveryOperation"] = args?.linkDiscoveryOperation;
|
|
171
|
+
resourceInputs["linkDiscoveryProtocol"] = args?.linkDiscoveryProtocol;
|
|
172
|
+
resourceInputs["mtu"] = args?.mtu;
|
|
173
|
+
resourceInputs["name"] = args?.name;
|
|
174
|
+
resourceInputs["networkAdapters"] = args?.networkAdapters;
|
|
175
|
+
resourceInputs["notifySwitches"] = args?.notifySwitches;
|
|
176
|
+
resourceInputs["numberOfPorts"] = args?.numberOfPorts;
|
|
177
|
+
resourceInputs["shapingAverageBandwidth"] = args?.shapingAverageBandwidth;
|
|
178
|
+
resourceInputs["shapingBurstSize"] = args?.shapingBurstSize;
|
|
179
|
+
resourceInputs["shapingEnabled"] = args?.shapingEnabled;
|
|
180
|
+
resourceInputs["shapingPeakBandwidth"] = args?.shapingPeakBandwidth;
|
|
181
|
+
resourceInputs["standbyNics"] = args?.standbyNics;
|
|
182
|
+
resourceInputs["teamingPolicy"] = args?.teamingPolicy;
|
|
183
183
|
}
|
|
184
184
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
185
185
|
super(HostVirtualSwitch.__pulumiType, name, resourceInputs, opts);
|
package/hostVirtualSwitch.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hostVirtualSwitch.js","sourceRoot":"","sources":["../hostVirtualSwitch.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4FG;AACH,MAAa,iBAAkB,SAAQ,MAAM,CAAC,cAAc;IACxD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA8B,EAAE,IAAmC;QAC5H,OAAO,IAAI,iBAAiB,CAAC,IAAI,EAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"hostVirtualSwitch.js","sourceRoot":"","sources":["../hostVirtualSwitch.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4FG;AACH,MAAa,iBAAkB,SAAQ,MAAM,CAAC,cAAc;IACxD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA8B,EAAE,IAAmC;QAC5H,OAAO,IAAI,iBAAiB,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACxE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,iBAAiB,CAAC,YAAY,CAAC;IAClE,CAAC;IAsGD,YAAY,IAAY,EAAE,WAA4D,EAAE,IAAmC;QACvH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAiD,CAAC;YAChE,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,sBAAsB,CAAC,GAAG,KAAK,EAAE,oBAAoB,CAAC;YACrE,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;YAC3D,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,EAAE,gBAAgB,CAAC;YAC7D,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,wBAAwB,CAAC,GAAG,KAAK,EAAE,sBAAsB,CAAC;YACzE,cAAc,CAAC,uBAAuB,CAAC,GAAG,KAAK,EAAE,qBAAqB,CAAC;YACvE,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,EAAE,GAAG,CAAC;YACnC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;YAC3D,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,EAAE,aAAa,CAAC;YACvD,cAAc,CAAC,yBAAyB,CAAC,GAAG,KAAK,EAAE,uBAAuB,CAAC;YAC3E,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,EAAE,gBAAgB,CAAC;YAC7D,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,sBAAsB,CAAC,GAAG,KAAK,EAAE,oBAAoB,CAAC;YACrE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,EAAE,aAAa,CAAC;SAC1D;aAAM;YACH,MAAM,IAAI,GAAG,WAAgD,CAAC;YAC9D,IAAI,IAAI,EAAE,UAAU,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC7C,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,IAAI,IAAI,EAAE,YAAY,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;aAC/D;YACD,IAAI,IAAI,EAAE,eAAe,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAClD,MAAM,IAAI,KAAK,CAAC,6CAA6C,CAAC,CAAC;aAClE;YACD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,sBAAsB,CAAC,GAAG,IAAI,EAAE,oBAAoB,CAAC;YACpE,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;YAC1D,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,EAAE,gBAAgB,CAAC;YAC5D,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,wBAAwB,CAAC,GAAG,IAAI,EAAE,sBAAsB,CAAC;YACxE,cAAc,CAAC,uBAAuB,CAAC,GAAG,IAAI,EAAE,qBAAqB,CAAC;YACtE,cAAc,CAAC,KAAK,CAAC,GAAG,IAAI,EAAE,GAAG,CAAC;YAClC,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;YAC1D,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,EAAE,aAAa,CAAC;YACtD,cAAc,CAAC,yBAAyB,CAAC,GAAG,IAAI,EAAE,uBAAuB,CAAC;YAC1E,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,EAAE,gBAAgB,CAAC;YAC5D,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,sBAAsB,CAAC,GAAG,IAAI,EAAE,oBAAoB,CAAC;YACpE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,EAAE,aAAa,CAAC;SACzD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,iBAAiB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACtE,CAAC;;AA7LL,8CA8LC;AAhLG,gBAAgB;AACO,8BAAY,GAAG,mDAAmD,CAAC"}
|
package/license.js
CHANGED
|
@@ -33,7 +33,7 @@ class License extends pulumi.CustomResource {
|
|
|
33
33
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
34
34
|
*/
|
|
35
35
|
static get(name, id, state, opts) {
|
|
36
|
-
return new License(name, state,
|
|
36
|
+
return new License(name, state, { ...opts, id: id });
|
|
37
37
|
}
|
|
38
38
|
/**
|
|
39
39
|
* Returns true if the given object is an instance of License. This is designed to work even
|
|
@@ -50,20 +50,20 @@ class License extends pulumi.CustomResource {
|
|
|
50
50
|
opts = opts || {};
|
|
51
51
|
if (opts.id) {
|
|
52
52
|
const state = argsOrState;
|
|
53
|
-
resourceInputs["editionKey"] = state
|
|
54
|
-
resourceInputs["labels"] = state
|
|
55
|
-
resourceInputs["licenseKey"] = state
|
|
56
|
-
resourceInputs["name"] = state
|
|
57
|
-
resourceInputs["total"] = state
|
|
58
|
-
resourceInputs["used"] = state
|
|
53
|
+
resourceInputs["editionKey"] = state?.editionKey;
|
|
54
|
+
resourceInputs["labels"] = state?.labels;
|
|
55
|
+
resourceInputs["licenseKey"] = state?.licenseKey;
|
|
56
|
+
resourceInputs["name"] = state?.name;
|
|
57
|
+
resourceInputs["total"] = state?.total;
|
|
58
|
+
resourceInputs["used"] = state?.used;
|
|
59
59
|
}
|
|
60
60
|
else {
|
|
61
61
|
const args = argsOrState;
|
|
62
|
-
if (
|
|
62
|
+
if (args?.licenseKey === undefined && !opts.urn) {
|
|
63
63
|
throw new Error("Missing required property 'licenseKey'");
|
|
64
64
|
}
|
|
65
|
-
resourceInputs["labels"] = args
|
|
66
|
-
resourceInputs["licenseKey"] = args
|
|
65
|
+
resourceInputs["labels"] = args?.labels;
|
|
66
|
+
resourceInputs["licenseKey"] = args?.licenseKey;
|
|
67
67
|
resourceInputs["editionKey"] = undefined /*out*/;
|
|
68
68
|
resourceInputs["name"] = undefined /*out*/;
|
|
69
69
|
resourceInputs["total"] = undefined /*out*/;
|
package/license.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"license.js","sourceRoot":"","sources":["../license.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;IAC9C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoB,EAAE,IAAmC;QAClH,OAAO,IAAI,OAAO,CAAC,IAAI,EAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"license.js","sourceRoot":"","sources":["../license.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;IAC9C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoB,EAAE,IAAmC;QAClH,OAAO,IAAI,OAAO,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC9D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,OAAO,CAAC,YAAY,CAAC;IACxD,CAAC;IAqCD,YAAY,IAAY,EAAE,WAAwC,EAAE,IAAmC;QACnG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAuC,CAAC;YACtD,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;SACxC;aAAM;YACH,MAAM,IAAI,GAAG,WAAsC,CAAC;YACpD,IAAI,IAAI,EAAE,UAAU,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC7C,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,YAAY,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACjD,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC3C,cAAc,CAAC,OAAO,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC5C,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC9C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,OAAO,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC5D,CAAC;;AAxFL,0BAyFC;AA3EG,gBAAgB;AACO,oBAAY,GAAG,+BAA+B,CAAC"}
|
package/nasDatastore.js
CHANGED
|
@@ -82,7 +82,7 @@ class NasDatastore extends pulumi.CustomResource {
|
|
|
82
82
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
83
83
|
*/
|
|
84
84
|
static get(name, id, state, opts) {
|
|
85
|
-
return new NasDatastore(name, state,
|
|
85
|
+
return new NasDatastore(name, state, { ...opts, id: id });
|
|
86
86
|
}
|
|
87
87
|
/**
|
|
88
88
|
* Returns true if the given object is an instance of NasDatastore. This is designed to work even
|
|
@@ -99,48 +99,48 @@ class NasDatastore extends pulumi.CustomResource {
|
|
|
99
99
|
opts = opts || {};
|
|
100
100
|
if (opts.id) {
|
|
101
101
|
const state = argsOrState;
|
|
102
|
-
resourceInputs["accessMode"] = state
|
|
103
|
-
resourceInputs["accessible"] = state
|
|
104
|
-
resourceInputs["capacity"] = state
|
|
105
|
-
resourceInputs["customAttributes"] = state
|
|
106
|
-
resourceInputs["datastoreClusterId"] = state
|
|
107
|
-
resourceInputs["folder"] = state
|
|
108
|
-
resourceInputs["freeSpace"] = state
|
|
109
|
-
resourceInputs["hostSystemIds"] = state
|
|
110
|
-
resourceInputs["maintenanceMode"] = state
|
|
111
|
-
resourceInputs["multipleHostAccess"] = state
|
|
112
|
-
resourceInputs["name"] = state
|
|
113
|
-
resourceInputs["protocolEndpoint"] = state
|
|
114
|
-
resourceInputs["remoteHosts"] = state
|
|
115
|
-
resourceInputs["remotePath"] = state
|
|
116
|
-
resourceInputs["securityType"] = state
|
|
117
|
-
resourceInputs["tags"] = state
|
|
118
|
-
resourceInputs["type"] = state
|
|
119
|
-
resourceInputs["uncommittedSpace"] = state
|
|
120
|
-
resourceInputs["url"] = state
|
|
102
|
+
resourceInputs["accessMode"] = state?.accessMode;
|
|
103
|
+
resourceInputs["accessible"] = state?.accessible;
|
|
104
|
+
resourceInputs["capacity"] = state?.capacity;
|
|
105
|
+
resourceInputs["customAttributes"] = state?.customAttributes;
|
|
106
|
+
resourceInputs["datastoreClusterId"] = state?.datastoreClusterId;
|
|
107
|
+
resourceInputs["folder"] = state?.folder;
|
|
108
|
+
resourceInputs["freeSpace"] = state?.freeSpace;
|
|
109
|
+
resourceInputs["hostSystemIds"] = state?.hostSystemIds;
|
|
110
|
+
resourceInputs["maintenanceMode"] = state?.maintenanceMode;
|
|
111
|
+
resourceInputs["multipleHostAccess"] = state?.multipleHostAccess;
|
|
112
|
+
resourceInputs["name"] = state?.name;
|
|
113
|
+
resourceInputs["protocolEndpoint"] = state?.protocolEndpoint;
|
|
114
|
+
resourceInputs["remoteHosts"] = state?.remoteHosts;
|
|
115
|
+
resourceInputs["remotePath"] = state?.remotePath;
|
|
116
|
+
resourceInputs["securityType"] = state?.securityType;
|
|
117
|
+
resourceInputs["tags"] = state?.tags;
|
|
118
|
+
resourceInputs["type"] = state?.type;
|
|
119
|
+
resourceInputs["uncommittedSpace"] = state?.uncommittedSpace;
|
|
120
|
+
resourceInputs["url"] = state?.url;
|
|
121
121
|
}
|
|
122
122
|
else {
|
|
123
123
|
const args = argsOrState;
|
|
124
|
-
if (
|
|
124
|
+
if (args?.hostSystemIds === undefined && !opts.urn) {
|
|
125
125
|
throw new Error("Missing required property 'hostSystemIds'");
|
|
126
126
|
}
|
|
127
|
-
if (
|
|
127
|
+
if (args?.remoteHosts === undefined && !opts.urn) {
|
|
128
128
|
throw new Error("Missing required property 'remoteHosts'");
|
|
129
129
|
}
|
|
130
|
-
if (
|
|
130
|
+
if (args?.remotePath === undefined && !opts.urn) {
|
|
131
131
|
throw new Error("Missing required property 'remotePath'");
|
|
132
132
|
}
|
|
133
|
-
resourceInputs["accessMode"] = args
|
|
134
|
-
resourceInputs["customAttributes"] = args
|
|
135
|
-
resourceInputs["datastoreClusterId"] = args
|
|
136
|
-
resourceInputs["folder"] = args
|
|
137
|
-
resourceInputs["hostSystemIds"] = args
|
|
138
|
-
resourceInputs["name"] = args
|
|
139
|
-
resourceInputs["remoteHosts"] = args
|
|
140
|
-
resourceInputs["remotePath"] = args
|
|
141
|
-
resourceInputs["securityType"] = args
|
|
142
|
-
resourceInputs["tags"] = args
|
|
143
|
-
resourceInputs["type"] = args
|
|
133
|
+
resourceInputs["accessMode"] = args?.accessMode;
|
|
134
|
+
resourceInputs["customAttributes"] = args?.customAttributes;
|
|
135
|
+
resourceInputs["datastoreClusterId"] = args?.datastoreClusterId;
|
|
136
|
+
resourceInputs["folder"] = args?.folder;
|
|
137
|
+
resourceInputs["hostSystemIds"] = args?.hostSystemIds;
|
|
138
|
+
resourceInputs["name"] = args?.name;
|
|
139
|
+
resourceInputs["remoteHosts"] = args?.remoteHosts;
|
|
140
|
+
resourceInputs["remotePath"] = args?.remotePath;
|
|
141
|
+
resourceInputs["securityType"] = args?.securityType;
|
|
142
|
+
resourceInputs["tags"] = args?.tags;
|
|
143
|
+
resourceInputs["type"] = args?.type;
|
|
144
144
|
resourceInputs["accessible"] = undefined /*out*/;
|
|
145
145
|
resourceInputs["capacity"] = undefined /*out*/;
|
|
146
146
|
resourceInputs["freeSpace"] = undefined /*out*/;
|
package/nasDatastore.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"nasDatastore.js","sourceRoot":"","sources":["../nasDatastore.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiEG;AACH,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;IACnD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyB,EAAE,IAAmC;QACvH,OAAO,IAAI,YAAY,CAAC,IAAI,EAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"nasDatastore.js","sourceRoot":"","sources":["../nasDatastore.ts"],"names":[],"mappings":"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"}
|
package/offlineSoftwareDepot.js
CHANGED
|
@@ -23,7 +23,7 @@ class OfflineSoftwareDepot extends pulumi.CustomResource {
|
|
|
23
23
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
24
24
|
*/
|
|
25
25
|
static get(name, id, state, opts) {
|
|
26
|
-
return new OfflineSoftwareDepot(name, state,
|
|
26
|
+
return new OfflineSoftwareDepot(name, state, { ...opts, id: id });
|
|
27
27
|
}
|
|
28
28
|
/**
|
|
29
29
|
* Returns true if the given object is an instance of OfflineSoftwareDepot. This is designed to work even
|
|
@@ -40,15 +40,15 @@ class OfflineSoftwareDepot extends pulumi.CustomResource {
|
|
|
40
40
|
opts = opts || {};
|
|
41
41
|
if (opts.id) {
|
|
42
42
|
const state = argsOrState;
|
|
43
|
-
resourceInputs["components"] = state
|
|
44
|
-
resourceInputs["location"] = state
|
|
43
|
+
resourceInputs["components"] = state?.components;
|
|
44
|
+
resourceInputs["location"] = state?.location;
|
|
45
45
|
}
|
|
46
46
|
else {
|
|
47
47
|
const args = argsOrState;
|
|
48
|
-
if (
|
|
48
|
+
if (args?.location === undefined && !opts.urn) {
|
|
49
49
|
throw new Error("Missing required property 'location'");
|
|
50
50
|
}
|
|
51
|
-
resourceInputs["location"] = args
|
|
51
|
+
resourceInputs["location"] = args?.location;
|
|
52
52
|
resourceInputs["components"] = undefined /*out*/;
|
|
53
53
|
}
|
|
54
54
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"offlineSoftwareDepot.js","sourceRoot":"","sources":["../offlineSoftwareDepot.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;GAMG;AACH,MAAa,oBAAqB,SAAQ,MAAM,CAAC,cAAc;IAC3D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAiC,EAAE,IAAmC;QAC/H,OAAO,IAAI,oBAAoB,CAAC,IAAI,EAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"offlineSoftwareDepot.js","sourceRoot":"","sources":["../offlineSoftwareDepot.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;GAMG;AACH,MAAa,oBAAqB,SAAQ,MAAM,CAAC,cAAc;IAC3D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAiC,EAAE,IAAmC;QAC/H,OAAO,IAAI,oBAAoB,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC3E,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,oBAAoB,CAAC,YAAY,CAAC;IACrE,CAAC;IAmBD,YAAY,IAAY,EAAE,WAAkE,EAAE,IAAmC;QAC7H,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAoD,CAAC;YACnE,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;SAChD;aAAM;YACH,MAAM,IAAI,GAAG,WAAmD,CAAC;YACjE,IAAI,IAAI,EAAE,QAAQ,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC3C,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;YACD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,YAAY,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACpD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,oBAAoB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACzE,CAAC;;AA9DL,oDA+DC;AAjDG,gBAAgB;AACO,iCAAY,GAAG,yDAAyD,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/vsphere",
|
|
3
|
-
"version": "4.16.
|
|
3
|
+
"version": "4.16.1",
|
|
4
4
|
"description": "A Pulumi package for creating vsphere resources",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -22,6 +22,6 @@
|
|
|
22
22
|
"pulumi": {
|
|
23
23
|
"resource": true,
|
|
24
24
|
"name": "vsphere",
|
|
25
|
-
"version": "4.16.
|
|
25
|
+
"version": "4.16.1"
|
|
26
26
|
}
|
|
27
27
|
}
|