@devopness/sdk-js 2.115.0 → 2.116.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/dist/api/generated/models/application-environment-create.d.ts +2 -2
- package/dist/api/generated/models/application-update.d.ts +2 -2
- package/dist/api/generated/models/variable-targets.d.ts +4 -24
- package/dist/api/generated/models/variable-targets.js +0 -23
- package/dist/services/StaticService.d.ts +2 -0
- package/dist/services/StaticService.js +2 -0
- package/package.json +1 -1
|
@@ -41,11 +41,11 @@ export interface ApplicationEnvironmentCreate {
|
|
|
41
41
|
*/
|
|
42
42
|
build_command?: string;
|
|
43
43
|
/**
|
|
44
|
-
* The language runtime engine version to be used to execute this application on the deployed servers.
|
|
44
|
+
* The language runtime engine version to be used to execute this application on the deployed servers. Must be one of <code></code> Must be at least 1 characters. Must not be greater than 10 characters.
|
|
45
45
|
* @type {string}
|
|
46
46
|
* @memberof ApplicationEnvironmentCreate
|
|
47
47
|
*/
|
|
48
|
-
engine_version
|
|
48
|
+
engine_version: string;
|
|
49
49
|
/**
|
|
50
50
|
* The base framework on top of which the application has been implemented - it might have impact on the steps to be performed during application deployment. Must not be greater than 30 characters.
|
|
51
51
|
* @type {string}
|
|
@@ -47,11 +47,11 @@ export interface ApplicationUpdate {
|
|
|
47
47
|
*/
|
|
48
48
|
build_command?: string;
|
|
49
49
|
/**
|
|
50
|
-
* The language runtime engine version to be used to execute this application on the deployed servers.
|
|
50
|
+
* The language runtime engine version to be used to execute this application on the deployed servers. Must be one of <code></code> Must be at least 1 characters. Must not be greater than 10 characters.
|
|
51
51
|
* @type {string}
|
|
52
52
|
* @memberof ApplicationUpdate
|
|
53
53
|
*/
|
|
54
|
-
engine_version
|
|
54
|
+
engine_version: string;
|
|
55
55
|
/**
|
|
56
56
|
* The base framework on top of which the application has been implemented - it might have impact on the steps to be performed during application deployment. Must not be greater than 30 characters.
|
|
57
57
|
* @type {string}
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { VariableTarget } from './variable-target';
|
|
12
13
|
/**
|
|
13
14
|
* The object of target defining how the variable key/value pair will be deployed
|
|
14
15
|
* @export
|
|
@@ -16,11 +17,11 @@
|
|
|
16
17
|
*/
|
|
17
18
|
export interface VariableTargets {
|
|
18
19
|
/**
|
|
19
|
-
*
|
|
20
|
-
* @type {
|
|
20
|
+
*
|
|
21
|
+
* @type {VariableTarget}
|
|
21
22
|
* @memberof VariableTargets
|
|
22
23
|
*/
|
|
23
|
-
name?:
|
|
24
|
+
name?: VariableTarget;
|
|
24
25
|
/**
|
|
25
26
|
* Human readable version of the variable target name
|
|
26
27
|
* @type {string}
|
|
@@ -34,24 +35,3 @@ export interface VariableTargets {
|
|
|
34
35
|
*/
|
|
35
36
|
hint?: string;
|
|
36
37
|
}
|
|
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
|
-
SysctlConf = "sysctl-conf"
|
|
57
|
-
}
|
|
@@ -12,26 +12,3 @@
|
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
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["SysctlConf"] = "sysctl-conf";
|
|
37
|
-
})(VariableTargetsNameEnum = exports.VariableTargetsNameEnum || (exports.VariableTargetsNameEnum = {}));
|
|
@@ -7,6 +7,7 @@ import { StaticDataEnvironmentOptionsApiService } from "../api/generated/apis/st
|
|
|
7
7
|
import { StaticDataNetworkRuleOptionsApiService } from "../api/generated/apis/static-data-network-rule-options-api";
|
|
8
8
|
import { StaticDataPermissionsApiService } from "../api/generated/apis/static-data-permissions-api";
|
|
9
9
|
import { StaticDataResourceTypesApiService } from "../api/generated/apis/static-data-resource-types-api";
|
|
10
|
+
import { StaticDataServerOptionsApiService } from "../api/generated/apis/static-data-server-options-api";
|
|
10
11
|
import { StaticDataServiceOptionsApiService } from "../api/generated/apis/static-data-service-options-api";
|
|
11
12
|
import { StaticDataUserProfileOptionsApiService } from "../api/generated/apis/static-data-user-profile-options-api";
|
|
12
13
|
export declare class StaticService {
|
|
@@ -19,6 +20,7 @@ export declare class StaticService {
|
|
|
19
20
|
networkRuleOptions: StaticDataNetworkRuleOptionsApiService;
|
|
20
21
|
permissions: StaticDataPermissionsApiService;
|
|
21
22
|
resourceTypes: StaticDataResourceTypesApiService;
|
|
23
|
+
serverOptions: StaticDataServerOptionsApiService;
|
|
22
24
|
serviceOptions: StaticDataServiceOptionsApiService;
|
|
23
25
|
userProfileOptions: StaticDataUserProfileOptionsApiService;
|
|
24
26
|
}
|
|
@@ -10,6 +10,7 @@ const static_data_environment_options_api_1 = require("../api/generated/apis/sta
|
|
|
10
10
|
const static_data_network_rule_options_api_1 = require("../api/generated/apis/static-data-network-rule-options-api");
|
|
11
11
|
const static_data_permissions_api_1 = require("../api/generated/apis/static-data-permissions-api");
|
|
12
12
|
const static_data_resource_types_api_1 = require("../api/generated/apis/static-data-resource-types-api");
|
|
13
|
+
const static_data_server_options_api_1 = require("../api/generated/apis/static-data-server-options-api");
|
|
13
14
|
const static_data_service_options_api_1 = require("../api/generated/apis/static-data-service-options-api");
|
|
14
15
|
const static_data_user_profile_options_api_1 = require("../api/generated/apis/static-data-user-profile-options-api");
|
|
15
16
|
class StaticService {
|
|
@@ -23,6 +24,7 @@ class StaticService {
|
|
|
23
24
|
this.networkRuleOptions = new static_data_network_rule_options_api_1.StaticDataNetworkRuleOptionsApiService();
|
|
24
25
|
this.permissions = new static_data_permissions_api_1.StaticDataPermissionsApiService();
|
|
25
26
|
this.resourceTypes = new static_data_resource_types_api_1.StaticDataResourceTypesApiService();
|
|
27
|
+
this.serverOptions = new static_data_server_options_api_1.StaticDataServerOptionsApiService();
|
|
26
28
|
this.serviceOptions = new static_data_service_options_api_1.StaticDataServiceOptionsApiService();
|
|
27
29
|
this.userProfileOptions = new static_data_user_profile_options_api_1.StaticDataUserProfileOptionsApiService();
|
|
28
30
|
}
|