@quantcdn/quant-client 2.0.13 → 3.0.0

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 (108) hide show
  1. package/README.md +49 -72
  2. package/dist/api/apis.d.ts +30 -0
  3. package/dist/api/apis.js +48 -0
  4. package/dist/api/applicationsApi.d.ts +104 -0
  5. package/dist/api/applicationsApi.js +431 -0
  6. package/dist/api/commandsApi.d.ts +80 -0
  7. package/dist/api/commandsApi.js +316 -0
  8. package/dist/api/composeApi.d.ts +66 -0
  9. package/dist/api/composeApi.js +236 -0
  10. package/dist/api/containersApi.d.ts +67 -0
  11. package/dist/api/containersApi.js +236 -0
  12. package/dist/api/cronApi.d.ts +151 -0
  13. package/dist/api/cronApi.js +681 -0
  14. package/dist/api/environmentsApi.d.ts +194 -0
  15. package/dist/api/environmentsApi.js +861 -0
  16. package/dist/api/sSHAccessApi.d.ts +50 -0
  17. package/dist/api/sSHAccessApi.js +162 -0
  18. package/dist/api/scalingPolicyApi.d.ts +82 -0
  19. package/dist/api/scalingPolicyApi.js +307 -0
  20. package/dist/api/variablesApi.d.ts +83 -0
  21. package/dist/api/variablesApi.js +313 -0
  22. package/dist/api/volumesApi.d.ts +97 -0
  23. package/dist/api/volumesApi.js +405 -0
  24. package/dist/api.d.ts +2 -0
  25. package/dist/api.js +19 -0
  26. package/dist/model/application.d.ts +38 -0
  27. package/dist/model/application.js +93 -0
  28. package/dist/model/command.d.ts +34 -0
  29. package/dist/model/command.js +73 -0
  30. package/dist/model/compose.d.ts +32 -0
  31. package/dist/model/compose.js +58 -0
  32. package/dist/model/configuration.d.ts +26 -0
  33. package/dist/model/configuration.js +30 -0
  34. package/dist/model/container.d.ts +38 -0
  35. package/dist/model/container.js +78 -0
  36. package/dist/model/containerEnvironmentInner.d.ts +26 -0
  37. package/dist/model/containerEnvironmentInner.js +33 -0
  38. package/dist/model/containerImageReference.d.ts +28 -0
  39. package/dist/model/containerImageReference.js +43 -0
  40. package/dist/model/containerMountPointsInner.d.ts +27 -0
  41. package/dist/model/containerMountPointsInner.js +38 -0
  42. package/dist/model/createApplicationRequest.d.ts +28 -0
  43. package/dist/model/createApplicationRequest.js +43 -0
  44. package/dist/model/createCommandRequest.d.ts +25 -0
  45. package/dist/model/createCommandRequest.js +28 -0
  46. package/dist/model/createCronJob422Response.d.ts +26 -0
  47. package/dist/model/createCronJob422Response.js +33 -0
  48. package/dist/model/createCronJobRequest.d.ts +30 -0
  49. package/dist/model/createCronJobRequest.js +56 -0
  50. package/dist/model/createEnvironmentRequest.d.ts +34 -0
  51. package/dist/model/createEnvironmentRequest.js +53 -0
  52. package/dist/model/cron.d.ts +27 -0
  53. package/dist/model/cron.js +38 -0
  54. package/dist/model/cronRun.d.ts +48 -0
  55. package/dist/model/cronRun.js +89 -0
  56. package/dist/model/environment.d.ts +45 -0
  57. package/dist/model/environment.js +103 -0
  58. package/dist/model/getEcrLoginCredentials200Response.d.ts +28 -0
  59. package/dist/model/getEcrLoginCredentials200Response.js +43 -0
  60. package/dist/model/getScalingPolicies200Response.d.ts +26 -0
  61. package/dist/model/getScalingPolicies200Response.js +28 -0
  62. package/dist/model/getSshAccessCredentials200Response.d.ts +34 -0
  63. package/dist/model/getSshAccessCredentials200Response.js +68 -0
  64. package/dist/model/getSshAccessCredentials200ResponseCredentials.d.ts +28 -0
  65. package/dist/model/getSshAccessCredentials200ResponseCredentials.js +43 -0
  66. package/dist/model/models.d.ts +78 -0
  67. package/dist/model/models.js +352 -0
  68. package/dist/model/scalingPolicy.d.ts +35 -0
  69. package/dist/model/scalingPolicy.js +51 -0
  70. package/dist/model/syncOperation.d.ts +31 -0
  71. package/dist/model/syncOperation.js +58 -0
  72. package/dist/model/syncToEnvironmentRequest.d.ts +25 -0
  73. package/dist/model/syncToEnvironmentRequest.js +28 -0
  74. package/dist/model/updateComposeRequest.d.ts +26 -0
  75. package/dist/model/updateComposeRequest.js +28 -0
  76. package/dist/model/updateCronJobRequest.d.ts +29 -0
  77. package/dist/model/updateCronJobRequest.js +48 -0
  78. package/dist/model/updateEnvironmentComposeRequest.d.ts +26 -0
  79. package/dist/model/updateEnvironmentComposeRequest.js +28 -0
  80. package/dist/model/updateEnvironmentRequest.d.ts +26 -0
  81. package/dist/model/updateEnvironmentRequest.js +28 -0
  82. package/dist/model/updateEnvironmentStateRequest.d.ts +26 -0
  83. package/dist/model/updateEnvironmentStateRequest.js +33 -0
  84. package/dist/model/updateEnvironmentVariableRequest.d.ts +25 -0
  85. package/dist/model/updateEnvironmentVariableRequest.js +28 -0
  86. package/dist/model/validateCompose200Response.d.ts +27 -0
  87. package/dist/model/validateCompose200Response.js +38 -0
  88. package/dist/model/validateComposeRequest.d.ts +25 -0
  89. package/dist/model/validateComposeRequest.js +28 -0
  90. package/dist/model/variable.d.ts +26 -0
  91. package/dist/model/variable.js +33 -0
  92. package/dist/model/volume.d.ts +32 -0
  93. package/dist/model/volume.js +63 -0
  94. package/package.json +21 -40
  95. package/dist/src/client.d.ts +0 -15
  96. package/dist/src/client.js +0 -380
  97. package/dist/src/index.d.ts +0 -2
  98. package/dist/src/index.js +0 -42
  99. package/dist/src/interfaces.d.ts +0 -34
  100. package/dist/src/interfaces.js +0 -2
  101. package/dist/src/response.d.ts +0 -15
  102. package/dist/src/response.js +0 -103
  103. package/dist/src/types.d.ts +0 -68
  104. package/dist/src/types.js +0 -8
  105. package/dist/tests/client.test.d.ts +0 -1
  106. package/dist/tests/client.test.js +0 -191
  107. package/dist/tests/response.test.d.ts +0 -1
  108. package/dist/tests/response.test.js +0 -133
@@ -0,0 +1,32 @@
1
+ /**
2
+ * QuantCloud API
3
+ * QuantCloud API
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
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
+ import { Container } from './container';
13
+ export declare class Compose {
14
+ 'containers'?: Array<Container>;
15
+ 'architecture'?: string;
16
+ 'taskCpu'?: number;
17
+ 'taskMemory'?: number;
18
+ 'taskRoleArn'?: string;
19
+ 'minCapacity'?: number;
20
+ 'maxCapacity'?: number;
21
+ static discriminator: string | undefined;
22
+ static attributeTypeMap: Array<{
23
+ name: string;
24
+ baseName: string;
25
+ type: string;
26
+ }>;
27
+ static getAttributeTypeMap(): {
28
+ name: string;
29
+ baseName: string;
30
+ type: string;
31
+ }[];
32
+ }
@@ -0,0 +1,58 @@
1
+ "use strict";
2
+ /**
3
+ * QuantCloud API
4
+ * QuantCloud API
5
+ *
6
+ * The version of the OpenAPI document: 1.0.0
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
+ * https://openapi-generator.tech
11
+ * Do not edit the class manually.
12
+ */
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.Compose = void 0;
15
+ class Compose {
16
+ static getAttributeTypeMap() {
17
+ return Compose.attributeTypeMap;
18
+ }
19
+ }
20
+ exports.Compose = Compose;
21
+ Compose.discriminator = undefined;
22
+ Compose.attributeTypeMap = [
23
+ {
24
+ "name": "containers",
25
+ "baseName": "containers",
26
+ "type": "Array<Container>"
27
+ },
28
+ {
29
+ "name": "architecture",
30
+ "baseName": "architecture",
31
+ "type": "string"
32
+ },
33
+ {
34
+ "name": "taskCpu",
35
+ "baseName": "taskCpu",
36
+ "type": "number"
37
+ },
38
+ {
39
+ "name": "taskMemory",
40
+ "baseName": "taskMemory",
41
+ "type": "number"
42
+ },
43
+ {
44
+ "name": "taskRoleArn",
45
+ "baseName": "taskRoleArn",
46
+ "type": "string"
47
+ },
48
+ {
49
+ "name": "minCapacity",
50
+ "baseName": "minCapacity",
51
+ "type": "number"
52
+ },
53
+ {
54
+ "name": "maxCapacity",
55
+ "baseName": "maxCapacity",
56
+ "type": "number"
57
+ }
58
+ ];
@@ -0,0 +1,26 @@
1
+ /**
2
+ * Configuration for the Quant API client
3
+ */
4
+ export declare class Configuration {
5
+ /**
6
+ * API key
7
+ */
8
+ apiKey?: string;
9
+ /**
10
+ * Base path for API calls
11
+ */
12
+ basePath?: string;
13
+ /**
14
+ * Default headers for API calls
15
+ */
16
+ headers: {
17
+ [key: string]: string;
18
+ };
19
+ constructor(config?: {
20
+ apiKey?: string;
21
+ basePath?: string;
22
+ headers?: {
23
+ [key: string]: string;
24
+ };
25
+ });
26
+ }
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Configuration = void 0;
4
+ /**
5
+ * Configuration for the Quant API client
6
+ */
7
+ class Configuration {
8
+ constructor(config = {}) {
9
+ /**
10
+ * Base path for API calls
11
+ */
12
+ this.basePath = 'http://localhost';
13
+ /**
14
+ * Default headers for API calls
15
+ */
16
+ this.headers = {};
17
+ this.apiKey = config.apiKey;
18
+ if (config.basePath) {
19
+ this.basePath = config.basePath;
20
+ }
21
+ if (config.headers) {
22
+ this.headers = config.headers;
23
+ }
24
+ // Set default authentication header if API key is provided
25
+ if (this.apiKey) {
26
+ this.headers['Authorization'] = `Bearer ${this.apiKey}`;
27
+ }
28
+ }
29
+ }
30
+ exports.Configuration = Configuration;
@@ -0,0 +1,38 @@
1
+ /**
2
+ * QuantCloud API
3
+ * QuantCloud API
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
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
+ import { ContainerEnvironmentInner } from './containerEnvironmentInner';
13
+ import { ContainerImageReference } from './containerImageReference';
14
+ import { ContainerMountPointsInner } from './containerMountPointsInner';
15
+ export declare class Container {
16
+ 'name': string;
17
+ 'imageReference': ContainerImageReference;
18
+ 'cpu'?: number;
19
+ 'memory'?: number;
20
+ 'memoryReservation'?: number;
21
+ 'exposedPorts'?: Array<number>;
22
+ 'mountPoints'?: Array<ContainerMountPointsInner>;
23
+ 'environment'?: Array<ContainerEnvironmentInner>;
24
+ 'command'?: Array<string>;
25
+ 'entryPoint'?: Array<string>;
26
+ 'essential'?: boolean;
27
+ static discriminator: string | undefined;
28
+ static attributeTypeMap: Array<{
29
+ name: string;
30
+ baseName: string;
31
+ type: string;
32
+ }>;
33
+ static getAttributeTypeMap(): {
34
+ name: string;
35
+ baseName: string;
36
+ type: string;
37
+ }[];
38
+ }
@@ -0,0 +1,78 @@
1
+ "use strict";
2
+ /**
3
+ * QuantCloud API
4
+ * QuantCloud API
5
+ *
6
+ * The version of the OpenAPI document: 1.0.0
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
+ * https://openapi-generator.tech
11
+ * Do not edit the class manually.
12
+ */
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.Container = void 0;
15
+ class Container {
16
+ static getAttributeTypeMap() {
17
+ return Container.attributeTypeMap;
18
+ }
19
+ }
20
+ exports.Container = Container;
21
+ Container.discriminator = undefined;
22
+ Container.attributeTypeMap = [
23
+ {
24
+ "name": "name",
25
+ "baseName": "name",
26
+ "type": "string"
27
+ },
28
+ {
29
+ "name": "imageReference",
30
+ "baseName": "imageReference",
31
+ "type": "ContainerImageReference"
32
+ },
33
+ {
34
+ "name": "cpu",
35
+ "baseName": "cpu",
36
+ "type": "number"
37
+ },
38
+ {
39
+ "name": "memory",
40
+ "baseName": "memory",
41
+ "type": "number"
42
+ },
43
+ {
44
+ "name": "memoryReservation",
45
+ "baseName": "memoryReservation",
46
+ "type": "number"
47
+ },
48
+ {
49
+ "name": "exposedPorts",
50
+ "baseName": "exposedPorts",
51
+ "type": "Array<number>"
52
+ },
53
+ {
54
+ "name": "mountPoints",
55
+ "baseName": "mountPoints",
56
+ "type": "Array<ContainerMountPointsInner>"
57
+ },
58
+ {
59
+ "name": "environment",
60
+ "baseName": "environment",
61
+ "type": "Array<ContainerEnvironmentInner>"
62
+ },
63
+ {
64
+ "name": "command",
65
+ "baseName": "command",
66
+ "type": "Array<string>"
67
+ },
68
+ {
69
+ "name": "entryPoint",
70
+ "baseName": "entryPoint",
71
+ "type": "Array<string>"
72
+ },
73
+ {
74
+ "name": "essential",
75
+ "baseName": "essential",
76
+ "type": "boolean"
77
+ }
78
+ ];
@@ -0,0 +1,26 @@
1
+ /**
2
+ * QuantCloud API
3
+ * QuantCloud API
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
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
+ export declare class ContainerEnvironmentInner {
13
+ 'name': string;
14
+ 'value': string;
15
+ static discriminator: string | undefined;
16
+ static attributeTypeMap: Array<{
17
+ name: string;
18
+ baseName: string;
19
+ type: string;
20
+ }>;
21
+ static getAttributeTypeMap(): {
22
+ name: string;
23
+ baseName: string;
24
+ type: string;
25
+ }[];
26
+ }
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+ /**
3
+ * QuantCloud API
4
+ * QuantCloud API
5
+ *
6
+ * The version of the OpenAPI document: 1.0.0
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
+ * https://openapi-generator.tech
11
+ * Do not edit the class manually.
12
+ */
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.ContainerEnvironmentInner = void 0;
15
+ class ContainerEnvironmentInner {
16
+ static getAttributeTypeMap() {
17
+ return ContainerEnvironmentInner.attributeTypeMap;
18
+ }
19
+ }
20
+ exports.ContainerEnvironmentInner = ContainerEnvironmentInner;
21
+ ContainerEnvironmentInner.discriminator = undefined;
22
+ ContainerEnvironmentInner.attributeTypeMap = [
23
+ {
24
+ "name": "name",
25
+ "baseName": "name",
26
+ "type": "string"
27
+ },
28
+ {
29
+ "name": "value",
30
+ "baseName": "value",
31
+ "type": "string"
32
+ }
33
+ ];
@@ -0,0 +1,28 @@
1
+ /**
2
+ * QuantCloud API
3
+ * QuantCloud API
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
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
+ export declare class ContainerImageReference {
13
+ 'repository': string;
14
+ 'tag': string;
15
+ 'type'?: string;
16
+ 'identifier'?: string;
17
+ static discriminator: string | undefined;
18
+ static attributeTypeMap: Array<{
19
+ name: string;
20
+ baseName: string;
21
+ type: string;
22
+ }>;
23
+ static getAttributeTypeMap(): {
24
+ name: string;
25
+ baseName: string;
26
+ type: string;
27
+ }[];
28
+ }
@@ -0,0 +1,43 @@
1
+ "use strict";
2
+ /**
3
+ * QuantCloud API
4
+ * QuantCloud API
5
+ *
6
+ * The version of the OpenAPI document: 1.0.0
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
+ * https://openapi-generator.tech
11
+ * Do not edit the class manually.
12
+ */
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.ContainerImageReference = void 0;
15
+ class ContainerImageReference {
16
+ static getAttributeTypeMap() {
17
+ return ContainerImageReference.attributeTypeMap;
18
+ }
19
+ }
20
+ exports.ContainerImageReference = ContainerImageReference;
21
+ ContainerImageReference.discriminator = undefined;
22
+ ContainerImageReference.attributeTypeMap = [
23
+ {
24
+ "name": "repository",
25
+ "baseName": "repository",
26
+ "type": "string"
27
+ },
28
+ {
29
+ "name": "tag",
30
+ "baseName": "tag",
31
+ "type": "string"
32
+ },
33
+ {
34
+ "name": "type",
35
+ "baseName": "type",
36
+ "type": "string"
37
+ },
38
+ {
39
+ "name": "identifier",
40
+ "baseName": "identifier",
41
+ "type": "string"
42
+ }
43
+ ];
@@ -0,0 +1,27 @@
1
+ /**
2
+ * QuantCloud API
3
+ * QuantCloud API
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
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
+ export declare class ContainerMountPointsInner {
13
+ 'sourceVolume': string;
14
+ 'containerPath': string;
15
+ 'readOnly'?: boolean;
16
+ static discriminator: string | undefined;
17
+ static attributeTypeMap: Array<{
18
+ name: string;
19
+ baseName: string;
20
+ type: string;
21
+ }>;
22
+ static getAttributeTypeMap(): {
23
+ name: string;
24
+ baseName: string;
25
+ type: string;
26
+ }[];
27
+ }
@@ -0,0 +1,38 @@
1
+ "use strict";
2
+ /**
3
+ * QuantCloud API
4
+ * QuantCloud API
5
+ *
6
+ * The version of the OpenAPI document: 1.0.0
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
+ * https://openapi-generator.tech
11
+ * Do not edit the class manually.
12
+ */
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.ContainerMountPointsInner = void 0;
15
+ class ContainerMountPointsInner {
16
+ static getAttributeTypeMap() {
17
+ return ContainerMountPointsInner.attributeTypeMap;
18
+ }
19
+ }
20
+ exports.ContainerMountPointsInner = ContainerMountPointsInner;
21
+ ContainerMountPointsInner.discriminator = undefined;
22
+ ContainerMountPointsInner.attributeTypeMap = [
23
+ {
24
+ "name": "sourceVolume",
25
+ "baseName": "sourceVolume",
26
+ "type": "string"
27
+ },
28
+ {
29
+ "name": "containerPath",
30
+ "baseName": "containerPath",
31
+ "type": "string"
32
+ },
33
+ {
34
+ "name": "readOnly",
35
+ "baseName": "readOnly",
36
+ "type": "boolean"
37
+ }
38
+ ];
@@ -0,0 +1,28 @@
1
+ /**
2
+ * QuantCloud API
3
+ * QuantCloud API
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
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
+ export declare class CreateApplicationRequest {
13
+ 'appName': string;
14
+ 'database'?: object;
15
+ 'filesystem'?: object;
16
+ 'initialProductionConfig'?: object;
17
+ static discriminator: string | undefined;
18
+ static attributeTypeMap: Array<{
19
+ name: string;
20
+ baseName: string;
21
+ type: string;
22
+ }>;
23
+ static getAttributeTypeMap(): {
24
+ name: string;
25
+ baseName: string;
26
+ type: string;
27
+ }[];
28
+ }
@@ -0,0 +1,43 @@
1
+ "use strict";
2
+ /**
3
+ * QuantCloud API
4
+ * QuantCloud API
5
+ *
6
+ * The version of the OpenAPI document: 1.0.0
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
+ * https://openapi-generator.tech
11
+ * Do not edit the class manually.
12
+ */
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.CreateApplicationRequest = void 0;
15
+ class CreateApplicationRequest {
16
+ static getAttributeTypeMap() {
17
+ return CreateApplicationRequest.attributeTypeMap;
18
+ }
19
+ }
20
+ exports.CreateApplicationRequest = CreateApplicationRequest;
21
+ CreateApplicationRequest.discriminator = undefined;
22
+ CreateApplicationRequest.attributeTypeMap = [
23
+ {
24
+ "name": "appName",
25
+ "baseName": "appName",
26
+ "type": "string"
27
+ },
28
+ {
29
+ "name": "database",
30
+ "baseName": "database",
31
+ "type": "object"
32
+ },
33
+ {
34
+ "name": "filesystem",
35
+ "baseName": "filesystem",
36
+ "type": "object"
37
+ },
38
+ {
39
+ "name": "initialProductionConfig",
40
+ "baseName": "initialProductionConfig",
41
+ "type": "object"
42
+ }
43
+ ];
@@ -0,0 +1,25 @@
1
+ /**
2
+ * QuantCloud API
3
+ * QuantCloud API
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
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
+ export declare class CreateCommandRequest {
13
+ 'command'?: string;
14
+ static discriminator: string | undefined;
15
+ static attributeTypeMap: Array<{
16
+ name: string;
17
+ baseName: string;
18
+ type: string;
19
+ }>;
20
+ static getAttributeTypeMap(): {
21
+ name: string;
22
+ baseName: string;
23
+ type: string;
24
+ }[];
25
+ }
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ /**
3
+ * QuantCloud API
4
+ * QuantCloud API
5
+ *
6
+ * The version of the OpenAPI document: 1.0.0
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
+ * https://openapi-generator.tech
11
+ * Do not edit the class manually.
12
+ */
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.CreateCommandRequest = void 0;
15
+ class CreateCommandRequest {
16
+ static getAttributeTypeMap() {
17
+ return CreateCommandRequest.attributeTypeMap;
18
+ }
19
+ }
20
+ exports.CreateCommandRequest = CreateCommandRequest;
21
+ CreateCommandRequest.discriminator = undefined;
22
+ CreateCommandRequest.attributeTypeMap = [
23
+ {
24
+ "name": "command",
25
+ "baseName": "command",
26
+ "type": "string"
27
+ }
28
+ ];
@@ -0,0 +1,26 @@
1
+ /**
2
+ * QuantCloud API
3
+ * QuantCloud API
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
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
+ export declare class CreateCronJob422Response {
13
+ 'message'?: string;
14
+ 'errors'?: object;
15
+ static discriminator: string | undefined;
16
+ static attributeTypeMap: Array<{
17
+ name: string;
18
+ baseName: string;
19
+ type: string;
20
+ }>;
21
+ static getAttributeTypeMap(): {
22
+ name: string;
23
+ baseName: string;
24
+ type: string;
25
+ }[];
26
+ }
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+ /**
3
+ * QuantCloud API
4
+ * QuantCloud API
5
+ *
6
+ * The version of the OpenAPI document: 1.0.0
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
+ * https://openapi-generator.tech
11
+ * Do not edit the class manually.
12
+ */
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.CreateCronJob422Response = void 0;
15
+ class CreateCronJob422Response {
16
+ static getAttributeTypeMap() {
17
+ return CreateCronJob422Response.attributeTypeMap;
18
+ }
19
+ }
20
+ exports.CreateCronJob422Response = CreateCronJob422Response;
21
+ CreateCronJob422Response.discriminator = undefined;
22
+ CreateCronJob422Response.attributeTypeMap = [
23
+ {
24
+ "name": "message",
25
+ "baseName": "message",
26
+ "type": "string"
27
+ },
28
+ {
29
+ "name": "errors",
30
+ "baseName": "errors",
31
+ "type": "object"
32
+ }
33
+ ];
@@ -0,0 +1,30 @@
1
+ /**
2
+ * QuantCloud API
3
+ * QuantCloud API
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
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
+ export declare class CreateCronJobRequest {
13
+ 'name': string;
14
+ 'description'?: string | null;
15
+ 'scheduleExpression': string;
16
+ 'command': Array<string>;
17
+ 'targetContainerName'?: string | null;
18
+ 'isEnabled'?: boolean | null;
19
+ static discriminator: string | undefined;
20
+ static attributeTypeMap: Array<{
21
+ name: string;
22
+ baseName: string;
23
+ type: string;
24
+ }>;
25
+ static getAttributeTypeMap(): {
26
+ name: string;
27
+ baseName: string;
28
+ type: string;
29
+ }[];
30
+ }