@devopness/sdk-js 2.90.0 → 2.92.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.
- package/dist/api/generated/models/application-options.d.ts +3 -3
- package/dist/api/generated/models/{static-application-type-public.d.ts → application-types-public.d.ts} +7 -6
- package/dist/api/generated/models/application-types.d.ts +31 -0
- package/dist/api/generated/models/index.d.ts +3 -2
- package/dist/api/generated/models/index.js +3 -2
- package/dist/api/generated/models/pipeline-create.d.ts +1 -1
- package/dist/api/generated/models/pipeline-update.d.ts +1 -1
- package/dist/api/generated/models/server-environment-create.d.ts +1 -1
- package/dist/api/generated/models/server-update.d.ts +1 -1
- package/dist/api/generated/models/static-service-type-supported-versions.d.ts +4 -3
- package/dist/api/generated/models/variable-targets.d.ts +56 -0
- package/dist/api/generated/models/variable-targets.js +36 -0
- package/package.json +1 -1
- package/dist/api/generated/models/static-application-type.d.ts +0 -31
- /package/dist/api/generated/models/{static-application-type-public.js → application-types-public.js} +0 -0
- /package/dist/api/generated/models/{static-application-type.js → application-types.js} +0 -0
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { ApplicationTypes } from './application-types';
|
|
12
13
|
import { LanguageRuntime } from './language-runtime';
|
|
13
14
|
import { ScriptRunner } from './script-runner';
|
|
14
|
-
import { StaticApplicationType } from './static-application-type';
|
|
15
15
|
/**
|
|
16
16
|
*
|
|
17
17
|
* @export
|
|
@@ -32,8 +32,8 @@ export interface ApplicationOptions {
|
|
|
32
32
|
script_runners: Array<ScriptRunner>;
|
|
33
33
|
/**
|
|
34
34
|
*
|
|
35
|
-
* @type {
|
|
35
|
+
* @type {ApplicationTypes}
|
|
36
36
|
* @memberof ApplicationOptions
|
|
37
37
|
*/
|
|
38
|
-
application_types:
|
|
38
|
+
application_types: ApplicationTypes;
|
|
39
39
|
}
|
|
@@ -9,16 +9,17 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { VariableTargets } from './variable-targets';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
15
|
-
* @interface
|
|
16
|
+
* @interface ApplicationTypesPublic
|
|
16
17
|
*/
|
|
17
|
-
export interface
|
|
18
|
+
export interface ApplicationTypesPublic {
|
|
18
19
|
/**
|
|
19
|
-
* The
|
|
20
|
-
* @type {Array<
|
|
21
|
-
* @memberof
|
|
20
|
+
* The list of VariableTarget
|
|
21
|
+
* @type {Array<VariableTargets>}
|
|
22
|
+
* @memberof ApplicationTypesPublic
|
|
22
23
|
*/
|
|
23
|
-
variables_targets?: Array<
|
|
24
|
+
variables_targets?: Array<VariableTargets>;
|
|
24
25
|
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* devopness API
|
|
3
|
+
* Devopness API - Painless essential DevOps to everyone
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: latest
|
|
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 { ApplicationTypesPublic } from './application-types-public';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ApplicationTypes
|
|
17
|
+
*/
|
|
18
|
+
export interface ApplicationTypes {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {ApplicationTypesPublic}
|
|
22
|
+
* @memberof ApplicationTypes
|
|
23
|
+
*/
|
|
24
|
+
_public: ApplicationTypesPublic;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {ApplicationTypesPublic}
|
|
28
|
+
* @memberof ApplicationTypes
|
|
29
|
+
*/
|
|
30
|
+
_private: ApplicationTypesPublic;
|
|
31
|
+
}
|
|
@@ -30,6 +30,8 @@ export * from './application-options';
|
|
|
30
30
|
export * from './application-pipeline';
|
|
31
31
|
export * from './application-relation';
|
|
32
32
|
export * from './application-type';
|
|
33
|
+
export * from './application-types';
|
|
34
|
+
export * from './application-types-public';
|
|
33
35
|
export * from './application-update';
|
|
34
36
|
export * from './archived-environment-relation';
|
|
35
37
|
export * from './blueprint-service';
|
|
@@ -202,8 +204,6 @@ export * from './ssl-certificate-issuer';
|
|
|
202
204
|
export * from './ssl-certificate-relation';
|
|
203
205
|
export * from './ssl-certificate-type';
|
|
204
206
|
export * from './ssl-certificate-validation-level';
|
|
205
|
-
export * from './static-application-type';
|
|
206
|
-
export * from './static-application-type-public';
|
|
207
207
|
export * from './static-billing-info';
|
|
208
208
|
export * from './static-cloud-provider-code';
|
|
209
209
|
export * from './static-cron-job-frequency';
|
|
@@ -263,5 +263,6 @@ export * from './variable-application-create';
|
|
|
263
263
|
export * from './variable-relation';
|
|
264
264
|
export * from './variable-service-create';
|
|
265
265
|
export * from './variable-target';
|
|
266
|
+
export * from './variable-targets';
|
|
266
267
|
export * from './variable-type';
|
|
267
268
|
export * from './variable-update';
|
|
@@ -46,6 +46,8 @@ __exportStar(require("./application-options"), exports);
|
|
|
46
46
|
__exportStar(require("./application-pipeline"), exports);
|
|
47
47
|
__exportStar(require("./application-relation"), exports);
|
|
48
48
|
__exportStar(require("./application-type"), exports);
|
|
49
|
+
__exportStar(require("./application-types"), exports);
|
|
50
|
+
__exportStar(require("./application-types-public"), exports);
|
|
49
51
|
__exportStar(require("./application-update"), exports);
|
|
50
52
|
__exportStar(require("./archived-environment-relation"), exports);
|
|
51
53
|
__exportStar(require("./blueprint-service"), exports);
|
|
@@ -218,8 +220,6 @@ __exportStar(require("./ssl-certificate-issuer"), exports);
|
|
|
218
220
|
__exportStar(require("./ssl-certificate-relation"), exports);
|
|
219
221
|
__exportStar(require("./ssl-certificate-type"), exports);
|
|
220
222
|
__exportStar(require("./ssl-certificate-validation-level"), exports);
|
|
221
|
-
__exportStar(require("./static-application-type"), exports);
|
|
222
|
-
__exportStar(require("./static-application-type-public"), exports);
|
|
223
223
|
__exportStar(require("./static-billing-info"), exports);
|
|
224
224
|
__exportStar(require("./static-cloud-provider-code"), exports);
|
|
225
225
|
__exportStar(require("./static-cron-job-frequency"), exports);
|
|
@@ -279,5 +279,6 @@ __exportStar(require("./variable-application-create"), exports);
|
|
|
279
279
|
__exportStar(require("./variable-relation"), exports);
|
|
280
280
|
__exportStar(require("./variable-service-create"), exports);
|
|
281
281
|
__exportStar(require("./variable-target"), exports);
|
|
282
|
+
__exportStar(require("./variable-targets"), exports);
|
|
282
283
|
__exportStar(require("./variable-type"), exports);
|
|
283
284
|
__exportStar(require("./variable-update"), exports);
|
|
@@ -29,7 +29,7 @@ export interface PipelineCreate {
|
|
|
29
29
|
*/
|
|
30
30
|
operation: string;
|
|
31
31
|
/**
|
|
32
|
-
* Maximum number of actions that can run in parallel for this pipeline. `0` means no limit of simultaneous actions. `1` means just a single action will be started at a time to run this pipeline. Must be between 0 and
|
|
32
|
+
* Maximum number of actions that can run in parallel for this pipeline. `0` means no limit of simultaneous actions. `1` means just a single action will be started at a time to run this pipeline. Must be between 0 and 10.
|
|
33
33
|
* @type {number}
|
|
34
34
|
* @memberof PipelineCreate
|
|
35
35
|
*/
|
|
@@ -29,7 +29,7 @@ export interface PipelineUpdate {
|
|
|
29
29
|
*/
|
|
30
30
|
name: string;
|
|
31
31
|
/**
|
|
32
|
-
* Maximum number of actions that can run in parallel for this pipeline. `0` means no limit of simultaneous actions. `1` means just a single action will be started at a time to run this pipeline. Must be between 0 and
|
|
32
|
+
* Maximum number of actions that can run in parallel for this pipeline. `0` means no limit of simultaneous actions. `1` means just a single action will be started at a time to run this pipeline. Must be between 0 and 10.
|
|
33
33
|
* @type {number}
|
|
34
34
|
* @memberof PipelineUpdate
|
|
35
35
|
*/
|
|
@@ -36,7 +36,7 @@ export interface ServerEnvironmentCreate {
|
|
|
36
36
|
*/
|
|
37
37
|
ssh_port?: number;
|
|
38
38
|
/**
|
|
39
|
-
* Maximum number of actions that can run in parallel on this server. `0` means no limit of simultaneous actions. `1` means just a single action will be started at a time to run on this server. Must be between 0 and
|
|
39
|
+
* Maximum number of actions that can run in parallel on this server. `0` means no limit of simultaneous actions. `1` means just a single action will be started at a time to run on this server. Must be between 0 and 10.
|
|
40
40
|
* @type {number}
|
|
41
41
|
* @memberof ServerEnvironmentCreate
|
|
42
42
|
*/
|
|
@@ -34,7 +34,7 @@ export interface ServerUpdate {
|
|
|
34
34
|
*/
|
|
35
35
|
ssh_port?: number;
|
|
36
36
|
/**
|
|
37
|
-
* Maximum number of actions that can run in parallel on this server. `0` means no limit of simultaneous actions. `1` means just a single action will be started at a time to run on this server. Must be between 0 and
|
|
37
|
+
* Maximum number of actions that can run in parallel on this server. `0` means no limit of simultaneous actions. `1` means just a single action will be started at a time to run on this server. Must be between 0 and 10.
|
|
38
38
|
* @type {number}
|
|
39
39
|
* @memberof ServerUpdate
|
|
40
40
|
*/
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { VariableTargets } from './variable-targets';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -22,9 +23,9 @@ export interface StaticServiceTypeSupportedVersions {
|
|
|
22
23
|
*/
|
|
23
24
|
version?: string;
|
|
24
25
|
/**
|
|
25
|
-
* The
|
|
26
|
-
* @type {Array<
|
|
26
|
+
* The list of VariableTarget
|
|
27
|
+
* @type {Array<VariableTargets>}
|
|
27
28
|
* @memberof StaticServiceTypeSupportedVersions
|
|
28
29
|
*/
|
|
29
|
-
variable_targets?: Array<
|
|
30
|
+
variable_targets?: Array<VariableTargets>;
|
|
30
31
|
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* devopness API
|
|
3
|
+
* Devopness API - Painless essential DevOps to everyone
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: latest
|
|
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
|
+
* The object of target defining how the variable key/value pair will be deployed
|
|
14
|
+
* @export
|
|
15
|
+
* @interface VariableTargets
|
|
16
|
+
*/
|
|
17
|
+
export interface VariableTargets {
|
|
18
|
+
/**
|
|
19
|
+
* The variable target name
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof VariableTargets
|
|
22
|
+
*/
|
|
23
|
+
name?: VariableTargetsNameEnum;
|
|
24
|
+
/**
|
|
25
|
+
* Human readable version of the variable target name
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof VariableTargets
|
|
28
|
+
*/
|
|
29
|
+
name_human_readable?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Text describing what is the variable target
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof VariableTargets
|
|
34
|
+
*/
|
|
35
|
+
hint?: string;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* @export
|
|
39
|
+
* @enum {string}
|
|
40
|
+
*/
|
|
41
|
+
export declare enum VariableTargetsNameEnum {
|
|
42
|
+
ResourceConfigFile = "resource-config-file",
|
|
43
|
+
NginxHttpServer = "nginx-http-server",
|
|
44
|
+
MyCnf = "my-cnf",
|
|
45
|
+
NewrelicInfraYml = "newrelic-infra-yml",
|
|
46
|
+
NginxConf = "nginx-conf",
|
|
47
|
+
NginxMain = "nginx-main",
|
|
48
|
+
NginxHttp = "nginx-http",
|
|
49
|
+
OsEnvVar = "os-env-var",
|
|
50
|
+
PhpCliPhpIni = "php-cli_php-ini",
|
|
51
|
+
PhpFpmPhpFpmConf = "php-fpm_php-fpm-conf",
|
|
52
|
+
PhpFpmPhpIni = "php-fpm_php-ini",
|
|
53
|
+
PhpFpmPoolDWwwConf = "php-fpm_pool-d-www-conf",
|
|
54
|
+
RedisConf = "redis-conf",
|
|
55
|
+
SupervisordConf = "supervisord-conf"
|
|
56
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* devopness API
|
|
5
|
+
* Devopness API - Painless essential DevOps to everyone
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: latest
|
|
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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.VariableTargetsNameEnum = void 0;
|
|
16
|
+
/**
|
|
17
|
+
* @export
|
|
18
|
+
* @enum {string}
|
|
19
|
+
*/
|
|
20
|
+
var VariableTargetsNameEnum;
|
|
21
|
+
(function (VariableTargetsNameEnum) {
|
|
22
|
+
VariableTargetsNameEnum["ResourceConfigFile"] = "resource-config-file";
|
|
23
|
+
VariableTargetsNameEnum["NginxHttpServer"] = "nginx-http-server";
|
|
24
|
+
VariableTargetsNameEnum["MyCnf"] = "my-cnf";
|
|
25
|
+
VariableTargetsNameEnum["NewrelicInfraYml"] = "newrelic-infra-yml";
|
|
26
|
+
VariableTargetsNameEnum["NginxConf"] = "nginx-conf";
|
|
27
|
+
VariableTargetsNameEnum["NginxMain"] = "nginx-main";
|
|
28
|
+
VariableTargetsNameEnum["NginxHttp"] = "nginx-http";
|
|
29
|
+
VariableTargetsNameEnum["OsEnvVar"] = "os-env-var";
|
|
30
|
+
VariableTargetsNameEnum["PhpCliPhpIni"] = "php-cli_php-ini";
|
|
31
|
+
VariableTargetsNameEnum["PhpFpmPhpFpmConf"] = "php-fpm_php-fpm-conf";
|
|
32
|
+
VariableTargetsNameEnum["PhpFpmPhpIni"] = "php-fpm_php-ini";
|
|
33
|
+
VariableTargetsNameEnum["PhpFpmPoolDWwwConf"] = "php-fpm_pool-d-www-conf";
|
|
34
|
+
VariableTargetsNameEnum["RedisConf"] = "redis-conf";
|
|
35
|
+
VariableTargetsNameEnum["SupervisordConf"] = "supervisord-conf";
|
|
36
|
+
})(VariableTargetsNameEnum = exports.VariableTargetsNameEnum || (exports.VariableTargetsNameEnum = {}));
|
package/package.json
CHANGED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* devopness API
|
|
3
|
-
* Devopness API - Painless essential DevOps to everyone
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: latest
|
|
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 { StaticApplicationTypePublic } from './static-application-type-public';
|
|
13
|
-
/**
|
|
14
|
-
*
|
|
15
|
-
* @export
|
|
16
|
-
* @interface StaticApplicationType
|
|
17
|
-
*/
|
|
18
|
-
export interface StaticApplicationType {
|
|
19
|
-
/**
|
|
20
|
-
*
|
|
21
|
-
* @type {StaticApplicationTypePublic}
|
|
22
|
-
* @memberof StaticApplicationType
|
|
23
|
-
*/
|
|
24
|
-
_public: StaticApplicationTypePublic;
|
|
25
|
-
/**
|
|
26
|
-
*
|
|
27
|
-
* @type {StaticApplicationTypePublic}
|
|
28
|
-
* @memberof StaticApplicationType
|
|
29
|
-
*/
|
|
30
|
-
_private: StaticApplicationTypePublic;
|
|
31
|
-
}
|
/package/dist/api/generated/models/{static-application-type-public.js → application-types-public.js}
RENAMED
|
File without changes
|
|
File without changes
|