@devopness/sdk-js 2.161.1 → 2.162.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-api.d.ts +105 -0
- package/dist/api/generated/apis/static-data-api.js +228 -0
- package/dist/api/generated/models/organization-relation.d.ts +7 -0
- package/dist/api/generated/models/organization.d.ts +7 -0
- package/dist/services/StaticService.d.ts +2 -27
- package/dist/services/StaticService.js +2 -29
- package/package.json +1 -1
- package/dist/api/generated/apis/static-data-application-options-api.d.ts +0 -24
- package/dist/api/generated/apis/static-data-application-options-api.js +0 -44
- package/dist/api/generated/apis/static-data-cloud-provider-service-instances-api.d.ts +0 -28
- package/dist/api/generated/apis/static-data-cloud-provider-service-instances-api.js +0 -62
- package/dist/api/generated/apis/static-data-cloud-provider-services-api.d.ts +0 -25
- package/dist/api/generated/apis/static-data-cloud-provider-services-api.js +0 -49
- package/dist/api/generated/apis/static-data-credential-options-api.d.ts +0 -24
- package/dist/api/generated/apis/static-data-credential-options-api.js +0 -44
- package/dist/api/generated/apis/static-data-cron-job-options-api.d.ts +0 -24
- package/dist/api/generated/apis/static-data-cron-job-options-api.js +0 -44
- package/dist/api/generated/apis/static-data-environment-options-api.d.ts +0 -24
- package/dist/api/generated/apis/static-data-environment-options-api.js +0 -44
- package/dist/api/generated/apis/static-data-network-rule-options-api.d.ts +0 -24
- package/dist/api/generated/apis/static-data-network-rule-options-api.js +0 -44
- package/dist/api/generated/apis/static-data-permissions-api.d.ts +0 -26
- package/dist/api/generated/apis/static-data-permissions-api.js +0 -53
- package/dist/api/generated/apis/static-data-resource-types-api.d.ts +0 -26
- package/dist/api/generated/apis/static-data-resource-types-api.js +0 -53
- package/dist/api/generated/apis/static-data-server-options-api.d.ts +0 -24
- package/dist/api/generated/apis/static-data-server-options-api.js +0 -44
- package/dist/api/generated/apis/static-data-service-options-api.d.ts +0 -24
- package/dist/api/generated/apis/static-data-service-options-api.js +0 -44
- package/dist/api/generated/apis/static-data-user-profile-options-api.d.ts +0 -24
- package/dist/api/generated/apis/static-data-user-profile-options-api.js +0 -44
- package/dist/api/generated/apis/static-data-virtual-host-options-api.d.ts +0 -24
- package/dist/api/generated/apis/static-data-virtual-host-options-api.js +0 -44
|
@@ -1,49 +0,0 @@
|
|
|
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.StaticDataCloudProviderServicesApiService = void 0;
|
|
25
|
-
const ApiBaseService_1 = require("../../../services/ApiBaseService");
|
|
26
|
-
const ApiResponse_1 = require("../../../common/ApiResponse");
|
|
27
|
-
const Exceptions_1 = require("../../../common/Exceptions");
|
|
28
|
-
/**
|
|
29
|
-
* StaticDataCloudProviderServicesApiService - Auto-generated
|
|
30
|
-
*/
|
|
31
|
-
class StaticDataCloudProviderServicesApiService extends ApiBaseService_1.ApiBaseService {
|
|
32
|
-
/**
|
|
33
|
-
*
|
|
34
|
-
* @summary Get details of a single `Cloud Provider Service`
|
|
35
|
-
* @param {string} cloudProviderServiceCode The cloud provider service code.
|
|
36
|
-
*/
|
|
37
|
-
getStaticCloudProviderService(cloudProviderServiceCode) {
|
|
38
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
39
|
-
if (cloudProviderServiceCode === null || cloudProviderServiceCode === undefined) {
|
|
40
|
-
throw new Exceptions_1.ArgumentNullException('cloudProviderServiceCode', 'getStaticCloudProviderService');
|
|
41
|
-
}
|
|
42
|
-
let queryString = '';
|
|
43
|
-
const requestUrl = '/static/cloud-provider-service-options/{cloud_provider_service_code}' + (queryString ? `?${queryString}` : '');
|
|
44
|
-
const response = yield this.get(requestUrl.replace(`{${"cloud_provider_service_code"}}`, encodeURIComponent(String(cloudProviderServiceCode))));
|
|
45
|
-
return new ApiResponse_1.ApiResponse(response);
|
|
46
|
-
});
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
exports.StaticDataCloudProviderServicesApiService = StaticDataCloudProviderServicesApiService;
|
|
@@ -1,24 +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 { ApiBaseService } from "../../../services/ApiBaseService";
|
|
13
|
-
import { ApiResponse } from "../../../common/ApiResponse";
|
|
14
|
-
import { CredentialOptions } from '../../generated/models';
|
|
15
|
-
/**
|
|
16
|
-
* StaticDataCredentialOptionsApiService - Auto-generated
|
|
17
|
-
*/
|
|
18
|
-
export declare class StaticDataCredentialOptionsApiService extends ApiBaseService {
|
|
19
|
-
/**
|
|
20
|
-
*
|
|
21
|
-
* @summary List `Credential` resource options
|
|
22
|
-
*/
|
|
23
|
-
getStaticCredentialOptions(): Promise<ApiResponse<CredentialOptions>>;
|
|
24
|
-
}
|
|
@@ -1,44 +0,0 @@
|
|
|
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.StaticDataCredentialOptionsApiService = void 0;
|
|
25
|
-
const ApiBaseService_1 = require("../../../services/ApiBaseService");
|
|
26
|
-
const ApiResponse_1 = require("../../../common/ApiResponse");
|
|
27
|
-
/**
|
|
28
|
-
* StaticDataCredentialOptionsApiService - Auto-generated
|
|
29
|
-
*/
|
|
30
|
-
class StaticDataCredentialOptionsApiService extends ApiBaseService_1.ApiBaseService {
|
|
31
|
-
/**
|
|
32
|
-
*
|
|
33
|
-
* @summary List `Credential` resource options
|
|
34
|
-
*/
|
|
35
|
-
getStaticCredentialOptions() {
|
|
36
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
37
|
-
let queryString = '';
|
|
38
|
-
const requestUrl = '/static/credential-options' + (queryString ? `?${queryString}` : '');
|
|
39
|
-
const response = yield this.get(requestUrl);
|
|
40
|
-
return new ApiResponse_1.ApiResponse(response);
|
|
41
|
-
});
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
exports.StaticDataCredentialOptionsApiService = StaticDataCredentialOptionsApiService;
|
|
@@ -1,24 +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 { ApiBaseService } from "../../../services/ApiBaseService";
|
|
13
|
-
import { ApiResponse } from "../../../common/ApiResponse";
|
|
14
|
-
import { CronJobOptions } from '../../generated/models';
|
|
15
|
-
/**
|
|
16
|
-
* StaticDataCronJobOptionsApiService - Auto-generated
|
|
17
|
-
*/
|
|
18
|
-
export declare class StaticDataCronJobOptionsApiService extends ApiBaseService {
|
|
19
|
-
/**
|
|
20
|
-
*
|
|
21
|
-
* @summary List `CronJob` resource options
|
|
22
|
-
*/
|
|
23
|
-
getStaticCronJobOptions(): Promise<ApiResponse<CronJobOptions>>;
|
|
24
|
-
}
|
|
@@ -1,44 +0,0 @@
|
|
|
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.StaticDataCronJobOptionsApiService = void 0;
|
|
25
|
-
const ApiBaseService_1 = require("../../../services/ApiBaseService");
|
|
26
|
-
const ApiResponse_1 = require("../../../common/ApiResponse");
|
|
27
|
-
/**
|
|
28
|
-
* StaticDataCronJobOptionsApiService - Auto-generated
|
|
29
|
-
*/
|
|
30
|
-
class StaticDataCronJobOptionsApiService extends ApiBaseService_1.ApiBaseService {
|
|
31
|
-
/**
|
|
32
|
-
*
|
|
33
|
-
* @summary List `CronJob` resource options
|
|
34
|
-
*/
|
|
35
|
-
getStaticCronJobOptions() {
|
|
36
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
37
|
-
let queryString = '';
|
|
38
|
-
const requestUrl = '/static/cronjob-options' + (queryString ? `?${queryString}` : '');
|
|
39
|
-
const response = yield this.get(requestUrl);
|
|
40
|
-
return new ApiResponse_1.ApiResponse(response);
|
|
41
|
-
});
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
exports.StaticDataCronJobOptionsApiService = StaticDataCronJobOptionsApiService;
|
|
@@ -1,24 +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 { ApiBaseService } from "../../../services/ApiBaseService";
|
|
13
|
-
import { ApiResponse } from "../../../common/ApiResponse";
|
|
14
|
-
import { EnvironmentOptions } from '../../generated/models';
|
|
15
|
-
/**
|
|
16
|
-
* StaticDataEnvironmentOptionsApiService - Auto-generated
|
|
17
|
-
*/
|
|
18
|
-
export declare class StaticDataEnvironmentOptionsApiService extends ApiBaseService {
|
|
19
|
-
/**
|
|
20
|
-
*
|
|
21
|
-
* @summary List `Environment` options
|
|
22
|
-
*/
|
|
23
|
-
getStaticEnvironmentOptions(): Promise<ApiResponse<EnvironmentOptions>>;
|
|
24
|
-
}
|
|
@@ -1,44 +0,0 @@
|
|
|
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.StaticDataEnvironmentOptionsApiService = void 0;
|
|
25
|
-
const ApiBaseService_1 = require("../../../services/ApiBaseService");
|
|
26
|
-
const ApiResponse_1 = require("../../../common/ApiResponse");
|
|
27
|
-
/**
|
|
28
|
-
* StaticDataEnvironmentOptionsApiService - Auto-generated
|
|
29
|
-
*/
|
|
30
|
-
class StaticDataEnvironmentOptionsApiService extends ApiBaseService_1.ApiBaseService {
|
|
31
|
-
/**
|
|
32
|
-
*
|
|
33
|
-
* @summary List `Environment` options
|
|
34
|
-
*/
|
|
35
|
-
getStaticEnvironmentOptions() {
|
|
36
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
37
|
-
let queryString = '';
|
|
38
|
-
const requestUrl = '/static/environment-options' + (queryString ? `?${queryString}` : '');
|
|
39
|
-
const response = yield this.get(requestUrl);
|
|
40
|
-
return new ApiResponse_1.ApiResponse(response);
|
|
41
|
-
});
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
exports.StaticDataEnvironmentOptionsApiService = StaticDataEnvironmentOptionsApiService;
|
|
@@ -1,24 +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 { ApiBaseService } from "../../../services/ApiBaseService";
|
|
13
|
-
import { ApiResponse } from "../../../common/ApiResponse";
|
|
14
|
-
import { NetworkRuleOptions } from '../../generated/models';
|
|
15
|
-
/**
|
|
16
|
-
* StaticDataNetworkRuleOptionsApiService - Auto-generated
|
|
17
|
-
*/
|
|
18
|
-
export declare class StaticDataNetworkRuleOptionsApiService extends ApiBaseService {
|
|
19
|
-
/**
|
|
20
|
-
*
|
|
21
|
-
* @summary List `Network Rule` options
|
|
22
|
-
*/
|
|
23
|
-
getStaticNetworkRuleOptions(): Promise<ApiResponse<NetworkRuleOptions>>;
|
|
24
|
-
}
|
|
@@ -1,44 +0,0 @@
|
|
|
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.StaticDataNetworkRuleOptionsApiService = void 0;
|
|
25
|
-
const ApiBaseService_1 = require("../../../services/ApiBaseService");
|
|
26
|
-
const ApiResponse_1 = require("../../../common/ApiResponse");
|
|
27
|
-
/**
|
|
28
|
-
* StaticDataNetworkRuleOptionsApiService - Auto-generated
|
|
29
|
-
*/
|
|
30
|
-
class StaticDataNetworkRuleOptionsApiService extends ApiBaseService_1.ApiBaseService {
|
|
31
|
-
/**
|
|
32
|
-
*
|
|
33
|
-
* @summary List `Network Rule` options
|
|
34
|
-
*/
|
|
35
|
-
getStaticNetworkRuleOptions() {
|
|
36
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
37
|
-
let queryString = '';
|
|
38
|
-
const requestUrl = '/static/network-rule-options' + (queryString ? `?${queryString}` : '');
|
|
39
|
-
const response = yield this.get(requestUrl);
|
|
40
|
-
return new ApiResponse_1.ApiResponse(response);
|
|
41
|
-
});
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
exports.StaticDataNetworkRuleOptionsApiService = StaticDataNetworkRuleOptionsApiService;
|
|
@@ -1,26 +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 { ApiBaseService } from "../../../services/ApiBaseService";
|
|
13
|
-
import { ApiResponse } from "../../../common/ApiResponse";
|
|
14
|
-
import { PermissionRelation } from '../../generated/models';
|
|
15
|
-
/**
|
|
16
|
-
* StaticDataPermissionsApiService - Auto-generated
|
|
17
|
-
*/
|
|
18
|
-
export declare class StaticDataPermissionsApiService extends ApiBaseService {
|
|
19
|
-
/**
|
|
20
|
-
*
|
|
21
|
-
* @summary List available `Role` permissions
|
|
22
|
-
* @param {number} [page] Number of the page to be retrieved
|
|
23
|
-
* @param {number} [perPage] Number of items returned per page
|
|
24
|
-
*/
|
|
25
|
-
listStaticPermissions(page?: number, perPage?: number): Promise<ApiResponse<Array<PermissionRelation>>>;
|
|
26
|
-
}
|
|
@@ -1,53 +0,0 @@
|
|
|
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.StaticDataPermissionsApiService = void 0;
|
|
25
|
-
const ApiBaseService_1 = require("../../../services/ApiBaseService");
|
|
26
|
-
const ApiResponse_1 = require("../../../common/ApiResponse");
|
|
27
|
-
/**
|
|
28
|
-
* StaticDataPermissionsApiService - Auto-generated
|
|
29
|
-
*/
|
|
30
|
-
class StaticDataPermissionsApiService extends ApiBaseService_1.ApiBaseService {
|
|
31
|
-
/**
|
|
32
|
-
*
|
|
33
|
-
* @summary List available `Role` permissions
|
|
34
|
-
* @param {number} [page] Number of the page to be retrieved
|
|
35
|
-
* @param {number} [perPage] Number of items returned per page
|
|
36
|
-
*/
|
|
37
|
-
listStaticPermissions(page, perPage) {
|
|
38
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
39
|
-
let queryString = '';
|
|
40
|
-
const queryParams = { page: page, per_page: perPage, };
|
|
41
|
-
for (const key in queryParams) {
|
|
42
|
-
if (queryParams[key] === undefined || queryParams[key] === null) {
|
|
43
|
-
continue;
|
|
44
|
-
}
|
|
45
|
-
queryString += (queryString ? '&' : '') + `${key}=${encodeURI(queryParams[key])}`;
|
|
46
|
-
}
|
|
47
|
-
const requestUrl = '/static/permissions' + (queryString ? `?${queryString}` : '');
|
|
48
|
-
const response = yield this.get(requestUrl);
|
|
49
|
-
return new ApiResponse_1.ApiResponse(response);
|
|
50
|
-
});
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
exports.StaticDataPermissionsApiService = StaticDataPermissionsApiService;
|
|
@@ -1,26 +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 { ApiBaseService } from "../../../services/ApiBaseService";
|
|
13
|
-
import { ApiResponse } from "../../../common/ApiResponse";
|
|
14
|
-
import { ResourceTypeRelation } from '../../generated/models';
|
|
15
|
-
/**
|
|
16
|
-
* StaticDataResourceTypesApiService - Auto-generated
|
|
17
|
-
*/
|
|
18
|
-
export declare class StaticDataResourceTypesApiService extends ApiBaseService {
|
|
19
|
-
/**
|
|
20
|
-
*
|
|
21
|
-
* @summary List available resource types
|
|
22
|
-
* @param {number} [page] Number of the page to be retrieved
|
|
23
|
-
* @param {number} [perPage] Number of items returned per page
|
|
24
|
-
*/
|
|
25
|
-
listStaticResourceTypes(page?: number, perPage?: number): Promise<ApiResponse<Array<ResourceTypeRelation>>>;
|
|
26
|
-
}
|
|
@@ -1,53 +0,0 @@
|
|
|
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.StaticDataResourceTypesApiService = void 0;
|
|
25
|
-
const ApiBaseService_1 = require("../../../services/ApiBaseService");
|
|
26
|
-
const ApiResponse_1 = require("../../../common/ApiResponse");
|
|
27
|
-
/**
|
|
28
|
-
* StaticDataResourceTypesApiService - Auto-generated
|
|
29
|
-
*/
|
|
30
|
-
class StaticDataResourceTypesApiService extends ApiBaseService_1.ApiBaseService {
|
|
31
|
-
/**
|
|
32
|
-
*
|
|
33
|
-
* @summary List available resource types
|
|
34
|
-
* @param {number} [page] Number of the page to be retrieved
|
|
35
|
-
* @param {number} [perPage] Number of items returned per page
|
|
36
|
-
*/
|
|
37
|
-
listStaticResourceTypes(page, perPage) {
|
|
38
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
39
|
-
let queryString = '';
|
|
40
|
-
const queryParams = { page: page, per_page: perPage, };
|
|
41
|
-
for (const key in queryParams) {
|
|
42
|
-
if (queryParams[key] === undefined || queryParams[key] === null) {
|
|
43
|
-
continue;
|
|
44
|
-
}
|
|
45
|
-
queryString += (queryString ? '&' : '') + `${key}=${encodeURI(queryParams[key])}`;
|
|
46
|
-
}
|
|
47
|
-
const requestUrl = '/static/resource-types' + (queryString ? `?${queryString}` : '');
|
|
48
|
-
const response = yield this.get(requestUrl);
|
|
49
|
-
return new ApiResponse_1.ApiResponse(response);
|
|
50
|
-
});
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
exports.StaticDataResourceTypesApiService = StaticDataResourceTypesApiService;
|
|
@@ -1,24 +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 { ApiBaseService } from "../../../services/ApiBaseService";
|
|
13
|
-
import { ApiResponse } from "../../../common/ApiResponse";
|
|
14
|
-
import { ServerOptions } from '../../generated/models';
|
|
15
|
-
/**
|
|
16
|
-
* StaticDataServerOptionsApiService - Auto-generated
|
|
17
|
-
*/
|
|
18
|
-
export declare class StaticDataServerOptionsApiService extends ApiBaseService {
|
|
19
|
-
/**
|
|
20
|
-
*
|
|
21
|
-
* @summary List `Server` options
|
|
22
|
-
*/
|
|
23
|
-
getStaticServerOptions(): Promise<ApiResponse<ServerOptions>>;
|
|
24
|
-
}
|
|
@@ -1,44 +0,0 @@
|
|
|
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.StaticDataServerOptionsApiService = void 0;
|
|
25
|
-
const ApiBaseService_1 = require("../../../services/ApiBaseService");
|
|
26
|
-
const ApiResponse_1 = require("../../../common/ApiResponse");
|
|
27
|
-
/**
|
|
28
|
-
* StaticDataServerOptionsApiService - Auto-generated
|
|
29
|
-
*/
|
|
30
|
-
class StaticDataServerOptionsApiService extends ApiBaseService_1.ApiBaseService {
|
|
31
|
-
/**
|
|
32
|
-
*
|
|
33
|
-
* @summary List `Server` options
|
|
34
|
-
*/
|
|
35
|
-
getStaticServerOptions() {
|
|
36
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
37
|
-
let queryString = '';
|
|
38
|
-
const requestUrl = '/static/server-options' + (queryString ? `?${queryString}` : '');
|
|
39
|
-
const response = yield this.get(requestUrl);
|
|
40
|
-
return new ApiResponse_1.ApiResponse(response);
|
|
41
|
-
});
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
exports.StaticDataServerOptionsApiService = StaticDataServerOptionsApiService;
|
|
@@ -1,24 +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 { ApiBaseService } from "../../../services/ApiBaseService";
|
|
13
|
-
import { ApiResponse } from "../../../common/ApiResponse";
|
|
14
|
-
import { ServiceOptions } from '../../generated/models';
|
|
15
|
-
/**
|
|
16
|
-
* StaticDataServiceOptionsApiService - Auto-generated
|
|
17
|
-
*/
|
|
18
|
-
export declare class StaticDataServiceOptionsApiService extends ApiBaseService {
|
|
19
|
-
/**
|
|
20
|
-
*
|
|
21
|
-
* @summary List `Service` resource options
|
|
22
|
-
*/
|
|
23
|
-
getStaticServiceOptions(): Promise<ApiResponse<ServiceOptions>>;
|
|
24
|
-
}
|
|
@@ -1,44 +0,0 @@
|
|
|
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.StaticDataServiceOptionsApiService = void 0;
|
|
25
|
-
const ApiBaseService_1 = require("../../../services/ApiBaseService");
|
|
26
|
-
const ApiResponse_1 = require("../../../common/ApiResponse");
|
|
27
|
-
/**
|
|
28
|
-
* StaticDataServiceOptionsApiService - Auto-generated
|
|
29
|
-
*/
|
|
30
|
-
class StaticDataServiceOptionsApiService extends ApiBaseService_1.ApiBaseService {
|
|
31
|
-
/**
|
|
32
|
-
*
|
|
33
|
-
* @summary List `Service` resource options
|
|
34
|
-
*/
|
|
35
|
-
getStaticServiceOptions() {
|
|
36
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
37
|
-
let queryString = '';
|
|
38
|
-
const requestUrl = '/static/service-options' + (queryString ? `?${queryString}` : '');
|
|
39
|
-
const response = yield this.get(requestUrl);
|
|
40
|
-
return new ApiResponse_1.ApiResponse(response);
|
|
41
|
-
});
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
exports.StaticDataServiceOptionsApiService = StaticDataServiceOptionsApiService;
|
|
@@ -1,24 +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 { ApiBaseService } from "../../../services/ApiBaseService";
|
|
13
|
-
import { ApiResponse } from "../../../common/ApiResponse";
|
|
14
|
-
import { UserProfileOptions } from '../../generated/models';
|
|
15
|
-
/**
|
|
16
|
-
* StaticDataUserProfileOptionsApiService - Auto-generated
|
|
17
|
-
*/
|
|
18
|
-
export declare class StaticDataUserProfileOptionsApiService extends ApiBaseService {
|
|
19
|
-
/**
|
|
20
|
-
*
|
|
21
|
-
* @summary List `User profile` options
|
|
22
|
-
*/
|
|
23
|
-
getStaticUserProfileOptions(): Promise<ApiResponse<UserProfileOptions>>;
|
|
24
|
-
}
|