@openshift-migration-advisor/agent-sdk 0.8.0 → 0.12.0-d4bdc4301890
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 +20 -2
- package/.openapi-generator/VERSION +1 -1
- package/README.md +29 -17
- package/dist/apis/DefaultApi.d.ts +260 -130
- package/dist/apis/DefaultApi.js +313 -172
- package/dist/esm/apis/DefaultApi.d.ts +260 -130
- package/dist/esm/apis/DefaultApi.js +295 -154
- package/dist/esm/models/InspectorStatus.d.ts +20 -7
- package/dist/esm/models/InspectorStatus.js +12 -7
- package/dist/esm/models/RightsizingCollectRequest.d.ts +70 -0
- package/dist/esm/models/RightsizingCollectRequest.js +56 -0
- package/dist/esm/models/RightsizingMetricStats.d.ts +62 -0
- package/dist/esm/models/RightsizingMetricStats.js +63 -0
- package/dist/esm/models/RightsizingReport.d.ts +81 -0
- package/dist/esm/models/RightsizingReport.js +76 -0
- package/dist/esm/models/RightsizingReportListResponse.d.ts +39 -0
- package/dist/esm/models/RightsizingReportListResponse.js +48 -0
- package/dist/esm/models/RightsizingReportSummary.d.ts +74 -0
- package/dist/esm/models/RightsizingReportSummary.js +71 -0
- package/dist/esm/models/RightsizingVMReport.d.ts +53 -0
- package/dist/esm/models/RightsizingVMReport.js +57 -0
- package/dist/esm/models/StartInspectionRequest.d.ts +32 -0
- package/dist/esm/models/StartInspectionRequest.js +43 -0
- package/dist/esm/models/VMs.d.ts +18 -0
- package/dist/esm/models/VMs.js +4 -0
- package/dist/esm/models/VirtualMachine.d.ts +31 -1
- package/dist/esm/models/VirtualMachine.js +12 -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/VmUtilizationDetails.d.ts +98 -0
- package/dist/esm/models/VmUtilizationDetails.js +87 -0
- package/dist/esm/models/index.d.ts +10 -1
- package/dist/esm/models/index.js +10 -1
- package/dist/esm/runtime.js +1 -1
- package/dist/models/InspectorStatus.d.ts +20 -7
- package/dist/models/InspectorStatus.js +12 -7
- package/dist/models/RightsizingCollectRequest.d.ts +70 -0
- package/dist/models/RightsizingCollectRequest.js +63 -0
- package/dist/models/RightsizingMetricStats.d.ts +62 -0
- package/dist/models/RightsizingMetricStats.js +70 -0
- package/dist/models/RightsizingReport.d.ts +81 -0
- package/dist/models/RightsizingReport.js +83 -0
- package/dist/models/RightsizingReportListResponse.d.ts +39 -0
- package/dist/models/RightsizingReportListResponse.js +55 -0
- package/dist/models/RightsizingReportSummary.d.ts +74 -0
- package/dist/models/RightsizingReportSummary.js +78 -0
- package/dist/models/RightsizingVMReport.d.ts +53 -0
- package/dist/models/RightsizingVMReport.js +64 -0
- package/dist/models/StartInspectionRequest.d.ts +32 -0
- package/dist/models/StartInspectionRequest.js +50 -0
- package/dist/models/VMs.d.ts +18 -0
- package/dist/models/VMs.js +4 -0
- package/dist/models/VirtualMachine.d.ts +31 -1
- package/dist/models/VirtualMachine.js +12 -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/VmUtilizationDetails.d.ts +98 -0
- package/dist/models/VmUtilizationDetails.js +94 -0
- package/dist/models/index.d.ts +10 -1
- package/dist/models/index.js +10 -1
- package/dist/runtime.js +1 -1
- package/docs/DefaultApi.md +368 -163
- package/docs/InspectorStatus.md +4 -0
- package/docs/RightsizingCollectRequest.md +46 -0
- package/docs/RightsizingMetricStats.md +44 -0
- package/docs/RightsizingReport.md +50 -0
- package/docs/RightsizingReportListResponse.md +36 -0
- package/docs/RightsizingReportSummary.md +49 -0
- package/docs/RightsizingVMReport.md +40 -0
- package/docs/{InspectorStartRequest.md → StartInspectionRequest.md} +5 -6
- package/docs/VMs.md +4 -0
- package/docs/VirtualMachine.md +12 -2
- package/docs/VirtualMachineDetail.md +1 -1
- package/docs/VmInspectionConcern.md +39 -0
- package/docs/VmInspectionResults.md +35 -0
- package/docs/VmUtilizationDetails.md +56 -0
- package/package.json +1 -1
- package/src/apis/DefaultApi.ts +564 -285
- package/src/models/InspectorStatus.ts +37 -7
- package/src/models/RightsizingCollectRequest.ts +123 -0
- package/src/models/RightsizingMetricStats.ts +111 -0
- package/src/models/RightsizingReport.ts +146 -0
- package/src/models/RightsizingReportListResponse.ts +83 -0
- package/src/models/RightsizingReportSummary.ts +129 -0
- package/src/models/RightsizingVMReport.ts +101 -0
- package/src/models/StartInspectionRequest.ts +66 -0
- package/src/models/VMs.ts +18 -0
- package/src/models/VirtualMachine.ts +43 -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/VmUtilizationDetails.ts +165 -0
- package/src/models/index.ts +10 -1
- package/src/runtime.ts +1 -2
- 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
|
@@ -10,10 +10,29 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import * as runtime from '../runtime.js';
|
|
13
|
-
import type
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
}
|
|
13
|
+
import { type AgentModeRequest } from '../models/AgentModeRequest.js';
|
|
14
|
+
import { type AgentStatus } from '../models/AgentStatus.js';
|
|
15
|
+
import { type CollectorStartRequest } from '../models/CollectorStartRequest.js';
|
|
16
|
+
import { type CollectorStatus } from '../models/CollectorStatus.js';
|
|
17
|
+
import { type CreateGroupRequest } from '../models/CreateGroupRequest.js';
|
|
18
|
+
import { type GetInventory200Response } from '../models/GetInventory200Response.js';
|
|
19
|
+
import { type Group } from '../models/Group.js';
|
|
20
|
+
import { type GroupListResponse } from '../models/GroupListResponse.js';
|
|
21
|
+
import { type GroupResponse } from '../models/GroupResponse.js';
|
|
22
|
+
import { type InspectorStatus } from '../models/InspectorStatus.js';
|
|
23
|
+
import { type RightsizingCollectRequest } from '../models/RightsizingCollectRequest.js';
|
|
24
|
+
import { type RightsizingReport } from '../models/RightsizingReport.js';
|
|
25
|
+
import { type RightsizingReportListResponse } from '../models/RightsizingReportListResponse.js';
|
|
26
|
+
import { type RightsizingReportSummary } from '../models/RightsizingReportSummary.js';
|
|
27
|
+
import { type StartInspectionRequest } from '../models/StartInspectionRequest.js';
|
|
28
|
+
import { type UpdateGroupRequest } from '../models/UpdateGroupRequest.js';
|
|
29
|
+
import { type VcenterCredentials } from '../models/VcenterCredentials.js';
|
|
30
|
+
import { type VddkProperties } from '../models/VddkProperties.js';
|
|
31
|
+
import { type VersionInfo } from '../models/VersionInfo.js';
|
|
32
|
+
import { type VirtualMachineDetail } from '../models/VirtualMachineDetail.js';
|
|
33
|
+
import { type VirtualMachineListResponse } from '../models/VirtualMachineListResponse.js';
|
|
34
|
+
import { type VmInspectionStatus } from '../models/VmInspectionStatus.js';
|
|
35
|
+
import { type VmUtilizationDetails } from '../models/VmUtilizationDetails.js';
|
|
17
36
|
export interface CreateGroupOperationRequest {
|
|
18
37
|
createGroupRequest: CreateGroupRequest;
|
|
19
38
|
}
|
|
@@ -26,14 +45,21 @@ export interface GetGroupRequest {
|
|
|
26
45
|
page?: number;
|
|
27
46
|
pageSize?: number;
|
|
28
47
|
}
|
|
48
|
+
export interface GetInspectorStatusRequest {
|
|
49
|
+
includeVddk?: boolean;
|
|
50
|
+
includeCredentials?: boolean;
|
|
51
|
+
}
|
|
29
52
|
export interface GetInventoryRequest {
|
|
30
53
|
withAgentId?: boolean;
|
|
31
54
|
groupId?: string;
|
|
32
55
|
}
|
|
56
|
+
export interface GetRightsizingReportRequest {
|
|
57
|
+
id: string;
|
|
58
|
+
}
|
|
33
59
|
export interface GetVMRequest {
|
|
34
60
|
id: string;
|
|
35
61
|
}
|
|
36
|
-
export interface
|
|
62
|
+
export interface GetVMUtilizationRequest {
|
|
37
63
|
id: string;
|
|
38
64
|
}
|
|
39
65
|
export interface GetVMsRequest {
|
|
@@ -47,6 +73,12 @@ export interface ListGroupsRequest {
|
|
|
47
73
|
page?: number;
|
|
48
74
|
pageSize?: number;
|
|
49
75
|
}
|
|
76
|
+
export interface PutInspectorCredentialsRequest {
|
|
77
|
+
vcenterCredentials: VcenterCredentials;
|
|
78
|
+
}
|
|
79
|
+
export interface PutInspectorVddkRequest {
|
|
80
|
+
file: Blob;
|
|
81
|
+
}
|
|
50
82
|
export interface RemoveVMFromInspectionRequest {
|
|
51
83
|
id: string;
|
|
52
84
|
}
|
|
@@ -56,16 +88,16 @@ export interface SetAgentModeRequest {
|
|
|
56
88
|
export interface StartCollectorRequest {
|
|
57
89
|
collectorStartRequest: CollectorStartRequest;
|
|
58
90
|
}
|
|
59
|
-
export interface
|
|
60
|
-
|
|
91
|
+
export interface StartInspectionOperationRequest {
|
|
92
|
+
startInspectionRequest: StartInspectionRequest;
|
|
93
|
+
}
|
|
94
|
+
export interface TriggerRightsizingCollectionRequest {
|
|
95
|
+
rightsizingCollectRequest: RightsizingCollectRequest;
|
|
61
96
|
}
|
|
62
97
|
export interface UpdateGroupOperationRequest {
|
|
63
98
|
id: string;
|
|
64
99
|
updateGroupRequest: UpdateGroupRequest;
|
|
65
100
|
}
|
|
66
|
-
export interface VddkPostRequest {
|
|
67
|
-
file: Blob;
|
|
68
|
-
}
|
|
69
101
|
/**
|
|
70
102
|
* DefaultApi - interface
|
|
71
103
|
*
|
|
@@ -73,26 +105,6 @@ export interface VddkPostRequest {
|
|
|
73
105
|
* @interface DefaultApiInterface
|
|
74
106
|
*/
|
|
75
107
|
export interface DefaultApiInterface {
|
|
76
|
-
/**
|
|
77
|
-
* Creates request options for addVMsToInspection without sending the request
|
|
78
|
-
* @param {Array<string>} requestBody
|
|
79
|
-
* @throws {RequiredError}
|
|
80
|
-
* @memberof DefaultApiInterface
|
|
81
|
-
*/
|
|
82
|
-
addVMsToInspectionRequestOpts(requestParameters: AddVMsToInspectionRequest): Promise<runtime.RequestOpts>;
|
|
83
|
-
/**
|
|
84
|
-
*
|
|
85
|
-
* @summary Add more VMs to inspection queue
|
|
86
|
-
* @param {Array<string>} requestBody
|
|
87
|
-
* @param {*} [options] Override http request option.
|
|
88
|
-
* @throws {RequiredError}
|
|
89
|
-
* @memberof DefaultApiInterface
|
|
90
|
-
*/
|
|
91
|
-
addVMsToInspectionRaw(requestParameters: AddVMsToInspectionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<InspectorStatus>>;
|
|
92
|
-
/**
|
|
93
|
-
* Add more VMs to inspection queue
|
|
94
|
-
*/
|
|
95
|
-
addVMsToInspection(requestParameters: AddVMsToInspectionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<InspectorStatus>;
|
|
96
108
|
/**
|
|
97
109
|
* Creates request options for createGroup without sending the request
|
|
98
110
|
* @param {CreateGroupRequest} createGroupRequest
|
|
@@ -197,22 +209,44 @@ export interface DefaultApiInterface {
|
|
|
197
209
|
getGroup(requestParameters: GetGroupRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GroupResponse>;
|
|
198
210
|
/**
|
|
199
211
|
* Creates request options for getInspectorStatus without sending the request
|
|
212
|
+
* @param {boolean} [includeVddk] If true, include uploaded VDDK metadata (`version`, `md5`) when present. omitted if VDDK was never uploaded.
|
|
213
|
+
* @param {boolean} [includeCredentials] If true, include configured vCenter URL and username (password is never returned). omitted if was never set.
|
|
200
214
|
* @throws {RequiredError}
|
|
201
215
|
* @memberof DefaultApiInterface
|
|
202
216
|
*/
|
|
203
|
-
getInspectorStatusRequestOpts(): Promise<runtime.RequestOpts>;
|
|
217
|
+
getInspectorStatusRequestOpts(requestParameters: GetInspectorStatusRequest): Promise<runtime.RequestOpts>;
|
|
204
218
|
/**
|
|
205
219
|
*
|
|
206
220
|
* @summary Get inspector status
|
|
221
|
+
* @param {boolean} [includeVddk] If true, include uploaded VDDK metadata (`version`, `md5`) when present. omitted if VDDK was never uploaded.
|
|
222
|
+
* @param {boolean} [includeCredentials] If true, include configured vCenter URL and username (password is never returned). omitted if was never set.
|
|
207
223
|
* @param {*} [options] Override http request option.
|
|
208
224
|
* @throws {RequiredError}
|
|
209
225
|
* @memberof DefaultApiInterface
|
|
210
226
|
*/
|
|
211
|
-
getInspectorStatusRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<InspectorStatus>>;
|
|
227
|
+
getInspectorStatusRaw(requestParameters: GetInspectorStatusRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<InspectorStatus>>;
|
|
212
228
|
/**
|
|
213
229
|
* Get inspector status
|
|
214
230
|
*/
|
|
215
|
-
getInspectorStatus(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<InspectorStatus>;
|
|
231
|
+
getInspectorStatus(requestParameters: GetInspectorStatusRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<InspectorStatus>;
|
|
232
|
+
/**
|
|
233
|
+
* Creates request options for getInspectorVddkStatus without sending the request
|
|
234
|
+
* @throws {RequiredError}
|
|
235
|
+
* @memberof DefaultApiInterface
|
|
236
|
+
*/
|
|
237
|
+
getInspectorVddkStatusRequestOpts(): Promise<runtime.RequestOpts>;
|
|
238
|
+
/**
|
|
239
|
+
*
|
|
240
|
+
* @summary Get VDDK status
|
|
241
|
+
* @param {*} [options] Override http request option.
|
|
242
|
+
* @throws {RequiredError}
|
|
243
|
+
* @memberof DefaultApiInterface
|
|
244
|
+
*/
|
|
245
|
+
getInspectorVddkStatusRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<VddkProperties>>;
|
|
246
|
+
/**
|
|
247
|
+
* Get VDDK status
|
|
248
|
+
*/
|
|
249
|
+
getInspectorVddkStatus(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VddkProperties>;
|
|
216
250
|
/**
|
|
217
251
|
* Creates request options for getInventory without sending the request
|
|
218
252
|
* @param {boolean} [withAgentId] If true, include the agentId in the response (Compatible with manual inventory upload).
|
|
@@ -235,6 +269,26 @@ export interface DefaultApiInterface {
|
|
|
235
269
|
* Get collected inventory
|
|
236
270
|
*/
|
|
237
271
|
getInventory(requestParameters: GetInventoryRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetInventory200Response>;
|
|
272
|
+
/**
|
|
273
|
+
* Creates request options for getRightsizingReport without sending the request
|
|
274
|
+
* @param {string} id Report UUID
|
|
275
|
+
* @throws {RequiredError}
|
|
276
|
+
* @memberof DefaultApiInterface
|
|
277
|
+
*/
|
|
278
|
+
getRightsizingReportRequestOpts(requestParameters: GetRightsizingReportRequest): Promise<runtime.RequestOpts>;
|
|
279
|
+
/**
|
|
280
|
+
*
|
|
281
|
+
* @summary Get a specific rightsizing report with full VM metrics
|
|
282
|
+
* @param {string} id Report UUID
|
|
283
|
+
* @param {*} [options] Override http request option.
|
|
284
|
+
* @throws {RequiredError}
|
|
285
|
+
* @memberof DefaultApiInterface
|
|
286
|
+
*/
|
|
287
|
+
getRightsizingReportRaw(requestParameters: GetRightsizingReportRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<RightsizingReport>>;
|
|
288
|
+
/**
|
|
289
|
+
* Get a specific rightsizing report with full VM metrics
|
|
290
|
+
*/
|
|
291
|
+
getRightsizingReport(requestParameters: GetRightsizingReportRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<RightsizingReport>;
|
|
238
292
|
/**
|
|
239
293
|
* Creates request options for getVM without sending the request
|
|
240
294
|
* @param {string} id VirtualMachine id
|
|
@@ -256,25 +310,25 @@ export interface DefaultApiInterface {
|
|
|
256
310
|
*/
|
|
257
311
|
getVM(requestParameters: GetVMRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VirtualMachineDetail>;
|
|
258
312
|
/**
|
|
259
|
-
* Creates request options for
|
|
260
|
-
* @param {string} id VirtualMachine ID
|
|
313
|
+
* Creates request options for getVMUtilization without sending the request
|
|
314
|
+
* @param {string} id VirtualMachine MoRef ID
|
|
261
315
|
* @throws {RequiredError}
|
|
262
316
|
* @memberof DefaultApiInterface
|
|
263
317
|
*/
|
|
264
|
-
|
|
318
|
+
getVMUtilizationRequestOpts(requestParameters: GetVMUtilizationRequest): Promise<runtime.RequestOpts>;
|
|
265
319
|
/**
|
|
266
320
|
*
|
|
267
|
-
* @summary Get
|
|
268
|
-
* @param {string} id VirtualMachine ID
|
|
321
|
+
* @summary Get utilization breakdown for a specific VM
|
|
322
|
+
* @param {string} id VirtualMachine MoRef ID
|
|
269
323
|
* @param {*} [options] Override http request option.
|
|
270
324
|
* @throws {RequiredError}
|
|
271
325
|
* @memberof DefaultApiInterface
|
|
272
326
|
*/
|
|
273
|
-
|
|
327
|
+
getVMUtilizationRaw(requestParameters: GetVMUtilizationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<VmUtilizationDetails>>;
|
|
274
328
|
/**
|
|
275
|
-
* Get
|
|
329
|
+
* Get utilization breakdown for a specific VM
|
|
276
330
|
*/
|
|
277
|
-
|
|
331
|
+
getVMUtilization(requestParameters: GetVMUtilizationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VmUtilizationDetails>;
|
|
278
332
|
/**
|
|
279
333
|
* Creates request options for getVMs without sending the request
|
|
280
334
|
* @param {string} [byExpression] Filter by expression (matches VMs with the provided expression)
|
|
@@ -301,24 +355,6 @@ export interface DefaultApiInterface {
|
|
|
301
355
|
* Get list of VMs with filtering and pagination
|
|
302
356
|
*/
|
|
303
357
|
getVMs(requestParameters: GetVMsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VirtualMachineListResponse>;
|
|
304
|
-
/**
|
|
305
|
-
* Creates request options for getVddkStatus without sending the request
|
|
306
|
-
* @throws {RequiredError}
|
|
307
|
-
* @memberof DefaultApiInterface
|
|
308
|
-
*/
|
|
309
|
-
getVddkStatusRequestOpts(): Promise<runtime.RequestOpts>;
|
|
310
|
-
/**
|
|
311
|
-
*
|
|
312
|
-
* @summary Get VDDK status
|
|
313
|
-
* @param {*} [options] Override http request option.
|
|
314
|
-
* @throws {RequiredError}
|
|
315
|
-
* @memberof DefaultApiInterface
|
|
316
|
-
*/
|
|
317
|
-
getVddkStatusRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<VddkProperties>>;
|
|
318
|
-
/**
|
|
319
|
-
* Get VDDK status
|
|
320
|
-
*/
|
|
321
|
-
getVddkStatus(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VddkProperties>;
|
|
322
358
|
/**
|
|
323
359
|
* Creates request options for getVersion without sending the request
|
|
324
360
|
* @throws {RequiredError}
|
|
@@ -361,6 +397,64 @@ export interface DefaultApiInterface {
|
|
|
361
397
|
* List all groups
|
|
362
398
|
*/
|
|
363
399
|
listGroups(requestParameters: ListGroupsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GroupListResponse>;
|
|
400
|
+
/**
|
|
401
|
+
* Creates request options for listRightsizingReports without sending the request
|
|
402
|
+
* @throws {RequiredError}
|
|
403
|
+
* @memberof DefaultApiInterface
|
|
404
|
+
*/
|
|
405
|
+
listRightsizingReportsRequestOpts(): Promise<runtime.RequestOpts>;
|
|
406
|
+
/**
|
|
407
|
+
*
|
|
408
|
+
* @summary List all rightsizing reports
|
|
409
|
+
* @param {*} [options] Override http request option.
|
|
410
|
+
* @throws {RequiredError}
|
|
411
|
+
* @memberof DefaultApiInterface
|
|
412
|
+
*/
|
|
413
|
+
listRightsizingReportsRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<RightsizingReportListResponse>>;
|
|
414
|
+
/**
|
|
415
|
+
* List all rightsizing reports
|
|
416
|
+
*/
|
|
417
|
+
listRightsizingReports(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<RightsizingReportListResponse>;
|
|
418
|
+
/**
|
|
419
|
+
* Creates request options for putInspectorCredentials without sending the request
|
|
420
|
+
* @param {VcenterCredentials} vcenterCredentials
|
|
421
|
+
* @throws {RequiredError}
|
|
422
|
+
* @memberof DefaultApiInterface
|
|
423
|
+
*/
|
|
424
|
+
putInspectorCredentialsRequestOpts(requestParameters: PutInspectorCredentialsRequest): Promise<runtime.RequestOpts>;
|
|
425
|
+
/**
|
|
426
|
+
*
|
|
427
|
+
* @summary Set or replace inspector credentials
|
|
428
|
+
* @param {VcenterCredentials} vcenterCredentials
|
|
429
|
+
* @param {*} [options] Override http request option.
|
|
430
|
+
* @throws {RequiredError}
|
|
431
|
+
* @memberof DefaultApiInterface
|
|
432
|
+
*/
|
|
433
|
+
putInspectorCredentialsRaw(requestParameters: PutInspectorCredentialsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
434
|
+
/**
|
|
435
|
+
* Set or replace inspector credentials
|
|
436
|
+
*/
|
|
437
|
+
putInspectorCredentials(requestParameters: PutInspectorCredentialsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
438
|
+
/**
|
|
439
|
+
* Creates request options for putInspectorVddk without sending the request
|
|
440
|
+
* @param {Blob} file VDDK tarball
|
|
441
|
+
* @throws {RequiredError}
|
|
442
|
+
* @memberof DefaultApiInterface
|
|
443
|
+
*/
|
|
444
|
+
putInspectorVddkRequestOpts(requestParameters: PutInspectorVddkRequest): Promise<runtime.RequestOpts>;
|
|
445
|
+
/**
|
|
446
|
+
*
|
|
447
|
+
* @summary Upload VDDK tarball
|
|
448
|
+
* @param {Blob} file VDDK tarball
|
|
449
|
+
* @param {*} [options] Override http request option.
|
|
450
|
+
* @throws {RequiredError}
|
|
451
|
+
* @memberof DefaultApiInterface
|
|
452
|
+
*/
|
|
453
|
+
putInspectorVddkRaw(requestParameters: PutInspectorVddkRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<VddkProperties>>;
|
|
454
|
+
/**
|
|
455
|
+
* Upload VDDK tarball
|
|
456
|
+
*/
|
|
457
|
+
putInspectorVddk(requestParameters: PutInspectorVddkRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VddkProperties>;
|
|
364
458
|
/**
|
|
365
459
|
* Creates request options for removeVMFromInspection without sending the request
|
|
366
460
|
* @param {string} id
|
|
@@ -423,24 +517,24 @@ export interface DefaultApiInterface {
|
|
|
423
517
|
startCollector(requestParameters: StartCollectorRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CollectorStatus>;
|
|
424
518
|
/**
|
|
425
519
|
* Creates request options for startInspection without sending the request
|
|
426
|
-
* @param {
|
|
520
|
+
* @param {StartInspectionRequest} startInspectionRequest
|
|
427
521
|
* @throws {RequiredError}
|
|
428
522
|
* @memberof DefaultApiInterface
|
|
429
523
|
*/
|
|
430
|
-
startInspectionRequestOpts(requestParameters:
|
|
524
|
+
startInspectionRequestOpts(requestParameters: StartInspectionOperationRequest): Promise<runtime.RequestOpts>;
|
|
431
525
|
/**
|
|
432
526
|
*
|
|
433
527
|
* @summary Start inspection for VMs
|
|
434
|
-
* @param {
|
|
528
|
+
* @param {StartInspectionRequest} startInspectionRequest
|
|
435
529
|
* @param {*} [options] Override http request option.
|
|
436
530
|
* @throws {RequiredError}
|
|
437
531
|
* @memberof DefaultApiInterface
|
|
438
532
|
*/
|
|
439
|
-
startInspectionRaw(requestParameters:
|
|
533
|
+
startInspectionRaw(requestParameters: StartInspectionOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<InspectorStatus>>;
|
|
440
534
|
/**
|
|
441
535
|
* Start inspection for VMs
|
|
442
536
|
*/
|
|
443
|
-
startInspection(requestParameters:
|
|
537
|
+
startInspection(requestParameters: StartInspectionOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<InspectorStatus>;
|
|
444
538
|
/**
|
|
445
539
|
* Creates request options for stopCollector without sending the request
|
|
446
540
|
* @throws {RequiredError}
|
|
@@ -478,64 +572,52 @@ export interface DefaultApiInterface {
|
|
|
478
572
|
*/
|
|
479
573
|
stopInspection(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<InspectorStatus>;
|
|
480
574
|
/**
|
|
481
|
-
* Creates request options for
|
|
482
|
-
* @param {
|
|
483
|
-
* @param {UpdateGroupRequest} updateGroupRequest
|
|
575
|
+
* Creates request options for triggerRightsizingCollection without sending the request
|
|
576
|
+
* @param {RightsizingCollectRequest} rightsizingCollectRequest
|
|
484
577
|
* @throws {RequiredError}
|
|
485
578
|
* @memberof DefaultApiInterface
|
|
486
579
|
*/
|
|
487
|
-
|
|
580
|
+
triggerRightsizingCollectionRequestOpts(requestParameters: TriggerRightsizingCollectionRequest): Promise<runtime.RequestOpts>;
|
|
488
581
|
/**
|
|
489
582
|
*
|
|
490
|
-
* @summary
|
|
491
|
-
* @param {
|
|
492
|
-
* @param {UpdateGroupRequest} updateGroupRequest
|
|
583
|
+
* @summary Trigger rightsizing metrics collection
|
|
584
|
+
* @param {RightsizingCollectRequest} rightsizingCollectRequest
|
|
493
585
|
* @param {*} [options] Override http request option.
|
|
494
586
|
* @throws {RequiredError}
|
|
495
587
|
* @memberof DefaultApiInterface
|
|
496
588
|
*/
|
|
497
|
-
|
|
589
|
+
triggerRightsizingCollectionRaw(requestParameters: TriggerRightsizingCollectionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<RightsizingReportSummary>>;
|
|
498
590
|
/**
|
|
499
|
-
*
|
|
591
|
+
* Trigger rightsizing metrics collection
|
|
500
592
|
*/
|
|
501
|
-
|
|
593
|
+
triggerRightsizingCollection(requestParameters: TriggerRightsizingCollectionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<RightsizingReportSummary>;
|
|
502
594
|
/**
|
|
503
|
-
* Creates request options for
|
|
504
|
-
* @param {
|
|
595
|
+
* Creates request options for updateGroup without sending the request
|
|
596
|
+
* @param {string} id Group ID
|
|
597
|
+
* @param {UpdateGroupRequest} updateGroupRequest
|
|
505
598
|
* @throws {RequiredError}
|
|
506
599
|
* @memberof DefaultApiInterface
|
|
507
600
|
*/
|
|
508
|
-
|
|
601
|
+
updateGroupRequestOpts(requestParameters: UpdateGroupOperationRequest): Promise<runtime.RequestOpts>;
|
|
509
602
|
/**
|
|
510
603
|
*
|
|
511
|
-
* @summary
|
|
512
|
-
* @param {
|
|
604
|
+
* @summary Update group
|
|
605
|
+
* @param {string} id Group ID
|
|
606
|
+
* @param {UpdateGroupRequest} updateGroupRequest
|
|
513
607
|
* @param {*} [options] Override http request option.
|
|
514
608
|
* @throws {RequiredError}
|
|
515
609
|
* @memberof DefaultApiInterface
|
|
516
610
|
*/
|
|
517
|
-
|
|
611
|
+
updateGroupRaw(requestParameters: UpdateGroupOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Group>>;
|
|
518
612
|
/**
|
|
519
|
-
*
|
|
613
|
+
* Update group
|
|
520
614
|
*/
|
|
521
|
-
|
|
615
|
+
updateGroup(requestParameters: UpdateGroupOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Group>;
|
|
522
616
|
}
|
|
523
617
|
/**
|
|
524
618
|
*
|
|
525
619
|
*/
|
|
526
620
|
export declare class DefaultApi extends runtime.BaseAPI implements DefaultApiInterface {
|
|
527
|
-
/**
|
|
528
|
-
* Creates request options for addVMsToInspection without sending the request
|
|
529
|
-
*/
|
|
530
|
-
addVMsToInspectionRequestOpts(requestParameters: AddVMsToInspectionRequest): Promise<runtime.RequestOpts>;
|
|
531
|
-
/**
|
|
532
|
-
* Add more VMs to inspection queue
|
|
533
|
-
*/
|
|
534
|
-
addVMsToInspectionRaw(requestParameters: AddVMsToInspectionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<InspectorStatus>>;
|
|
535
|
-
/**
|
|
536
|
-
* Add more VMs to inspection queue
|
|
537
|
-
*/
|
|
538
|
-
addVMsToInspection(requestParameters: AddVMsToInspectionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<InspectorStatus>;
|
|
539
621
|
/**
|
|
540
622
|
* Creates request options for createGroup without sending the request
|
|
541
623
|
*/
|
|
@@ -599,15 +681,27 @@ export declare class DefaultApi extends runtime.BaseAPI implements DefaultApiInt
|
|
|
599
681
|
/**
|
|
600
682
|
* Creates request options for getInspectorStatus without sending the request
|
|
601
683
|
*/
|
|
602
|
-
getInspectorStatusRequestOpts(): Promise<runtime.RequestOpts>;
|
|
684
|
+
getInspectorStatusRequestOpts(requestParameters: GetInspectorStatusRequest): Promise<runtime.RequestOpts>;
|
|
603
685
|
/**
|
|
604
686
|
* Get inspector status
|
|
605
687
|
*/
|
|
606
|
-
getInspectorStatusRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<InspectorStatus>>;
|
|
688
|
+
getInspectorStatusRaw(requestParameters: GetInspectorStatusRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<InspectorStatus>>;
|
|
607
689
|
/**
|
|
608
690
|
* Get inspector status
|
|
609
691
|
*/
|
|
610
|
-
getInspectorStatus(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<InspectorStatus>;
|
|
692
|
+
getInspectorStatus(requestParameters?: GetInspectorStatusRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<InspectorStatus>;
|
|
693
|
+
/**
|
|
694
|
+
* Creates request options for getInspectorVddkStatus without sending the request
|
|
695
|
+
*/
|
|
696
|
+
getInspectorVddkStatusRequestOpts(): Promise<runtime.RequestOpts>;
|
|
697
|
+
/**
|
|
698
|
+
* Get VDDK status
|
|
699
|
+
*/
|
|
700
|
+
getInspectorVddkStatusRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<VddkProperties>>;
|
|
701
|
+
/**
|
|
702
|
+
* Get VDDK status
|
|
703
|
+
*/
|
|
704
|
+
getInspectorVddkStatus(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VddkProperties>;
|
|
611
705
|
/**
|
|
612
706
|
* Creates request options for getInventory without sending the request
|
|
613
707
|
*/
|
|
@@ -620,6 +714,18 @@ export declare class DefaultApi extends runtime.BaseAPI implements DefaultApiInt
|
|
|
620
714
|
* Get collected inventory
|
|
621
715
|
*/
|
|
622
716
|
getInventory(requestParameters?: GetInventoryRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetInventory200Response>;
|
|
717
|
+
/**
|
|
718
|
+
* Creates request options for getRightsizingReport without sending the request
|
|
719
|
+
*/
|
|
720
|
+
getRightsizingReportRequestOpts(requestParameters: GetRightsizingReportRequest): Promise<runtime.RequestOpts>;
|
|
721
|
+
/**
|
|
722
|
+
* Get a specific rightsizing report with full VM metrics
|
|
723
|
+
*/
|
|
724
|
+
getRightsizingReportRaw(requestParameters: GetRightsizingReportRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<RightsizingReport>>;
|
|
725
|
+
/**
|
|
726
|
+
* Get a specific rightsizing report with full VM metrics
|
|
727
|
+
*/
|
|
728
|
+
getRightsizingReport(requestParameters: GetRightsizingReportRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<RightsizingReport>;
|
|
623
729
|
/**
|
|
624
730
|
* Creates request options for getVM without sending the request
|
|
625
731
|
*/
|
|
@@ -633,17 +739,17 @@ export declare class DefaultApi extends runtime.BaseAPI implements DefaultApiInt
|
|
|
633
739
|
*/
|
|
634
740
|
getVM(requestParameters: GetVMRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VirtualMachineDetail>;
|
|
635
741
|
/**
|
|
636
|
-
* Creates request options for
|
|
742
|
+
* Creates request options for getVMUtilization without sending the request
|
|
637
743
|
*/
|
|
638
|
-
|
|
744
|
+
getVMUtilizationRequestOpts(requestParameters: GetVMUtilizationRequest): Promise<runtime.RequestOpts>;
|
|
639
745
|
/**
|
|
640
|
-
* Get
|
|
746
|
+
* Get utilization breakdown for a specific VM
|
|
641
747
|
*/
|
|
642
|
-
|
|
748
|
+
getVMUtilizationRaw(requestParameters: GetVMUtilizationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<VmUtilizationDetails>>;
|
|
643
749
|
/**
|
|
644
|
-
* Get
|
|
750
|
+
* Get utilization breakdown for a specific VM
|
|
645
751
|
*/
|
|
646
|
-
|
|
752
|
+
getVMUtilization(requestParameters: GetVMUtilizationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VmUtilizationDetails>;
|
|
647
753
|
/**
|
|
648
754
|
* Creates request options for getVMs without sending the request
|
|
649
755
|
*/
|
|
@@ -656,18 +762,6 @@ export declare class DefaultApi extends runtime.BaseAPI implements DefaultApiInt
|
|
|
656
762
|
* Get list of VMs with filtering and pagination
|
|
657
763
|
*/
|
|
658
764
|
getVMs(requestParameters?: GetVMsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VirtualMachineListResponse>;
|
|
659
|
-
/**
|
|
660
|
-
* Creates request options for getVddkStatus without sending the request
|
|
661
|
-
*/
|
|
662
|
-
getVddkStatusRequestOpts(): Promise<runtime.RequestOpts>;
|
|
663
|
-
/**
|
|
664
|
-
* Get VDDK status
|
|
665
|
-
*/
|
|
666
|
-
getVddkStatusRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<VddkProperties>>;
|
|
667
|
-
/**
|
|
668
|
-
* Get VDDK status
|
|
669
|
-
*/
|
|
670
|
-
getVddkStatus(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VddkProperties>;
|
|
671
765
|
/**
|
|
672
766
|
* Creates request options for getVersion without sending the request
|
|
673
767
|
*/
|
|
@@ -692,6 +786,42 @@ export declare class DefaultApi extends runtime.BaseAPI implements DefaultApiInt
|
|
|
692
786
|
* List all groups
|
|
693
787
|
*/
|
|
694
788
|
listGroups(requestParameters?: ListGroupsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GroupListResponse>;
|
|
789
|
+
/**
|
|
790
|
+
* Creates request options for listRightsizingReports without sending the request
|
|
791
|
+
*/
|
|
792
|
+
listRightsizingReportsRequestOpts(): Promise<runtime.RequestOpts>;
|
|
793
|
+
/**
|
|
794
|
+
* List all rightsizing reports
|
|
795
|
+
*/
|
|
796
|
+
listRightsizingReportsRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<RightsizingReportListResponse>>;
|
|
797
|
+
/**
|
|
798
|
+
* List all rightsizing reports
|
|
799
|
+
*/
|
|
800
|
+
listRightsizingReports(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<RightsizingReportListResponse>;
|
|
801
|
+
/**
|
|
802
|
+
* Creates request options for putInspectorCredentials without sending the request
|
|
803
|
+
*/
|
|
804
|
+
putInspectorCredentialsRequestOpts(requestParameters: PutInspectorCredentialsRequest): Promise<runtime.RequestOpts>;
|
|
805
|
+
/**
|
|
806
|
+
* Set or replace inspector credentials
|
|
807
|
+
*/
|
|
808
|
+
putInspectorCredentialsRaw(requestParameters: PutInspectorCredentialsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
809
|
+
/**
|
|
810
|
+
* Set or replace inspector credentials
|
|
811
|
+
*/
|
|
812
|
+
putInspectorCredentials(requestParameters: PutInspectorCredentialsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
813
|
+
/**
|
|
814
|
+
* Creates request options for putInspectorVddk without sending the request
|
|
815
|
+
*/
|
|
816
|
+
putInspectorVddkRequestOpts(requestParameters: PutInspectorVddkRequest): Promise<runtime.RequestOpts>;
|
|
817
|
+
/**
|
|
818
|
+
* Upload VDDK tarball
|
|
819
|
+
*/
|
|
820
|
+
putInspectorVddkRaw(requestParameters: PutInspectorVddkRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<VddkProperties>>;
|
|
821
|
+
/**
|
|
822
|
+
* Upload VDDK tarball
|
|
823
|
+
*/
|
|
824
|
+
putInspectorVddk(requestParameters: PutInspectorVddkRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VddkProperties>;
|
|
695
825
|
/**
|
|
696
826
|
* Creates request options for removeVMFromInspection without sending the request
|
|
697
827
|
*/
|
|
@@ -731,15 +861,15 @@ export declare class DefaultApi extends runtime.BaseAPI implements DefaultApiInt
|
|
|
731
861
|
/**
|
|
732
862
|
* Creates request options for startInspection without sending the request
|
|
733
863
|
*/
|
|
734
|
-
startInspectionRequestOpts(requestParameters:
|
|
864
|
+
startInspectionRequestOpts(requestParameters: StartInspectionOperationRequest): Promise<runtime.RequestOpts>;
|
|
735
865
|
/**
|
|
736
866
|
* Start inspection for VMs
|
|
737
867
|
*/
|
|
738
|
-
startInspectionRaw(requestParameters:
|
|
868
|
+
startInspectionRaw(requestParameters: StartInspectionOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<InspectorStatus>>;
|
|
739
869
|
/**
|
|
740
870
|
* Start inspection for VMs
|
|
741
871
|
*/
|
|
742
|
-
startInspection(requestParameters:
|
|
872
|
+
startInspection(requestParameters: StartInspectionOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<InspectorStatus>;
|
|
743
873
|
/**
|
|
744
874
|
* Creates request options for stopCollector without sending the request
|
|
745
875
|
*/
|
|
@@ -765,27 +895,27 @@ export declare class DefaultApi extends runtime.BaseAPI implements DefaultApiInt
|
|
|
765
895
|
*/
|
|
766
896
|
stopInspection(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<InspectorStatus>;
|
|
767
897
|
/**
|
|
768
|
-
* Creates request options for
|
|
898
|
+
* Creates request options for triggerRightsizingCollection without sending the request
|
|
769
899
|
*/
|
|
770
|
-
|
|
900
|
+
triggerRightsizingCollectionRequestOpts(requestParameters: TriggerRightsizingCollectionRequest): Promise<runtime.RequestOpts>;
|
|
771
901
|
/**
|
|
772
|
-
*
|
|
902
|
+
* Trigger rightsizing metrics collection
|
|
773
903
|
*/
|
|
774
|
-
|
|
904
|
+
triggerRightsizingCollectionRaw(requestParameters: TriggerRightsizingCollectionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<RightsizingReportSummary>>;
|
|
775
905
|
/**
|
|
776
|
-
*
|
|
906
|
+
* Trigger rightsizing metrics collection
|
|
777
907
|
*/
|
|
778
|
-
|
|
908
|
+
triggerRightsizingCollection(requestParameters: TriggerRightsizingCollectionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<RightsizingReportSummary>;
|
|
779
909
|
/**
|
|
780
|
-
* Creates request options for
|
|
910
|
+
* Creates request options for updateGroup without sending the request
|
|
781
911
|
*/
|
|
782
|
-
|
|
912
|
+
updateGroupRequestOpts(requestParameters: UpdateGroupOperationRequest): Promise<runtime.RequestOpts>;
|
|
783
913
|
/**
|
|
784
|
-
*
|
|
914
|
+
* Update group
|
|
785
915
|
*/
|
|
786
|
-
|
|
916
|
+
updateGroupRaw(requestParameters: UpdateGroupOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Group>>;
|
|
787
917
|
/**
|
|
788
|
-
*
|
|
918
|
+
* Update group
|
|
789
919
|
*/
|
|
790
|
-
|
|
920
|
+
updateGroup(requestParameters: UpdateGroupOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Group>;
|
|
791
921
|
}
|