@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,56 @@
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.CreateCronJobRequest = void 0;
15
+ class CreateCronJobRequest {
16
+ constructor() {
17
+ this['isEnabled'] = true;
18
+ }
19
+ static getAttributeTypeMap() {
20
+ return CreateCronJobRequest.attributeTypeMap;
21
+ }
22
+ }
23
+ exports.CreateCronJobRequest = CreateCronJobRequest;
24
+ CreateCronJobRequest.discriminator = undefined;
25
+ CreateCronJobRequest.attributeTypeMap = [
26
+ {
27
+ "name": "name",
28
+ "baseName": "name",
29
+ "type": "string"
30
+ },
31
+ {
32
+ "name": "description",
33
+ "baseName": "description",
34
+ "type": "string"
35
+ },
36
+ {
37
+ "name": "scheduleExpression",
38
+ "baseName": "scheduleExpression",
39
+ "type": "string"
40
+ },
41
+ {
42
+ "name": "command",
43
+ "baseName": "command",
44
+ "type": "Array<string>"
45
+ },
46
+ {
47
+ "name": "targetContainerName",
48
+ "baseName": "targetContainerName",
49
+ "type": "string"
50
+ },
51
+ {
52
+ "name": "isEnabled",
53
+ "baseName": "isEnabled",
54
+ "type": "boolean"
55
+ }
56
+ ];
@@ -0,0 +1,34 @@
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 { Compose } from './compose';
13
+ export declare class CreateEnvironmentRequest {
14
+ 'envName': string;
15
+ 'minCapacity'?: number;
16
+ 'maxCapacity'?: number;
17
+ 'cloneConfigurationFrom'?: string;
18
+ 'composeDefinition'?: Compose;
19
+ /**
20
+ * Optional image tag suffix for cloning
21
+ */
22
+ 'imageSuffix'?: string;
23
+ static discriminator: string | undefined;
24
+ static attributeTypeMap: Array<{
25
+ name: string;
26
+ baseName: string;
27
+ type: string;
28
+ }>;
29
+ static getAttributeTypeMap(): {
30
+ name: string;
31
+ baseName: string;
32
+ type: string;
33
+ }[];
34
+ }
@@ -0,0 +1,53 @@
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.CreateEnvironmentRequest = void 0;
15
+ class CreateEnvironmentRequest {
16
+ static getAttributeTypeMap() {
17
+ return CreateEnvironmentRequest.attributeTypeMap;
18
+ }
19
+ }
20
+ exports.CreateEnvironmentRequest = CreateEnvironmentRequest;
21
+ CreateEnvironmentRequest.discriminator = undefined;
22
+ CreateEnvironmentRequest.attributeTypeMap = [
23
+ {
24
+ "name": "envName",
25
+ "baseName": "envName",
26
+ "type": "string"
27
+ },
28
+ {
29
+ "name": "minCapacity",
30
+ "baseName": "minCapacity",
31
+ "type": "number"
32
+ },
33
+ {
34
+ "name": "maxCapacity",
35
+ "baseName": "maxCapacity",
36
+ "type": "number"
37
+ },
38
+ {
39
+ "name": "cloneConfigurationFrom",
40
+ "baseName": "cloneConfigurationFrom",
41
+ "type": "string"
42
+ },
43
+ {
44
+ "name": "composeDefinition",
45
+ "baseName": "composeDefinition",
46
+ "type": "Compose"
47
+ },
48
+ {
49
+ "name": "imageSuffix",
50
+ "baseName": "imageSuffix",
51
+ "type": "string"
52
+ }
53
+ ];
@@ -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 Cron {
13
+ 'name'?: string;
14
+ 'schedule'?: string;
15
+ 'command'?: string;
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.Cron = void 0;
15
+ class Cron {
16
+ static getAttributeTypeMap() {
17
+ return Cron.attributeTypeMap;
18
+ }
19
+ }
20
+ exports.Cron = Cron;
21
+ Cron.discriminator = undefined;
22
+ Cron.attributeTypeMap = [
23
+ {
24
+ "name": "name",
25
+ "baseName": "name",
26
+ "type": "string"
27
+ },
28
+ {
29
+ "name": "schedule",
30
+ "baseName": "schedule",
31
+ "type": "string"
32
+ },
33
+ {
34
+ "name": "command",
35
+ "baseName": "command",
36
+ "type": "string"
37
+ }
38
+ ];
@@ -0,0 +1,48 @@
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 CronRun {
13
+ 'runId'?: string;
14
+ 'runType'?: CronRun.RunTypeEnum;
15
+ 'command'?: string | null;
16
+ 'status'?: CronRun.StatusEnum;
17
+ 'startTime'?: Date | null;
18
+ 'endTime'?: Date | null;
19
+ 'exitCode'?: number | null;
20
+ 'output'?: Array<string>;
21
+ 'scheduleName'?: string | null;
22
+ 'targetContainerName'?: string | null;
23
+ static discriminator: string | undefined;
24
+ static attributeTypeMap: Array<{
25
+ name: string;
26
+ baseName: string;
27
+ type: string;
28
+ }>;
29
+ static getAttributeTypeMap(): {
30
+ name: string;
31
+ baseName: string;
32
+ type: string;
33
+ }[];
34
+ }
35
+ export declare namespace CronRun {
36
+ enum RunTypeEnum {
37
+ Exec,
38
+ Cron
39
+ }
40
+ enum StatusEnum {
41
+ Pending,
42
+ Running,
43
+ Succeeded,
44
+ Failed,
45
+ TimedOut,
46
+ Unknown
47
+ }
48
+ }
@@ -0,0 +1,89 @@
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.CronRun = void 0;
15
+ class CronRun {
16
+ static getAttributeTypeMap() {
17
+ return CronRun.attributeTypeMap;
18
+ }
19
+ }
20
+ exports.CronRun = CronRun;
21
+ CronRun.discriminator = undefined;
22
+ CronRun.attributeTypeMap = [
23
+ {
24
+ "name": "runId",
25
+ "baseName": "runId",
26
+ "type": "string"
27
+ },
28
+ {
29
+ "name": "runType",
30
+ "baseName": "runType",
31
+ "type": "CronRun.RunTypeEnum"
32
+ },
33
+ {
34
+ "name": "command",
35
+ "baseName": "command",
36
+ "type": "string"
37
+ },
38
+ {
39
+ "name": "status",
40
+ "baseName": "status",
41
+ "type": "CronRun.StatusEnum"
42
+ },
43
+ {
44
+ "name": "startTime",
45
+ "baseName": "startTime",
46
+ "type": "Date"
47
+ },
48
+ {
49
+ "name": "endTime",
50
+ "baseName": "endTime",
51
+ "type": "Date"
52
+ },
53
+ {
54
+ "name": "exitCode",
55
+ "baseName": "exitCode",
56
+ "type": "number"
57
+ },
58
+ {
59
+ "name": "output",
60
+ "baseName": "output",
61
+ "type": "Array<string>"
62
+ },
63
+ {
64
+ "name": "scheduleName",
65
+ "baseName": "scheduleName",
66
+ "type": "string"
67
+ },
68
+ {
69
+ "name": "targetContainerName",
70
+ "baseName": "targetContainerName",
71
+ "type": "string"
72
+ }
73
+ ];
74
+ (function (CronRun) {
75
+ let RunTypeEnum;
76
+ (function (RunTypeEnum) {
77
+ RunTypeEnum[RunTypeEnum["Exec"] = 'EXEC'] = "Exec";
78
+ RunTypeEnum[RunTypeEnum["Cron"] = 'CRON'] = "Cron";
79
+ })(RunTypeEnum = CronRun.RunTypeEnum || (CronRun.RunTypeEnum = {}));
80
+ let StatusEnum;
81
+ (function (StatusEnum) {
82
+ StatusEnum[StatusEnum["Pending"] = 'PENDING'] = "Pending";
83
+ StatusEnum[StatusEnum["Running"] = 'RUNNING'] = "Running";
84
+ StatusEnum[StatusEnum["Succeeded"] = 'SUCCEEDED'] = "Succeeded";
85
+ StatusEnum[StatusEnum["Failed"] = 'FAILED'] = "Failed";
86
+ StatusEnum[StatusEnum["TimedOut"] = 'TIMED_OUT'] = "TimedOut";
87
+ StatusEnum[StatusEnum["Unknown"] = 'UNKNOWN'] = "Unknown";
88
+ })(StatusEnum = CronRun.StatusEnum || (CronRun.StatusEnum = {}));
89
+ })(CronRun = exports.CronRun || (exports.CronRun = {}));
@@ -0,0 +1,45 @@
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 { Cron } from './cron';
13
+ import { Volume } from './volume';
14
+ export declare class Environment {
15
+ 'envName': string;
16
+ 'status'?: string;
17
+ 'runningCount'?: number;
18
+ 'desiredCount'?: number;
19
+ 'minCapacity'?: number;
20
+ 'maxCapacity'?: number;
21
+ 'cloneConfigurationFrom'?: string;
22
+ /**
23
+ * Image tag suffix for cloning
24
+ */
25
+ 'imageSuffix'?: string;
26
+ 'taskDefinition'?: object;
27
+ 'service'?: object;
28
+ 'loadBalancer'?: object;
29
+ 'securityGroup'?: object;
30
+ 'subnet'?: object;
31
+ 'vpc'?: object;
32
+ 'volumes'?: Array<Volume>;
33
+ 'cron'?: Array<Cron>;
34
+ static discriminator: string | undefined;
35
+ static attributeTypeMap: Array<{
36
+ name: string;
37
+ baseName: string;
38
+ type: string;
39
+ }>;
40
+ static getAttributeTypeMap(): {
41
+ name: string;
42
+ baseName: string;
43
+ type: string;
44
+ }[];
45
+ }
@@ -0,0 +1,103 @@
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.Environment = void 0;
15
+ class Environment {
16
+ static getAttributeTypeMap() {
17
+ return Environment.attributeTypeMap;
18
+ }
19
+ }
20
+ exports.Environment = Environment;
21
+ Environment.discriminator = undefined;
22
+ Environment.attributeTypeMap = [
23
+ {
24
+ "name": "envName",
25
+ "baseName": "envName",
26
+ "type": "string"
27
+ },
28
+ {
29
+ "name": "status",
30
+ "baseName": "status",
31
+ "type": "string"
32
+ },
33
+ {
34
+ "name": "runningCount",
35
+ "baseName": "runningCount",
36
+ "type": "number"
37
+ },
38
+ {
39
+ "name": "desiredCount",
40
+ "baseName": "desiredCount",
41
+ "type": "number"
42
+ },
43
+ {
44
+ "name": "minCapacity",
45
+ "baseName": "minCapacity",
46
+ "type": "number"
47
+ },
48
+ {
49
+ "name": "maxCapacity",
50
+ "baseName": "maxCapacity",
51
+ "type": "number"
52
+ },
53
+ {
54
+ "name": "cloneConfigurationFrom",
55
+ "baseName": "cloneConfigurationFrom",
56
+ "type": "string"
57
+ },
58
+ {
59
+ "name": "imageSuffix",
60
+ "baseName": "imageSuffix",
61
+ "type": "string"
62
+ },
63
+ {
64
+ "name": "taskDefinition",
65
+ "baseName": "taskDefinition",
66
+ "type": "object"
67
+ },
68
+ {
69
+ "name": "service",
70
+ "baseName": "service",
71
+ "type": "object"
72
+ },
73
+ {
74
+ "name": "loadBalancer",
75
+ "baseName": "loadBalancer",
76
+ "type": "object"
77
+ },
78
+ {
79
+ "name": "securityGroup",
80
+ "baseName": "securityGroup",
81
+ "type": "object"
82
+ },
83
+ {
84
+ "name": "subnet",
85
+ "baseName": "subnet",
86
+ "type": "object"
87
+ },
88
+ {
89
+ "name": "vpc",
90
+ "baseName": "vpc",
91
+ "type": "object"
92
+ },
93
+ {
94
+ "name": "volumes",
95
+ "baseName": "volumes",
96
+ "type": "Array<Volume>"
97
+ },
98
+ {
99
+ "name": "cron",
100
+ "baseName": "cron",
101
+ "type": "Array<Cron>"
102
+ }
103
+ ];
@@ -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 GetEcrLoginCredentials200Response {
13
+ 'username'?: string;
14
+ 'password'?: string;
15
+ 'expiresAt'?: string;
16
+ 'endpoint'?: 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.GetEcrLoginCredentials200Response = void 0;
15
+ class GetEcrLoginCredentials200Response {
16
+ static getAttributeTypeMap() {
17
+ return GetEcrLoginCredentials200Response.attributeTypeMap;
18
+ }
19
+ }
20
+ exports.GetEcrLoginCredentials200Response = GetEcrLoginCredentials200Response;
21
+ GetEcrLoginCredentials200Response.discriminator = undefined;
22
+ GetEcrLoginCredentials200Response.attributeTypeMap = [
23
+ {
24
+ "name": "username",
25
+ "baseName": "username",
26
+ "type": "string"
27
+ },
28
+ {
29
+ "name": "password",
30
+ "baseName": "password",
31
+ "type": "string"
32
+ },
33
+ {
34
+ "name": "expiresAt",
35
+ "baseName": "expiresAt",
36
+ "type": "string"
37
+ },
38
+ {
39
+ "name": "endpoint",
40
+ "baseName": "endpoint",
41
+ "type": "string"
42
+ }
43
+ ];
@@ -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
+ import { ScalingPolicy } from './scalingPolicy';
13
+ export declare class GetScalingPolicies200Response {
14
+ 'policies'?: Array<ScalingPolicy>;
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,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.GetScalingPolicies200Response = void 0;
15
+ class GetScalingPolicies200Response {
16
+ static getAttributeTypeMap() {
17
+ return GetScalingPolicies200Response.attributeTypeMap;
18
+ }
19
+ }
20
+ exports.GetScalingPolicies200Response = GetScalingPolicies200Response;
21
+ GetScalingPolicies200Response.discriminator = undefined;
22
+ GetScalingPolicies200Response.attributeTypeMap = [
23
+ {
24
+ "name": "policies",
25
+ "baseName": "policies",
26
+ "type": "Array<ScalingPolicy>"
27
+ }
28
+ ];
@@ -0,0 +1,34 @@
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 { GetSshAccessCredentials200ResponseCredentials } from './getSshAccessCredentials200ResponseCredentials';
13
+ export declare class GetSshAccessCredentials200Response {
14
+ 'success'?: boolean;
15
+ 'credentials'?: GetSshAccessCredentials200ResponseCredentials;
16
+ 'clusterName'?: string;
17
+ 'taskArn'?: string;
18
+ 'taskId'?: string;
19
+ 'containerNames'?: Array<string>;
20
+ 'region'?: string;
21
+ 'expiresIn'?: number;
22
+ 'organizationScope'?: string;
23
+ static discriminator: string | undefined;
24
+ static attributeTypeMap: Array<{
25
+ name: string;
26
+ baseName: string;
27
+ type: string;
28
+ }>;
29
+ static getAttributeTypeMap(): {
30
+ name: string;
31
+ baseName: string;
32
+ type: string;
33
+ }[];
34
+ }