@openshift-migration-advisor/agent-sdk 0.7.0 → 0.8.0-7c64128a18e3

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 (55) hide show
  1. package/.openapi-generator/FILES +2 -2
  2. package/README.md +19 -19
  3. package/dist/apis/DefaultApi.d.ts +51 -56
  4. package/dist/apis/DefaultApi.js +58 -63
  5. package/dist/esm/apis/DefaultApi.d.ts +51 -56
  6. package/dist/esm/apis/DefaultApi.js +59 -64
  7. package/dist/esm/models/AgentStatus.d.ts +2 -2
  8. package/dist/esm/models/AgentStatus.js +2 -2
  9. package/dist/esm/models/CollectorStatus.d.ts +6 -7
  10. package/dist/esm/models/CollectorStatus.js +6 -7
  11. package/dist/esm/models/InspectorStatus.d.ts +6 -7
  12. package/dist/esm/models/InspectorStatus.js +6 -7
  13. package/dist/esm/models/VMIssue.d.ts +6 -6
  14. package/dist/esm/models/VMIssue.js +6 -6
  15. package/dist/esm/models/VMs.d.ts +9 -0
  16. package/dist/esm/models/VMs.js +2 -0
  17. package/dist/esm/models/VddkProperties.d.ts +44 -0
  18. package/dist/esm/models/{VddkPost200Response.js → VddkProperties.js} +13 -11
  19. package/dist/esm/models/VmInspectionStatus.d.ts +1 -1
  20. package/dist/esm/models/VmInspectionStatus.js +1 -1
  21. package/dist/esm/models/index.d.ts +1 -1
  22. package/dist/esm/models/index.js +1 -1
  23. package/dist/models/AgentStatus.d.ts +2 -2
  24. package/dist/models/AgentStatus.js +2 -2
  25. package/dist/models/CollectorStatus.d.ts +6 -7
  26. package/dist/models/CollectorStatus.js +6 -7
  27. package/dist/models/InspectorStatus.d.ts +6 -7
  28. package/dist/models/InspectorStatus.js +6 -7
  29. package/dist/models/VMIssue.d.ts +6 -6
  30. package/dist/models/VMIssue.js +6 -6
  31. package/dist/models/VMs.d.ts +9 -0
  32. package/dist/models/VMs.js +2 -0
  33. package/dist/models/VddkProperties.d.ts +44 -0
  34. package/dist/models/VddkProperties.js +56 -0
  35. package/dist/models/VmInspectionStatus.d.ts +1 -1
  36. package/dist/models/VmInspectionStatus.js +1 -1
  37. package/dist/models/index.d.ts +1 -1
  38. package/dist/models/index.js +1 -1
  39. package/docs/DefaultApi.md +61 -67
  40. package/docs/VMs.md +2 -0
  41. package/docs/{VddkPost200Response.md → VddkProperties.md} +6 -4
  42. package/package.json +1 -1
  43. package/src/apis/DefaultApi.ts +97 -113
  44. package/src/models/AgentStatus.ts +2 -2
  45. package/src/models/CollectorStatus.ts +6 -7
  46. package/src/models/InspectorStatus.ts +6 -7
  47. package/src/models/VMIssue.ts +6 -6
  48. package/src/models/VMs.ts +9 -0
  49. package/src/models/VddkProperties.ts +83 -0
  50. package/src/models/VmInspectionStatus.ts +1 -1
  51. package/src/models/index.ts +1 -1
  52. package/dist/esm/models/VddkPost200Response.d.ts +0 -38
  53. package/dist/models/VddkPost200Response.d.ts +0 -38
  54. package/dist/models/VddkPost200Response.js +0 -54
  55. package/src/models/VddkPost200Response.ts +0 -75
@@ -33,7 +33,7 @@ export * from './VMNIC.js';
33
33
  export * from './VMResourceBreakdown.js';
34
34
  export * from './VMs.js';
35
35
  export * from './VcenterCredentials.js';
36
- export * from './VddkPost200Response.js';
36
+ export * from './VddkProperties.js';
37
37
  export * from './VersionInfo.js';
38
38
  export * from './VirtualMachine.js';
39
39
  export * from './VirtualMachineDetail.js';
@@ -1,38 +0,0 @@
1
- /**
2
- * Assisted Migration Agent API
3
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
- *
5
- * The version of the OpenAPI document: v1
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 VddkPost200Response
16
- */
17
- export interface VddkPost200Response {
18
- /**
19
- * md5 sum of the uploaded tarball
20
- * @type {string}
21
- * @memberof VddkPost200Response
22
- */
23
- md5: string;
24
- /**
25
- * written bytes
26
- * @type {number}
27
- * @memberof VddkPost200Response
28
- */
29
- bytes: number;
30
- }
31
- /**
32
- * Check if a given object implements the VddkPost200Response interface.
33
- */
34
- export declare function instanceOfVddkPost200Response(value: object): value is VddkPost200Response;
35
- export declare function VddkPost200ResponseFromJSON(json: any): VddkPost200Response;
36
- export declare function VddkPost200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): VddkPost200Response;
37
- export declare function VddkPost200ResponseToJSON(json: any): VddkPost200Response;
38
- export declare function VddkPost200ResponseToJSONTyped(value?: VddkPost200Response | null, ignoreDiscriminator?: boolean): any;
@@ -1,38 +0,0 @@
1
- /**
2
- * Assisted Migration Agent API
3
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
- *
5
- * The version of the OpenAPI document: v1
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 VddkPost200Response
16
- */
17
- export interface VddkPost200Response {
18
- /**
19
- * md5 sum of the uploaded tarball
20
- * @type {string}
21
- * @memberof VddkPost200Response
22
- */
23
- md5: string;
24
- /**
25
- * written bytes
26
- * @type {number}
27
- * @memberof VddkPost200Response
28
- */
29
- bytes: number;
30
- }
31
- /**
32
- * Check if a given object implements the VddkPost200Response interface.
33
- */
34
- export declare function instanceOfVddkPost200Response(value: object): value is VddkPost200Response;
35
- export declare function VddkPost200ResponseFromJSON(json: any): VddkPost200Response;
36
- export declare function VddkPost200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): VddkPost200Response;
37
- export declare function VddkPost200ResponseToJSON(json: any): VddkPost200Response;
38
- export declare function VddkPost200ResponseToJSONTyped(value?: VddkPost200Response | null, ignoreDiscriminator?: boolean): any;
@@ -1,54 +0,0 @@
1
- "use strict";
2
- /* tslint:disable */
3
- /* eslint-disable */
4
- /**
5
- * Assisted Migration Agent API
6
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
- *
8
- * The version of the OpenAPI document: v1
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.instanceOfVddkPost200Response = instanceOfVddkPost200Response;
17
- exports.VddkPost200ResponseFromJSON = VddkPost200ResponseFromJSON;
18
- exports.VddkPost200ResponseFromJSONTyped = VddkPost200ResponseFromJSONTyped;
19
- exports.VddkPost200ResponseToJSON = VddkPost200ResponseToJSON;
20
- exports.VddkPost200ResponseToJSONTyped = VddkPost200ResponseToJSONTyped;
21
- /**
22
- * Check if a given object implements the VddkPost200Response interface.
23
- */
24
- function instanceOfVddkPost200Response(value) {
25
- if (!('md5' in value) || value['md5'] === undefined)
26
- return false;
27
- if (!('bytes' in value) || value['bytes'] === undefined)
28
- return false;
29
- return true;
30
- }
31
- function VddkPost200ResponseFromJSON(json) {
32
- return VddkPost200ResponseFromJSONTyped(json, false);
33
- }
34
- function VddkPost200ResponseFromJSONTyped(json, ignoreDiscriminator) {
35
- if (json == null) {
36
- return json;
37
- }
38
- return {
39
- 'md5': json['md5'],
40
- 'bytes': json['bytes'],
41
- };
42
- }
43
- function VddkPost200ResponseToJSON(json) {
44
- return VddkPost200ResponseToJSONTyped(json, false);
45
- }
46
- function VddkPost200ResponseToJSONTyped(value, ignoreDiscriminator = false) {
47
- if (value == null) {
48
- return value;
49
- }
50
- return {
51
- 'md5': value['md5'],
52
- 'bytes': value['bytes'],
53
- };
54
- }
@@ -1,75 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * Assisted Migration Agent API
5
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
- *
7
- * The version of the OpenAPI document: v1
8
- *
9
- *
10
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
- * https://openapi-generator.tech
12
- * Do not edit the class manually.
13
- */
14
-
15
- import { mapValues } from '../runtime.js';
16
- /**
17
- *
18
- * @export
19
- * @interface VddkPost200Response
20
- */
21
- export interface VddkPost200Response {
22
- /**
23
- * md5 sum of the uploaded tarball
24
- * @type {string}
25
- * @memberof VddkPost200Response
26
- */
27
- md5: string;
28
- /**
29
- * written bytes
30
- * @type {number}
31
- * @memberof VddkPost200Response
32
- */
33
- bytes: number;
34
- }
35
-
36
- /**
37
- * Check if a given object implements the VddkPost200Response interface.
38
- */
39
- export function instanceOfVddkPost200Response(value: object): value is VddkPost200Response {
40
- if (!('md5' in value) || value['md5'] === undefined) return false;
41
- if (!('bytes' in value) || value['bytes'] === undefined) return false;
42
- return true;
43
- }
44
-
45
- export function VddkPost200ResponseFromJSON(json: any): VddkPost200Response {
46
- return VddkPost200ResponseFromJSONTyped(json, false);
47
- }
48
-
49
- export function VddkPost200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): VddkPost200Response {
50
- if (json == null) {
51
- return json;
52
- }
53
- return {
54
-
55
- 'md5': json['md5'],
56
- 'bytes': json['bytes'],
57
- };
58
- }
59
-
60
- export function VddkPost200ResponseToJSON(json: any): VddkPost200Response {
61
- return VddkPost200ResponseToJSONTyped(json, false);
62
- }
63
-
64
- export function VddkPost200ResponseToJSONTyped(value?: VddkPost200Response | null, ignoreDiscriminator: boolean = false): any {
65
- if (value == null) {
66
- return value;
67
- }
68
-
69
- return {
70
-
71
- 'md5': value['md5'],
72
- 'bytes': value['bytes'],
73
- };
74
- }
75
-