@openshift-migration-advisor/agent-sdk 0.8.0-7c64128a18e3 → 0.8.0-89b5466bbbac
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/.openapi-generator/FILES +6 -2
- package/.openapi-generator/VERSION +1 -1
- package/README.md +10 -7
- package/dist/apis/DefaultApi.d.ts +125 -82
- package/dist/apis/DefaultApi.js +145 -100
- package/dist/esm/apis/DefaultApi.d.ts +125 -82
- package/dist/esm/apis/DefaultApi.js +146 -101
- package/dist/esm/models/InspectorStatus.d.ts +14 -0
- package/dist/esm/models/InspectorStatus.js +6 -0
- package/dist/esm/models/StartInspectionRequest.d.ts +32 -0
- package/dist/esm/models/StartInspectionRequest.js +43 -0
- package/dist/esm/models/VirtualMachine.d.ts +7 -1
- package/dist/esm/models/VirtualMachine.js +4 -4
- package/dist/esm/models/VirtualMachineDetail.d.ts +3 -3
- package/dist/esm/models/VirtualMachineDetail.js +3 -3
- package/dist/esm/models/VmInspectionConcern.d.ts +44 -0
- package/dist/esm/models/VmInspectionConcern.js +51 -0
- package/dist/esm/models/VmInspectionResults.d.ts +33 -0
- package/dist/esm/models/VmInspectionResults.js +42 -0
- package/dist/esm/models/VmInspectionStatus.d.ts +0 -1
- package/dist/esm/models/VmInspectionStatus.js +1 -2
- package/dist/esm/models/index.d.ts +3 -1
- package/dist/esm/models/index.js +3 -1
- package/dist/esm/runtime.js +1 -1
- package/dist/models/InspectorStatus.d.ts +14 -0
- package/dist/models/InspectorStatus.js +6 -0
- package/dist/models/StartInspectionRequest.d.ts +32 -0
- package/dist/models/StartInspectionRequest.js +50 -0
- package/dist/models/VirtualMachine.d.ts +7 -1
- package/dist/models/VirtualMachine.js +4 -4
- package/dist/models/VirtualMachineDetail.d.ts +3 -3
- package/dist/models/VirtualMachineDetail.js +3 -3
- package/dist/models/VmInspectionConcern.d.ts +44 -0
- package/dist/models/VmInspectionConcern.js +58 -0
- package/dist/models/VmInspectionResults.d.ts +33 -0
- package/dist/models/VmInspectionResults.js +49 -0
- package/dist/models/VmInspectionStatus.d.ts +0 -1
- package/dist/models/VmInspectionStatus.js +1 -2
- package/dist/models/index.d.ts +3 -1
- package/dist/models/index.js +3 -1
- package/dist/runtime.js +1 -1
- package/docs/DefaultApi.md +196 -117
- package/docs/InspectorStatus.md +4 -0
- package/docs/{InspectorStartRequest.md → StartInspectionRequest.md} +5 -6
- package/docs/VirtualMachine.md +4 -2
- package/docs/VirtualMachineDetail.md +1 -1
- package/docs/VmInspectionConcern.md +39 -0
- package/docs/VmInspectionResults.md +35 -0
- package/package.json +1 -1
- package/src/apis/DefaultApi.ts +268 -175
- package/src/models/InspectorStatus.ts +31 -0
- package/src/models/StartInspectionRequest.ts +66 -0
- package/src/models/VirtualMachine.ts +11 -4
- package/src/models/VirtualMachineDetail.ts +11 -11
- package/src/models/VmInspectionConcern.ts +84 -0
- package/src/models/VmInspectionResults.ts +73 -0
- package/src/models/VmInspectionStatus.ts +1 -2
- package/src/models/index.ts +3 -1
- package/src/runtime.ts +1 -1
- package/dist/esm/models/InspectorStartRequest.d.ts +0 -39
- package/dist/esm/models/InspectorStartRequest.js +0 -48
- package/dist/models/InspectorStartRequest.d.ts +0 -39
- package/dist/models/InspectorStartRequest.js +0 -55
- package/src/models/InspectorStartRequest.ts +0 -83
package/.openapi-generator/FILES
CHANGED
|
@@ -19,13 +19,13 @@ docs/GuestNetwork.md
|
|
|
19
19
|
docs/Histogram.md
|
|
20
20
|
docs/Host.md
|
|
21
21
|
docs/Infra.md
|
|
22
|
-
docs/InspectorStartRequest.md
|
|
23
22
|
docs/InspectorStatus.md
|
|
24
23
|
docs/Inventory.md
|
|
25
24
|
docs/InventoryData.md
|
|
26
25
|
docs/MigrationIssue.md
|
|
27
26
|
docs/Network.md
|
|
28
27
|
docs/OsInfo.md
|
|
28
|
+
docs/StartInspectionRequest.md
|
|
29
29
|
docs/UpdateGroupRequest.md
|
|
30
30
|
docs/UpdateInventory.md
|
|
31
31
|
docs/VCenter.md
|
|
@@ -41,6 +41,8 @@ docs/VersionInfo.md
|
|
|
41
41
|
docs/VirtualMachine.md
|
|
42
42
|
docs/VirtualMachineDetail.md
|
|
43
43
|
docs/VirtualMachineListResponse.md
|
|
44
|
+
docs/VmInspectionConcern.md
|
|
45
|
+
docs/VmInspectionResults.md
|
|
44
46
|
docs/VmInspectionStatus.md
|
|
45
47
|
package.json
|
|
46
48
|
src/apis/DefaultApi.ts
|
|
@@ -62,13 +64,13 @@ src/models/GuestNetwork.ts
|
|
|
62
64
|
src/models/Histogram.ts
|
|
63
65
|
src/models/Host.ts
|
|
64
66
|
src/models/Infra.ts
|
|
65
|
-
src/models/InspectorStartRequest.ts
|
|
66
67
|
src/models/InspectorStatus.ts
|
|
67
68
|
src/models/Inventory.ts
|
|
68
69
|
src/models/InventoryData.ts
|
|
69
70
|
src/models/MigrationIssue.ts
|
|
70
71
|
src/models/Network.ts
|
|
71
72
|
src/models/OsInfo.ts
|
|
73
|
+
src/models/StartInspectionRequest.ts
|
|
72
74
|
src/models/UpdateGroupRequest.ts
|
|
73
75
|
src/models/UpdateInventory.ts
|
|
74
76
|
src/models/VCenter.ts
|
|
@@ -84,6 +86,8 @@ src/models/VersionInfo.ts
|
|
|
84
86
|
src/models/VirtualMachine.ts
|
|
85
87
|
src/models/VirtualMachineDetail.ts
|
|
86
88
|
src/models/VirtualMachineListResponse.ts
|
|
89
|
+
src/models/VmInspectionConcern.ts
|
|
90
|
+
src/models/VmInspectionResults.ts
|
|
87
91
|
src/models/VmInspectionStatus.ts
|
|
88
92
|
src/models/index.ts
|
|
89
93
|
src/runtime.ts
|
|
@@ -1 +1 @@
|
|
|
1
|
-
7.
|
|
1
|
+
7.22.0-SNAPSHOT
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @openshift-migration-advisor/agent-sdk@0.8.0-
|
|
1
|
+
# @openshift-migration-advisor/agent-sdk@0.8.0-89b5466bbbac
|
|
2
2
|
|
|
3
3
|
A TypeScript SDK client for the raw.githubusercontent.com API.
|
|
4
4
|
|
|
@@ -57,20 +57,21 @@ All URIs are relative to *https://raw.githubusercontent.com/api/v1*
|
|
|
57
57
|
*DefaultApi* | [**getCollectorStatus**](docs/DefaultApi.md#getcollectorstatus) | **GET** /collector | Get collector status
|
|
58
58
|
*DefaultApi* | [**getGroup**](docs/DefaultApi.md#getgroup) | **GET** /groups/{id} | Get group by ID with its VMs
|
|
59
59
|
*DefaultApi* | [**getInspectorStatus**](docs/DefaultApi.md#getinspectorstatus) | **GET** /inspector | Get inspector status
|
|
60
|
+
*DefaultApi* | [**getInspectorVddkStatus**](docs/DefaultApi.md#getinspectorvddkstatus) | **GET** /inspector/vddk | Get VDDK status
|
|
60
61
|
*DefaultApi* | [**getInventory**](docs/DefaultApi.md#getinventory) | **GET** /inventory | Get collected inventory
|
|
61
62
|
*DefaultApi* | [**getVM**](docs/DefaultApi.md#getvm) | **GET** /vms/{id} | Get details about a vm
|
|
62
63
|
*DefaultApi* | [**getVMs**](docs/DefaultApi.md#getvms) | **GET** /vms | Get list of VMs with filtering and pagination
|
|
63
|
-
*DefaultApi* | [**getVddkStatus**](docs/DefaultApi.md#getvddkstatus) | **GET** /vddk | Get VDDK status
|
|
64
64
|
*DefaultApi* | [**getVersion**](docs/DefaultApi.md#getversion) | **GET** /version | Get agent version information
|
|
65
65
|
*DefaultApi* | [**listGroups**](docs/DefaultApi.md#listgroups) | **GET** /groups | List all groups
|
|
66
|
+
*DefaultApi* | [**putInspectorCredentials**](docs/DefaultApi.md#putinspectorcredentials) | **PUT** /inspector/credentials | Set or replace inspector credentials
|
|
67
|
+
*DefaultApi* | [**putInspectorVddk**](docs/DefaultApi.md#putinspectorvddk) | **PUT** /inspector/vddk | Upload VDDK tarball
|
|
66
68
|
*DefaultApi* | [**removeVMFromInspection**](docs/DefaultApi.md#removevmfrominspection) | **DELETE** /vms/{id}/inspection | Remove VirtualMachine from inspection queue
|
|
67
69
|
*DefaultApi* | [**setAgentMode**](docs/DefaultApi.md#setagentmode) | **POST** /agent | Change agent mode
|
|
68
70
|
*DefaultApi* | [**startCollector**](docs/DefaultApi.md#startcollector) | **POST** /collector | Start inventory collection
|
|
69
|
-
*DefaultApi* | [**startInspection**](docs/DefaultApi.md#
|
|
71
|
+
*DefaultApi* | [**startInspection**](docs/DefaultApi.md#startinspectionoperation) | **POST** /inspector | Start inspection for VMs
|
|
70
72
|
*DefaultApi* | [**stopCollector**](docs/DefaultApi.md#stopcollector) | **DELETE** /collector | Stop collection
|
|
71
73
|
*DefaultApi* | [**stopInspection**](docs/DefaultApi.md#stopinspection) | **DELETE** /inspector | Stop inspector entirely
|
|
72
74
|
*DefaultApi* | [**updateGroup**](docs/DefaultApi.md#updategroupoperation) | **PATCH** /groups/{id} | Update group
|
|
73
|
-
*DefaultApi* | [**vddkPost**](docs/DefaultApi.md#vddkpost) | **POST** /vddk | Upload VDDK tarball
|
|
74
75
|
|
|
75
76
|
|
|
76
77
|
### Models
|
|
@@ -91,13 +92,13 @@ All URIs are relative to *https://raw.githubusercontent.com/api/v1*
|
|
|
91
92
|
- [Histogram](docs/Histogram.md)
|
|
92
93
|
- [Host](docs/Host.md)
|
|
93
94
|
- [Infra](docs/Infra.md)
|
|
94
|
-
- [InspectorStartRequest](docs/InspectorStartRequest.md)
|
|
95
95
|
- [InspectorStatus](docs/InspectorStatus.md)
|
|
96
96
|
- [Inventory](docs/Inventory.md)
|
|
97
97
|
- [InventoryData](docs/InventoryData.md)
|
|
98
98
|
- [MigrationIssue](docs/MigrationIssue.md)
|
|
99
99
|
- [Network](docs/Network.md)
|
|
100
100
|
- [OsInfo](docs/OsInfo.md)
|
|
101
|
+
- [StartInspectionRequest](docs/StartInspectionRequest.md)
|
|
101
102
|
- [UpdateGroupRequest](docs/UpdateGroupRequest.md)
|
|
102
103
|
- [UpdateInventory](docs/UpdateInventory.md)
|
|
103
104
|
- [VCenter](docs/VCenter.md)
|
|
@@ -113,6 +114,8 @@ All URIs are relative to *https://raw.githubusercontent.com/api/v1*
|
|
|
113
114
|
- [VirtualMachine](docs/VirtualMachine.md)
|
|
114
115
|
- [VirtualMachineDetail](docs/VirtualMachineDetail.md)
|
|
115
116
|
- [VirtualMachineListResponse](docs/VirtualMachineListResponse.md)
|
|
117
|
+
- [VmInspectionConcern](docs/VmInspectionConcern.md)
|
|
118
|
+
- [VmInspectionResults](docs/VmInspectionResults.md)
|
|
116
119
|
- [VmInspectionStatus](docs/VmInspectionStatus.md)
|
|
117
120
|
|
|
118
121
|
### Authorization
|
|
@@ -127,8 +130,8 @@ and is automatically generated by the
|
|
|
127
130
|
[OpenAPI Generator](https://openapi-generator.tech) project:
|
|
128
131
|
|
|
129
132
|
- API version: `v1`
|
|
130
|
-
- Package version: `0.8.0-
|
|
131
|
-
- Generator version: `7.
|
|
133
|
+
- Package version: `0.8.0-89b5466bbbac`
|
|
134
|
+
- Generator version: `7.22.0-SNAPSHOT`
|
|
132
135
|
- Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
|
|
133
136
|
|
|
134
137
|
The generated npm module supports the following:
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import * as runtime from '../runtime.js';
|
|
13
|
-
import type { AgentModeRequest, AgentStatus, CollectorStartRequest, CollectorStatus, CreateGroupRequest, GetInventory200Response, Group, GroupListResponse, GroupResponse,
|
|
13
|
+
import type { AgentModeRequest, AgentStatus, CollectorStartRequest, CollectorStatus, CreateGroupRequest, GetInventory200Response, Group, GroupListResponse, GroupResponse, InspectorStatus, StartInspectionRequest, UpdateGroupRequest, VcenterCredentials, VddkProperties, VersionInfo, VirtualMachineDetail, VirtualMachineListResponse, VmInspectionStatus } from '../models/index.js';
|
|
14
14
|
export interface AddVMToInspectionRequest {
|
|
15
15
|
id: string;
|
|
16
16
|
}
|
|
@@ -26,6 +26,10 @@ export interface GetGroupRequest {
|
|
|
26
26
|
page?: number;
|
|
27
27
|
pageSize?: number;
|
|
28
28
|
}
|
|
29
|
+
export interface GetInspectorStatusRequest {
|
|
30
|
+
includeVddk?: boolean;
|
|
31
|
+
includeCredentials?: boolean;
|
|
32
|
+
}
|
|
29
33
|
export interface GetInventoryRequest {
|
|
30
34
|
withAgentId?: boolean;
|
|
31
35
|
groupId?: string;
|
|
@@ -44,6 +48,12 @@ export interface ListGroupsRequest {
|
|
|
44
48
|
page?: number;
|
|
45
49
|
pageSize?: number;
|
|
46
50
|
}
|
|
51
|
+
export interface PutInspectorCredentialsRequest {
|
|
52
|
+
vcenterCredentials: VcenterCredentials;
|
|
53
|
+
}
|
|
54
|
+
export interface PutInspectorVddkRequest {
|
|
55
|
+
file: Blob;
|
|
56
|
+
}
|
|
47
57
|
export interface RemoveVMFromInspectionRequest {
|
|
48
58
|
id: string;
|
|
49
59
|
}
|
|
@@ -53,16 +63,13 @@ export interface SetAgentModeRequest {
|
|
|
53
63
|
export interface StartCollectorRequest {
|
|
54
64
|
collectorStartRequest: CollectorStartRequest;
|
|
55
65
|
}
|
|
56
|
-
export interface
|
|
57
|
-
|
|
66
|
+
export interface StartInspectionOperationRequest {
|
|
67
|
+
startInspectionRequest: StartInspectionRequest;
|
|
58
68
|
}
|
|
59
69
|
export interface UpdateGroupOperationRequest {
|
|
60
70
|
id: string;
|
|
61
71
|
updateGroupRequest: UpdateGroupRequest;
|
|
62
72
|
}
|
|
63
|
-
export interface VddkPostRequest {
|
|
64
|
-
file: Blob;
|
|
65
|
-
}
|
|
66
73
|
/**
|
|
67
74
|
* DefaultApi - interface
|
|
68
75
|
*
|
|
@@ -194,22 +201,44 @@ export interface DefaultApiInterface {
|
|
|
194
201
|
getGroup(requestParameters: GetGroupRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GroupResponse>;
|
|
195
202
|
/**
|
|
196
203
|
* Creates request options for getInspectorStatus without sending the request
|
|
204
|
+
* @param {boolean} [includeVddk] If true, include uploaded VDDK metadata (`version`, `md5`) when present. omitted if VDDK was never uploaded.
|
|
205
|
+
* @param {boolean} [includeCredentials] If true, include configured vCenter URL and username (password is never returned). omitted if was never set.
|
|
197
206
|
* @throws {RequiredError}
|
|
198
207
|
* @memberof DefaultApiInterface
|
|
199
208
|
*/
|
|
200
|
-
getInspectorStatusRequestOpts(): Promise<runtime.RequestOpts>;
|
|
209
|
+
getInspectorStatusRequestOpts(requestParameters: GetInspectorStatusRequest): Promise<runtime.RequestOpts>;
|
|
201
210
|
/**
|
|
202
211
|
*
|
|
203
212
|
* @summary Get inspector status
|
|
213
|
+
* @param {boolean} [includeVddk] If true, include uploaded VDDK metadata (`version`, `md5`) when present. omitted if VDDK was never uploaded.
|
|
214
|
+
* @param {boolean} [includeCredentials] If true, include configured vCenter URL and username (password is never returned). omitted if was never set.
|
|
204
215
|
* @param {*} [options] Override http request option.
|
|
205
216
|
* @throws {RequiredError}
|
|
206
217
|
* @memberof DefaultApiInterface
|
|
207
218
|
*/
|
|
208
|
-
getInspectorStatusRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<InspectorStatus>>;
|
|
219
|
+
getInspectorStatusRaw(requestParameters: GetInspectorStatusRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<InspectorStatus>>;
|
|
209
220
|
/**
|
|
210
221
|
* Get inspector status
|
|
211
222
|
*/
|
|
212
|
-
getInspectorStatus(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<InspectorStatus>;
|
|
223
|
+
getInspectorStatus(requestParameters: GetInspectorStatusRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<InspectorStatus>;
|
|
224
|
+
/**
|
|
225
|
+
* Creates request options for getInspectorVddkStatus without sending the request
|
|
226
|
+
* @throws {RequiredError}
|
|
227
|
+
* @memberof DefaultApiInterface
|
|
228
|
+
*/
|
|
229
|
+
getInspectorVddkStatusRequestOpts(): Promise<runtime.RequestOpts>;
|
|
230
|
+
/**
|
|
231
|
+
*
|
|
232
|
+
* @summary Get VDDK status
|
|
233
|
+
* @param {*} [options] Override http request option.
|
|
234
|
+
* @throws {RequiredError}
|
|
235
|
+
* @memberof DefaultApiInterface
|
|
236
|
+
*/
|
|
237
|
+
getInspectorVddkStatusRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<VddkProperties>>;
|
|
238
|
+
/**
|
|
239
|
+
* Get VDDK status
|
|
240
|
+
*/
|
|
241
|
+
getInspectorVddkStatus(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VddkProperties>;
|
|
213
242
|
/**
|
|
214
243
|
* Creates request options for getInventory without sending the request
|
|
215
244
|
* @param {boolean} [withAgentId] If true, include the agentId in the response (Compatible with manual inventory upload).
|
|
@@ -278,24 +307,6 @@ export interface DefaultApiInterface {
|
|
|
278
307
|
* Get list of VMs with filtering and pagination
|
|
279
308
|
*/
|
|
280
309
|
getVMs(requestParameters: GetVMsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VirtualMachineListResponse>;
|
|
281
|
-
/**
|
|
282
|
-
* Creates request options for getVddkStatus without sending the request
|
|
283
|
-
* @throws {RequiredError}
|
|
284
|
-
* @memberof DefaultApiInterface
|
|
285
|
-
*/
|
|
286
|
-
getVddkStatusRequestOpts(): Promise<runtime.RequestOpts>;
|
|
287
|
-
/**
|
|
288
|
-
*
|
|
289
|
-
* @summary Get VDDK status
|
|
290
|
-
* @param {*} [options] Override http request option.
|
|
291
|
-
* @throws {RequiredError}
|
|
292
|
-
* @memberof DefaultApiInterface
|
|
293
|
-
*/
|
|
294
|
-
getVddkStatusRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<VddkProperties>>;
|
|
295
|
-
/**
|
|
296
|
-
* Get VDDK status
|
|
297
|
-
*/
|
|
298
|
-
getVddkStatus(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VddkProperties>;
|
|
299
310
|
/**
|
|
300
311
|
* Creates request options for getVersion without sending the request
|
|
301
312
|
* @throws {RequiredError}
|
|
@@ -338,6 +349,46 @@ export interface DefaultApiInterface {
|
|
|
338
349
|
* List all groups
|
|
339
350
|
*/
|
|
340
351
|
listGroups(requestParameters: ListGroupsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GroupListResponse>;
|
|
352
|
+
/**
|
|
353
|
+
* Creates request options for putInspectorCredentials without sending the request
|
|
354
|
+
* @param {VcenterCredentials} vcenterCredentials
|
|
355
|
+
* @throws {RequiredError}
|
|
356
|
+
* @memberof DefaultApiInterface
|
|
357
|
+
*/
|
|
358
|
+
putInspectorCredentialsRequestOpts(requestParameters: PutInspectorCredentialsRequest): Promise<runtime.RequestOpts>;
|
|
359
|
+
/**
|
|
360
|
+
*
|
|
361
|
+
* @summary Set or replace inspector credentials
|
|
362
|
+
* @param {VcenterCredentials} vcenterCredentials
|
|
363
|
+
* @param {*} [options] Override http request option.
|
|
364
|
+
* @throws {RequiredError}
|
|
365
|
+
* @memberof DefaultApiInterface
|
|
366
|
+
*/
|
|
367
|
+
putInspectorCredentialsRaw(requestParameters: PutInspectorCredentialsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
368
|
+
/**
|
|
369
|
+
* Set or replace inspector credentials
|
|
370
|
+
*/
|
|
371
|
+
putInspectorCredentials(requestParameters: PutInspectorCredentialsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
372
|
+
/**
|
|
373
|
+
* Creates request options for putInspectorVddk without sending the request
|
|
374
|
+
* @param {Blob} file VDDK tarball
|
|
375
|
+
* @throws {RequiredError}
|
|
376
|
+
* @memberof DefaultApiInterface
|
|
377
|
+
*/
|
|
378
|
+
putInspectorVddkRequestOpts(requestParameters: PutInspectorVddkRequest): Promise<runtime.RequestOpts>;
|
|
379
|
+
/**
|
|
380
|
+
*
|
|
381
|
+
* @summary Upload VDDK tarball
|
|
382
|
+
* @param {Blob} file VDDK tarball
|
|
383
|
+
* @param {*} [options] Override http request option.
|
|
384
|
+
* @throws {RequiredError}
|
|
385
|
+
* @memberof DefaultApiInterface
|
|
386
|
+
*/
|
|
387
|
+
putInspectorVddkRaw(requestParameters: PutInspectorVddkRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<VddkProperties>>;
|
|
388
|
+
/**
|
|
389
|
+
* Upload VDDK tarball
|
|
390
|
+
*/
|
|
391
|
+
putInspectorVddk(requestParameters: PutInspectorVddkRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VddkProperties>;
|
|
341
392
|
/**
|
|
342
393
|
* Creates request options for removeVMFromInspection without sending the request
|
|
343
394
|
* @param {string} id
|
|
@@ -400,24 +451,24 @@ export interface DefaultApiInterface {
|
|
|
400
451
|
startCollector(requestParameters: StartCollectorRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CollectorStatus>;
|
|
401
452
|
/**
|
|
402
453
|
* Creates request options for startInspection without sending the request
|
|
403
|
-
* @param {
|
|
454
|
+
* @param {StartInspectionRequest} startInspectionRequest
|
|
404
455
|
* @throws {RequiredError}
|
|
405
456
|
* @memberof DefaultApiInterface
|
|
406
457
|
*/
|
|
407
|
-
startInspectionRequestOpts(requestParameters:
|
|
458
|
+
startInspectionRequestOpts(requestParameters: StartInspectionOperationRequest): Promise<runtime.RequestOpts>;
|
|
408
459
|
/**
|
|
409
460
|
*
|
|
410
461
|
* @summary Start inspection for VMs
|
|
411
|
-
* @param {
|
|
462
|
+
* @param {StartInspectionRequest} startInspectionRequest
|
|
412
463
|
* @param {*} [options] Override http request option.
|
|
413
464
|
* @throws {RequiredError}
|
|
414
465
|
* @memberof DefaultApiInterface
|
|
415
466
|
*/
|
|
416
|
-
startInspectionRaw(requestParameters:
|
|
467
|
+
startInspectionRaw(requestParameters: StartInspectionOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<InspectorStatus>>;
|
|
417
468
|
/**
|
|
418
469
|
* Start inspection for VMs
|
|
419
470
|
*/
|
|
420
|
-
startInspection(requestParameters:
|
|
471
|
+
startInspection(requestParameters: StartInspectionOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<InspectorStatus>;
|
|
421
472
|
/**
|
|
422
473
|
* Creates request options for stopCollector without sending the request
|
|
423
474
|
* @throws {RequiredError}
|
|
@@ -476,26 +527,6 @@ export interface DefaultApiInterface {
|
|
|
476
527
|
* Update group
|
|
477
528
|
*/
|
|
478
529
|
updateGroup(requestParameters: UpdateGroupOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Group>;
|
|
479
|
-
/**
|
|
480
|
-
* Creates request options for vddkPost without sending the request
|
|
481
|
-
* @param {Blob} file VDDK tarball
|
|
482
|
-
* @throws {RequiredError}
|
|
483
|
-
* @memberof DefaultApiInterface
|
|
484
|
-
*/
|
|
485
|
-
vddkPostRequestOpts(requestParameters: VddkPostRequest): Promise<runtime.RequestOpts>;
|
|
486
|
-
/**
|
|
487
|
-
*
|
|
488
|
-
* @summary Upload VDDK tarball
|
|
489
|
-
* @param {Blob} file VDDK tarball
|
|
490
|
-
* @param {*} [options] Override http request option.
|
|
491
|
-
* @throws {RequiredError}
|
|
492
|
-
* @memberof DefaultApiInterface
|
|
493
|
-
*/
|
|
494
|
-
vddkPostRaw(requestParameters: VddkPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<VddkProperties>>;
|
|
495
|
-
/**
|
|
496
|
-
* Upload VDDK tarball
|
|
497
|
-
*/
|
|
498
|
-
vddkPost(requestParameters: VddkPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VddkProperties>;
|
|
499
530
|
}
|
|
500
531
|
/**
|
|
501
532
|
*
|
|
@@ -576,15 +607,27 @@ export declare class DefaultApi extends runtime.BaseAPI implements DefaultApiInt
|
|
|
576
607
|
/**
|
|
577
608
|
* Creates request options for getInspectorStatus without sending the request
|
|
578
609
|
*/
|
|
579
|
-
getInspectorStatusRequestOpts(): Promise<runtime.RequestOpts>;
|
|
610
|
+
getInspectorStatusRequestOpts(requestParameters: GetInspectorStatusRequest): Promise<runtime.RequestOpts>;
|
|
580
611
|
/**
|
|
581
612
|
* Get inspector status
|
|
582
613
|
*/
|
|
583
|
-
getInspectorStatusRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<InspectorStatus>>;
|
|
614
|
+
getInspectorStatusRaw(requestParameters: GetInspectorStatusRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<InspectorStatus>>;
|
|
584
615
|
/**
|
|
585
616
|
* Get inspector status
|
|
586
617
|
*/
|
|
587
|
-
getInspectorStatus(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<InspectorStatus>;
|
|
618
|
+
getInspectorStatus(requestParameters?: GetInspectorStatusRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<InspectorStatus>;
|
|
619
|
+
/**
|
|
620
|
+
* Creates request options for getInspectorVddkStatus without sending the request
|
|
621
|
+
*/
|
|
622
|
+
getInspectorVddkStatusRequestOpts(): Promise<runtime.RequestOpts>;
|
|
623
|
+
/**
|
|
624
|
+
* Get VDDK status
|
|
625
|
+
*/
|
|
626
|
+
getInspectorVddkStatusRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<VddkProperties>>;
|
|
627
|
+
/**
|
|
628
|
+
* Get VDDK status
|
|
629
|
+
*/
|
|
630
|
+
getInspectorVddkStatus(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VddkProperties>;
|
|
588
631
|
/**
|
|
589
632
|
* Creates request options for getInventory without sending the request
|
|
590
633
|
*/
|
|
@@ -621,18 +664,6 @@ export declare class DefaultApi extends runtime.BaseAPI implements DefaultApiInt
|
|
|
621
664
|
* Get list of VMs with filtering and pagination
|
|
622
665
|
*/
|
|
623
666
|
getVMs(requestParameters?: GetVMsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VirtualMachineListResponse>;
|
|
624
|
-
/**
|
|
625
|
-
* Creates request options for getVddkStatus without sending the request
|
|
626
|
-
*/
|
|
627
|
-
getVddkStatusRequestOpts(): Promise<runtime.RequestOpts>;
|
|
628
|
-
/**
|
|
629
|
-
* Get VDDK status
|
|
630
|
-
*/
|
|
631
|
-
getVddkStatusRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<VddkProperties>>;
|
|
632
|
-
/**
|
|
633
|
-
* Get VDDK status
|
|
634
|
-
*/
|
|
635
|
-
getVddkStatus(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VddkProperties>;
|
|
636
667
|
/**
|
|
637
668
|
* Creates request options for getVersion without sending the request
|
|
638
669
|
*/
|
|
@@ -657,6 +688,30 @@ export declare class DefaultApi extends runtime.BaseAPI implements DefaultApiInt
|
|
|
657
688
|
* List all groups
|
|
658
689
|
*/
|
|
659
690
|
listGroups(requestParameters?: ListGroupsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GroupListResponse>;
|
|
691
|
+
/**
|
|
692
|
+
* Creates request options for putInspectorCredentials without sending the request
|
|
693
|
+
*/
|
|
694
|
+
putInspectorCredentialsRequestOpts(requestParameters: PutInspectorCredentialsRequest): Promise<runtime.RequestOpts>;
|
|
695
|
+
/**
|
|
696
|
+
* Set or replace inspector credentials
|
|
697
|
+
*/
|
|
698
|
+
putInspectorCredentialsRaw(requestParameters: PutInspectorCredentialsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
699
|
+
/**
|
|
700
|
+
* Set or replace inspector credentials
|
|
701
|
+
*/
|
|
702
|
+
putInspectorCredentials(requestParameters: PutInspectorCredentialsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
703
|
+
/**
|
|
704
|
+
* Creates request options for putInspectorVddk without sending the request
|
|
705
|
+
*/
|
|
706
|
+
putInspectorVddkRequestOpts(requestParameters: PutInspectorVddkRequest): Promise<runtime.RequestOpts>;
|
|
707
|
+
/**
|
|
708
|
+
* Upload VDDK tarball
|
|
709
|
+
*/
|
|
710
|
+
putInspectorVddkRaw(requestParameters: PutInspectorVddkRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<VddkProperties>>;
|
|
711
|
+
/**
|
|
712
|
+
* Upload VDDK tarball
|
|
713
|
+
*/
|
|
714
|
+
putInspectorVddk(requestParameters: PutInspectorVddkRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VddkProperties>;
|
|
660
715
|
/**
|
|
661
716
|
* Creates request options for removeVMFromInspection without sending the request
|
|
662
717
|
*/
|
|
@@ -696,15 +751,15 @@ export declare class DefaultApi extends runtime.BaseAPI implements DefaultApiInt
|
|
|
696
751
|
/**
|
|
697
752
|
* Creates request options for startInspection without sending the request
|
|
698
753
|
*/
|
|
699
|
-
startInspectionRequestOpts(requestParameters:
|
|
754
|
+
startInspectionRequestOpts(requestParameters: StartInspectionOperationRequest): Promise<runtime.RequestOpts>;
|
|
700
755
|
/**
|
|
701
756
|
* Start inspection for VMs
|
|
702
757
|
*/
|
|
703
|
-
startInspectionRaw(requestParameters:
|
|
758
|
+
startInspectionRaw(requestParameters: StartInspectionOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<InspectorStatus>>;
|
|
704
759
|
/**
|
|
705
760
|
* Start inspection for VMs
|
|
706
761
|
*/
|
|
707
|
-
startInspection(requestParameters:
|
|
762
|
+
startInspection(requestParameters: StartInspectionOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<InspectorStatus>;
|
|
708
763
|
/**
|
|
709
764
|
* Creates request options for stopCollector without sending the request
|
|
710
765
|
*/
|
|
@@ -741,16 +796,4 @@ export declare class DefaultApi extends runtime.BaseAPI implements DefaultApiInt
|
|
|
741
796
|
* Update group
|
|
742
797
|
*/
|
|
743
798
|
updateGroup(requestParameters: UpdateGroupOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Group>;
|
|
744
|
-
/**
|
|
745
|
-
* Creates request options for vddkPost without sending the request
|
|
746
|
-
*/
|
|
747
|
-
vddkPostRequestOpts(requestParameters: VddkPostRequest): Promise<runtime.RequestOpts>;
|
|
748
|
-
/**
|
|
749
|
-
* Upload VDDK tarball
|
|
750
|
-
*/
|
|
751
|
-
vddkPostRaw(requestParameters: VddkPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<VddkProperties>>;
|
|
752
|
-
/**
|
|
753
|
-
* Upload VDDK tarball
|
|
754
|
-
*/
|
|
755
|
-
vddkPost(requestParameters: VddkPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VddkProperties>;
|
|
756
799
|
}
|