@openshift-migration-advisor/planner-sdk 0.13.3 → 0.13.4-ec47a336a620

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.
Files changed (69) hide show
  1. package/.openapi-generator/FILES +14 -0
  2. package/README.md +9 -2
  3. package/dist/apis/SizingApi.d.ts +61 -0
  4. package/dist/apis/SizingApi.js +74 -0
  5. package/dist/apis/index.d.ts +1 -0
  6. package/dist/apis/index.js +1 -0
  7. package/dist/esm/apis/SizingApi.d.ts +61 -0
  8. package/dist/esm/apis/SizingApi.js +70 -0
  9. package/dist/esm/apis/index.d.ts +1 -0
  10. package/dist/esm/apis/index.js +1 -0
  11. package/dist/esm/models/ClusterFeatures.d.ts +54 -0
  12. package/dist/esm/models/ClusterFeatures.js +54 -0
  13. package/dist/esm/models/ClusterRequirementsRequest.d.ts +6 -23
  14. package/dist/esm/models/ClusterRequirementsRequest.js +6 -21
  15. package/dist/esm/models/ClusterUtilization.d.ts +68 -0
  16. package/dist/esm/models/ClusterUtilization.js +67 -0
  17. package/dist/esm/models/CpuOverCommitRatio.d.ts +27 -0
  18. package/dist/esm/models/CpuOverCommitRatio.js +45 -0
  19. package/dist/esm/models/InventoryData.d.ts +14 -0
  20. package/dist/esm/models/InventoryData.js +6 -0
  21. package/dist/esm/models/MemoryOverCommitRatio.d.ts +26 -0
  22. package/dist/esm/models/MemoryOverCommitRatio.js +44 -0
  23. package/dist/esm/models/StandaloneClusterRequirementsRequest.d.ts +114 -0
  24. package/dist/esm/models/StandaloneClusterRequirementsRequest.js +88 -0
  25. package/dist/esm/models/StandaloneClusterRequirementsResponse.d.ts +40 -0
  26. package/dist/esm/models/StandaloneClusterRequirementsResponse.js +49 -0
  27. package/dist/esm/models/index.d.ts +6 -0
  28. package/dist/esm/models/index.js +6 -0
  29. package/dist/models/ClusterFeatures.d.ts +54 -0
  30. package/dist/models/ClusterFeatures.js +62 -0
  31. package/dist/models/ClusterRequirementsRequest.d.ts +6 -23
  32. package/dist/models/ClusterRequirementsRequest.js +7 -22
  33. package/dist/models/ClusterUtilization.d.ts +68 -0
  34. package/dist/models/ClusterUtilization.js +74 -0
  35. package/dist/models/CpuOverCommitRatio.d.ts +27 -0
  36. package/dist/models/CpuOverCommitRatio.js +53 -0
  37. package/dist/models/InventoryData.d.ts +14 -0
  38. package/dist/models/InventoryData.js +6 -0
  39. package/dist/models/MemoryOverCommitRatio.d.ts +26 -0
  40. package/dist/models/MemoryOverCommitRatio.js +52 -0
  41. package/dist/models/StandaloneClusterRequirementsRequest.d.ts +114 -0
  42. package/dist/models/StandaloneClusterRequirementsRequest.js +96 -0
  43. package/dist/models/StandaloneClusterRequirementsResponse.d.ts +40 -0
  44. package/dist/models/StandaloneClusterRequirementsResponse.js +56 -0
  45. package/dist/models/index.d.ts +6 -0
  46. package/dist/models/index.js +6 -0
  47. package/docs/AccountApi.md +9 -0
  48. package/docs/ClusterFeatures.md +38 -0
  49. package/docs/ClusterRequirementsRequest.md +2 -2
  50. package/docs/ClusterUtilization.md +46 -0
  51. package/docs/CpuOverCommitRatio.md +33 -0
  52. package/docs/ImageApi.md +2 -0
  53. package/docs/InventoryData.md +4 -0
  54. package/docs/MemoryOverCommitRatio.md +33 -0
  55. package/docs/SizingApi.md +80 -0
  56. package/docs/StandaloneClusterRequirementsRequest.md +59 -0
  57. package/docs/StandaloneClusterRequirementsResponse.md +37 -0
  58. package/package.json +1 -1
  59. package/src/apis/SizingApi.ts +114 -0
  60. package/src/apis/index.ts +1 -0
  61. package/src/models/ClusterFeatures.ts +94 -0
  62. package/src/models/ClusterRequirementsRequest.ts +23 -29
  63. package/src/models/ClusterUtilization.ts +120 -0
  64. package/src/models/CpuOverCommitRatio.ts +55 -0
  65. package/src/models/InventoryData.ts +30 -0
  66. package/src/models/MemoryOverCommitRatio.ts +54 -0
  67. package/src/models/StandaloneClusterRequirementsRequest.ts +194 -0
  68. package/src/models/StandaloneClusterRequirementsResponse.ts +90 -0
  69. package/src/models/index.ts +6 -0
@@ -6,13 +6,16 @@ export * from './Assessment.js';
6
6
  export * from './AssessmentForm.js';
7
7
  export * from './AssessmentSharing.js';
8
8
  export * from './AssessmentUpdate.js';
9
+ export * from './ClusterFeatures.js';
9
10
  export * from './ClusterRequirementsRequest.js';
10
11
  export * from './ClusterRequirementsResponse.js';
11
12
  export * from './ClusterRequirementsStoredInput.js';
12
13
  export * from './ClusterSizing.js';
14
+ export * from './ClusterUtilization.js';
13
15
  export * from './ComplexityDiskScoreEntry.js';
14
16
  export * from './ComplexityOSNameEntry.js';
15
17
  export * from './ComplexityOSScoreEntry.js';
18
+ export * from './CpuOverCommitRatio.js';
16
19
  export * from './Customer.js';
17
20
  export * from './Datastore.js';
18
21
  export * from './DiskSizeTierSummary.js';
@@ -37,6 +40,7 @@ export * from './Label.js';
37
40
  export * from './Member.js';
38
41
  export * from './MemberCreate.js';
39
42
  export * from './MemberUpdate.js';
43
+ export * from './MemoryOverCommitRatio.js';
40
44
  export * from './MigrationComplexityRequest.js';
41
45
  export * from './MigrationComplexityResponse.js';
42
46
  export * from './MigrationEstimationByComplexityResponse.js';
@@ -63,6 +67,8 @@ export * from './Source.js';
63
67
  export * from './SourceCreate.js';
64
68
  export * from './SourceInfra.js';
65
69
  export * from './SourceUpdate.js';
70
+ export * from './StandaloneClusterRequirementsRequest.js';
71
+ export * from './StandaloneClusterRequirementsResponse.js';
66
72
  export * from './Status.js';
67
73
  export * from './UpdateInventory.js';
68
74
  export * from './VCenter.js';
@@ -0,0 +1,54 @@
1
+ /**
2
+ * OpenShift Migration Advisor API
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v1alpha1
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface ClusterFeatures
16
+ */
17
+ export interface ClusterFeatures {
18
+ /**
19
+ * Whether DRS (Distributed Resource Scheduler) is enabled for this cluster
20
+ * @type {boolean}
21
+ * @memberof ClusterFeatures
22
+ */
23
+ drsEnabled?: boolean;
24
+ /**
25
+ * DRS automation mode for the cluster
26
+ * @type {ClusterFeaturesDrsModeEnum}
27
+ * @memberof ClusterFeatures
28
+ */
29
+ drsMode?: ClusterFeaturesDrsModeEnum;
30
+ /**
31
+ * Whether Storage DRS is enabled for this cluster
32
+ * @type {boolean}
33
+ * @memberof ClusterFeatures
34
+ */
35
+ storageDrsEnabled?: boolean;
36
+ }
37
+ /**
38
+ * @export
39
+ */
40
+ export declare const ClusterFeaturesDrsModeEnum: {
41
+ readonly FullyAutomated: "Fully Automated";
42
+ readonly PartiallyAutomated: "Partially Automated";
43
+ readonly Manual: "Manual";
44
+ readonly None: "None";
45
+ };
46
+ export type ClusterFeaturesDrsModeEnum = typeof ClusterFeaturesDrsModeEnum[keyof typeof ClusterFeaturesDrsModeEnum];
47
+ /**
48
+ * Check if a given object implements the ClusterFeatures interface.
49
+ */
50
+ export declare function instanceOfClusterFeatures(value: object): value is ClusterFeatures;
51
+ export declare function ClusterFeaturesFromJSON(json: any): ClusterFeatures;
52
+ export declare function ClusterFeaturesFromJSONTyped(json: any, ignoreDiscriminator: boolean): ClusterFeatures;
53
+ export declare function ClusterFeaturesToJSON(json: any): ClusterFeatures;
54
+ export declare function ClusterFeaturesToJSONTyped(value?: ClusterFeatures | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,62 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * OpenShift Migration Advisor API
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: v1alpha1
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.ClusterFeaturesDrsModeEnum = void 0;
17
+ exports.instanceOfClusterFeatures = instanceOfClusterFeatures;
18
+ exports.ClusterFeaturesFromJSON = ClusterFeaturesFromJSON;
19
+ exports.ClusterFeaturesFromJSONTyped = ClusterFeaturesFromJSONTyped;
20
+ exports.ClusterFeaturesToJSON = ClusterFeaturesToJSON;
21
+ exports.ClusterFeaturesToJSONTyped = ClusterFeaturesToJSONTyped;
22
+ /**
23
+ * @export
24
+ */
25
+ exports.ClusterFeaturesDrsModeEnum = {
26
+ FullyAutomated: 'Fully Automated',
27
+ PartiallyAutomated: 'Partially Automated',
28
+ Manual: 'Manual',
29
+ None: 'None'
30
+ };
31
+ /**
32
+ * Check if a given object implements the ClusterFeatures interface.
33
+ */
34
+ function instanceOfClusterFeatures(value) {
35
+ return true;
36
+ }
37
+ function ClusterFeaturesFromJSON(json) {
38
+ return ClusterFeaturesFromJSONTyped(json, false);
39
+ }
40
+ function ClusterFeaturesFromJSONTyped(json, ignoreDiscriminator) {
41
+ if (json == null) {
42
+ return json;
43
+ }
44
+ return {
45
+ 'drsEnabled': json['drsEnabled'] == null ? undefined : json['drsEnabled'],
46
+ 'drsMode': json['drsMode'] == null ? undefined : json['drsMode'],
47
+ 'storageDrsEnabled': json['storageDrsEnabled'] == null ? undefined : json['storageDrsEnabled'],
48
+ };
49
+ }
50
+ function ClusterFeaturesToJSON(json) {
51
+ return ClusterFeaturesToJSONTyped(json, false);
52
+ }
53
+ function ClusterFeaturesToJSONTyped(value, ignoreDiscriminator = false) {
54
+ if (value == null) {
55
+ return value;
56
+ }
57
+ return {
58
+ 'drsEnabled': value['drsEnabled'],
59
+ 'drsMode': value['drsMode'],
60
+ 'storageDrsEnabled': value['storageDrsEnabled'],
61
+ };
62
+ }
@@ -9,6 +9,8 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import type { CpuOverCommitRatio } from './CpuOverCommitRatio.js';
13
+ import type { MemoryOverCommitRatio } from './MemoryOverCommitRatio.js';
12
14
  /**
13
15
  * Request payload for calculating cluster requirements
14
16
  * @export
@@ -23,16 +25,16 @@ export interface ClusterRequirementsRequest {
23
25
  clusterId: string;
24
26
  /**
25
27
  * CPU over-commit ratio (e.g., "1:4")
26
- * @type {ClusterRequirementsRequestCpuOverCommitRatioEnum}
28
+ * @type {CpuOverCommitRatio}
27
29
  * @memberof ClusterRequirementsRequest
28
30
  */
29
- cpuOverCommitRatio: ClusterRequirementsRequestCpuOverCommitRatioEnum;
31
+ cpuOverCommitRatio: CpuOverCommitRatio;
30
32
  /**
31
33
  * Memory over-commit ratio (e.g., "1:2")
32
- * @type {ClusterRequirementsRequestMemoryOverCommitRatioEnum}
34
+ * @type {MemoryOverCommitRatio}
33
35
  * @memberof ClusterRequirementsRequest
34
36
  */
35
- memoryOverCommitRatio: ClusterRequirementsRequestMemoryOverCommitRatioEnum;
37
+ memoryOverCommitRatio: MemoryOverCommitRatio;
36
38
  /**
37
39
  * CPU cores per worker node
38
40
  * @type {number}
@@ -82,25 +84,6 @@ export interface ClusterRequirementsRequest {
82
84
  */
83
85
  hostedControlPlane?: boolean;
84
86
  }
85
- /**
86
- * @export
87
- */
88
- export declare const ClusterRequirementsRequestCpuOverCommitRatioEnum: {
89
- readonly CpuOneToOne: "1:1";
90
- readonly CpuOneToTwo: "1:2";
91
- readonly CpuOneToFour: "1:4";
92
- readonly CpuOneToSix: "1:6";
93
- };
94
- export type ClusterRequirementsRequestCpuOverCommitRatioEnum = typeof ClusterRequirementsRequestCpuOverCommitRatioEnum[keyof typeof ClusterRequirementsRequestCpuOverCommitRatioEnum];
95
- /**
96
- * @export
97
- */
98
- export declare const ClusterRequirementsRequestMemoryOverCommitRatioEnum: {
99
- readonly MemoryOneToOne: "1:1";
100
- readonly MemoryOneToTwo: "1:2";
101
- readonly MemoryOneToFour: "1:4";
102
- };
103
- export type ClusterRequirementsRequestMemoryOverCommitRatioEnum = typeof ClusterRequirementsRequestMemoryOverCommitRatioEnum[keyof typeof ClusterRequirementsRequestMemoryOverCommitRatioEnum];
104
87
  /**
105
88
  * @export
106
89
  */
@@ -13,29 +13,14 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.ClusterRequirementsRequestControlPlaneNodeCountEnum = exports.ClusterRequirementsRequestMemoryOverCommitRatioEnum = exports.ClusterRequirementsRequestCpuOverCommitRatioEnum = void 0;
16
+ exports.ClusterRequirementsRequestControlPlaneNodeCountEnum = void 0;
17
17
  exports.instanceOfClusterRequirementsRequest = instanceOfClusterRequirementsRequest;
18
18
  exports.ClusterRequirementsRequestFromJSON = ClusterRequirementsRequestFromJSON;
19
19
  exports.ClusterRequirementsRequestFromJSONTyped = ClusterRequirementsRequestFromJSONTyped;
20
20
  exports.ClusterRequirementsRequestToJSON = ClusterRequirementsRequestToJSON;
21
21
  exports.ClusterRequirementsRequestToJSONTyped = ClusterRequirementsRequestToJSONTyped;
22
- /**
23
- * @export
24
- */
25
- exports.ClusterRequirementsRequestCpuOverCommitRatioEnum = {
26
- CpuOneToOne: '1:1',
27
- CpuOneToTwo: '1:2',
28
- CpuOneToFour: '1:4',
29
- CpuOneToSix: '1:6'
30
- };
31
- /**
32
- * @export
33
- */
34
- exports.ClusterRequirementsRequestMemoryOverCommitRatioEnum = {
35
- MemoryOneToOne: '1:1',
36
- MemoryOneToTwo: '1:2',
37
- MemoryOneToFour: '1:4'
38
- };
22
+ const CpuOverCommitRatio_js_1 = require("./CpuOverCommitRatio.js");
23
+ const MemoryOverCommitRatio_js_1 = require("./MemoryOverCommitRatio.js");
39
24
  /**
40
25
  * @export
41
26
  */
@@ -68,8 +53,8 @@ function ClusterRequirementsRequestFromJSONTyped(json, ignoreDiscriminator) {
68
53
  }
69
54
  return {
70
55
  'clusterId': json['clusterId'],
71
- 'cpuOverCommitRatio': json['cpuOverCommitRatio'],
72
- 'memoryOverCommitRatio': json['memoryOverCommitRatio'],
56
+ 'cpuOverCommitRatio': (0, CpuOverCommitRatio_js_1.CpuOverCommitRatioFromJSON)(json['cpuOverCommitRatio']),
57
+ 'memoryOverCommitRatio': (0, MemoryOverCommitRatio_js_1.MemoryOverCommitRatioFromJSON)(json['memoryOverCommitRatio']),
73
58
  'workerNodeCPU': json['workerNodeCPU'],
74
59
  'workerNodeMemory': json['workerNodeMemory'],
75
60
  'workerNodeThreads': json['workerNodeThreads'] == null ? undefined : json['workerNodeThreads'],
@@ -89,8 +74,8 @@ function ClusterRequirementsRequestToJSONTyped(value, ignoreDiscriminator = fals
89
74
  }
90
75
  return {
91
76
  'clusterId': value['clusterId'],
92
- 'cpuOverCommitRatio': value['cpuOverCommitRatio'],
93
- 'memoryOverCommitRatio': value['memoryOverCommitRatio'],
77
+ 'cpuOverCommitRatio': (0, CpuOverCommitRatio_js_1.CpuOverCommitRatioToJSON)(value['cpuOverCommitRatio']),
78
+ 'memoryOverCommitRatio': (0, MemoryOverCommitRatio_js_1.MemoryOverCommitRatioToJSON)(value['memoryOverCommitRatio']),
94
79
  'workerNodeCPU': value['workerNodeCPU'],
95
80
  'workerNodeMemory': value['workerNodeMemory'],
96
81
  'workerNodeThreads': value['workerNodeThreads'],
@@ -0,0 +1,68 @@
1
+ /**
2
+ * OpenShift Migration Advisor API
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v1alpha1
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface ClusterUtilization
16
+ */
17
+ export interface ClusterUtilization {
18
+ /**
19
+ * Average CPU utilization percentage (0-100)
20
+ * @type {number}
21
+ * @memberof ClusterUtilization
22
+ */
23
+ cpuAvg: number;
24
+ /**
25
+ * 95th percentile CPU utilization percentage (0-100)
26
+ * @type {number}
27
+ * @memberof ClusterUtilization
28
+ */
29
+ cpuP95: number;
30
+ /**
31
+ * Maximum CPU utilization percentage (0-100)
32
+ * @type {number}
33
+ * @memberof ClusterUtilization
34
+ */
35
+ cpuMax: number;
36
+ /**
37
+ * Average memory utilization percentage (0-100)
38
+ * @type {number}
39
+ * @memberof ClusterUtilization
40
+ */
41
+ memAvg: number;
42
+ /**
43
+ * 95th percentile memory utilization percentage (0-100)
44
+ * @type {number}
45
+ * @memberof ClusterUtilization
46
+ */
47
+ memP95: number;
48
+ /**
49
+ * Maximum memory utilization percentage (0-100)
50
+ * @type {number}
51
+ * @memberof ClusterUtilization
52
+ */
53
+ memMax: number;
54
+ /**
55
+ * Data coverage confidence percentage (0-100), calculated as vCPU-weighted coverage
56
+ * @type {number}
57
+ * @memberof ClusterUtilization
58
+ */
59
+ confidence: number;
60
+ }
61
+ /**
62
+ * Check if a given object implements the ClusterUtilization interface.
63
+ */
64
+ export declare function instanceOfClusterUtilization(value: object): value is ClusterUtilization;
65
+ export declare function ClusterUtilizationFromJSON(json: any): ClusterUtilization;
66
+ export declare function ClusterUtilizationFromJSONTyped(json: any, ignoreDiscriminator: boolean): ClusterUtilization;
67
+ export declare function ClusterUtilizationToJSON(json: any): ClusterUtilization;
68
+ export declare function ClusterUtilizationToJSONTyped(value?: ClusterUtilization | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,74 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * OpenShift Migration Advisor API
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: v1alpha1
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.instanceOfClusterUtilization = instanceOfClusterUtilization;
17
+ exports.ClusterUtilizationFromJSON = ClusterUtilizationFromJSON;
18
+ exports.ClusterUtilizationFromJSONTyped = ClusterUtilizationFromJSONTyped;
19
+ exports.ClusterUtilizationToJSON = ClusterUtilizationToJSON;
20
+ exports.ClusterUtilizationToJSONTyped = ClusterUtilizationToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the ClusterUtilization interface.
23
+ */
24
+ function instanceOfClusterUtilization(value) {
25
+ if ((!('cpuAvg' in value) && !('cpu_avg' in value)) || (value['cpuAvg'] === undefined && value['cpu_avg'] === undefined))
26
+ return false;
27
+ if ((!('cpuP95' in value) && !('cpu_p95' in value)) || (value['cpuP95'] === undefined && value['cpu_p95'] === undefined))
28
+ return false;
29
+ if ((!('cpuMax' in value) && !('cpu_max' in value)) || (value['cpuMax'] === undefined && value['cpu_max'] === undefined))
30
+ return false;
31
+ if ((!('memAvg' in value) && !('mem_avg' in value)) || (value['memAvg'] === undefined && value['mem_avg'] === undefined))
32
+ return false;
33
+ if ((!('memP95' in value) && !('mem_p95' in value)) || (value['memP95'] === undefined && value['mem_p95'] === undefined))
34
+ return false;
35
+ if ((!('memMax' in value) && !('mem_max' in value)) || (value['memMax'] === undefined && value['mem_max'] === undefined))
36
+ return false;
37
+ if (!('confidence' in value) || value['confidence'] === undefined)
38
+ return false;
39
+ return true;
40
+ }
41
+ function ClusterUtilizationFromJSON(json) {
42
+ return ClusterUtilizationFromJSONTyped(json, false);
43
+ }
44
+ function ClusterUtilizationFromJSONTyped(json, ignoreDiscriminator) {
45
+ if (json == null) {
46
+ return json;
47
+ }
48
+ return {
49
+ 'cpuAvg': json['cpu_avg'],
50
+ 'cpuP95': json['cpu_p95'],
51
+ 'cpuMax': json['cpu_max'],
52
+ 'memAvg': json['mem_avg'],
53
+ 'memP95': json['mem_p95'],
54
+ 'memMax': json['mem_max'],
55
+ 'confidence': json['confidence'],
56
+ };
57
+ }
58
+ function ClusterUtilizationToJSON(json) {
59
+ return ClusterUtilizationToJSONTyped(json, false);
60
+ }
61
+ function ClusterUtilizationToJSONTyped(value, ignoreDiscriminator = false) {
62
+ if (value == null) {
63
+ return value;
64
+ }
65
+ return {
66
+ 'cpu_avg': value['cpuAvg'],
67
+ 'cpu_p95': value['cpuP95'],
68
+ 'cpu_max': value['cpuMax'],
69
+ 'mem_avg': value['memAvg'],
70
+ 'mem_p95': value['memP95'],
71
+ 'mem_max': value['memMax'],
72
+ 'confidence': value['confidence'],
73
+ };
74
+ }
@@ -0,0 +1,27 @@
1
+ /**
2
+ * OpenShift Migration Advisor API
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v1alpha1
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * CPU over-commit ratio
14
+ * @export
15
+ */
16
+ export declare const CpuOverCommitRatio: {
17
+ readonly CpuOneToOne: "1:1";
18
+ readonly CpuOneToTwo: "1:2";
19
+ readonly CpuOneToFour: "1:4";
20
+ readonly CpuOneToSix: "1:6";
21
+ };
22
+ export type CpuOverCommitRatio = typeof CpuOverCommitRatio[keyof typeof CpuOverCommitRatio];
23
+ export declare function instanceOfCpuOverCommitRatio(value: any): boolean;
24
+ export declare function CpuOverCommitRatioFromJSON(json: any): CpuOverCommitRatio;
25
+ export declare function CpuOverCommitRatioFromJSONTyped(json: any, ignoreDiscriminator: boolean): CpuOverCommitRatio;
26
+ export declare function CpuOverCommitRatioToJSON(value?: CpuOverCommitRatio | null): any;
27
+ export declare function CpuOverCommitRatioToJSONTyped(value: any, ignoreDiscriminator: boolean): CpuOverCommitRatio;
@@ -0,0 +1,53 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * OpenShift Migration Advisor API
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: v1alpha1
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.CpuOverCommitRatio = void 0;
17
+ exports.instanceOfCpuOverCommitRatio = instanceOfCpuOverCommitRatio;
18
+ exports.CpuOverCommitRatioFromJSON = CpuOverCommitRatioFromJSON;
19
+ exports.CpuOverCommitRatioFromJSONTyped = CpuOverCommitRatioFromJSONTyped;
20
+ exports.CpuOverCommitRatioToJSON = CpuOverCommitRatioToJSON;
21
+ exports.CpuOverCommitRatioToJSONTyped = CpuOverCommitRatioToJSONTyped;
22
+ /**
23
+ * CPU over-commit ratio
24
+ * @export
25
+ */
26
+ exports.CpuOverCommitRatio = {
27
+ CpuOneToOne: '1:1',
28
+ CpuOneToTwo: '1:2',
29
+ CpuOneToFour: '1:4',
30
+ CpuOneToSix: '1:6'
31
+ };
32
+ function instanceOfCpuOverCommitRatio(value) {
33
+ for (const key in exports.CpuOverCommitRatio) {
34
+ if (Object.prototype.hasOwnProperty.call(exports.CpuOverCommitRatio, key)) {
35
+ if (exports.CpuOverCommitRatio[key] === value) {
36
+ return true;
37
+ }
38
+ }
39
+ }
40
+ return false;
41
+ }
42
+ function CpuOverCommitRatioFromJSON(json) {
43
+ return CpuOverCommitRatioFromJSONTyped(json, false);
44
+ }
45
+ function CpuOverCommitRatioFromJSONTyped(json, ignoreDiscriminator) {
46
+ return json;
47
+ }
48
+ function CpuOverCommitRatioToJSON(value) {
49
+ return value;
50
+ }
51
+ function CpuOverCommitRatioToJSONTyped(value, ignoreDiscriminator) {
52
+ return value;
53
+ }
@@ -11,7 +11,9 @@
11
11
  */
12
12
  import type { VCenter } from './VCenter.js';
13
13
  import type { Infra } from './Infra.js';
14
+ import type { ClusterUtilization } from './ClusterUtilization.js';
14
15
  import type { VMs } from './VMs.js';
16
+ import type { ClusterFeatures } from './ClusterFeatures.js';
15
17
  /**
16
18
  *
17
19
  * @export
@@ -24,6 +26,18 @@ export interface InventoryData {
24
26
  * @memberof InventoryData
25
27
  */
26
28
  vcenter?: VCenter;
29
+ /**
30
+ *
31
+ * @type {ClusterFeatures}
32
+ * @memberof InventoryData
33
+ */
34
+ clusterFeatures?: ClusterFeatures;
35
+ /**
36
+ *
37
+ * @type {ClusterUtilization}
38
+ * @memberof InventoryData
39
+ */
40
+ clusterUtilization?: ClusterUtilization;
27
41
  /**
28
42
  *
29
43
  * @type {VMs}
@@ -20,7 +20,9 @@ exports.InventoryDataToJSON = InventoryDataToJSON;
20
20
  exports.InventoryDataToJSONTyped = InventoryDataToJSONTyped;
21
21
  const VCenter_js_1 = require("./VCenter.js");
22
22
  const Infra_js_1 = require("./Infra.js");
23
+ const ClusterUtilization_js_1 = require("./ClusterUtilization.js");
23
24
  const VMs_js_1 = require("./VMs.js");
25
+ const ClusterFeatures_js_1 = require("./ClusterFeatures.js");
24
26
  /**
25
27
  * Check if a given object implements the InventoryData interface.
26
28
  */
@@ -40,6 +42,8 @@ function InventoryDataFromJSONTyped(json, ignoreDiscriminator) {
40
42
  }
41
43
  return {
42
44
  'vcenter': json['vcenter'] == null ? undefined : (0, VCenter_js_1.VCenterFromJSON)(json['vcenter']),
45
+ 'clusterFeatures': json['clusterFeatures'] == null ? undefined : (0, ClusterFeatures_js_1.ClusterFeaturesFromJSON)(json['clusterFeatures']),
46
+ 'clusterUtilization': json['clusterUtilization'] == null ? undefined : (0, ClusterUtilization_js_1.ClusterUtilizationFromJSON)(json['clusterUtilization']),
43
47
  'vms': (0, VMs_js_1.VMsFromJSON)(json['vms']),
44
48
  'infra': (0, Infra_js_1.InfraFromJSON)(json['infra']),
45
49
  };
@@ -53,6 +57,8 @@ function InventoryDataToJSONTyped(value, ignoreDiscriminator = false) {
53
57
  }
54
58
  return {
55
59
  'vcenter': (0, VCenter_js_1.VCenterToJSON)(value['vcenter']),
60
+ 'clusterFeatures': (0, ClusterFeatures_js_1.ClusterFeaturesToJSON)(value['clusterFeatures']),
61
+ 'clusterUtilization': (0, ClusterUtilization_js_1.ClusterUtilizationToJSON)(value['clusterUtilization']),
56
62
  'vms': (0, VMs_js_1.VMsToJSON)(value['vms']),
57
63
  'infra': (0, Infra_js_1.InfraToJSON)(value['infra']),
58
64
  };
@@ -0,0 +1,26 @@
1
+ /**
2
+ * OpenShift Migration Advisor API
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v1alpha1
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * Memory over-commit ratio
14
+ * @export
15
+ */
16
+ export declare const MemoryOverCommitRatio: {
17
+ readonly MemoryOneToOne: "1:1";
18
+ readonly MemoryOneToTwo: "1:2";
19
+ readonly MemoryOneToFour: "1:4";
20
+ };
21
+ export type MemoryOverCommitRatio = typeof MemoryOverCommitRatio[keyof typeof MemoryOverCommitRatio];
22
+ export declare function instanceOfMemoryOverCommitRatio(value: any): boolean;
23
+ export declare function MemoryOverCommitRatioFromJSON(json: any): MemoryOverCommitRatio;
24
+ export declare function MemoryOverCommitRatioFromJSONTyped(json: any, ignoreDiscriminator: boolean): MemoryOverCommitRatio;
25
+ export declare function MemoryOverCommitRatioToJSON(value?: MemoryOverCommitRatio | null): any;
26
+ export declare function MemoryOverCommitRatioToJSONTyped(value: any, ignoreDiscriminator: boolean): MemoryOverCommitRatio;
@@ -0,0 +1,52 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * OpenShift Migration Advisor API
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: v1alpha1
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.MemoryOverCommitRatio = void 0;
17
+ exports.instanceOfMemoryOverCommitRatio = instanceOfMemoryOverCommitRatio;
18
+ exports.MemoryOverCommitRatioFromJSON = MemoryOverCommitRatioFromJSON;
19
+ exports.MemoryOverCommitRatioFromJSONTyped = MemoryOverCommitRatioFromJSONTyped;
20
+ exports.MemoryOverCommitRatioToJSON = MemoryOverCommitRatioToJSON;
21
+ exports.MemoryOverCommitRatioToJSONTyped = MemoryOverCommitRatioToJSONTyped;
22
+ /**
23
+ * Memory over-commit ratio
24
+ * @export
25
+ */
26
+ exports.MemoryOverCommitRatio = {
27
+ MemoryOneToOne: '1:1',
28
+ MemoryOneToTwo: '1:2',
29
+ MemoryOneToFour: '1:4'
30
+ };
31
+ function instanceOfMemoryOverCommitRatio(value) {
32
+ for (const key in exports.MemoryOverCommitRatio) {
33
+ if (Object.prototype.hasOwnProperty.call(exports.MemoryOverCommitRatio, key)) {
34
+ if (exports.MemoryOverCommitRatio[key] === value) {
35
+ return true;
36
+ }
37
+ }
38
+ }
39
+ return false;
40
+ }
41
+ function MemoryOverCommitRatioFromJSON(json) {
42
+ return MemoryOverCommitRatioFromJSONTyped(json, false);
43
+ }
44
+ function MemoryOverCommitRatioFromJSONTyped(json, ignoreDiscriminator) {
45
+ return json;
46
+ }
47
+ function MemoryOverCommitRatioToJSON(value) {
48
+ return value;
49
+ }
50
+ function MemoryOverCommitRatioToJSONTyped(value, ignoreDiscriminator) {
51
+ return value;
52
+ }