@devopness/sdk-js 2.136.0 → 2.138.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/action-resource.d.ts +3 -2
- package/dist/api/generated/models/daemon-environment-create.d.ts +6 -0
- package/dist/api/generated/models/daemon-update.d.ts +2 -2
- package/dist/api/generated/models/index.d.ts +1 -0
- package/dist/api/generated/models/index.js +1 -0
- package/dist/api/generated/models/static-virtual-host-type.d.ts +37 -0
- package/dist/api/generated/models/static-virtual-host-type.js +14 -0
- package/dist/api/generated/models/virtual-host-options.d.ts +7 -0
- package/dist/api/generated/models/virtual-host-relation.d.ts +6 -0
- package/dist/api/generated/models/virtual-host.d.ts +6 -0
- package/package.json +1 -1
|
@@ -20,6 +20,7 @@ import { ServiceRelation } from './service-relation';
|
|
|
20
20
|
import { SshKeyRelation } from './ssh-key-relation';
|
|
21
21
|
import { SslCertificateRelation } from './ssl-certificate-relation';
|
|
22
22
|
import { SubnetRelation } from './subnet-relation';
|
|
23
|
+
import { VirtualHostRelation } from './virtual-host-relation';
|
|
23
24
|
/**
|
|
24
25
|
* The resource that triggered an action
|
|
25
26
|
* @export
|
|
@@ -46,8 +47,8 @@ export interface ActionResource {
|
|
|
46
47
|
type_human_readable: string;
|
|
47
48
|
/**
|
|
48
49
|
* The resource data of type specified on `resource.type`
|
|
49
|
-
* @type {ApplicationRelation | CronJobRelation | DaemonRelation | NetworkRelation | NetworkRuleRelation | ServerRelation | ServiceRelation | SshKeyRelation | SslCertificateRelation | SubnetRelation}
|
|
50
|
+
* @type {ApplicationRelation | CronJobRelation | DaemonRelation | NetworkRelation | NetworkRuleRelation | ServerRelation | ServiceRelation | SshKeyRelation | SslCertificateRelation | SubnetRelation | VirtualHostRelation}
|
|
50
51
|
* @memberof ActionResource
|
|
51
52
|
*/
|
|
52
|
-
data?: ApplicationRelation | CronJobRelation | DaemonRelation | NetworkRelation | NetworkRuleRelation | ServerRelation | ServiceRelation | SshKeyRelation | SslCertificateRelation | SubnetRelation | null;
|
|
53
|
+
data?: ApplicationRelation | CronJobRelation | DaemonRelation | NetworkRelation | NetworkRuleRelation | ServerRelation | ServiceRelation | SshKeyRelation | SslCertificateRelation | SubnetRelation | VirtualHostRelation | null;
|
|
53
54
|
}
|
|
@@ -45,4 +45,10 @@ export interface DaemonEnvironmentCreate {
|
|
|
45
45
|
* @memberof DaemonEnvironmentCreate
|
|
46
46
|
*/
|
|
47
47
|
name: string;
|
|
48
|
+
/**
|
|
49
|
+
* The ID of the application to be linked to the daemon. The value of `working_directory` will be relative to the application directory.
|
|
50
|
+
* @type {number}
|
|
51
|
+
* @memberof DaemonEnvironmentCreate
|
|
52
|
+
*/
|
|
53
|
+
application_id?: number | null;
|
|
48
54
|
}
|
|
@@ -52,9 +52,9 @@ export interface DaemonUpdate {
|
|
|
52
52
|
*/
|
|
53
53
|
name: string;
|
|
54
54
|
/**
|
|
55
|
-
*
|
|
55
|
+
* The ID of the application to be linked to the daemon. The value of `working_directory` will be relative to the application directory.
|
|
56
56
|
* @type {number}
|
|
57
57
|
* @memberof DaemonUpdate
|
|
58
58
|
*/
|
|
59
|
-
application_id?: number;
|
|
59
|
+
application_id?: number | null;
|
|
60
60
|
}
|
|
@@ -221,6 +221,7 @@ export * from './static-network-rule-protocol-defaults';
|
|
|
221
221
|
export * from './static-permission';
|
|
222
222
|
export * from './static-service-type';
|
|
223
223
|
export * from './static-service-type-supported-versions';
|
|
224
|
+
export * from './static-virtual-host-type';
|
|
224
225
|
export * from './step';
|
|
225
226
|
export * from './step-pipeline-create';
|
|
226
227
|
export * from './step-pipeline-update';
|
|
@@ -237,6 +237,7 @@ __exportStar(require("./static-network-rule-protocol-defaults"), exports);
|
|
|
237
237
|
__exportStar(require("./static-permission"), exports);
|
|
238
238
|
__exportStar(require("./static-service-type"), exports);
|
|
239
239
|
__exportStar(require("./static-service-type-supported-versions"), exports);
|
|
240
|
+
__exportStar(require("./static-virtual-host-type"), exports);
|
|
240
241
|
__exportStar(require("./step"), exports);
|
|
241
242
|
__exportStar(require("./step-pipeline-create"), exports);
|
|
242
243
|
__exportStar(require("./step-pipeline-update"), exports);
|
|
@@ -0,0 +1,37 @@
|
|
|
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 { VirtualHostType } from './virtual-host-type';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface StaticVirtualHostType
|
|
17
|
+
*/
|
|
18
|
+
export interface StaticVirtualHostType {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {VirtualHostType}
|
|
22
|
+
* @memberof StaticVirtualHostType
|
|
23
|
+
*/
|
|
24
|
+
name: VirtualHostType;
|
|
25
|
+
/**
|
|
26
|
+
* Human readable version of the virtual host type
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof StaticVirtualHostType
|
|
29
|
+
*/
|
|
30
|
+
name_human_readable: string;
|
|
31
|
+
/**
|
|
32
|
+
* Descriptive text to help users to know what data is stored in the field and optional extra information on how to enter data to the field
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof StaticVirtualHostType
|
|
35
|
+
*/
|
|
36
|
+
hint: string;
|
|
37
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
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 });
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { StaticVirtualHostType } from './static-virtual-host-type';
|
|
12
13
|
import { VariableTargets } from './variable-targets';
|
|
13
14
|
/**
|
|
14
15
|
*
|
|
@@ -22,4 +23,10 @@ export interface VirtualHostOptions {
|
|
|
22
23
|
* @memberof VirtualHostOptions
|
|
23
24
|
*/
|
|
24
25
|
variable_targets: Array<VariableTargets>;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<StaticVirtualHostType>}
|
|
29
|
+
* @memberof VirtualHostOptions
|
|
30
|
+
*/
|
|
31
|
+
virtual_host_types: Array<StaticVirtualHostType>;
|
|
25
32
|
}
|
|
@@ -32,6 +32,12 @@ export interface VirtualHostRelation {
|
|
|
32
32
|
* @memberof VirtualHostRelation
|
|
33
33
|
*/
|
|
34
34
|
type: VirtualHostType;
|
|
35
|
+
/**
|
|
36
|
+
* The human readable version of the type
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof VirtualHostRelation
|
|
39
|
+
*/
|
|
40
|
+
type_human_readable: string;
|
|
35
41
|
/**
|
|
36
42
|
* The name of the Virtual Host
|
|
37
43
|
* @type {string}
|
|
@@ -32,6 +32,12 @@ export interface VirtualHost {
|
|
|
32
32
|
* @memberof VirtualHost
|
|
33
33
|
*/
|
|
34
34
|
type: VirtualHostType;
|
|
35
|
+
/**
|
|
36
|
+
* The human readable version of the type
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof VirtualHost
|
|
39
|
+
*/
|
|
40
|
+
type_human_readable: string;
|
|
35
41
|
/**
|
|
36
42
|
* The name of the Virtual Host
|
|
37
43
|
* @type {string}
|