@devopness/sdk-js 2.136.0 → 2.137.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.
@@ -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}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devopness/sdk-js",
3
- "version": "2.136.0",
3
+ "version": "2.137.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },