@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
package/getDynamic.d.ts CHANGED
@@ -2,9 +2,10 @@ import * as pulumi from "@pulumi/pulumi";
2
2
  /**
3
3
  * [docs-about-morefs]: /docs/providers/vsphere/index.html#use-of-managed-object-references-by-the-vsphere-provider
4
4
  *
5
- * The `vsphere.getDynamic` data source can be used to get the [managed object reference ID][docs-about-morefs]
6
- * of any tagged managed object in vCenter Server by providing a list of tag IDs
7
- * and an optional regular expression to filter objects by name.
5
+ * The `vsphere.getDynamic` data source can be used to get the
6
+ * [managed object reference ID][docs-about-morefs] of any tagged managed object in
7
+ * vCenter Server by providing a list of tag IDs and an optional regular expression
8
+ * to filter objects by name.
8
9
  *
9
10
  * ## Example Usage
10
11
  *
@@ -44,14 +45,14 @@ export interface GetDynamicArgs {
44
45
  */
45
46
  filters: string[];
46
47
  /**
47
- * A regular expression that will be used to match
48
- * the object's name.
48
+ * A regular expression that will be used to match the
49
+ * object's name.
49
50
  */
50
51
  nameRegex?: string;
51
52
  /**
52
53
  * The managed object type the returned object must match.
53
54
  * The managed object types can be found in the managed object type section
54
- * [here](https://developer.vmware.com/apis/968/vsphere).
55
+ * [here](https://developer.broadcom.com/xapis/vsphere-web-services-api/latest/).
55
56
  */
56
57
  type?: string;
57
58
  }
@@ -70,9 +71,10 @@ export interface GetDynamicResult {
70
71
  /**
71
72
  * [docs-about-morefs]: /docs/providers/vsphere/index.html#use-of-managed-object-references-by-the-vsphere-provider
72
73
  *
73
- * The `vsphere.getDynamic` data source can be used to get the [managed object reference ID][docs-about-morefs]
74
- * of any tagged managed object in vCenter Server by providing a list of tag IDs
75
- * and an optional regular expression to filter objects by name.
74
+ * The `vsphere.getDynamic` data source can be used to get the
75
+ * [managed object reference ID][docs-about-morefs] of any tagged managed object in
76
+ * vCenter Server by providing a list of tag IDs and an optional regular expression
77
+ * to filter objects by name.
76
78
  *
77
79
  * ## Example Usage
78
80
  *
@@ -112,14 +114,14 @@ export interface GetDynamicOutputArgs {
112
114
  */
113
115
  filters: pulumi.Input<pulumi.Input<string>[]>;
114
116
  /**
115
- * A regular expression that will be used to match
116
- * the object's name.
117
+ * A regular expression that will be used to match the
118
+ * object's name.
117
119
  */
118
120
  nameRegex?: pulumi.Input<string>;
119
121
  /**
120
122
  * The managed object type the returned object must match.
121
123
  * The managed object types can be found in the managed object type section
122
- * [here](https://developer.vmware.com/apis/968/vsphere).
124
+ * [here](https://developer.broadcom.com/xapis/vsphere-web-services-api/latest/).
123
125
  */
124
126
  type?: pulumi.Input<string>;
125
127
  }
package/getDynamic.js CHANGED
@@ -8,9 +8,10 @@ const utilities = require("./utilities");
8
8
  /**
9
9
  * [docs-about-morefs]: /docs/providers/vsphere/index.html#use-of-managed-object-references-by-the-vsphere-provider
10
10
  *
11
- * The `vsphere.getDynamic` data source can be used to get the [managed object reference ID][docs-about-morefs]
12
- * of any tagged managed object in vCenter Server by providing a list of tag IDs
13
- * and an optional regular expression to filter objects by name.
11
+ * The `vsphere.getDynamic` data source can be used to get the
12
+ * [managed object reference ID][docs-about-morefs] of any tagged managed object in
13
+ * vCenter Server by providing a list of tag IDs and an optional regular expression
14
+ * to filter objects by name.
14
15
  *
15
16
  * ## Example Usage
16
17
  *
@@ -51,9 +52,10 @@ exports.getDynamic = getDynamic;
51
52
  /**
52
53
  * [docs-about-morefs]: /docs/providers/vsphere/index.html#use-of-managed-object-references-by-the-vsphere-provider
53
54
  *
54
- * The `vsphere.getDynamic` data source can be used to get the [managed object reference ID][docs-about-morefs]
55
- * of any tagged managed object in vCenter Server by providing a list of tag IDs
56
- * and an optional regular expression to filter objects by name.
55
+ * The `vsphere.getDynamic` data source can be used to get the
56
+ * [managed object reference ID][docs-about-morefs] of any tagged managed object in
57
+ * vCenter Server by providing a list of tag IDs and an optional regular expression
58
+ * to filter objects by name.
57
59
  *
58
60
  * ## Example Usage
59
61
  *
package/getDynamic.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"getDynamic.js","sourceRoot":"","sources":["../getDynamic.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IAExE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,qCAAqC,EAAE;QAChE,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,gCAQC;AAoCD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IACpF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACrE,CAAC;AAFD,4CAEC"}
1
+ {"version":3,"file":"getDynamic.js","sourceRoot":"","sources":["../getDynamic.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IAExE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,qCAAqC,EAAE;QAChE,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,gCAQC;AAoCD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IACpF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACrE,CAAC;AAFD,4CAEC"}
package/getFolder.d.ts CHANGED
@@ -1,7 +1,11 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  /**
3
3
  * The `vsphere.Folder` data source can be used to get the general attributes of a
4
- * vSphere inventory folder. Paths are absolute and must include the datacenter.
4
+ * vSphere inventory folder. The data source supports creating folders of the 5
5
+ * major types - datacenter folders, host and cluster folders, virtual machine
6
+ * folders, storage folders, and network folders.
7
+ *
8
+ * Paths are absolute and must include the datacenter.
5
9
  *
6
10
  * ## Example Usage
7
11
  *
@@ -40,7 +44,11 @@ export interface GetFolderResult {
40
44
  }
41
45
  /**
42
46
  * The `vsphere.Folder` data source can be used to get the general attributes of a
43
- * vSphere inventory folder. Paths are absolute and must include the datacenter.
47
+ * vSphere inventory folder. The data source supports creating folders of the 5
48
+ * major types - datacenter folders, host and cluster folders, virtual machine
49
+ * folders, storage folders, and network folders.
50
+ *
51
+ * Paths are absolute and must include the datacenter.
44
52
  *
45
53
  * ## Example Usage
46
54
  *
package/getFolder.js CHANGED
@@ -7,7 +7,11 @@ const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("./utilities");
8
8
  /**
9
9
  * The `vsphere.Folder` data source can be used to get the general attributes of a
10
- * vSphere inventory folder. Paths are absolute and must include the datacenter.
10
+ * vSphere inventory folder. The data source supports creating folders of the 5
11
+ * major types - datacenter folders, host and cluster folders, virtual machine
12
+ * folders, storage folders, and network folders.
13
+ *
14
+ * Paths are absolute and must include the datacenter.
11
15
  *
12
16
  * ## Example Usage
13
17
  *
@@ -29,7 +33,11 @@ function getFolder(args, opts) {
29
33
  exports.getFolder = getFolder;
30
34
  /**
31
35
  * The `vsphere.Folder` data source can be used to get the general attributes of a
32
- * vSphere inventory folder. Paths are absolute and must include the datacenter.
36
+ * vSphere inventory folder. The data source supports creating folders of the 5
37
+ * major types - datacenter folders, host and cluster folders, virtual machine
38
+ * folders, storage folders, and network folders.
39
+ *
40
+ * Paths are absolute and must include the datacenter.
33
41
  *
34
42
  * ## Example Usage
35
43
  *
package/getFolder.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"getFolder.js","sourceRoot":"","sources":["../getFolder.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;GAcG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;IAEtE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,mCAAmC,EAAE;QAC9D,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,8BAMC;AA0BD;;;;;;;;;;;;;;GAcG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,SAAS,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACpE,CAAC;AAFD,0CAEC"}
1
+ {"version":3,"file":"getFolder.js","sourceRoot":"","sources":["../getFolder.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;IAEtE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,mCAAmC,EAAE;QAC9D,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,8BAMC;AA0BD;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,SAAS,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACpE,CAAC;AAFD,0CAEC"}
@@ -1,21 +1,8 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  import * as outputs from "./types/output";
3
3
  /**
4
- * The `vsphere.GuestOsCustomization` data source can be used to discover the details about a customization specification for a guest operating system.
5
- *
6
- * Suggested change
7
- * > **NOTE:** The name attribute is the unique identifier for the customization specification per vCenter Server instance.
8
- *
9
- * ## Example Usage
10
- *
11
- * ```typescript
12
- * import * as pulumi from "@pulumi/pulumi";
13
- * import * as vsphere from "@pulumi/vsphere";
14
- *
15
- * const gosc1 = vsphere.getGuestOsCustomization({
16
- * name: "linux-spec",
17
- * });
18
- * ```
4
+ * The `vsphere.GuestOsCustomization` data source can be used to discover the
5
+ * details about a customization specification for a guest operating system.
19
6
  */
20
7
  export declare function getGuestOsCustomization(args: GetGuestOsCustomizationArgs, opts?: pulumi.InvokeOptions): Promise<GetGuestOsCustomizationResult>;
21
8
  /**
@@ -23,7 +10,8 @@ export declare function getGuestOsCustomization(args: GetGuestOsCustomizationArg
23
10
  */
24
11
  export interface GetGuestOsCustomizationArgs {
25
12
  /**
26
- * The name of the customization specification is the unique identifier per vCenter Server instance.
13
+ * The name of the customization specification is the unique
14
+ * identifier per vCenter Server instance. ## Attribute Reference
27
15
  */
28
16
  name: string;
29
17
  }
@@ -31,48 +19,20 @@ export interface GetGuestOsCustomizationArgs {
31
19
  * A collection of values returned by getGuestOsCustomization.
32
20
  */
33
21
  export interface GetGuestOsCustomizationResult {
34
- /**
35
- * The number of last changed version to the customization specification.
36
- */
37
22
  readonly changeVersion: string;
38
- /**
39
- * The description for the customization specification.
40
- */
41
23
  readonly description: string;
42
24
  /**
43
25
  * The provider-assigned unique ID for this managed resource.
44
26
  */
45
27
  readonly id: string;
46
- /**
47
- * The time of last modification to the customization specification.
48
- */
49
28
  readonly lastUpdateTime: string;
50
29
  readonly name: string;
51
- /**
52
- * Container object for the guest operating system properties to be customized. See virtual machine customizations
53
- */
54
30
  readonly specs: outputs.GetGuestOsCustomizationSpec[];
55
- /**
56
- * The type of customization specification: One among: Windows, Linux.
57
- */
58
31
  readonly type: string;
59
32
  }
60
33
  /**
61
- * The `vsphere.GuestOsCustomization` data source can be used to discover the details about a customization specification for a guest operating system.
62
- *
63
- * Suggested change
64
- * > **NOTE:** The name attribute is the unique identifier for the customization specification per vCenter Server instance.
65
- *
66
- * ## Example Usage
67
- *
68
- * ```typescript
69
- * import * as pulumi from "@pulumi/pulumi";
70
- * import * as vsphere from "@pulumi/vsphere";
71
- *
72
- * const gosc1 = vsphere.getGuestOsCustomization({
73
- * name: "linux-spec",
74
- * });
75
- * ```
34
+ * The `vsphere.GuestOsCustomization` data source can be used to discover the
35
+ * details about a customization specification for a guest operating system.
76
36
  */
77
37
  export declare function getGuestOsCustomizationOutput(args: GetGuestOsCustomizationOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetGuestOsCustomizationResult>;
78
38
  /**
@@ -80,7 +40,8 @@ export declare function getGuestOsCustomizationOutput(args: GetGuestOsCustomizat
80
40
  */
81
41
  export interface GetGuestOsCustomizationOutputArgs {
82
42
  /**
83
- * The name of the customization specification is the unique identifier per vCenter Server instance.
43
+ * The name of the customization specification is the unique
44
+ * identifier per vCenter Server instance. ## Attribute Reference
84
45
  */
85
46
  name: pulumi.Input<string>;
86
47
  }
@@ -6,21 +6,8 @@ exports.getGuestOsCustomizationOutput = exports.getGuestOsCustomization = void 0
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("./utilities");
8
8
  /**
9
- * The `vsphere.GuestOsCustomization` data source can be used to discover the details about a customization specification for a guest operating system.
10
- *
11
- * Suggested change
12
- * > **NOTE:** The name attribute is the unique identifier for the customization specification per vCenter Server instance.
13
- *
14
- * ## Example Usage
15
- *
16
- * ```typescript
17
- * import * as pulumi from "@pulumi/pulumi";
18
- * import * as vsphere from "@pulumi/vsphere";
19
- *
20
- * const gosc1 = vsphere.getGuestOsCustomization({
21
- * name: "linux-spec",
22
- * });
23
- * ```
9
+ * The `vsphere.GuestOsCustomization` data source can be used to discover the
10
+ * details about a customization specification for a guest operating system.
24
11
  */
25
12
  function getGuestOsCustomization(args, opts) {
26
13
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
@@ -30,21 +17,8 @@ function getGuestOsCustomization(args, opts) {
30
17
  }
31
18
  exports.getGuestOsCustomization = getGuestOsCustomization;
32
19
  /**
33
- * The `vsphere.GuestOsCustomization` data source can be used to discover the details about a customization specification for a guest operating system.
34
- *
35
- * Suggested change
36
- * > **NOTE:** The name attribute is the unique identifier for the customization specification per vCenter Server instance.
37
- *
38
- * ## Example Usage
39
- *
40
- * ```typescript
41
- * import * as pulumi from "@pulumi/pulumi";
42
- * import * as vsphere from "@pulumi/vsphere";
43
- *
44
- * const gosc1 = vsphere.getGuestOsCustomization({
45
- * name: "linux-spec",
46
- * });
47
- * ```
20
+ * The `vsphere.GuestOsCustomization` data source can be used to discover the
21
+ * details about a customization specification for a guest operating system.
48
22
  */
49
23
  function getGuestOsCustomizationOutput(args, opts) {
50
24
  return pulumi.output(args).apply((a) => getGuestOsCustomization(a, opts));
@@ -1 +1 @@
1
- {"version":3,"file":"getGuestOsCustomization.js","sourceRoot":"","sources":["../getGuestOsCustomization.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAA2B;IAElG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+DAA+D,EAAE;QAC1F,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,0DAMC;AA0CD;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,6BAA6B,CAAC,IAAuC,EAAE,IAA2B;IAC9G,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,uBAAuB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAClF,CAAC;AAFD,sEAEC"}
1
+ {"version":3,"file":"getGuestOsCustomization.js","sourceRoot":"","sources":["../getGuestOsCustomization.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;GAGG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAA2B;IAElG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+DAA+D,EAAE;QAC1F,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,0DAMC;AA4BD;;;GAGG;AACH,SAAgB,6BAA6B,CAAC,IAAuC,EAAE,IAA2B;IAC9G,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,uBAAuB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAClF,CAAC;AAFD,sEAEC"}
@@ -0,0 +1,42 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * The `vsphere.getHostBaseImages` data source can be used to get the list of ESXi
4
+ * base images available for cluster software management.
5
+ *
6
+ * ## Example Usage
7
+ *
8
+ * ```typescript
9
+ * import * as pulumi from "@pulumi/pulumi";
10
+ * import * as vsphere from "@pulumi/vsphere";
11
+ *
12
+ * const baseImages = vsphere.getHostBaseImages({});
13
+ * ```
14
+ */
15
+ export declare function getHostBaseImages(opts?: pulumi.InvokeOptions): Promise<GetHostBaseImagesResult>;
16
+ /**
17
+ * A collection of values returned by getHostBaseImages.
18
+ */
19
+ export interface GetHostBaseImagesResult {
20
+ /**
21
+ * The provider-assigned unique ID for this managed resource.
22
+ */
23
+ readonly id: string;
24
+ /**
25
+ * The ESXi version identifier for the image
26
+ */
27
+ readonly versions: string[];
28
+ }
29
+ /**
30
+ * The `vsphere.getHostBaseImages` data source can be used to get the list of ESXi
31
+ * base images available for cluster software management.
32
+ *
33
+ * ## Example Usage
34
+ *
35
+ * ```typescript
36
+ * import * as pulumi from "@pulumi/pulumi";
37
+ * import * as vsphere from "@pulumi/vsphere";
38
+ *
39
+ * const baseImages = vsphere.getHostBaseImages({});
40
+ * ```
41
+ */
42
+ export declare function getHostBaseImagesOutput(opts?: pulumi.InvokeOptions): pulumi.Output<GetHostBaseImagesResult>;
@@ -0,0 +1,43 @@
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.getHostBaseImagesOutput = exports.getHostBaseImages = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * The `vsphere.getHostBaseImages` data source can be used to get the list of ESXi
10
+ * base images available for cluster software management.
11
+ *
12
+ * ## Example Usage
13
+ *
14
+ * ```typescript
15
+ * import * as pulumi from "@pulumi/pulumi";
16
+ * import * as vsphere from "@pulumi/vsphere";
17
+ *
18
+ * const baseImages = vsphere.getHostBaseImages({});
19
+ * ```
20
+ */
21
+ function getHostBaseImages(opts) {
22
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
23
+ return pulumi.runtime.invoke("vsphere:index/getHostBaseImages:getHostBaseImages", {}, opts);
24
+ }
25
+ exports.getHostBaseImages = getHostBaseImages;
26
+ /**
27
+ * The `vsphere.getHostBaseImages` data source can be used to get the list of ESXi
28
+ * base images available for cluster software management.
29
+ *
30
+ * ## Example Usage
31
+ *
32
+ * ```typescript
33
+ * import * as pulumi from "@pulumi/pulumi";
34
+ * import * as vsphere from "@pulumi/vsphere";
35
+ *
36
+ * const baseImages = vsphere.getHostBaseImages({});
37
+ * ```
38
+ */
39
+ function getHostBaseImagesOutput(opts) {
40
+ return pulumi.output(getHostBaseImages(opts));
41
+ }
42
+ exports.getHostBaseImagesOutput = getHostBaseImagesOutput;
43
+ //# sourceMappingURL=getHostBaseImages.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getHostBaseImages.js","sourceRoot":"","sources":["../getHostBaseImages.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,iBAAiB,CAAC,IAA2B;IAEzD,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,EACjF,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,8CAKC;AAeD;;;;;;;;;;;;GAYG;AACH,SAAgB,uBAAuB,CAAC,IAA2B;IAC/D,OAAO,MAAM,CAAC,MAAM,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC,CAAA;AACjD,CAAC;AAFD,0DAEC"}
@@ -59,7 +59,8 @@ export interface GetHostPciDeviceArgs {
59
59
  */
60
60
  classId?: string;
61
61
  /**
62
- * The [managed object reference ID][docs-about-morefs] of a host.
62
+ * The [managed object reference ID][docs-about-morefs] of
63
+ * a host.
63
64
  */
64
65
  hostId: string;
65
66
  /**
@@ -149,7 +150,8 @@ export interface GetHostPciDeviceOutputArgs {
149
150
  */
150
151
  classId?: pulumi.Input<string>;
151
152
  /**
152
- * The [managed object reference ID][docs-about-morefs] of a host.
153
+ * The [managed object reference ID][docs-about-morefs] of
154
+ * a host.
153
155
  */
154
156
  hostId: pulumi.Input<string>;
155
157
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"getHostPciDevice.js","sourceRoot":"","sources":["../getHostPciDevice.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6CG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IAEpF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iDAAiD,EAAE;QAC5E,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,4CASC;AA8CD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6CG;AACH,SAAgB,sBAAsB,CAAC,IAAgC,EAAE,IAA2B;IAChG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,gBAAgB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC3E,CAAC;AAFD,wDAEC"}
1
+ {"version":3,"file":"getHostPciDevice.js","sourceRoot":"","sources":["../getHostPciDevice.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6CG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IAEpF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iDAAiD,EAAE;QAC5E,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,4CASC;AA+CD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6CG;AACH,SAAgB,sBAAsB,CAAC,IAAgC,EAAE,IAA2B;IAChG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,gBAAgB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC3E,CAAC;AAFD,wDAEC"}
@@ -1,9 +1,9 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  /**
3
- * The `vsphereThumbprint` data source can be used to discover the host
4
- * thumbprint of an ESXi host. This can be used when adding the `vsphere.Host`
5
- * resource. If the ESXi host is using a certificate chain, the first one returned
6
- * will be used to generate the thumbprint.
3
+ * The `vsphereThumbprint` data source can be used to discover the host thumbprint
4
+ * of an ESXi host. This can be used when adding the `vsphere.Host` resource. If
5
+ * the ESXi host is using a certificate chain, the first one returned will be used
6
+ * to generate the thumbprint.
7
7
  *
8
8
  * ## Example Usage
9
9
  *
@@ -22,8 +22,8 @@ export declare function getHostThumbprint(args: GetHostThumbprintArgs, opts?: pu
22
22
  */
23
23
  export interface GetHostThumbprintArgs {
24
24
  /**
25
- * The address of the ESXi host to retrieve the
26
- * thumbprint from.
25
+ * The address of the ESXi host to retrieve the thumbprint
26
+ * from.
27
27
  */
28
28
  address: string;
29
29
  /**
@@ -49,10 +49,10 @@ export interface GetHostThumbprintResult {
49
49
  readonly port?: string;
50
50
  }
51
51
  /**
52
- * The `vsphereThumbprint` data source can be used to discover the host
53
- * thumbprint of an ESXi host. This can be used when adding the `vsphere.Host`
54
- * resource. If the ESXi host is using a certificate chain, the first one returned
55
- * will be used to generate the thumbprint.
52
+ * The `vsphereThumbprint` data source can be used to discover the host thumbprint
53
+ * of an ESXi host. This can be used when adding the `vsphere.Host` resource. If
54
+ * the ESXi host is using a certificate chain, the first one returned will be used
55
+ * to generate the thumbprint.
56
56
  *
57
57
  * ## Example Usage
58
58
  *
@@ -71,8 +71,8 @@ export declare function getHostThumbprintOutput(args: GetHostThumbprintOutputArg
71
71
  */
72
72
  export interface GetHostThumbprintOutputArgs {
73
73
  /**
74
- * The address of the ESXi host to retrieve the
75
- * thumbprint from.
74
+ * The address of the ESXi host to retrieve the thumbprint
75
+ * from.
76
76
  */
77
77
  address: pulumi.Input<string>;
78
78
  /**
@@ -6,10 +6,10 @@ exports.getHostThumbprintOutput = exports.getHostThumbprint = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("./utilities");
8
8
  /**
9
- * The `vsphereThumbprint` data source can be used to discover the host
10
- * thumbprint of an ESXi host. This can be used when adding the `vsphere.Host`
11
- * resource. If the ESXi host is using a certificate chain, the first one returned
12
- * will be used to generate the thumbprint.
9
+ * The `vsphereThumbprint` data source can be used to discover the host thumbprint
10
+ * of an ESXi host. This can be used when adding the `vsphere.Host` resource. If
11
+ * the ESXi host is using a certificate chain, the first one returned will be used
12
+ * to generate the thumbprint.
13
13
  *
14
14
  * ## Example Usage
15
15
  *
@@ -32,10 +32,10 @@ function getHostThumbprint(args, opts) {
32
32
  }
33
33
  exports.getHostThumbprint = getHostThumbprint;
34
34
  /**
35
- * The `vsphereThumbprint` data source can be used to discover the host
36
- * thumbprint of an ESXi host. This can be used when adding the `vsphere.Host`
37
- * resource. If the ESXi host is using a certificate chain, the first one returned
38
- * will be used to generate the thumbprint.
35
+ * The `vsphereThumbprint` data source can be used to discover the host thumbprint
36
+ * of an ESXi host. This can be used when adding the `vsphere.Host` resource. If
37
+ * the ESXi host is using a certificate chain, the first one returned will be used
38
+ * to generate the thumbprint.
39
39
  *
40
40
  * ## Example Usage
41
41
  *
@@ -49,7 +49,8 @@ export declare function getHostVgpuProfile(args: GetHostVgpuProfileArgs, opts?:
49
49
  */
50
50
  export interface GetHostVgpuProfileArgs {
51
51
  /**
52
- * The [managed object reference ID][docs-about-morefs] of a host.
52
+ * The [managed object reference ID][docs-about-morefs] of
53
+ * a host.
53
54
  */
54
55
  hostId: string;
55
56
  /**
@@ -132,7 +133,8 @@ export declare function getHostVgpuProfileOutput(args: GetHostVgpuProfileOutputA
132
133
  */
133
134
  export interface GetHostVgpuProfileOutputArgs {
134
135
  /**
135
- * The [managed object reference ID][docs-about-morefs] of a host.
136
+ * The [managed object reference ID][docs-about-morefs] of
137
+ * a host.
136
138
  */
137
139
  hostId: pulumi.Input<string>;
138
140
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"getHostVgpuProfile.js","sourceRoot":"","sources":["../getHostVgpuProfile.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0CG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IAExF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,qDAAqD,EAAE;QAChF,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gDAOC;AA0CD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0CG;AACH,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAA2B;IACpG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,kBAAkB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC7E,CAAC;AAFD,4DAEC"}
1
+ {"version":3,"file":"getHostVgpuProfile.js","sourceRoot":"","sources":["../getHostVgpuProfile.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0CG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IAExF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,qDAAqD,EAAE;QAChF,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gDAOC;AA2CD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0CG;AACH,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAA2B;IACpG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,kBAAkB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC7E,CAAC;AAFD,4DAEC"}
package/getLicense.d.ts CHANGED
@@ -34,7 +34,8 @@ export interface GetLicenseResult {
34
34
  readonly editionKey: string;
35
35
  readonly id: string;
36
36
  /**
37
- * A map of key/value pairs attached as labels (tags) to the license key.
37
+ * A map of key/value pairs attached as labels (tags) to the license
38
+ * key.
38
39
  */
39
40
  readonly labels: {
40
41
  [key: string]: string;
package/getLicense.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"getLicense.js","sourceRoot":"","sources":["../getLicense.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;GAcG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IAExE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,qCAAqC,EAAE;QAChE,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gCAMC;AAuCD;;;;;;;;;;;;;;GAcG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IACpF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACrE,CAAC;AAFD,4CAEC"}
1
+ {"version":3,"file":"getLicense.js","sourceRoot":"","sources":["../getLicense.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;GAcG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IAExE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,qCAAqC,EAAE;QAChE,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gCAMC;AAwCD;;;;;;;;;;;;;;GAcG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IACpF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACrE,CAAC;AAFD,4CAEC"}
package/getNetwork.d.ts CHANGED
@@ -1,10 +1,10 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  /**
3
- * The `vsphere.getNetwork` data source can be used to discover the ID of a network
4
- * in vSphere. This can be any network that can be used as the backing for a
5
- * network interface for `vsphere.VirtualMachine` or any other vSphere resource
6
- * that requires a network. This includes standard (host-based) port groups,
7
- * distributed port groups, or opaque networks such as those managed by NSX.
3
+ * The `vsphere.getNetwork` data source can be used to discover the ID of a network in
4
+ * vSphere. This can be any network that can be used as the backing for a network
5
+ * interface for `vsphere.VirtualMachine` or any other vSphere resource that
6
+ * requires a network. This includes standard (host-based) port groups, distributed
7
+ * port groups, or opaque networks such as those managed by NSX.
8
8
  *
9
9
  * ## Example Usage
10
10
  *
@@ -36,8 +36,8 @@ export interface GetNetworkArgs {
36
36
  /**
37
37
  * For distributed port group type
38
38
  * network objects, the ID of the distributed virtual switch for which the port
39
- * group belongs. It is useful to differentiate port groups with same name
40
- * using the distributed virtual switch ID.
39
+ * group belongs. It is useful to differentiate port groups with same name using
40
+ * the distributed virtual switch ID.
41
41
  */
42
42
  distributedVirtualSwitchUuid?: string;
43
43
  /**
@@ -65,11 +65,11 @@ export interface GetNetworkResult {
65
65
  readonly type: string;
66
66
  }
67
67
  /**
68
- * The `vsphere.getNetwork` data source can be used to discover the ID of a network
69
- * in vSphere. This can be any network that can be used as the backing for a
70
- * network interface for `vsphere.VirtualMachine` or any other vSphere resource
71
- * that requires a network. This includes standard (host-based) port groups,
72
- * distributed port groups, or opaque networks such as those managed by NSX.
68
+ * The `vsphere.getNetwork` data source can be used to discover the ID of a network in
69
+ * vSphere. This can be any network that can be used as the backing for a network
70
+ * interface for `vsphere.VirtualMachine` or any other vSphere resource that
71
+ * requires a network. This includes standard (host-based) port groups, distributed
72
+ * port groups, or opaque networks such as those managed by NSX.
73
73
  *
74
74
  * ## Example Usage
75
75
  *
@@ -101,8 +101,8 @@ export interface GetNetworkOutputArgs {
101
101
  /**
102
102
  * For distributed port group type
103
103
  * network objects, the ID of the distributed virtual switch for which the port
104
- * group belongs. It is useful to differentiate port groups with same name
105
- * using the distributed virtual switch ID.
104
+ * group belongs. It is useful to differentiate port groups with same name using
105
+ * the distributed virtual switch ID.
106
106
  */
107
107
  distributedVirtualSwitchUuid?: pulumi.Input<string>;
108
108
  /**
package/getNetwork.js CHANGED
@@ -6,11 +6,11 @@ exports.getNetworkOutput = exports.getNetwork = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("./utilities");
8
8
  /**
9
- * The `vsphere.getNetwork` data source can be used to discover the ID of a network
10
- * in vSphere. This can be any network that can be used as the backing for a
11
- * network interface for `vsphere.VirtualMachine` or any other vSphere resource
12
- * that requires a network. This includes standard (host-based) port groups,
13
- * distributed port groups, or opaque networks such as those managed by NSX.
9
+ * The `vsphere.getNetwork` data source can be used to discover the ID of a network in
10
+ * vSphere. This can be any network that can be used as the backing for a network
11
+ * interface for `vsphere.VirtualMachine` or any other vSphere resource that
12
+ * requires a network. This includes standard (host-based) port groups, distributed
13
+ * port groups, or opaque networks such as those managed by NSX.
14
14
  *
15
15
  * ## Example Usage
16
16
  *
@@ -37,11 +37,11 @@ function getNetwork(args, opts) {
37
37
  }
38
38
  exports.getNetwork = getNetwork;
39
39
  /**
40
- * The `vsphere.getNetwork` data source can be used to discover the ID of a network
41
- * in vSphere. This can be any network that can be used as the backing for a
42
- * network interface for `vsphere.VirtualMachine` or any other vSphere resource
43
- * that requires a network. This includes standard (host-based) port groups,
44
- * distributed port groups, or opaque networks such as those managed by NSX.
40
+ * The `vsphere.getNetwork` data source can be used to discover the ID of a network in
41
+ * vSphere. This can be any network that can be used as the backing for a network
42
+ * interface for `vsphere.VirtualMachine` or any other vSphere resource that
43
+ * requires a network. This includes standard (host-based) port groups, distributed
44
+ * port groups, or opaque networks such as those managed by NSX.
45
45
  *
46
46
  * ## Example Usage
47
47
  *