@devopness/sdk-js 2.126.0 → 2.128.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/apis/static-data-virtual-host-options-api.d.ts +24 -0
- package/dist/api/generated/apis/static-data-virtual-host-options-api.js +44 -0
- package/dist/api/generated/models/application-types-private-application.d.ts +1 -1
- package/dist/api/generated/models/application-types-public-application.d.ts +1 -1
- package/dist/api/generated/models/index.d.ts +1 -0
- package/dist/api/generated/models/index.js +1 -0
- package/dist/api/generated/models/server-options.d.ts +1 -1
- package/dist/api/generated/models/virtual-host-options.d.ts +25 -0
- package/dist/api/generated/models/virtual-host-options.js +14 -0
- package/dist/services/StaticService.d.ts +2 -0
- package/dist/services/StaticService.js +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,24 @@
|
|
|
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 { ApiBaseService } from "../../../services/ApiBaseService";
|
|
13
|
+
import { ApiResponse } from "../../../common/ApiResponse";
|
|
14
|
+
import { VirtualHostOptions } from '../../generated/models';
|
|
15
|
+
/**
|
|
16
|
+
* StaticDataVirtualHostOptionsApiService - Auto-generated
|
|
17
|
+
*/
|
|
18
|
+
export declare class StaticDataVirtualHostOptionsApiService extends ApiBaseService {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @summary List `Virtual Host` options
|
|
22
|
+
*/
|
|
23
|
+
getStaticVirtualHostOptions(): Promise<ApiResponse<VirtualHostOptions>>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
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
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
15
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
16
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
17
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
18
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
19
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
20
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
21
|
+
});
|
|
22
|
+
};
|
|
23
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24
|
+
exports.StaticDataVirtualHostOptionsApiService = void 0;
|
|
25
|
+
const ApiBaseService_1 = require("../../../services/ApiBaseService");
|
|
26
|
+
const ApiResponse_1 = require("../../../common/ApiResponse");
|
|
27
|
+
/**
|
|
28
|
+
* StaticDataVirtualHostOptionsApiService - Auto-generated
|
|
29
|
+
*/
|
|
30
|
+
class StaticDataVirtualHostOptionsApiService extends ApiBaseService_1.ApiBaseService {
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @summary List `Virtual Host` options
|
|
34
|
+
*/
|
|
35
|
+
getStaticVirtualHostOptions() {
|
|
36
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
37
|
+
let queryString = '';
|
|
38
|
+
const requestUrl = '/static/virtual-host-options' + (queryString ? `?${queryString}` : '');
|
|
39
|
+
const response = yield this.get(requestUrl);
|
|
40
|
+
return new ApiResponse_1.ApiResponse(response);
|
|
41
|
+
});
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
exports.StaticDataVirtualHostOptionsApiService = StaticDataVirtualHostOptionsApiService;
|
|
@@ -296,3 +296,4 @@ __exportStar(require("./variable-target"), exports);
|
|
|
296
296
|
__exportStar(require("./variable-targets"), exports);
|
|
297
297
|
__exportStar(require("./variable-type"), exports);
|
|
298
298
|
__exportStar(require("./variable-update"), exports);
|
|
299
|
+
__exportStar(require("./virtual-host-options"), exports);
|
|
@@ -0,0 +1,25 @@
|
|
|
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 { VariableTargets } from './variable-targets';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface VirtualHostOptions
|
|
17
|
+
*/
|
|
18
|
+
export interface VirtualHostOptions {
|
|
19
|
+
/**
|
|
20
|
+
* The list of VariableTarget
|
|
21
|
+
* @type {Array<VariableTargets>}
|
|
22
|
+
* @memberof VirtualHostOptions
|
|
23
|
+
*/
|
|
24
|
+
variable_targets: Array<VariableTargets>;
|
|
25
|
+
}
|
|
@@ -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 });
|
|
@@ -11,6 +11,7 @@ import { StaticDataServerOptionsApiService } from "../api/generated/apis/static-
|
|
|
11
11
|
import { StaticDataServiceOptionsApiService } from "../api/generated/apis/static-data-service-options-api";
|
|
12
12
|
import { StaticDataSourceProviderOptionsApiService } from "../api/generated/apis/static-data-source-provider-options-api";
|
|
13
13
|
import { StaticDataUserProfileOptionsApiService } from "../api/generated/apis/static-data-user-profile-options-api";
|
|
14
|
+
import { StaticDataVirtualHostOptionsApiService } from "../api/generated/apis/static-data-virtual-host-options-api";
|
|
14
15
|
export declare class StaticService {
|
|
15
16
|
applicationOptions: StaticDataApplicationOptionsApiService;
|
|
16
17
|
cloudProviderOptions: StaticDataCloudProviderOptionsApiService;
|
|
@@ -25,4 +26,5 @@ export declare class StaticService {
|
|
|
25
26
|
serviceOptions: StaticDataServiceOptionsApiService;
|
|
26
27
|
sourceProviderOptions: StaticDataSourceProviderOptionsApiService;
|
|
27
28
|
userProfileOptions: StaticDataUserProfileOptionsApiService;
|
|
29
|
+
virtualHostOptions: StaticDataVirtualHostOptionsApiService;
|
|
28
30
|
}
|
|
@@ -14,6 +14,7 @@ const static_data_server_options_api_1 = require("../api/generated/apis/static-d
|
|
|
14
14
|
const static_data_service_options_api_1 = require("../api/generated/apis/static-data-service-options-api");
|
|
15
15
|
const static_data_source_provider_options_api_1 = require("../api/generated/apis/static-data-source-provider-options-api");
|
|
16
16
|
const static_data_user_profile_options_api_1 = require("../api/generated/apis/static-data-user-profile-options-api");
|
|
17
|
+
const static_data_virtual_host_options_api_1 = require("../api/generated/apis/static-data-virtual-host-options-api");
|
|
17
18
|
class StaticService {
|
|
18
19
|
constructor() {
|
|
19
20
|
this.applicationOptions = new static_data_application_options_api_1.StaticDataApplicationOptionsApiService();
|
|
@@ -29,6 +30,7 @@ class StaticService {
|
|
|
29
30
|
this.serviceOptions = new static_data_service_options_api_1.StaticDataServiceOptionsApiService();
|
|
30
31
|
this.sourceProviderOptions = new static_data_source_provider_options_api_1.StaticDataSourceProviderOptionsApiService();
|
|
31
32
|
this.userProfileOptions = new static_data_user_profile_options_api_1.StaticDataUserProfileOptionsApiService();
|
|
33
|
+
this.virtualHostOptions = new static_data_virtual_host_options_api_1.StaticDataVirtualHostOptionsApiService();
|
|
32
34
|
}
|
|
33
35
|
}
|
|
34
36
|
exports.StaticService = StaticService;
|