@stordata/vsphere-soapify 1.0.20250930130936 → 1.0.20250930162123
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/gl-sast-report.json +5 -5
- package/gl-sbom-npm-npm.cdx.json +2 -2
- package/lib/client.js +2 -2
- package/lib/client.spec.js +596 -0
- package/lib/sdk/data/HostVmfsVolume.js +6 -2
- package/lib/sdk/data/VmfsUnmapBandwidthSpec.js +14 -0
- package/lib/sdk/data/index.js +4 -1
- package/lib/wsdl/6.7/core-types.xsd +282 -0
- package/lib/wsdl/6.7/query-messagetypes.xsd +85 -0
- package/lib/wsdl/6.7/query-types.xsd +254 -0
- package/lib/wsdl/6.7/reflect-messagetypes.xsd +15 -0
- package/lib/wsdl/6.7/reflect-types.xsd +14 -0
- package/lib/wsdl/6.7/vim-messagetypes.xsd +5701 -0
- package/lib/wsdl/6.7/vim-types.xsd +34134 -0
- package/lib/wsdl/6.7/vim.wsdl +34484 -0
- package/lib/wsdl/6.7/vimService.wsdl +16 -0
- package/package.json +1 -1
package/gl-sast-report.json
CHANGED
|
@@ -3042,14 +3042,14 @@
|
|
|
3042
3042
|
}
|
|
3043
3043
|
],
|
|
3044
3044
|
"type": "sast",
|
|
3045
|
-
"start_time": "2025-09-
|
|
3046
|
-
"end_time": "2025-09-
|
|
3045
|
+
"start_time": "2025-09-30T16:20:55",
|
|
3046
|
+
"end_time": "2025-09-30T16:21:10",
|
|
3047
3047
|
"status": "success",
|
|
3048
3048
|
"observability": {
|
|
3049
3049
|
"events": [
|
|
3050
3050
|
{
|
|
3051
3051
|
"event": "collect_sast_scan_metrics_from_pipeline",
|
|
3052
|
-
"property": "
|
|
3052
|
+
"property": "4911752b-0475-438a-939a-9976dff1bc2a",
|
|
3053
3053
|
"label": "semgrep",
|
|
3054
3054
|
"value": 0,
|
|
3055
3055
|
"version": "6.7.1",
|
|
@@ -3057,8 +3057,8 @@
|
|
|
3057
3057
|
"override_count": 0,
|
|
3058
3058
|
"passthrough_count": 0,
|
|
3059
3059
|
"custom_exclude_path_count": 0,
|
|
3060
|
-
"time_s":
|
|
3061
|
-
"file_count":
|
|
3060
|
+
"time_s": 14,
|
|
3061
|
+
"file_count": 322
|
|
3062
3062
|
}
|
|
3063
3063
|
]
|
|
3064
3064
|
}
|
package/gl-sbom-npm-npm.cdx.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"bomFormat": "CycloneDX",
|
|
3
3
|
"specVersion": "1.4",
|
|
4
|
-
"serialNumber": "urn:uuid:
|
|
4
|
+
"serialNumber": "urn:uuid:f1750ee1-383b-4815-93f7-2e537ea4ffcb",
|
|
5
5
|
"version": 1,
|
|
6
6
|
"metadata": {
|
|
7
|
-
"timestamp": "2025-09-
|
|
7
|
+
"timestamp": "2025-09-30T16:20:56Z",
|
|
8
8
|
"tools": [
|
|
9
9
|
{
|
|
10
10
|
"vendor": "GitLab",
|
package/lib/client.js
CHANGED
|
@@ -36,12 +36,12 @@ module.exports = class Client {
|
|
|
36
36
|
*
|
|
37
37
|
* Normally you wouldn't use this method directly, but rather one of the getter for core managed objects, then
|
|
38
38
|
* call managed methods directly on the managed object. This method is however exposed for convenience, or if
|
|
39
|
-
* the call you're interested in isn't
|
|
39
|
+
* the call you're interested in isn't modeled by the library yet.
|
|
40
40
|
*
|
|
41
41
|
* @returns {Promise<soap.Client>} A Promise resolving with the node-soap Client.
|
|
42
42
|
*/
|
|
43
43
|
getClient() {
|
|
44
|
-
const wsdl = `${__dirname}/wsdl/6.
|
|
44
|
+
const wsdl = `${__dirname}/wsdl/6.7/vimService.wsdl`;
|
|
45
45
|
|
|
46
46
|
return this._cache('client', () => soap.createClientAsync(wsdl, { endpoint: this.url, ...this.options }));
|
|
47
47
|
}
|