@openshift-migration-advisor/agent-sdk 0.12.0-1f1dc16fb9e5 → 0.12.0-645d2fae3eee
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 +16 -0
- package/README.md +20 -4
- package/dist/apis/DefaultApi.d.ts +346 -41
- package/dist/apis/DefaultApi.js +380 -46
- package/dist/esm/apis/DefaultApi.d.ts +346 -41
- package/dist/esm/apis/DefaultApi.js +380 -46
- package/dist/esm/models/AgentStatus.d.ts +1 -1
- package/dist/esm/models/AgentStatus.js +3 -3
- package/dist/esm/models/ClusterFeatures.d.ts +54 -0
- package/dist/esm/models/ClusterFeatures.js +54 -0
- package/dist/esm/models/DeleteLabelGloballyResponse.d.ts +38 -0
- package/dist/esm/models/DeleteLabelGloballyResponse.js +47 -0
- package/dist/esm/models/InspectorStatus.d.ts +0 -17
- package/dist/esm/models/InspectorStatus.js +1 -10
- package/dist/esm/models/Inventory.d.ts +7 -1
- package/dist/esm/models/Inventory.js +5 -3
- package/dist/esm/models/InventoryData.d.ts +7 -0
- package/dist/esm/models/InventoryData.js +3 -0
- package/dist/esm/models/RightsizingClusterListResponse.d.ts +39 -0
- package/dist/esm/models/RightsizingClusterListResponse.js +48 -0
- package/dist/esm/models/RightsizingClusterResponse.d.ts +39 -0
- package/dist/esm/models/RightsizingClusterResponse.js +48 -0
- package/dist/esm/models/RightsizingClusterUtilization.d.ts +112 -0
- package/dist/esm/models/RightsizingClusterUtilization.js +95 -0
- package/dist/esm/models/RightsizingCollectRequest.d.ts +6 -6
- package/dist/esm/models/RightsizingCollectRequest.js +12 -12
- package/dist/esm/models/RightsizingMetricStats.d.ts +1 -1
- package/dist/esm/models/RightsizingMetricStats.js +3 -3
- package/dist/esm/models/RightsizingReport.d.ts +6 -6
- package/dist/esm/models/RightsizingReport.js +18 -18
- package/dist/esm/models/RightsizingReportSummary.d.ts +6 -6
- package/dist/esm/models/RightsizingReportSummary.js +18 -18
- package/dist/esm/models/StartInspectionRequest.d.ts +8 -1
- package/dist/esm/models/StartInspectionRequest.js +5 -0
- package/dist/esm/models/UpdateLabelVMsRequest.d.ts +38 -0
- package/dist/esm/models/UpdateLabelVMsRequest.js +43 -0
- package/dist/esm/models/VMLabelsResponse.d.ts +38 -0
- package/dist/esm/models/VMLabelsResponse.js +47 -0
- package/dist/esm/models/VirtualMachine.d.ts +16 -4
- package/dist/esm/models/VirtualMachine.js +12 -8
- package/dist/esm/models/VirtualMachineDetail.d.ts +19 -0
- package/dist/esm/models/VirtualMachineDetail.js +7 -0
- package/dist/esm/models/VirtualMachineUpdateRequest.d.ts +38 -0
- package/dist/esm/models/VirtualMachineUpdateRequest.js +43 -0
- package/dist/esm/models/VmUtilizationDetails.d.ts +27 -9
- package/dist/esm/models/VmUtilizationDetails.js +39 -27
- package/dist/esm/models/index.d.ts +8 -0
- package/dist/esm/models/index.js +8 -0
- package/dist/models/AgentStatus.d.ts +1 -1
- package/dist/models/AgentStatus.js +3 -3
- package/dist/models/ClusterFeatures.d.ts +54 -0
- package/dist/models/ClusterFeatures.js +62 -0
- package/dist/models/DeleteLabelGloballyResponse.d.ts +38 -0
- package/dist/models/DeleteLabelGloballyResponse.js +54 -0
- package/dist/models/InspectorStatus.d.ts +0 -17
- package/dist/models/InspectorStatus.js +1 -10
- package/dist/models/Inventory.d.ts +7 -1
- package/dist/models/Inventory.js +5 -3
- package/dist/models/InventoryData.d.ts +7 -0
- package/dist/models/InventoryData.js +3 -0
- package/dist/models/RightsizingClusterListResponse.d.ts +39 -0
- package/dist/models/RightsizingClusterListResponse.js +55 -0
- package/dist/models/RightsizingClusterResponse.d.ts +39 -0
- package/dist/models/RightsizingClusterResponse.js +55 -0
- package/dist/models/RightsizingClusterUtilization.d.ts +112 -0
- package/dist/models/RightsizingClusterUtilization.js +102 -0
- package/dist/models/RightsizingCollectRequest.d.ts +6 -6
- package/dist/models/RightsizingCollectRequest.js +12 -12
- package/dist/models/RightsizingMetricStats.d.ts +1 -1
- package/dist/models/RightsizingMetricStats.js +3 -3
- package/dist/models/RightsizingReport.d.ts +6 -6
- package/dist/models/RightsizingReport.js +18 -18
- package/dist/models/RightsizingReportSummary.d.ts +6 -6
- package/dist/models/RightsizingReportSummary.js +18 -18
- package/dist/models/StartInspectionRequest.d.ts +8 -1
- package/dist/models/StartInspectionRequest.js +5 -0
- package/dist/models/UpdateLabelVMsRequest.d.ts +38 -0
- package/dist/models/UpdateLabelVMsRequest.js +50 -0
- package/dist/models/VMLabelsResponse.d.ts +38 -0
- package/dist/models/VMLabelsResponse.js +54 -0
- package/dist/models/VirtualMachine.d.ts +16 -4
- package/dist/models/VirtualMachine.js +12 -8
- package/dist/models/VirtualMachineDetail.d.ts +19 -0
- package/dist/models/VirtualMachineDetail.js +7 -0
- package/dist/models/VirtualMachineUpdateRequest.d.ts +38 -0
- package/dist/models/VirtualMachineUpdateRequest.js +50 -0
- package/dist/models/VmUtilizationDetails.d.ts +27 -9
- package/dist/models/VmUtilizationDetails.js +39 -27
- package/dist/models/index.d.ts +8 -0
- package/dist/models/index.js +8 -0
- package/docs/AgentStatus.md +2 -2
- package/docs/ClusterFeatures.md +38 -0
- package/docs/DefaultApi.md +695 -146
- package/docs/DeleteLabelGloballyResponse.md +36 -0
- package/docs/GetInventory200Response.md +4 -2
- package/docs/InspectorStatus.md +0 -4
- package/docs/Inventory.md +4 -2
- package/docs/InventoryData.md +2 -0
- package/docs/RightsizingClusterListResponse.md +36 -0
- package/docs/RightsizingClusterResponse.md +36 -0
- package/docs/RightsizingClusterUtilization.md +60 -0
- package/docs/RightsizingCollectRequest.md +12 -12
- package/docs/RightsizingMetricStats.md +2 -2
- package/docs/RightsizingReport.md +12 -12
- package/docs/RightsizingReportSummary.md +12 -12
- package/docs/StartInspectionRequest.md +3 -1
- package/docs/UpdateLabelVMsRequest.md +36 -0
- package/docs/VMLabelsResponse.md +36 -0
- package/docs/VirtualMachine.md +12 -8
- package/docs/VirtualMachineDetail.md +6 -0
- package/docs/VirtualMachineUpdateRequest.md +36 -0
- package/docs/VmUtilizationDetails.md +24 -18
- package/package.json +1 -1
- package/src/apis/DefaultApi.ts +754 -112
- package/src/models/AgentStatus.ts +4 -4
- package/src/models/ClusterFeatures.ts +94 -0
- package/src/models/DeleteLabelGloballyResponse.ts +75 -0
- package/src/models/InspectorStatus.ts +1 -28
- package/src/models/Inventory.ts +12 -4
- package/src/models/InventoryData.ts +15 -0
- package/src/models/RightsizingClusterListResponse.ts +83 -0
- package/src/models/RightsizingClusterResponse.ts +83 -0
- package/src/models/RightsizingClusterUtilization.ts +185 -0
- package/src/models/RightsizingCollectRequest.ts +18 -18
- package/src/models/RightsizingMetricStats.ts +4 -4
- package/src/models/RightsizingReport.ts +24 -24
- package/src/models/RightsizingReportSummary.ts +24 -24
- package/src/models/StartInspectionRequest.ts +18 -1
- package/src/models/UpdateLabelVMsRequest.ts +73 -0
- package/src/models/VMLabelsResponse.ts +75 -0
- package/src/models/VirtualMachine.ts +28 -12
- package/src/models/VirtualMachineDetail.ts +31 -0
- package/src/models/VirtualMachineUpdateRequest.ts +73 -0
- package/src/models/VmUtilizationDetails.ts +63 -36
- package/src/models/index.ts +8 -0
|
@@ -17,6 +17,7 @@ import { type CollectorStartRequest } from '../models/CollectorStartRequest.js';
|
|
|
17
17
|
import { type CollectorStatus } from '../models/CollectorStatus.js';
|
|
18
18
|
import { type CreateGroupRequest } from '../models/CreateGroupRequest.js';
|
|
19
19
|
import { type DatastoreDetail } from '../models/DatastoreDetail.js';
|
|
20
|
+
import { type DeleteLabelGloballyResponse } from '../models/DeleteLabelGloballyResponse.js';
|
|
20
21
|
import { type ForecastStats } from '../models/ForecastStats.js';
|
|
21
22
|
import { type ForecasterDatastoresRequest } from '../models/ForecasterDatastoresRequest.js';
|
|
22
23
|
import { type ForecasterStartRequest } from '../models/ForecasterStartRequest.js';
|
|
@@ -28,6 +29,8 @@ import { type GroupResponse } from '../models/GroupResponse.js';
|
|
|
28
29
|
import { type InspectorStatus } from '../models/InspectorStatus.js';
|
|
29
30
|
import { type PairCapability } from '../models/PairCapability.js';
|
|
30
31
|
import { type PairCapabilityRequest } from '../models/PairCapabilityRequest.js';
|
|
32
|
+
import { type RightsizingClusterListResponse } from '../models/RightsizingClusterListResponse.js';
|
|
33
|
+
import { type RightsizingClusterResponse } from '../models/RightsizingClusterResponse.js';
|
|
31
34
|
import { type RightsizingCollectRequest } from '../models/RightsizingCollectRequest.js';
|
|
32
35
|
import { type RightsizingReport } from '../models/RightsizingReport.js';
|
|
33
36
|
import { type RightsizingReportListResponse } from '../models/RightsizingReportListResponse.js';
|
|
@@ -35,11 +38,14 @@ import { type RightsizingReportSummary } from '../models/RightsizingReportSummar
|
|
|
35
38
|
import { type StartInspectionRequest } from '../models/StartInspectionRequest.js';
|
|
36
39
|
import { type StopForecasterPair202Response } from '../models/StopForecasterPair202Response.js';
|
|
37
40
|
import { type UpdateGroupRequest } from '../models/UpdateGroupRequest.js';
|
|
41
|
+
import { type UpdateLabelVMsRequest } from '../models/UpdateLabelVMsRequest.js';
|
|
42
|
+
import { type VMLabelsResponse } from '../models/VMLabelsResponse.js';
|
|
38
43
|
import { type VcenterCredentials } from '../models/VcenterCredentials.js';
|
|
39
44
|
import { type VddkProperties } from '../models/VddkProperties.js';
|
|
40
45
|
import { type VersionInfo } from '../models/VersionInfo.js';
|
|
41
46
|
import { type VirtualMachineDetail } from '../models/VirtualMachineDetail.js';
|
|
42
47
|
import { type VirtualMachineListResponse } from '../models/VirtualMachineListResponse.js';
|
|
48
|
+
import { type VirtualMachineUpdateRequest } from '../models/VirtualMachineUpdateRequest.js';
|
|
43
49
|
import { type VmInspectionStatus } from '../models/VmInspectionStatus.js';
|
|
44
50
|
import { type VmUtilizationDetails } from '../models/VmUtilizationDetails.js';
|
|
45
51
|
export interface CreateGroupOperationRequest {
|
|
@@ -51,6 +57,9 @@ export interface DeleteForecasterRunRequest {
|
|
|
51
57
|
export interface DeleteGroupRequest {
|
|
52
58
|
id: string;
|
|
53
59
|
}
|
|
60
|
+
export interface DeleteLabelGloballyRequest {
|
|
61
|
+
label: string;
|
|
62
|
+
}
|
|
54
63
|
export interface GetForecasterDatastoresRequest {
|
|
55
64
|
forecasterDatastoresRequest?: ForecasterDatastoresRequest;
|
|
56
65
|
}
|
|
@@ -68,14 +77,24 @@ export interface GetGroupRequest {
|
|
|
68
77
|
}
|
|
69
78
|
export interface GetInspectorStatusRequest {
|
|
70
79
|
includeVddk?: boolean;
|
|
71
|
-
includeCredentials?: boolean;
|
|
72
80
|
}
|
|
73
81
|
export interface GetInventoryRequest {
|
|
74
82
|
withAgentId?: boolean;
|
|
75
83
|
groupId?: string;
|
|
76
84
|
}
|
|
85
|
+
export interface GetLatestRightsizingClustersRequest {
|
|
86
|
+
byExpression?: string;
|
|
87
|
+
}
|
|
77
88
|
export interface GetRightsizingReportRequest {
|
|
78
|
-
|
|
89
|
+
reportId: string;
|
|
90
|
+
}
|
|
91
|
+
export interface GetRightsizingReportClusterRequest {
|
|
92
|
+
reportId: string;
|
|
93
|
+
clusterId: string;
|
|
94
|
+
}
|
|
95
|
+
export interface GetRightsizingReportClustersRequest {
|
|
96
|
+
reportId: string;
|
|
97
|
+
byExpression?: string;
|
|
79
98
|
}
|
|
80
99
|
export interface GetVMRequest {
|
|
81
100
|
id: string;
|
|
@@ -94,15 +113,16 @@ export interface ListGroupsRequest {
|
|
|
94
113
|
page?: number;
|
|
95
114
|
pageSize?: number;
|
|
96
115
|
}
|
|
116
|
+
export interface ListRightsizingReportClustersRequest {
|
|
117
|
+
reportId: string;
|
|
118
|
+
byExpression?: string;
|
|
119
|
+
}
|
|
97
120
|
export interface PostForecasterPairCapabilitiesRequest {
|
|
98
121
|
pairCapabilityRequest: PairCapabilityRequest;
|
|
99
122
|
}
|
|
100
123
|
export interface PutForecasterCredentialsRequest {
|
|
101
124
|
vcenterCredentials: VcenterCredentials;
|
|
102
125
|
}
|
|
103
|
-
export interface PutInspectorCredentialsRequest {
|
|
104
|
-
vcenterCredentials: VcenterCredentials;
|
|
105
|
-
}
|
|
106
126
|
export interface PutInspectorVddkRequest {
|
|
107
127
|
file: Blob;
|
|
108
128
|
}
|
|
@@ -131,6 +151,17 @@ export interface UpdateGroupOperationRequest {
|
|
|
131
151
|
id: string;
|
|
132
152
|
updateGroupRequest: UpdateGroupRequest;
|
|
133
153
|
}
|
|
154
|
+
export interface UpdateLabelVMsOperationRequest {
|
|
155
|
+
label: string;
|
|
156
|
+
updateLabelVMsRequest: UpdateLabelVMsRequest;
|
|
157
|
+
}
|
|
158
|
+
export interface UpdateVMRequest {
|
|
159
|
+
id: string;
|
|
160
|
+
virtualMachineUpdateRequest: VirtualMachineUpdateRequest;
|
|
161
|
+
}
|
|
162
|
+
export interface ValidateInspectorCredentialsRequest {
|
|
163
|
+
vcenterCredentials: VcenterCredentials;
|
|
164
|
+
}
|
|
134
165
|
/**
|
|
135
166
|
* DefaultApi - interface
|
|
136
167
|
*
|
|
@@ -198,6 +229,26 @@ export interface DefaultApiInterface {
|
|
|
198
229
|
* Delete group
|
|
199
230
|
*/
|
|
200
231
|
deleteGroup(requestParameters: DeleteGroupRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
232
|
+
/**
|
|
233
|
+
* Creates request options for deleteLabelGlobally without sending the request
|
|
234
|
+
* @param {string} label The label to remove from all VMs
|
|
235
|
+
* @throws {RequiredError}
|
|
236
|
+
* @memberof DefaultApiInterface
|
|
237
|
+
*/
|
|
238
|
+
deleteLabelGloballyRequestOpts(requestParameters: DeleteLabelGloballyRequest): Promise<runtime.RequestOpts>;
|
|
239
|
+
/**
|
|
240
|
+
*
|
|
241
|
+
* @summary Delete label from all VMs
|
|
242
|
+
* @param {string} label The label to remove from all VMs
|
|
243
|
+
* @param {*} [options] Override http request option.
|
|
244
|
+
* @throws {RequiredError}
|
|
245
|
+
* @memberof DefaultApiInterface
|
|
246
|
+
*/
|
|
247
|
+
deleteLabelGloballyRaw(requestParameters: DeleteLabelGloballyRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<DeleteLabelGloballyResponse>>;
|
|
248
|
+
/**
|
|
249
|
+
* Delete label from all VMs
|
|
250
|
+
*/
|
|
251
|
+
deleteLabelGlobally(requestParameters: DeleteLabelGloballyRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<DeleteLabelGloballyResponse>;
|
|
201
252
|
/**
|
|
202
253
|
* Creates request options for getAgentStatus without sending the request
|
|
203
254
|
* @throws {RequiredError}
|
|
@@ -345,7 +396,6 @@ export interface DefaultApiInterface {
|
|
|
345
396
|
/**
|
|
346
397
|
* Creates request options for getInspectorStatus without sending the request
|
|
347
398
|
* @param {boolean} [includeVddk] If true, include uploaded VDDK metadata (`version`, `md5`) when present. omitted if VDDK was never uploaded.
|
|
348
|
-
* @param {boolean} [includeCredentials] If true, include configured vCenter URL and username (password is never returned). omitted if was never set.
|
|
349
399
|
* @throws {RequiredError}
|
|
350
400
|
* @memberof DefaultApiInterface
|
|
351
401
|
*/
|
|
@@ -354,7 +404,6 @@ export interface DefaultApiInterface {
|
|
|
354
404
|
*
|
|
355
405
|
* @summary Get inspector status
|
|
356
406
|
* @param {boolean} [includeVddk] If true, include uploaded VDDK metadata (`version`, `md5`) when present. omitted if VDDK was never uploaded.
|
|
357
|
-
* @param {boolean} [includeCredentials] If true, include configured vCenter URL and username (password is never returned). omitted if was never set.
|
|
358
407
|
* @param {*} [options] Override http request option.
|
|
359
408
|
* @throws {RequiredError}
|
|
360
409
|
* @memberof DefaultApiInterface
|
|
@@ -404,9 +453,32 @@ export interface DefaultApiInterface {
|
|
|
404
453
|
* Get collected inventory
|
|
405
454
|
*/
|
|
406
455
|
getInventory(requestParameters: GetInventoryRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetInventory200Response>;
|
|
456
|
+
/**
|
|
457
|
+
* Creates request options for getLatestRightsizingClusters without sending the request
|
|
458
|
+
* @param {string} [byExpression] Filter DSL expression (e.g. \"cluster_id = \'domain-c123\'\"). Omit to return all clusters.
|
|
459
|
+
* @deprecated
|
|
460
|
+
* @throws {RequiredError}
|
|
461
|
+
* @memberof DefaultApiInterface
|
|
462
|
+
*/
|
|
463
|
+
getLatestRightsizingClustersRequestOpts(requestParameters: GetLatestRightsizingClustersRequest): Promise<runtime.RequestOpts>;
|
|
464
|
+
/**
|
|
465
|
+
*
|
|
466
|
+
* @summary Get cluster-level utilization aggregates for the latest completed report
|
|
467
|
+
* @param {string} [byExpression] Filter DSL expression (e.g. \"cluster_id = \'domain-c123\'\"). Omit to return all clusters.
|
|
468
|
+
* @param {*} [options] Override http request option.
|
|
469
|
+
* @deprecated
|
|
470
|
+
* @throws {RequiredError}
|
|
471
|
+
* @memberof DefaultApiInterface
|
|
472
|
+
*/
|
|
473
|
+
getLatestRightsizingClustersRaw(requestParameters: GetLatestRightsizingClustersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<RightsizingClusterListResponse>>;
|
|
474
|
+
/**
|
|
475
|
+
* Get cluster-level utilization aggregates for the latest completed report
|
|
476
|
+
* @deprecated
|
|
477
|
+
*/
|
|
478
|
+
getLatestRightsizingClusters(requestParameters: GetLatestRightsizingClustersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<RightsizingClusterListResponse>;
|
|
407
479
|
/**
|
|
408
480
|
* Creates request options for getRightsizingReport without sending the request
|
|
409
|
-
* @param {string}
|
|
481
|
+
* @param {string} reportId Report UUID
|
|
410
482
|
* @throws {RequiredError}
|
|
411
483
|
* @memberof DefaultApiInterface
|
|
412
484
|
*/
|
|
@@ -414,7 +486,7 @@ export interface DefaultApiInterface {
|
|
|
414
486
|
/**
|
|
415
487
|
*
|
|
416
488
|
* @summary Get a specific rightsizing report with full VM metrics
|
|
417
|
-
* @param {string}
|
|
489
|
+
* @param {string} reportId Report UUID
|
|
418
490
|
* @param {*} [options] Override http request option.
|
|
419
491
|
* @throws {RequiredError}
|
|
420
492
|
* @memberof DefaultApiInterface
|
|
@@ -424,6 +496,53 @@ export interface DefaultApiInterface {
|
|
|
424
496
|
* Get a specific rightsizing report with full VM metrics
|
|
425
497
|
*/
|
|
426
498
|
getRightsizingReport(requestParameters: GetRightsizingReportRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<RightsizingReport>;
|
|
499
|
+
/**
|
|
500
|
+
* Creates request options for getRightsizingReportCluster without sending the request
|
|
501
|
+
* @param {string} reportId Rightsizing report UUID
|
|
502
|
+
* @param {string} clusterId vSphere MoRef (e.g. \"domain-c123\") or generated cluster ID (e.g. \"cluster-a3f7b2c1d4e89012\")
|
|
503
|
+
* @throws {RequiredError}
|
|
504
|
+
* @memberof DefaultApiInterface
|
|
505
|
+
*/
|
|
506
|
+
getRightsizingReportClusterRequestOpts(requestParameters: GetRightsizingReportClusterRequest): Promise<runtime.RequestOpts>;
|
|
507
|
+
/**
|
|
508
|
+
*
|
|
509
|
+
* @summary Get utilization for a specific cluster from a specific report
|
|
510
|
+
* @param {string} reportId Rightsizing report UUID
|
|
511
|
+
* @param {string} clusterId vSphere MoRef (e.g. \"domain-c123\") or generated cluster ID (e.g. \"cluster-a3f7b2c1d4e89012\")
|
|
512
|
+
* @param {*} [options] Override http request option.
|
|
513
|
+
* @throws {RequiredError}
|
|
514
|
+
* @memberof DefaultApiInterface
|
|
515
|
+
*/
|
|
516
|
+
getRightsizingReportClusterRaw(requestParameters: GetRightsizingReportClusterRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<RightsizingClusterResponse>>;
|
|
517
|
+
/**
|
|
518
|
+
* Get utilization for a specific cluster from a specific report
|
|
519
|
+
*/
|
|
520
|
+
getRightsizingReportCluster(requestParameters: GetRightsizingReportClusterRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<RightsizingClusterResponse>;
|
|
521
|
+
/**
|
|
522
|
+
* Creates request options for getRightsizingReportClusters without sending the request
|
|
523
|
+
* @param {string} reportId Rightsizing report UUID
|
|
524
|
+
* @param {string} [byExpression] Filter DSL expression (e.g. \"cluster_id = \'domain-c123\'\"). Omit to return all clusters.
|
|
525
|
+
* @deprecated
|
|
526
|
+
* @throws {RequiredError}
|
|
527
|
+
* @memberof DefaultApiInterface
|
|
528
|
+
*/
|
|
529
|
+
getRightsizingReportClustersRequestOpts(requestParameters: GetRightsizingReportClustersRequest): Promise<runtime.RequestOpts>;
|
|
530
|
+
/**
|
|
531
|
+
*
|
|
532
|
+
* @summary Get cluster-level utilization aggregates for a specific report
|
|
533
|
+
* @param {string} reportId Rightsizing report UUID
|
|
534
|
+
* @param {string} [byExpression] Filter DSL expression (e.g. \"cluster_id = \'domain-c123\'\"). Omit to return all clusters.
|
|
535
|
+
* @param {*} [options] Override http request option.
|
|
536
|
+
* @deprecated
|
|
537
|
+
* @throws {RequiredError}
|
|
538
|
+
* @memberof DefaultApiInterface
|
|
539
|
+
*/
|
|
540
|
+
getRightsizingReportClustersRaw(requestParameters: GetRightsizingReportClustersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<RightsizingClusterListResponse>>;
|
|
541
|
+
/**
|
|
542
|
+
* Get cluster-level utilization aggregates for a specific report
|
|
543
|
+
* @deprecated
|
|
544
|
+
*/
|
|
545
|
+
getRightsizingReportClusters(requestParameters: GetRightsizingReportClustersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<RightsizingClusterListResponse>;
|
|
427
546
|
/**
|
|
428
547
|
* Creates request options for getVM without sending the request
|
|
429
548
|
* @param {string} id VirtualMachine id
|
|
@@ -444,6 +563,24 @@ export interface DefaultApiInterface {
|
|
|
444
563
|
* Get details about a vm
|
|
445
564
|
*/
|
|
446
565
|
getVM(requestParameters: GetVMRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VirtualMachineDetail>;
|
|
566
|
+
/**
|
|
567
|
+
* Creates request options for getVMLabels without sending the request
|
|
568
|
+
* @throws {RequiredError}
|
|
569
|
+
* @memberof DefaultApiInterface
|
|
570
|
+
*/
|
|
571
|
+
getVMLabelsRequestOpts(): Promise<runtime.RequestOpts>;
|
|
572
|
+
/**
|
|
573
|
+
*
|
|
574
|
+
* @summary Get all distinct labels in use across VMs
|
|
575
|
+
* @param {*} [options] Override http request option.
|
|
576
|
+
* @throws {RequiredError}
|
|
577
|
+
* @memberof DefaultApiInterface
|
|
578
|
+
*/
|
|
579
|
+
getVMLabelsRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<VMLabelsResponse>>;
|
|
580
|
+
/**
|
|
581
|
+
* Get all distinct labels in use across VMs
|
|
582
|
+
*/
|
|
583
|
+
getVMLabels(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VMLabelsResponse>;
|
|
447
584
|
/**
|
|
448
585
|
* Creates request options for getVMUtilization without sending the request
|
|
449
586
|
* @param {string} id VirtualMachine MoRef ID
|
|
@@ -532,6 +669,28 @@ export interface DefaultApiInterface {
|
|
|
532
669
|
* List all groups
|
|
533
670
|
*/
|
|
534
671
|
listGroups(requestParameters: ListGroupsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GroupListResponse>;
|
|
672
|
+
/**
|
|
673
|
+
* Creates request options for listRightsizingReportClusters without sending the request
|
|
674
|
+
* @param {string} reportId Rightsizing report UUID
|
|
675
|
+
* @param {string} [byExpression] Filter DSL expression (e.g. \"cluster_id = \'domain-c123\'\"). Omit to return all clusters.
|
|
676
|
+
* @throws {RequiredError}
|
|
677
|
+
* @memberof DefaultApiInterface
|
|
678
|
+
*/
|
|
679
|
+
listRightsizingReportClustersRequestOpts(requestParameters: ListRightsizingReportClustersRequest): Promise<runtime.RequestOpts>;
|
|
680
|
+
/**
|
|
681
|
+
*
|
|
682
|
+
* @summary Get cluster-level utilization aggregates for a specific report
|
|
683
|
+
* @param {string} reportId Rightsizing report UUID
|
|
684
|
+
* @param {string} [byExpression] Filter DSL expression (e.g. \"cluster_id = \'domain-c123\'\"). Omit to return all clusters.
|
|
685
|
+
* @param {*} [options] Override http request option.
|
|
686
|
+
* @throws {RequiredError}
|
|
687
|
+
* @memberof DefaultApiInterface
|
|
688
|
+
*/
|
|
689
|
+
listRightsizingReportClustersRaw(requestParameters: ListRightsizingReportClustersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<RightsizingClusterListResponse>>;
|
|
690
|
+
/**
|
|
691
|
+
* Get cluster-level utilization aggregates for a specific report
|
|
692
|
+
*/
|
|
693
|
+
listRightsizingReportClusters(requestParameters: ListRightsizingReportClustersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<RightsizingClusterListResponse>;
|
|
535
694
|
/**
|
|
536
695
|
* Creates request options for listRightsizingReports without sending the request
|
|
537
696
|
* @throws {RequiredError}
|
|
@@ -592,26 +751,6 @@ export interface DefaultApiInterface {
|
|
|
592
751
|
* Verify vCenter credentials and permissions
|
|
593
752
|
*/
|
|
594
753
|
putForecasterCredentials(requestParameters: PutForecasterCredentialsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
595
|
-
/**
|
|
596
|
-
* Creates request options for putInspectorCredentials without sending the request
|
|
597
|
-
* @param {VcenterCredentials} vcenterCredentials
|
|
598
|
-
* @throws {RequiredError}
|
|
599
|
-
* @memberof DefaultApiInterface
|
|
600
|
-
*/
|
|
601
|
-
putInspectorCredentialsRequestOpts(requestParameters: PutInspectorCredentialsRequest): Promise<runtime.RequestOpts>;
|
|
602
|
-
/**
|
|
603
|
-
*
|
|
604
|
-
* @summary Set or replace inspector credentials
|
|
605
|
-
* @param {VcenterCredentials} vcenterCredentials
|
|
606
|
-
* @param {*} [options] Override http request option.
|
|
607
|
-
* @throws {RequiredError}
|
|
608
|
-
* @memberof DefaultApiInterface
|
|
609
|
-
*/
|
|
610
|
-
putInspectorCredentialsRaw(requestParameters: PutInspectorCredentialsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
611
|
-
/**
|
|
612
|
-
* Set or replace inspector credentials
|
|
613
|
-
*/
|
|
614
|
-
putInspectorCredentials(requestParameters: PutInspectorCredentialsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
615
754
|
/**
|
|
616
755
|
* Creates request options for putInspectorVddk without sending the request
|
|
617
756
|
* @param {Blob} file VDDK tarball
|
|
@@ -851,6 +990,70 @@ export interface DefaultApiInterface {
|
|
|
851
990
|
* Update group
|
|
852
991
|
*/
|
|
853
992
|
updateGroup(requestParameters: UpdateGroupOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Group>;
|
|
993
|
+
/**
|
|
994
|
+
* Creates request options for updateLabelVMs without sending the request
|
|
995
|
+
* @param {string} label The label to modify
|
|
996
|
+
* @param {UpdateLabelVMsRequest} updateLabelVMsRequest
|
|
997
|
+
* @throws {RequiredError}
|
|
998
|
+
* @memberof DefaultApiInterface
|
|
999
|
+
*/
|
|
1000
|
+
updateLabelVMsRequestOpts(requestParameters: UpdateLabelVMsOperationRequest): Promise<runtime.RequestOpts>;
|
|
1001
|
+
/**
|
|
1002
|
+
*
|
|
1003
|
+
* @summary Modify label VM membership (add/remove label to/from VMs)
|
|
1004
|
+
* @param {string} label The label to modify
|
|
1005
|
+
* @param {UpdateLabelVMsRequest} updateLabelVMsRequest
|
|
1006
|
+
* @param {*} [options] Override http request option.
|
|
1007
|
+
* @throws {RequiredError}
|
|
1008
|
+
* @memberof DefaultApiInterface
|
|
1009
|
+
*/
|
|
1010
|
+
updateLabelVMsRaw(requestParameters: UpdateLabelVMsOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
1011
|
+
/**
|
|
1012
|
+
* Modify label VM membership (add/remove label to/from VMs)
|
|
1013
|
+
*/
|
|
1014
|
+
updateLabelVMs(requestParameters: UpdateLabelVMsOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
1015
|
+
/**
|
|
1016
|
+
* Creates request options for updateVM without sending the request
|
|
1017
|
+
* @param {string} id VirtualMachine id
|
|
1018
|
+
* @param {VirtualMachineUpdateRequest} virtualMachineUpdateRequest
|
|
1019
|
+
* @throws {RequiredError}
|
|
1020
|
+
* @memberof DefaultApiInterface
|
|
1021
|
+
*/
|
|
1022
|
+
updateVMRequestOpts(requestParameters: UpdateVMRequest): Promise<runtime.RequestOpts>;
|
|
1023
|
+
/**
|
|
1024
|
+
*
|
|
1025
|
+
* @summary Update VM properties
|
|
1026
|
+
* @param {string} id VirtualMachine id
|
|
1027
|
+
* @param {VirtualMachineUpdateRequest} virtualMachineUpdateRequest
|
|
1028
|
+
* @param {*} [options] Override http request option.
|
|
1029
|
+
* @throws {RequiredError}
|
|
1030
|
+
* @memberof DefaultApiInterface
|
|
1031
|
+
*/
|
|
1032
|
+
updateVMRaw(requestParameters: UpdateVMRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
1033
|
+
/**
|
|
1034
|
+
* Update VM properties
|
|
1035
|
+
*/
|
|
1036
|
+
updateVM(requestParameters: UpdateVMRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
1037
|
+
/**
|
|
1038
|
+
* Creates request options for validateInspectorCredentials without sending the request
|
|
1039
|
+
* @param {VcenterCredentials} vcenterCredentials
|
|
1040
|
+
* @throws {RequiredError}
|
|
1041
|
+
* @memberof DefaultApiInterface
|
|
1042
|
+
*/
|
|
1043
|
+
validateInspectorCredentialsRequestOpts(requestParameters: ValidateInspectorCredentialsRequest): Promise<runtime.RequestOpts>;
|
|
1044
|
+
/**
|
|
1045
|
+
*
|
|
1046
|
+
* @summary Validate vCenter credentials for inspector
|
|
1047
|
+
* @param {VcenterCredentials} vcenterCredentials
|
|
1048
|
+
* @param {*} [options] Override http request option.
|
|
1049
|
+
* @throws {RequiredError}
|
|
1050
|
+
* @memberof DefaultApiInterface
|
|
1051
|
+
*/
|
|
1052
|
+
validateInspectorCredentialsRaw(requestParameters: ValidateInspectorCredentialsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
1053
|
+
/**
|
|
1054
|
+
* Validate vCenter credentials for inspector
|
|
1055
|
+
*/
|
|
1056
|
+
validateInspectorCredentials(requestParameters: ValidateInspectorCredentialsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
854
1057
|
}
|
|
855
1058
|
/**
|
|
856
1059
|
*
|
|
@@ -892,6 +1095,18 @@ export declare class DefaultApi extends runtime.BaseAPI implements DefaultApiInt
|
|
|
892
1095
|
* Delete group
|
|
893
1096
|
*/
|
|
894
1097
|
deleteGroup(requestParameters: DeleteGroupRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
1098
|
+
/**
|
|
1099
|
+
* Creates request options for deleteLabelGlobally without sending the request
|
|
1100
|
+
*/
|
|
1101
|
+
deleteLabelGloballyRequestOpts(requestParameters: DeleteLabelGloballyRequest): Promise<runtime.RequestOpts>;
|
|
1102
|
+
/**
|
|
1103
|
+
* Delete label from all VMs
|
|
1104
|
+
*/
|
|
1105
|
+
deleteLabelGloballyRaw(requestParameters: DeleteLabelGloballyRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<DeleteLabelGloballyResponse>>;
|
|
1106
|
+
/**
|
|
1107
|
+
* Delete label from all VMs
|
|
1108
|
+
*/
|
|
1109
|
+
deleteLabelGlobally(requestParameters: DeleteLabelGloballyRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<DeleteLabelGloballyResponse>;
|
|
895
1110
|
/**
|
|
896
1111
|
* Creates request options for getAgentStatus without sending the request
|
|
897
1112
|
*/
|
|
@@ -1020,6 +1235,21 @@ export declare class DefaultApi extends runtime.BaseAPI implements DefaultApiInt
|
|
|
1020
1235
|
* Get collected inventory
|
|
1021
1236
|
*/
|
|
1022
1237
|
getInventory(requestParameters?: GetInventoryRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetInventory200Response>;
|
|
1238
|
+
/**
|
|
1239
|
+
* Creates request options for getLatestRightsizingClusters without sending the request
|
|
1240
|
+
* @deprecated
|
|
1241
|
+
*/
|
|
1242
|
+
getLatestRightsizingClustersRequestOpts(requestParameters: GetLatestRightsizingClustersRequest): Promise<runtime.RequestOpts>;
|
|
1243
|
+
/**
|
|
1244
|
+
* Get cluster-level utilization aggregates for the latest completed report
|
|
1245
|
+
* @deprecated
|
|
1246
|
+
*/
|
|
1247
|
+
getLatestRightsizingClustersRaw(requestParameters: GetLatestRightsizingClustersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<RightsizingClusterListResponse>>;
|
|
1248
|
+
/**
|
|
1249
|
+
* Get cluster-level utilization aggregates for the latest completed report
|
|
1250
|
+
* @deprecated
|
|
1251
|
+
*/
|
|
1252
|
+
getLatestRightsizingClusters(requestParameters?: GetLatestRightsizingClustersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<RightsizingClusterListResponse>;
|
|
1023
1253
|
/**
|
|
1024
1254
|
* Creates request options for getRightsizingReport without sending the request
|
|
1025
1255
|
*/
|
|
@@ -1032,6 +1262,33 @@ export declare class DefaultApi extends runtime.BaseAPI implements DefaultApiInt
|
|
|
1032
1262
|
* Get a specific rightsizing report with full VM metrics
|
|
1033
1263
|
*/
|
|
1034
1264
|
getRightsizingReport(requestParameters: GetRightsizingReportRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<RightsizingReport>;
|
|
1265
|
+
/**
|
|
1266
|
+
* Creates request options for getRightsizingReportCluster without sending the request
|
|
1267
|
+
*/
|
|
1268
|
+
getRightsizingReportClusterRequestOpts(requestParameters: GetRightsizingReportClusterRequest): Promise<runtime.RequestOpts>;
|
|
1269
|
+
/**
|
|
1270
|
+
* Get utilization for a specific cluster from a specific report
|
|
1271
|
+
*/
|
|
1272
|
+
getRightsizingReportClusterRaw(requestParameters: GetRightsizingReportClusterRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<RightsizingClusterResponse>>;
|
|
1273
|
+
/**
|
|
1274
|
+
* Get utilization for a specific cluster from a specific report
|
|
1275
|
+
*/
|
|
1276
|
+
getRightsizingReportCluster(requestParameters: GetRightsizingReportClusterRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<RightsizingClusterResponse>;
|
|
1277
|
+
/**
|
|
1278
|
+
* Creates request options for getRightsizingReportClusters without sending the request
|
|
1279
|
+
* @deprecated
|
|
1280
|
+
*/
|
|
1281
|
+
getRightsizingReportClustersRequestOpts(requestParameters: GetRightsizingReportClustersRequest): Promise<runtime.RequestOpts>;
|
|
1282
|
+
/**
|
|
1283
|
+
* Get cluster-level utilization aggregates for a specific report
|
|
1284
|
+
* @deprecated
|
|
1285
|
+
*/
|
|
1286
|
+
getRightsizingReportClustersRaw(requestParameters: GetRightsizingReportClustersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<RightsizingClusterListResponse>>;
|
|
1287
|
+
/**
|
|
1288
|
+
* Get cluster-level utilization aggregates for a specific report
|
|
1289
|
+
* @deprecated
|
|
1290
|
+
*/
|
|
1291
|
+
getRightsizingReportClusters(requestParameters: GetRightsizingReportClustersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<RightsizingClusterListResponse>;
|
|
1035
1292
|
/**
|
|
1036
1293
|
* Creates request options for getVM without sending the request
|
|
1037
1294
|
*/
|
|
@@ -1044,6 +1301,18 @@ export declare class DefaultApi extends runtime.BaseAPI implements DefaultApiInt
|
|
|
1044
1301
|
* Get details about a vm
|
|
1045
1302
|
*/
|
|
1046
1303
|
getVM(requestParameters: GetVMRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VirtualMachineDetail>;
|
|
1304
|
+
/**
|
|
1305
|
+
* Creates request options for getVMLabels without sending the request
|
|
1306
|
+
*/
|
|
1307
|
+
getVMLabelsRequestOpts(): Promise<runtime.RequestOpts>;
|
|
1308
|
+
/**
|
|
1309
|
+
* Get all distinct labels in use across VMs
|
|
1310
|
+
*/
|
|
1311
|
+
getVMLabelsRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<VMLabelsResponse>>;
|
|
1312
|
+
/**
|
|
1313
|
+
* Get all distinct labels in use across VMs
|
|
1314
|
+
*/
|
|
1315
|
+
getVMLabels(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VMLabelsResponse>;
|
|
1047
1316
|
/**
|
|
1048
1317
|
* Creates request options for getVMUtilization without sending the request
|
|
1049
1318
|
*/
|
|
@@ -1092,6 +1361,18 @@ export declare class DefaultApi extends runtime.BaseAPI implements DefaultApiInt
|
|
|
1092
1361
|
* List all groups
|
|
1093
1362
|
*/
|
|
1094
1363
|
listGroups(requestParameters?: ListGroupsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GroupListResponse>;
|
|
1364
|
+
/**
|
|
1365
|
+
* Creates request options for listRightsizingReportClusters without sending the request
|
|
1366
|
+
*/
|
|
1367
|
+
listRightsizingReportClustersRequestOpts(requestParameters: ListRightsizingReportClustersRequest): Promise<runtime.RequestOpts>;
|
|
1368
|
+
/**
|
|
1369
|
+
* Get cluster-level utilization aggregates for a specific report
|
|
1370
|
+
*/
|
|
1371
|
+
listRightsizingReportClustersRaw(requestParameters: ListRightsizingReportClustersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<RightsizingClusterListResponse>>;
|
|
1372
|
+
/**
|
|
1373
|
+
* Get cluster-level utilization aggregates for a specific report
|
|
1374
|
+
*/
|
|
1375
|
+
listRightsizingReportClusters(requestParameters: ListRightsizingReportClustersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<RightsizingClusterListResponse>;
|
|
1095
1376
|
/**
|
|
1096
1377
|
* Creates request options for listRightsizingReports without sending the request
|
|
1097
1378
|
*/
|
|
@@ -1132,18 +1413,6 @@ export declare class DefaultApi extends runtime.BaseAPI implements DefaultApiInt
|
|
|
1132
1413
|
* Verify vCenter credentials and permissions
|
|
1133
1414
|
*/
|
|
1134
1415
|
putForecasterCredentials(requestParameters: PutForecasterCredentialsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
1135
|
-
/**
|
|
1136
|
-
* Creates request options for putInspectorCredentials without sending the request
|
|
1137
|
-
*/
|
|
1138
|
-
putInspectorCredentialsRequestOpts(requestParameters: PutInspectorCredentialsRequest): Promise<runtime.RequestOpts>;
|
|
1139
|
-
/**
|
|
1140
|
-
* Set or replace inspector credentials
|
|
1141
|
-
*/
|
|
1142
|
-
putInspectorCredentialsRaw(requestParameters: PutInspectorCredentialsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
1143
|
-
/**
|
|
1144
|
-
* Set or replace inspector credentials
|
|
1145
|
-
*/
|
|
1146
|
-
putInspectorCredentials(requestParameters: PutInspectorCredentialsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
1147
1416
|
/**
|
|
1148
1417
|
* Creates request options for putInspectorVddk without sending the request
|
|
1149
1418
|
*/
|
|
@@ -1294,4 +1563,40 @@ export declare class DefaultApi extends runtime.BaseAPI implements DefaultApiInt
|
|
|
1294
1563
|
* Update group
|
|
1295
1564
|
*/
|
|
1296
1565
|
updateGroup(requestParameters: UpdateGroupOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Group>;
|
|
1566
|
+
/**
|
|
1567
|
+
* Creates request options for updateLabelVMs without sending the request
|
|
1568
|
+
*/
|
|
1569
|
+
updateLabelVMsRequestOpts(requestParameters: UpdateLabelVMsOperationRequest): Promise<runtime.RequestOpts>;
|
|
1570
|
+
/**
|
|
1571
|
+
* Modify label VM membership (add/remove label to/from VMs)
|
|
1572
|
+
*/
|
|
1573
|
+
updateLabelVMsRaw(requestParameters: UpdateLabelVMsOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
1574
|
+
/**
|
|
1575
|
+
* Modify label VM membership (add/remove label to/from VMs)
|
|
1576
|
+
*/
|
|
1577
|
+
updateLabelVMs(requestParameters: UpdateLabelVMsOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
1578
|
+
/**
|
|
1579
|
+
* Creates request options for updateVM without sending the request
|
|
1580
|
+
*/
|
|
1581
|
+
updateVMRequestOpts(requestParameters: UpdateVMRequest): Promise<runtime.RequestOpts>;
|
|
1582
|
+
/**
|
|
1583
|
+
* Update VM properties
|
|
1584
|
+
*/
|
|
1585
|
+
updateVMRaw(requestParameters: UpdateVMRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
1586
|
+
/**
|
|
1587
|
+
* Update VM properties
|
|
1588
|
+
*/
|
|
1589
|
+
updateVM(requestParameters: UpdateVMRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
1590
|
+
/**
|
|
1591
|
+
* Creates request options for validateInspectorCredentials without sending the request
|
|
1592
|
+
*/
|
|
1593
|
+
validateInspectorCredentialsRequestOpts(requestParameters: ValidateInspectorCredentialsRequest): Promise<runtime.RequestOpts>;
|
|
1594
|
+
/**
|
|
1595
|
+
* Validate vCenter credentials for inspector
|
|
1596
|
+
*/
|
|
1597
|
+
validateInspectorCredentialsRaw(requestParameters: ValidateInspectorCredentialsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
1598
|
+
/**
|
|
1599
|
+
* Validate vCenter credentials for inspector
|
|
1600
|
+
*/
|
|
1601
|
+
validateInspectorCredentials(requestParameters: ValidateInspectorCredentialsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
1297
1602
|
}
|