@quantcdn/quant-client 2.0.13 → 3.0.1
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/README.md +49 -72
- package/dist/api/apis.d.ts +32 -0
- package/dist/api/apis.js +50 -0
- package/dist/api/applicationsApi.d.ts +104 -0
- package/dist/api/applicationsApi.js +431 -0
- package/dist/api/backupManagementApi.d.ts +106 -0
- package/dist/api/backupManagementApi.js +440 -0
- package/dist/api/commandsApi.d.ts +80 -0
- package/dist/api/commandsApi.js +316 -0
- package/dist/api/composeApi.d.ts +66 -0
- package/dist/api/composeApi.js +236 -0
- package/dist/api/containersApi.d.ts +67 -0
- package/dist/api/containersApi.js +236 -0
- package/dist/api/cronApi.d.ts +151 -0
- package/dist/api/cronApi.js +681 -0
- package/dist/api/environmentsApi.d.ts +194 -0
- package/dist/api/environmentsApi.js +861 -0
- package/dist/api/sSHAccessApi.d.ts +50 -0
- package/dist/api/sSHAccessApi.js +162 -0
- package/dist/api/scalingPolicyApi.d.ts +82 -0
- package/dist/api/scalingPolicyApi.js +307 -0
- package/dist/api/variablesApi.d.ts +83 -0
- package/dist/api/variablesApi.js +313 -0
- package/dist/api/volumesApi.d.ts +97 -0
- package/dist/api/volumesApi.js +405 -0
- package/dist/api.d.ts +2 -0
- package/dist/api.js +19 -0
- package/dist/model/application.d.ts +38 -0
- package/dist/model/application.js +93 -0
- package/dist/model/command.d.ts +34 -0
- package/dist/model/command.js +73 -0
- package/dist/model/compose.d.ts +32 -0
- package/dist/model/compose.js +58 -0
- package/dist/model/configuration.d.ts +26 -0
- package/dist/model/configuration.js +30 -0
- package/dist/model/container.d.ts +38 -0
- package/dist/model/container.js +78 -0
- package/dist/model/containerEnvironmentInner.d.ts +26 -0
- package/dist/model/containerEnvironmentInner.js +33 -0
- package/dist/model/containerImageReference.d.ts +28 -0
- package/dist/model/containerImageReference.js +43 -0
- package/dist/model/containerMountPointsInner.d.ts +27 -0
- package/dist/model/containerMountPointsInner.js +38 -0
- package/dist/model/createApplicationRequest.d.ts +28 -0
- package/dist/model/createApplicationRequest.js +43 -0
- package/dist/model/createBackup202Response.d.ts +27 -0
- package/dist/model/createBackup202Response.js +38 -0
- package/dist/model/createBackupRequest.d.ts +32 -0
- package/dist/model/createBackupRequest.js +33 -0
- package/dist/model/createCommandRequest.d.ts +25 -0
- package/dist/model/createCommandRequest.js +28 -0
- package/dist/model/createCronJob422Response.d.ts +26 -0
- package/dist/model/createCronJob422Response.js +33 -0
- package/dist/model/createCronJobRequest.d.ts +30 -0
- package/dist/model/createCronJobRequest.js +56 -0
- package/dist/model/createEnvironmentRequest.d.ts +34 -0
- package/dist/model/createEnvironmentRequest.js +53 -0
- package/dist/model/cron.d.ts +27 -0
- package/dist/model/cron.js +38 -0
- package/dist/model/cronRun.d.ts +48 -0
- package/dist/model/cronRun.js +89 -0
- package/dist/model/deleteBackup200Response.d.ts +26 -0
- package/dist/model/deleteBackup200Response.js +33 -0
- package/dist/model/downloadBackup200Response.d.ts +36 -0
- package/dist/model/downloadBackup200Response.js +38 -0
- package/dist/model/environment.d.ts +45 -0
- package/dist/model/environment.js +103 -0
- package/dist/model/getEcrLoginCredentials200Response.d.ts +28 -0
- package/dist/model/getEcrLoginCredentials200Response.js +43 -0
- package/dist/model/getScalingPolicies200Response.d.ts +26 -0
- package/dist/model/getScalingPolicies200Response.js +28 -0
- package/dist/model/getSshAccessCredentials200Response.d.ts +34 -0
- package/dist/model/getSshAccessCredentials200Response.js +68 -0
- package/dist/model/getSshAccessCredentials200ResponseCredentials.d.ts +28 -0
- package/dist/model/getSshAccessCredentials200ResponseCredentials.js +43 -0
- package/dist/model/listBackups200Response.d.ts +26 -0
- package/dist/model/listBackups200Response.js +28 -0
- package/dist/model/listBackups200ResponseBackupsInner.d.ts +29 -0
- package/dist/model/listBackups200ResponseBackupsInner.js +48 -0
- package/dist/model/models.d.ts +84 -0
- package/dist/model/models.js +370 -0
- package/dist/model/scalingPolicy.d.ts +35 -0
- package/dist/model/scalingPolicy.js +51 -0
- package/dist/model/syncOperation.d.ts +31 -0
- package/dist/model/syncOperation.js +58 -0
- package/dist/model/syncToEnvironmentRequest.d.ts +25 -0
- package/dist/model/syncToEnvironmentRequest.js +28 -0
- package/dist/model/updateComposeRequest.d.ts +26 -0
- package/dist/model/updateComposeRequest.js +28 -0
- package/dist/model/updateCronJobRequest.d.ts +29 -0
- package/dist/model/updateCronJobRequest.js +48 -0
- package/dist/model/updateEnvironmentComposeRequest.d.ts +26 -0
- package/dist/model/updateEnvironmentComposeRequest.js +28 -0
- package/dist/model/updateEnvironmentRequest.d.ts +26 -0
- package/dist/model/updateEnvironmentRequest.js +28 -0
- package/dist/model/updateEnvironmentStateRequest.d.ts +26 -0
- package/dist/model/updateEnvironmentStateRequest.js +33 -0
- package/dist/model/updateEnvironmentVariableRequest.d.ts +25 -0
- package/dist/model/updateEnvironmentVariableRequest.js +28 -0
- package/dist/model/validateCompose200Response.d.ts +27 -0
- package/dist/model/validateCompose200Response.js +38 -0
- package/dist/model/validateComposeRequest.d.ts +25 -0
- package/dist/model/validateComposeRequest.js +28 -0
- package/dist/model/variable.d.ts +26 -0
- package/dist/model/variable.js +33 -0
- package/dist/model/volume.d.ts +32 -0
- package/dist/model/volume.js +63 -0
- package/package.json +21 -40
- package/dist/src/client.d.ts +0 -15
- package/dist/src/client.js +0 -380
- package/dist/src/index.d.ts +0 -2
- package/dist/src/index.js +0 -42
- package/dist/src/interfaces.d.ts +0 -34
- package/dist/src/interfaces.js +0 -2
- package/dist/src/response.d.ts +0 -15
- package/dist/src/response.js +0 -103
- package/dist/src/types.d.ts +0 -68
- package/dist/src/types.js +0 -8
- package/dist/tests/client.test.d.ts +0 -1
- package/dist/tests/client.test.js +0 -191
- package/dist/tests/response.test.d.ts +0 -1
- 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,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 CreateBackup202Response {
|
|
13
|
+
'backupId'?: string;
|
|
14
|
+
'status'?: string;
|
|
15
|
+
'message'?: 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.CreateBackup202Response = void 0;
|
|
15
|
+
class CreateBackup202Response {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return CreateBackup202Response.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.CreateBackup202Response = CreateBackup202Response;
|
|
21
|
+
CreateBackup202Response.discriminator = undefined;
|
|
22
|
+
CreateBackup202Response.attributeTypeMap = [
|
|
23
|
+
{
|
|
24
|
+
"name": "backupId",
|
|
25
|
+
"baseName": "backupId",
|
|
26
|
+
"type": "string"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "status",
|
|
30
|
+
"baseName": "status",
|
|
31
|
+
"type": "string"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "message",
|
|
35
|
+
"baseName": "message",
|
|
36
|
+
"type": "string"
|
|
37
|
+
}
|
|
38
|
+
];
|
|
@@ -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
|
+
export declare class CreateBackupRequest {
|
|
13
|
+
/**
|
|
14
|
+
* Optional backup description
|
|
15
|
+
*/
|
|
16
|
+
'description'?: string;
|
|
17
|
+
/**
|
|
18
|
+
* Optional retention period in days
|
|
19
|
+
*/
|
|
20
|
+
'retentionDays'?: 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,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.CreateBackupRequest = void 0;
|
|
15
|
+
class CreateBackupRequest {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return CreateBackupRequest.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.CreateBackupRequest = CreateBackupRequest;
|
|
21
|
+
CreateBackupRequest.discriminator = undefined;
|
|
22
|
+
CreateBackupRequest.attributeTypeMap = [
|
|
23
|
+
{
|
|
24
|
+
"name": "description",
|
|
25
|
+
"baseName": "description",
|
|
26
|
+
"type": "string"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "retentionDays",
|
|
30
|
+
"baseName": "retentionDays",
|
|
31
|
+
"type": "number"
|
|
32
|
+
}
|
|
33
|
+
];
|