@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
package/.openapi-generator/FILES
CHANGED
|
@@ -5,6 +5,7 @@ README.md
|
|
|
5
5
|
docs/AgentModeRequest.md
|
|
6
6
|
docs/AgentStatus.md
|
|
7
7
|
docs/BenchmarkRun.md
|
|
8
|
+
docs/ClusterFeatures.md
|
|
8
9
|
docs/CollectorStartRequest.md
|
|
9
10
|
docs/CollectorStatus.md
|
|
10
11
|
docs/CreateGroupRequest.md
|
|
@@ -12,6 +13,7 @@ docs/Datastore.md
|
|
|
12
13
|
docs/DatastoreDetail.md
|
|
13
14
|
docs/DatastorePair.md
|
|
14
15
|
docs/DefaultApi.md
|
|
16
|
+
docs/DeleteLabelGloballyResponse.md
|
|
15
17
|
docs/DiskSizeTierSummary.md
|
|
16
18
|
docs/DiskTypeSummary.md
|
|
17
19
|
docs/EstimateRange.md
|
|
@@ -37,6 +39,9 @@ docs/OsInfo.md
|
|
|
37
39
|
docs/PairCapability.md
|
|
38
40
|
docs/PairCapabilityRequest.md
|
|
39
41
|
docs/PutForecasterCredentials403Response.md
|
|
42
|
+
docs/RightsizingClusterListResponse.md
|
|
43
|
+
docs/RightsizingClusterResponse.md
|
|
44
|
+
docs/RightsizingClusterUtilization.md
|
|
40
45
|
docs/RightsizingCollectRequest.md
|
|
41
46
|
docs/RightsizingMetricStats.md
|
|
42
47
|
docs/RightsizingReport.md
|
|
@@ -47,10 +52,12 @@ docs/StartInspectionRequest.md
|
|
|
47
52
|
docs/StopForecasterPair202Response.md
|
|
48
53
|
docs/UpdateGroupRequest.md
|
|
49
54
|
docs/UpdateInventory.md
|
|
55
|
+
docs/UpdateLabelVMsRequest.md
|
|
50
56
|
docs/VCenter.md
|
|
51
57
|
docs/VMDevice.md
|
|
52
58
|
docs/VMDisk.md
|
|
53
59
|
docs/VMIssue.md
|
|
60
|
+
docs/VMLabelsResponse.md
|
|
54
61
|
docs/VMNIC.md
|
|
55
62
|
docs/VMResourceBreakdown.md
|
|
56
63
|
docs/VMs.md
|
|
@@ -60,6 +67,7 @@ docs/VersionInfo.md
|
|
|
60
67
|
docs/VirtualMachine.md
|
|
61
68
|
docs/VirtualMachineDetail.md
|
|
62
69
|
docs/VirtualMachineListResponse.md
|
|
70
|
+
docs/VirtualMachineUpdateRequest.md
|
|
63
71
|
docs/VmInspectionConcern.md
|
|
64
72
|
docs/VmInspectionResults.md
|
|
65
73
|
docs/VmInspectionStatus.md
|
|
@@ -71,12 +79,14 @@ src/index.ts
|
|
|
71
79
|
src/models/AgentModeRequest.ts
|
|
72
80
|
src/models/AgentStatus.ts
|
|
73
81
|
src/models/BenchmarkRun.ts
|
|
82
|
+
src/models/ClusterFeatures.ts
|
|
74
83
|
src/models/CollectorStartRequest.ts
|
|
75
84
|
src/models/CollectorStatus.ts
|
|
76
85
|
src/models/CreateGroupRequest.ts
|
|
77
86
|
src/models/Datastore.ts
|
|
78
87
|
src/models/DatastoreDetail.ts
|
|
79
88
|
src/models/DatastorePair.ts
|
|
89
|
+
src/models/DeleteLabelGloballyResponse.ts
|
|
80
90
|
src/models/DiskSizeTierSummary.ts
|
|
81
91
|
src/models/DiskTypeSummary.ts
|
|
82
92
|
src/models/EstimateRange.ts
|
|
@@ -102,6 +112,9 @@ src/models/OsInfo.ts
|
|
|
102
112
|
src/models/PairCapability.ts
|
|
103
113
|
src/models/PairCapabilityRequest.ts
|
|
104
114
|
src/models/PutForecasterCredentials403Response.ts
|
|
115
|
+
src/models/RightsizingClusterListResponse.ts
|
|
116
|
+
src/models/RightsizingClusterResponse.ts
|
|
117
|
+
src/models/RightsizingClusterUtilization.ts
|
|
105
118
|
src/models/RightsizingCollectRequest.ts
|
|
106
119
|
src/models/RightsizingMetricStats.ts
|
|
107
120
|
src/models/RightsizingReport.ts
|
|
@@ -112,10 +125,12 @@ src/models/StartInspectionRequest.ts
|
|
|
112
125
|
src/models/StopForecasterPair202Response.ts
|
|
113
126
|
src/models/UpdateGroupRequest.ts
|
|
114
127
|
src/models/UpdateInventory.ts
|
|
128
|
+
src/models/UpdateLabelVMsRequest.ts
|
|
115
129
|
src/models/VCenter.ts
|
|
116
130
|
src/models/VMDevice.ts
|
|
117
131
|
src/models/VMDisk.ts
|
|
118
132
|
src/models/VMIssue.ts
|
|
133
|
+
src/models/VMLabelsResponse.ts
|
|
119
134
|
src/models/VMNIC.ts
|
|
120
135
|
src/models/VMResourceBreakdown.ts
|
|
121
136
|
src/models/VMs.ts
|
|
@@ -125,6 +140,7 @@ src/models/VersionInfo.ts
|
|
|
125
140
|
src/models/VirtualMachine.ts
|
|
126
141
|
src/models/VirtualMachineDetail.ts
|
|
127
142
|
src/models/VirtualMachineListResponse.ts
|
|
143
|
+
src/models/VirtualMachineUpdateRequest.ts
|
|
128
144
|
src/models/VmInspectionConcern.ts
|
|
129
145
|
src/models/VmInspectionResults.ts
|
|
130
146
|
src/models/VmInspectionStatus.ts
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @openshift-migration-advisor/agent-sdk@0.12.0-
|
|
1
|
+
# @openshift-migration-advisor/agent-sdk@0.12.0-645d2fae3eee
|
|
2
2
|
|
|
3
3
|
A TypeScript SDK client for the raw.githubusercontent.com API.
|
|
4
4
|
|
|
@@ -53,6 +53,7 @@ All URIs are relative to *https://raw.githubusercontent.com/api/v1*
|
|
|
53
53
|
*DefaultApi* | [**createGroup**](docs/DefaultApi.md#creategroupoperation) | **POST** /groups | Create a new group
|
|
54
54
|
*DefaultApi* | [**deleteForecasterRun**](docs/DefaultApi.md#deleteforecasterrun) | **DELETE** /forecaster/runs/{id} | Delete a benchmark run
|
|
55
55
|
*DefaultApi* | [**deleteGroup**](docs/DefaultApi.md#deletegroup) | **DELETE** /groups/{id} | Delete group
|
|
56
|
+
*DefaultApi* | [**deleteLabelGlobally**](docs/DefaultApi.md#deletelabelglobally) | **DELETE** /vms/labels/{label} | Delete label from all VMs
|
|
56
57
|
*DefaultApi* | [**getAgentStatus**](docs/DefaultApi.md#getagentstatus) | **GET** /agent | Get agent status
|
|
57
58
|
*DefaultApi* | [**getCollectorStatus**](docs/DefaultApi.md#getcollectorstatus) | **GET** /collector | Get collector status
|
|
58
59
|
*DefaultApi* | [**getForecasterDatastores**](docs/DefaultApi.md#getforecasterdatastores) | **POST** /forecaster/datastores | List available datastores
|
|
@@ -63,16 +64,20 @@ All URIs are relative to *https://raw.githubusercontent.com/api/v1*
|
|
|
63
64
|
*DefaultApi* | [**getInspectorStatus**](docs/DefaultApi.md#getinspectorstatus) | **GET** /inspector | Get inspector status
|
|
64
65
|
*DefaultApi* | [**getInspectorVddkStatus**](docs/DefaultApi.md#getinspectorvddkstatus) | **GET** /inspector/vddk | Get VDDK status
|
|
65
66
|
*DefaultApi* | [**getInventory**](docs/DefaultApi.md#getinventory) | **GET** /inventory | Get collected inventory
|
|
66
|
-
*DefaultApi* | [**
|
|
67
|
+
*DefaultApi* | [**getLatestRightsizingClusters**](docs/DefaultApi.md#getlatestrightsizingclusters) | **GET** /cluster_rightsizing | Get cluster-level utilization aggregates for the latest completed report
|
|
68
|
+
*DefaultApi* | [**getRightsizingReport**](docs/DefaultApi.md#getrightsizingreport) | **GET** /rightsizing/{report_id} | Get a specific rightsizing report with full VM metrics
|
|
69
|
+
*DefaultApi* | [**getRightsizingReportCluster**](docs/DefaultApi.md#getrightsizingreportcluster) | **GET** /rightsizing/{report_id}/clusters/{cluster_id} | Get utilization for a specific cluster from a specific report
|
|
70
|
+
*DefaultApi* | [**getRightsizingReportClusters**](docs/DefaultApi.md#getrightsizingreportclusters) | **GET** /cluster_rightsizing/{report_id} | Get cluster-level utilization aggregates for a specific report
|
|
67
71
|
*DefaultApi* | [**getVM**](docs/DefaultApi.md#getvm) | **GET** /vms/{id} | Get details about a vm
|
|
72
|
+
*DefaultApi* | [**getVMLabels**](docs/DefaultApi.md#getvmlabels) | **GET** /vms/labels | Get all distinct labels in use across VMs
|
|
68
73
|
*DefaultApi* | [**getVMUtilization**](docs/DefaultApi.md#getvmutilization) | **GET** /vms/{id}/utilization | Get utilization breakdown for a specific VM
|
|
69
74
|
*DefaultApi* | [**getVMs**](docs/DefaultApi.md#getvms) | **GET** /vms | Get list of VMs with filtering and pagination
|
|
70
75
|
*DefaultApi* | [**getVersion**](docs/DefaultApi.md#getversion) | **GET** /version | Get agent version information
|
|
71
76
|
*DefaultApi* | [**listGroups**](docs/DefaultApi.md#listgroups) | **GET** /groups | List all groups
|
|
77
|
+
*DefaultApi* | [**listRightsizingReportClusters**](docs/DefaultApi.md#listrightsizingreportclusters) | **GET** /rightsizing/{report_id}/clusters | Get cluster-level utilization aggregates for a specific report
|
|
72
78
|
*DefaultApi* | [**listRightsizingReports**](docs/DefaultApi.md#listrightsizingreports) | **GET** /rightsizing | List all rightsizing reports
|
|
73
79
|
*DefaultApi* | [**postForecasterPairCapabilities**](docs/DefaultApi.md#postforecasterpaircapabilities) | **POST** /forecaster/capabilities | Compute pair capabilities
|
|
74
80
|
*DefaultApi* | [**putForecasterCredentials**](docs/DefaultApi.md#putforecastercredentials) | **PUT** /forecaster/credentials | Verify vCenter credentials and permissions
|
|
75
|
-
*DefaultApi* | [**putInspectorCredentials**](docs/DefaultApi.md#putinspectorcredentials) | **PUT** /inspector/credentials | Set or replace inspector credentials
|
|
76
81
|
*DefaultApi* | [**putInspectorVddk**](docs/DefaultApi.md#putinspectorvddk) | **PUT** /inspector/vddk | Upload VDDK tarball
|
|
77
82
|
*DefaultApi* | [**removeVMFromInspection**](docs/DefaultApi.md#removevmfrominspection) | **DELETE** /vms/{id}/inspection | Remove VirtualMachine from inspection queue
|
|
78
83
|
*DefaultApi* | [**setAgentMode**](docs/DefaultApi.md#setagentmode) | **POST** /agent | Change agent mode
|
|
@@ -85,6 +90,9 @@ All URIs are relative to *https://raw.githubusercontent.com/api/v1*
|
|
|
85
90
|
*DefaultApi* | [**stopInspection**](docs/DefaultApi.md#stopinspection) | **DELETE** /inspector | Stop inspector entirely
|
|
86
91
|
*DefaultApi* | [**triggerRightsizingCollection**](docs/DefaultApi.md#triggerrightsizingcollection) | **POST** /rightsizing | Trigger rightsizing metrics collection
|
|
87
92
|
*DefaultApi* | [**updateGroup**](docs/DefaultApi.md#updategroupoperation) | **PATCH** /groups/{id} | Update group
|
|
93
|
+
*DefaultApi* | [**updateLabelVMs**](docs/DefaultApi.md#updatelabelvmsoperation) | **PATCH** /vms/labels/{label} | Modify label VM membership (add/remove label to/from VMs)
|
|
94
|
+
*DefaultApi* | [**updateVM**](docs/DefaultApi.md#updatevm) | **PATCH** /vms/{id} | Update VM properties
|
|
95
|
+
*DefaultApi* | [**validateInspectorCredentials**](docs/DefaultApi.md#validateinspectorcredentials) | **POST** /inspector/credentials | Validate vCenter credentials for inspector
|
|
88
96
|
|
|
89
97
|
|
|
90
98
|
### Models
|
|
@@ -92,12 +100,14 @@ All URIs are relative to *https://raw.githubusercontent.com/api/v1*
|
|
|
92
100
|
- [AgentModeRequest](docs/AgentModeRequest.md)
|
|
93
101
|
- [AgentStatus](docs/AgentStatus.md)
|
|
94
102
|
- [BenchmarkRun](docs/BenchmarkRun.md)
|
|
103
|
+
- [ClusterFeatures](docs/ClusterFeatures.md)
|
|
95
104
|
- [CollectorStartRequest](docs/CollectorStartRequest.md)
|
|
96
105
|
- [CollectorStatus](docs/CollectorStatus.md)
|
|
97
106
|
- [CreateGroupRequest](docs/CreateGroupRequest.md)
|
|
98
107
|
- [Datastore](docs/Datastore.md)
|
|
99
108
|
- [DatastoreDetail](docs/DatastoreDetail.md)
|
|
100
109
|
- [DatastorePair](docs/DatastorePair.md)
|
|
110
|
+
- [DeleteLabelGloballyResponse](docs/DeleteLabelGloballyResponse.md)
|
|
101
111
|
- [DiskSizeTierSummary](docs/DiskSizeTierSummary.md)
|
|
102
112
|
- [DiskTypeSummary](docs/DiskTypeSummary.md)
|
|
103
113
|
- [EstimateRange](docs/EstimateRange.md)
|
|
@@ -123,6 +133,9 @@ All URIs are relative to *https://raw.githubusercontent.com/api/v1*
|
|
|
123
133
|
- [PairCapability](docs/PairCapability.md)
|
|
124
134
|
- [PairCapabilityRequest](docs/PairCapabilityRequest.md)
|
|
125
135
|
- [PutForecasterCredentials403Response](docs/PutForecasterCredentials403Response.md)
|
|
136
|
+
- [RightsizingClusterListResponse](docs/RightsizingClusterListResponse.md)
|
|
137
|
+
- [RightsizingClusterResponse](docs/RightsizingClusterResponse.md)
|
|
138
|
+
- [RightsizingClusterUtilization](docs/RightsizingClusterUtilization.md)
|
|
126
139
|
- [RightsizingCollectRequest](docs/RightsizingCollectRequest.md)
|
|
127
140
|
- [RightsizingMetricStats](docs/RightsizingMetricStats.md)
|
|
128
141
|
- [RightsizingReport](docs/RightsizingReport.md)
|
|
@@ -133,10 +146,12 @@ All URIs are relative to *https://raw.githubusercontent.com/api/v1*
|
|
|
133
146
|
- [StopForecasterPair202Response](docs/StopForecasterPair202Response.md)
|
|
134
147
|
- [UpdateGroupRequest](docs/UpdateGroupRequest.md)
|
|
135
148
|
- [UpdateInventory](docs/UpdateInventory.md)
|
|
149
|
+
- [UpdateLabelVMsRequest](docs/UpdateLabelVMsRequest.md)
|
|
136
150
|
- [VCenter](docs/VCenter.md)
|
|
137
151
|
- [VMDevice](docs/VMDevice.md)
|
|
138
152
|
- [VMDisk](docs/VMDisk.md)
|
|
139
153
|
- [VMIssue](docs/VMIssue.md)
|
|
154
|
+
- [VMLabelsResponse](docs/VMLabelsResponse.md)
|
|
140
155
|
- [VMNIC](docs/VMNIC.md)
|
|
141
156
|
- [VMResourceBreakdown](docs/VMResourceBreakdown.md)
|
|
142
157
|
- [VMs](docs/VMs.md)
|
|
@@ -146,6 +161,7 @@ All URIs are relative to *https://raw.githubusercontent.com/api/v1*
|
|
|
146
161
|
- [VirtualMachine](docs/VirtualMachine.md)
|
|
147
162
|
- [VirtualMachineDetail](docs/VirtualMachineDetail.md)
|
|
148
163
|
- [VirtualMachineListResponse](docs/VirtualMachineListResponse.md)
|
|
164
|
+
- [VirtualMachineUpdateRequest](docs/VirtualMachineUpdateRequest.md)
|
|
149
165
|
- [VmInspectionConcern](docs/VmInspectionConcern.md)
|
|
150
166
|
- [VmInspectionResults](docs/VmInspectionResults.md)
|
|
151
167
|
- [VmInspectionStatus](docs/VmInspectionStatus.md)
|
|
@@ -163,7 +179,7 @@ and is automatically generated by the
|
|
|
163
179
|
[OpenAPI Generator](https://openapi-generator.tech) project:
|
|
164
180
|
|
|
165
181
|
- API version: `v1`
|
|
166
|
-
- Package version: `0.12.0-
|
|
182
|
+
- Package version: `0.12.0-645d2fae3eee`
|
|
167
183
|
- Generator version: `7.23.0-SNAPSHOT`
|
|
168
184
|
- Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
|
|
169
185
|
|