@quantcdn/quant-client 4.3.0 → 4.4.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/api.ts +522 -20
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +373 -20
- package/dist/api.js +558 -288
- package/dist/common.d.ts +2 -2
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +373 -20
- package/dist/esm/api.js +555 -285
- package/dist/esm/common.d.ts +2 -2
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
- package/tsconfig.json +1 -3
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* QuantCDN API
|
|
5
5
|
* Unified API for QuantCDN Admin and QuantCloud Platform services
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 4.
|
|
7
|
+
* The version of the OpenAPI document: 4.4.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -168,6 +168,12 @@ export const ListToolExecutions200ResponseExecutionsInnerStatusEnum = {
|
|
|
168
168
|
Complete: 'complete',
|
|
169
169
|
Failed: 'failed'
|
|
170
170
|
};
|
|
171
|
+
export const PatchEnvironmentComposeRequestSpotConfigurationStrategyEnum = {
|
|
172
|
+
Off: 'off',
|
|
173
|
+
SpotOnly: 'spot-only',
|
|
174
|
+
MixedSafe: 'mixed-safe',
|
|
175
|
+
MixedAggressive: 'mixed-aggressive'
|
|
176
|
+
};
|
|
171
177
|
export const ScalingPolicyMetricEnum = {
|
|
172
178
|
CpuUtilization: 'CPUUtilization',
|
|
173
179
|
MemoryUtilization: 'MemoryUtilization',
|
|
@@ -215,7 +221,7 @@ export const AIServicesApiAxiosParamCreator = function (configuration) {
|
|
|
215
221
|
* @param {*} [options] Override http request option.
|
|
216
222
|
* @throws {RequiredError}
|
|
217
223
|
*/
|
|
218
|
-
chatInference: (
|
|
224
|
+
chatInference: (organisation_1, chatInferenceRequest_1, ...args_1) => __awaiter(this, [organisation_1, chatInferenceRequest_1, ...args_1], void 0, function* (organisation, chatInferenceRequest, options = {}) {
|
|
219
225
|
// verify required parameter 'organisation' is not null or undefined
|
|
220
226
|
assertParamExists('chatInference', 'organisation', organisation);
|
|
221
227
|
// verify required parameter 'chatInferenceRequest' is not null or undefined
|
|
@@ -252,7 +258,7 @@ export const AIServicesApiAxiosParamCreator = function (configuration) {
|
|
|
252
258
|
* @param {*} [options] Override http request option.
|
|
253
259
|
* @throws {RequiredError}
|
|
254
260
|
*/
|
|
255
|
-
chatInferenceStream: (
|
|
261
|
+
chatInferenceStream: (organisation_1, chatInferenceStreamRequest_1, ...args_1) => __awaiter(this, [organisation_1, chatInferenceStreamRequest_1, ...args_1], void 0, function* (organisation, chatInferenceStreamRequest, options = {}) {
|
|
256
262
|
// verify required parameter 'organisation' is not null or undefined
|
|
257
263
|
assertParamExists('chatInferenceStream', 'organisation', organisation);
|
|
258
264
|
// verify required parameter 'chatInferenceStreamRequest' is not null or undefined
|
|
@@ -289,7 +295,7 @@ export const AIServicesApiAxiosParamCreator = function (configuration) {
|
|
|
289
295
|
* @param {*} [options] Override http request option.
|
|
290
296
|
* @throws {RequiredError}
|
|
291
297
|
*/
|
|
292
|
-
createAISession: (
|
|
298
|
+
createAISession: (organisation_1, createAISessionRequest_1, ...args_1) => __awaiter(this, [organisation_1, createAISessionRequest_1, ...args_1], void 0, function* (organisation, createAISessionRequest, options = {}) {
|
|
293
299
|
// verify required parameter 'organisation' is not null or undefined
|
|
294
300
|
assertParamExists('createAISession', 'organisation', organisation);
|
|
295
301
|
// verify required parameter 'createAISessionRequest' is not null or undefined
|
|
@@ -326,7 +332,7 @@ export const AIServicesApiAxiosParamCreator = function (configuration) {
|
|
|
326
332
|
* @param {*} [options] Override http request option.
|
|
327
333
|
* @throws {RequiredError}
|
|
328
334
|
*/
|
|
329
|
-
deleteAISession: (
|
|
335
|
+
deleteAISession: (organisation_1, sessionId_1, ...args_1) => __awaiter(this, [organisation_1, sessionId_1, ...args_1], void 0, function* (organisation, sessionId, options = {}) {
|
|
330
336
|
// verify required parameter 'organisation' is not null or undefined
|
|
331
337
|
assertParamExists('deleteAISession', 'organisation', organisation);
|
|
332
338
|
// verify required parameter 'sessionId' is not null or undefined
|
|
@@ -362,7 +368,7 @@ export const AIServicesApiAxiosParamCreator = function (configuration) {
|
|
|
362
368
|
* @param {*} [options] Override http request option.
|
|
363
369
|
* @throws {RequiredError}
|
|
364
370
|
*/
|
|
365
|
-
embeddings: (
|
|
371
|
+
embeddings: (organisation_1, embeddingsRequest_1, ...args_1) => __awaiter(this, [organisation_1, embeddingsRequest_1, ...args_1], void 0, function* (organisation, embeddingsRequest, options = {}) {
|
|
366
372
|
// verify required parameter 'organisation' is not null or undefined
|
|
367
373
|
assertParamExists('embeddings', 'organisation', organisation);
|
|
368
374
|
// verify required parameter 'embeddingsRequest' is not null or undefined
|
|
@@ -398,7 +404,7 @@ export const AIServicesApiAxiosParamCreator = function (configuration) {
|
|
|
398
404
|
* @param {*} [options] Override http request option.
|
|
399
405
|
* @throws {RequiredError}
|
|
400
406
|
*/
|
|
401
|
-
getAIConfig: (
|
|
407
|
+
getAIConfig: (organisation_1, ...args_1) => __awaiter(this, [organisation_1, ...args_1], void 0, function* (organisation, options = {}) {
|
|
402
408
|
// verify required parameter 'organisation' is not null or undefined
|
|
403
409
|
assertParamExists('getAIConfig', 'organisation', organisation);
|
|
404
410
|
const localVarPath = `/api/v3/organizations/{organisation}/ai/config`
|
|
@@ -431,7 +437,7 @@ export const AIServicesApiAxiosParamCreator = function (configuration) {
|
|
|
431
437
|
* @param {*} [options] Override http request option.
|
|
432
438
|
* @throws {RequiredError}
|
|
433
439
|
*/
|
|
434
|
-
getAISession: (
|
|
440
|
+
getAISession: (organisation_1, sessionId_1, ...args_1) => __awaiter(this, [organisation_1, sessionId_1, ...args_1], void 0, function* (organisation, sessionId, options = {}) {
|
|
435
441
|
// verify required parameter 'organisation' is not null or undefined
|
|
436
442
|
assertParamExists('getAISession', 'organisation', organisation);
|
|
437
443
|
// verify required parameter 'sessionId' is not null or undefined
|
|
@@ -467,7 +473,7 @@ export const AIServicesApiAxiosParamCreator = function (configuration) {
|
|
|
467
473
|
* @param {*} [options] Override http request option.
|
|
468
474
|
* @throws {RequiredError}
|
|
469
475
|
*/
|
|
470
|
-
getAIUsageStats: (
|
|
476
|
+
getAIUsageStats: (organisation_1, month_1, ...args_1) => __awaiter(this, [organisation_1, month_1, ...args_1], void 0, function* (organisation, month, options = {}) {
|
|
471
477
|
// verify required parameter 'organisation' is not null or undefined
|
|
472
478
|
assertParamExists('getAIUsageStats', 'organisation', organisation);
|
|
473
479
|
const localVarPath = `/api/v3/organizations/{organisation}/ai/usage`
|
|
@@ -503,7 +509,7 @@ export const AIServicesApiAxiosParamCreator = function (configuration) {
|
|
|
503
509
|
* @param {*} [options] Override http request option.
|
|
504
510
|
* @throws {RequiredError}
|
|
505
511
|
*/
|
|
506
|
-
getToolExecutionStatus: (
|
|
512
|
+
getToolExecutionStatus: (organisation_1, executionId_1, ...args_1) => __awaiter(this, [organisation_1, executionId_1, ...args_1], void 0, function* (organisation, executionId, options = {}) {
|
|
507
513
|
// verify required parameter 'organisation' is not null or undefined
|
|
508
514
|
assertParamExists('getToolExecutionStatus', 'organisation', organisation);
|
|
509
515
|
// verify required parameter 'executionId' is not null or undefined
|
|
@@ -539,7 +545,7 @@ export const AIServicesApiAxiosParamCreator = function (configuration) {
|
|
|
539
545
|
* @param {*} [options] Override http request option.
|
|
540
546
|
* @throws {RequiredError}
|
|
541
547
|
*/
|
|
542
|
-
imageGeneration: (
|
|
548
|
+
imageGeneration: (organisation_1, imageGenerationRequest_1, ...args_1) => __awaiter(this, [organisation_1, imageGenerationRequest_1, ...args_1], void 0, function* (organisation, imageGenerationRequest, options = {}) {
|
|
543
549
|
// verify required parameter 'organisation' is not null or undefined
|
|
544
550
|
assertParamExists('imageGeneration', 'organisation', organisation);
|
|
545
551
|
// verify required parameter 'imageGenerationRequest' is not null or undefined
|
|
@@ -576,7 +582,7 @@ export const AIServicesApiAxiosParamCreator = function (configuration) {
|
|
|
576
582
|
* @param {*} [options] Override http request option.
|
|
577
583
|
* @throws {RequiredError}
|
|
578
584
|
*/
|
|
579
|
-
listAIModels: (
|
|
585
|
+
listAIModels: (organisation_1, feature_1, ...args_1) => __awaiter(this, [organisation_1, feature_1, ...args_1], void 0, function* (organisation, feature, options = {}) {
|
|
580
586
|
// verify required parameter 'organisation' is not null or undefined
|
|
581
587
|
assertParamExists('listAIModels', 'organisation', organisation);
|
|
582
588
|
const localVarPath = `/api/v3/organizations/{organisation}/ai/models`
|
|
@@ -616,7 +622,7 @@ export const AIServicesApiAxiosParamCreator = function (configuration) {
|
|
|
616
622
|
* @param {*} [options] Override http request option.
|
|
617
623
|
* @throws {RequiredError}
|
|
618
624
|
*/
|
|
619
|
-
listAISessions: (
|
|
625
|
+
listAISessions: (organisation_1, userId_1, sessionGroup_1, limit_1, offset_1, model_1, ...args_1) => __awaiter(this, [organisation_1, userId_1, sessionGroup_1, limit_1, offset_1, model_1, ...args_1], void 0, function* (organisation, userId, sessionGroup, limit, offset, model, options = {}) {
|
|
620
626
|
// verify required parameter 'organisation' is not null or undefined
|
|
621
627
|
assertParamExists('listAISessions', 'organisation', organisation);
|
|
622
628
|
const localVarPath = `/api/v3/organizations/{organisation}/ai/sessions`
|
|
@@ -663,7 +669,7 @@ export const AIServicesApiAxiosParamCreator = function (configuration) {
|
|
|
663
669
|
* @param {*} [options] Override http request option.
|
|
664
670
|
* @throws {RequiredError}
|
|
665
671
|
*/
|
|
666
|
-
listAIToolNames: (
|
|
672
|
+
listAIToolNames: (organisation_1, ...args_1) => __awaiter(this, [organisation_1, ...args_1], void 0, function* (organisation, options = {}) {
|
|
667
673
|
// verify required parameter 'organisation' is not null or undefined
|
|
668
674
|
assertParamExists('listAIToolNames', 'organisation', organisation);
|
|
669
675
|
const localVarPath = `/api/v3/organizations/{organisation}/ai/tools/names`
|
|
@@ -695,7 +701,7 @@ export const AIServicesApiAxiosParamCreator = function (configuration) {
|
|
|
695
701
|
* @param {*} [options] Override http request option.
|
|
696
702
|
* @throws {RequiredError}
|
|
697
703
|
*/
|
|
698
|
-
listAITools: (
|
|
704
|
+
listAITools: (organisation_1, ...args_1) => __awaiter(this, [organisation_1, ...args_1], void 0, function* (organisation, options = {}) {
|
|
699
705
|
// verify required parameter 'organisation' is not null or undefined
|
|
700
706
|
assertParamExists('listAITools', 'organisation', organisation);
|
|
701
707
|
const localVarPath = `/api/v3/organizations/{organisation}/ai/tools`
|
|
@@ -729,7 +735,7 @@ export const AIServicesApiAxiosParamCreator = function (configuration) {
|
|
|
729
735
|
* @param {*} [options] Override http request option.
|
|
730
736
|
* @throws {RequiredError}
|
|
731
737
|
*/
|
|
732
|
-
listToolExecutions: (
|
|
738
|
+
listToolExecutions: (organisation_1, status_1, limit_1, ...args_1) => __awaiter(this, [organisation_1, status_1, limit_1, ...args_1], void 0, function* (organisation, status, limit, options = {}) {
|
|
733
739
|
// verify required parameter 'organisation' is not null or undefined
|
|
734
740
|
assertParamExists('listToolExecutions', 'organisation', organisation);
|
|
735
741
|
const localVarPath = `/api/v3/organizations/{organisation}/ai/tools/executions`
|
|
@@ -768,7 +774,7 @@ export const AIServicesApiAxiosParamCreator = function (configuration) {
|
|
|
768
774
|
* @param {*} [options] Override http request option.
|
|
769
775
|
* @throws {RequiredError}
|
|
770
776
|
*/
|
|
771
|
-
updateAIConfig: (
|
|
777
|
+
updateAIConfig: (organisation_1, updateAIConfigRequest_1, ...args_1) => __awaiter(this, [organisation_1, updateAIConfigRequest_1, ...args_1], void 0, function* (organisation, updateAIConfigRequest, options = {}) {
|
|
772
778
|
// verify required parameter 'organisation' is not null or undefined
|
|
773
779
|
assertParamExists('updateAIConfig', 'organisation', organisation);
|
|
774
780
|
// verify required parameter 'updateAIConfigRequest' is not null or undefined
|
|
@@ -815,8 +821,8 @@ export const AIServicesApiFp = function (configuration) {
|
|
|
815
821
|
* @throws {RequiredError}
|
|
816
822
|
*/
|
|
817
823
|
chatInference(organisation, chatInferenceRequest, options) {
|
|
818
|
-
var _a, _b, _c;
|
|
819
824
|
return __awaiter(this, void 0, void 0, function* () {
|
|
825
|
+
var _a, _b, _c;
|
|
820
826
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.chatInference(organisation, chatInferenceRequest, options);
|
|
821
827
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
822
828
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AIServicesApi.chatInference']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -832,8 +838,8 @@ export const AIServicesApiFp = function (configuration) {
|
|
|
832
838
|
* @throws {RequiredError}
|
|
833
839
|
*/
|
|
834
840
|
chatInferenceStream(organisation, chatInferenceStreamRequest, options) {
|
|
835
|
-
var _a, _b, _c;
|
|
836
841
|
return __awaiter(this, void 0, void 0, function* () {
|
|
842
|
+
var _a, _b, _c;
|
|
837
843
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.chatInferenceStream(organisation, chatInferenceStreamRequest, options);
|
|
838
844
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
839
845
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AIServicesApi.chatInferenceStream']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -849,8 +855,8 @@ export const AIServicesApiFp = function (configuration) {
|
|
|
849
855
|
* @throws {RequiredError}
|
|
850
856
|
*/
|
|
851
857
|
createAISession(organisation, createAISessionRequest, options) {
|
|
852
|
-
var _a, _b, _c;
|
|
853
858
|
return __awaiter(this, void 0, void 0, function* () {
|
|
859
|
+
var _a, _b, _c;
|
|
854
860
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.createAISession(organisation, createAISessionRequest, options);
|
|
855
861
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
856
862
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AIServicesApi.createAISession']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -866,8 +872,8 @@ export const AIServicesApiFp = function (configuration) {
|
|
|
866
872
|
* @throws {RequiredError}
|
|
867
873
|
*/
|
|
868
874
|
deleteAISession(organisation, sessionId, options) {
|
|
869
|
-
var _a, _b, _c;
|
|
870
875
|
return __awaiter(this, void 0, void 0, function* () {
|
|
876
|
+
var _a, _b, _c;
|
|
871
877
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteAISession(organisation, sessionId, options);
|
|
872
878
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
873
879
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AIServicesApi.deleteAISession']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -883,8 +889,8 @@ export const AIServicesApiFp = function (configuration) {
|
|
|
883
889
|
* @throws {RequiredError}
|
|
884
890
|
*/
|
|
885
891
|
embeddings(organisation, embeddingsRequest, options) {
|
|
886
|
-
var _a, _b, _c;
|
|
887
892
|
return __awaiter(this, void 0, void 0, function* () {
|
|
893
|
+
var _a, _b, _c;
|
|
888
894
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.embeddings(organisation, embeddingsRequest, options);
|
|
889
895
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
890
896
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AIServicesApi.embeddings']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -899,8 +905,8 @@ export const AIServicesApiFp = function (configuration) {
|
|
|
899
905
|
* @throws {RequiredError}
|
|
900
906
|
*/
|
|
901
907
|
getAIConfig(organisation, options) {
|
|
902
|
-
var _a, _b, _c;
|
|
903
908
|
return __awaiter(this, void 0, void 0, function* () {
|
|
909
|
+
var _a, _b, _c;
|
|
904
910
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getAIConfig(organisation, options);
|
|
905
911
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
906
912
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AIServicesApi.getAIConfig']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -916,8 +922,8 @@ export const AIServicesApiFp = function (configuration) {
|
|
|
916
922
|
* @throws {RequiredError}
|
|
917
923
|
*/
|
|
918
924
|
getAISession(organisation, sessionId, options) {
|
|
919
|
-
var _a, _b, _c;
|
|
920
925
|
return __awaiter(this, void 0, void 0, function* () {
|
|
926
|
+
var _a, _b, _c;
|
|
921
927
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getAISession(organisation, sessionId, options);
|
|
922
928
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
923
929
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AIServicesApi.getAISession']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -933,8 +939,8 @@ export const AIServicesApiFp = function (configuration) {
|
|
|
933
939
|
* @throws {RequiredError}
|
|
934
940
|
*/
|
|
935
941
|
getAIUsageStats(organisation, month, options) {
|
|
936
|
-
var _a, _b, _c;
|
|
937
942
|
return __awaiter(this, void 0, void 0, function* () {
|
|
943
|
+
var _a, _b, _c;
|
|
938
944
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getAIUsageStats(organisation, month, options);
|
|
939
945
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
940
946
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AIServicesApi.getAIUsageStats']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -950,8 +956,8 @@ export const AIServicesApiFp = function (configuration) {
|
|
|
950
956
|
* @throws {RequiredError}
|
|
951
957
|
*/
|
|
952
958
|
getToolExecutionStatus(organisation, executionId, options) {
|
|
953
|
-
var _a, _b, _c;
|
|
954
959
|
return __awaiter(this, void 0, void 0, function* () {
|
|
960
|
+
var _a, _b, _c;
|
|
955
961
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getToolExecutionStatus(organisation, executionId, options);
|
|
956
962
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
957
963
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AIServicesApi.getToolExecutionStatus']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -967,8 +973,8 @@ export const AIServicesApiFp = function (configuration) {
|
|
|
967
973
|
* @throws {RequiredError}
|
|
968
974
|
*/
|
|
969
975
|
imageGeneration(organisation, imageGenerationRequest, options) {
|
|
970
|
-
var _a, _b, _c;
|
|
971
976
|
return __awaiter(this, void 0, void 0, function* () {
|
|
977
|
+
var _a, _b, _c;
|
|
972
978
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.imageGeneration(organisation, imageGenerationRequest, options);
|
|
973
979
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
974
980
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AIServicesApi.imageGeneration']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -984,8 +990,8 @@ export const AIServicesApiFp = function (configuration) {
|
|
|
984
990
|
* @throws {RequiredError}
|
|
985
991
|
*/
|
|
986
992
|
listAIModels(organisation, feature, options) {
|
|
987
|
-
var _a, _b, _c;
|
|
988
993
|
return __awaiter(this, void 0, void 0, function* () {
|
|
994
|
+
var _a, _b, _c;
|
|
989
995
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.listAIModels(organisation, feature, options);
|
|
990
996
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
991
997
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AIServicesApi.listAIModels']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -1005,8 +1011,8 @@ export const AIServicesApiFp = function (configuration) {
|
|
|
1005
1011
|
* @throws {RequiredError}
|
|
1006
1012
|
*/
|
|
1007
1013
|
listAISessions(organisation, userId, sessionGroup, limit, offset, model, options) {
|
|
1008
|
-
var _a, _b, _c;
|
|
1009
1014
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1015
|
+
var _a, _b, _c;
|
|
1010
1016
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.listAISessions(organisation, userId, sessionGroup, limit, offset, model, options);
|
|
1011
1017
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1012
1018
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AIServicesApi.listAISessions']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -1021,8 +1027,8 @@ export const AIServicesApiFp = function (configuration) {
|
|
|
1021
1027
|
* @throws {RequiredError}
|
|
1022
1028
|
*/
|
|
1023
1029
|
listAIToolNames(organisation, options) {
|
|
1024
|
-
var _a, _b, _c;
|
|
1025
1030
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1031
|
+
var _a, _b, _c;
|
|
1026
1032
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.listAIToolNames(organisation, options);
|
|
1027
1033
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1028
1034
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AIServicesApi.listAIToolNames']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -1037,8 +1043,8 @@ export const AIServicesApiFp = function (configuration) {
|
|
|
1037
1043
|
* @throws {RequiredError}
|
|
1038
1044
|
*/
|
|
1039
1045
|
listAITools(organisation, options) {
|
|
1040
|
-
var _a, _b, _c;
|
|
1041
1046
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1047
|
+
var _a, _b, _c;
|
|
1042
1048
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.listAITools(organisation, options);
|
|
1043
1049
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1044
1050
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AIServicesApi.listAITools']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -1055,8 +1061,8 @@ export const AIServicesApiFp = function (configuration) {
|
|
|
1055
1061
|
* @throws {RequiredError}
|
|
1056
1062
|
*/
|
|
1057
1063
|
listToolExecutions(organisation, status, limit, options) {
|
|
1058
|
-
var _a, _b, _c;
|
|
1059
1064
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1065
|
+
var _a, _b, _c;
|
|
1060
1066
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.listToolExecutions(organisation, status, limit, options);
|
|
1061
1067
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1062
1068
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AIServicesApi.listToolExecutions']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -1072,8 +1078,8 @@ export const AIServicesApiFp = function (configuration) {
|
|
|
1072
1078
|
* @throws {RequiredError}
|
|
1073
1079
|
*/
|
|
1074
1080
|
updateAIConfig(organisation, updateAIConfigRequest, options) {
|
|
1075
|
-
var _a, _b, _c;
|
|
1076
1081
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1082
|
+
var _a, _b, _c;
|
|
1077
1083
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.updateAIConfig(organisation, updateAIConfigRequest, options);
|
|
1078
1084
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1079
1085
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AIServicesApi.updateAIConfig']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -1504,7 +1510,7 @@ export const ApplicationsApiAxiosParamCreator = function (configuration) {
|
|
|
1504
1510
|
* @param {*} [options] Override http request option.
|
|
1505
1511
|
* @throws {RequiredError}
|
|
1506
1512
|
*/
|
|
1507
|
-
createApplication: (
|
|
1513
|
+
createApplication: (organisation_1, createApplicationRequest_1, ...args_1) => __awaiter(this, [organisation_1, createApplicationRequest_1, ...args_1], void 0, function* (organisation, createApplicationRequest, options = {}) {
|
|
1508
1514
|
// verify required parameter 'organisation' is not null or undefined
|
|
1509
1515
|
assertParamExists('createApplication', 'organisation', organisation);
|
|
1510
1516
|
// verify required parameter 'createApplicationRequest' is not null or undefined
|
|
@@ -1541,7 +1547,7 @@ export const ApplicationsApiAxiosParamCreator = function (configuration) {
|
|
|
1541
1547
|
* @param {*} [options] Override http request option.
|
|
1542
1548
|
* @throws {RequiredError}
|
|
1543
1549
|
*/
|
|
1544
|
-
deleteApplication: (
|
|
1550
|
+
deleteApplication: (organisation_1, application_1, ...args_1) => __awaiter(this, [organisation_1, application_1, ...args_1], void 0, function* (organisation, application, options = {}) {
|
|
1545
1551
|
// verify required parameter 'organisation' is not null or undefined
|
|
1546
1552
|
assertParamExists('deleteApplication', 'organisation', organisation);
|
|
1547
1553
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -1577,7 +1583,7 @@ export const ApplicationsApiAxiosParamCreator = function (configuration) {
|
|
|
1577
1583
|
* @param {*} [options] Override http request option.
|
|
1578
1584
|
* @throws {RequiredError}
|
|
1579
1585
|
*/
|
|
1580
|
-
getApplication: (
|
|
1586
|
+
getApplication: (organisation_1, application_1, ...args_1) => __awaiter(this, [organisation_1, application_1, ...args_1], void 0, function* (organisation, application, options = {}) {
|
|
1581
1587
|
// verify required parameter 'organisation' is not null or undefined
|
|
1582
1588
|
assertParamExists('getApplication', 'organisation', organisation);
|
|
1583
1589
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -1612,7 +1618,7 @@ export const ApplicationsApiAxiosParamCreator = function (configuration) {
|
|
|
1612
1618
|
* @param {*} [options] Override http request option.
|
|
1613
1619
|
* @throws {RequiredError}
|
|
1614
1620
|
*/
|
|
1615
|
-
getEcrLoginCredentials: (
|
|
1621
|
+
getEcrLoginCredentials: (organisation_1, ...args_1) => __awaiter(this, [organisation_1, ...args_1], void 0, function* (organisation, options = {}) {
|
|
1616
1622
|
// verify required parameter 'organisation' is not null or undefined
|
|
1617
1623
|
assertParamExists('getEcrLoginCredentials', 'organisation', organisation);
|
|
1618
1624
|
const localVarPath = `/api/v3/organizations/{organisation}/applications/ecr-login`
|
|
@@ -1644,7 +1650,7 @@ export const ApplicationsApiAxiosParamCreator = function (configuration) {
|
|
|
1644
1650
|
* @param {*} [options] Override http request option.
|
|
1645
1651
|
* @throws {RequiredError}
|
|
1646
1652
|
*/
|
|
1647
|
-
listApplications: (
|
|
1653
|
+
listApplications: (organisation_1, ...args_1) => __awaiter(this, [organisation_1, ...args_1], void 0, function* (organisation, options = {}) {
|
|
1648
1654
|
// verify required parameter 'organisation' is not null or undefined
|
|
1649
1655
|
assertParamExists('listApplications', 'organisation', organisation);
|
|
1650
1656
|
const localVarPath = `/api/v3/organizations/{organisation}/applications`
|
|
@@ -1687,8 +1693,8 @@ export const ApplicationsApiFp = function (configuration) {
|
|
|
1687
1693
|
* @throws {RequiredError}
|
|
1688
1694
|
*/
|
|
1689
1695
|
createApplication(organisation, createApplicationRequest, options) {
|
|
1690
|
-
var _a, _b, _c;
|
|
1691
1696
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1697
|
+
var _a, _b, _c;
|
|
1692
1698
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.createApplication(organisation, createApplicationRequest, options);
|
|
1693
1699
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1694
1700
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ApplicationsApi.createApplication']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -1704,8 +1710,8 @@ export const ApplicationsApiFp = function (configuration) {
|
|
|
1704
1710
|
* @throws {RequiredError}
|
|
1705
1711
|
*/
|
|
1706
1712
|
deleteApplication(organisation, application, options) {
|
|
1707
|
-
var _a, _b, _c;
|
|
1708
1713
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1714
|
+
var _a, _b, _c;
|
|
1709
1715
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteApplication(organisation, application, options);
|
|
1710
1716
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1711
1717
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ApplicationsApi.deleteApplication']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -1721,8 +1727,8 @@ export const ApplicationsApiFp = function (configuration) {
|
|
|
1721
1727
|
* @throws {RequiredError}
|
|
1722
1728
|
*/
|
|
1723
1729
|
getApplication(organisation, application, options) {
|
|
1724
|
-
var _a, _b, _c;
|
|
1725
1730
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1731
|
+
var _a, _b, _c;
|
|
1726
1732
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getApplication(organisation, application, options);
|
|
1727
1733
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1728
1734
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ApplicationsApi.getApplication']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -1737,8 +1743,8 @@ export const ApplicationsApiFp = function (configuration) {
|
|
|
1737
1743
|
* @throws {RequiredError}
|
|
1738
1744
|
*/
|
|
1739
1745
|
getEcrLoginCredentials(organisation, options) {
|
|
1740
|
-
var _a, _b, _c;
|
|
1741
1746
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1747
|
+
var _a, _b, _c;
|
|
1742
1748
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getEcrLoginCredentials(organisation, options);
|
|
1743
1749
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1744
1750
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ApplicationsApi.getEcrLoginCredentials']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -1753,8 +1759,8 @@ export const ApplicationsApiFp = function (configuration) {
|
|
|
1753
1759
|
* @throws {RequiredError}
|
|
1754
1760
|
*/
|
|
1755
1761
|
listApplications(organisation, options) {
|
|
1756
|
-
var _a, _b, _c;
|
|
1757
1762
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1763
|
+
var _a, _b, _c;
|
|
1758
1764
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.listApplications(organisation, options);
|
|
1759
1765
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1760
1766
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ApplicationsApi.listApplications']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -1908,7 +1914,7 @@ export const BackupManagementApiAxiosParamCreator = function (configuration) {
|
|
|
1908
1914
|
* @param {*} [options] Override http request option.
|
|
1909
1915
|
* @throws {RequiredError}
|
|
1910
1916
|
*/
|
|
1911
|
-
createBackup: (
|
|
1917
|
+
createBackup: (organisation_1, application_1, environment_1, type_1, createBackupRequest_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, type_1, createBackupRequest_1, ...args_1], void 0, function* (organisation, application, environment, type, createBackupRequest, options = {}) {
|
|
1912
1918
|
// verify required parameter 'organisation' is not null or undefined
|
|
1913
1919
|
assertParamExists('createBackup', 'organisation', organisation);
|
|
1914
1920
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -1955,7 +1961,7 @@ export const BackupManagementApiAxiosParamCreator = function (configuration) {
|
|
|
1955
1961
|
* @param {*} [options] Override http request option.
|
|
1956
1962
|
* @throws {RequiredError}
|
|
1957
1963
|
*/
|
|
1958
|
-
deleteBackup: (
|
|
1964
|
+
deleteBackup: (organisation_1, application_1, environment_1, type_1, backupId_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, type_1, backupId_1, ...args_1], void 0, function* (organisation, application, environment, type, backupId, options = {}) {
|
|
1959
1965
|
// verify required parameter 'organisation' is not null or undefined
|
|
1960
1966
|
assertParamExists('deleteBackup', 'organisation', organisation);
|
|
1961
1967
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -2003,7 +2009,7 @@ export const BackupManagementApiAxiosParamCreator = function (configuration) {
|
|
|
2003
2009
|
* @param {*} [options] Override http request option.
|
|
2004
2010
|
* @throws {RequiredError}
|
|
2005
2011
|
*/
|
|
2006
|
-
downloadBackup: (
|
|
2012
|
+
downloadBackup: (organisation_1, application_1, environment_1, type_1, backupId_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, type_1, backupId_1, ...args_1], void 0, function* (organisation, application, environment, type, backupId, options = {}) {
|
|
2007
2013
|
// verify required parameter 'organisation' is not null or undefined
|
|
2008
2014
|
assertParamExists('downloadBackup', 'organisation', organisation);
|
|
2009
2015
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -2056,7 +2062,7 @@ export const BackupManagementApiAxiosParamCreator = function (configuration) {
|
|
|
2056
2062
|
* @param {*} [options] Override http request option.
|
|
2057
2063
|
* @throws {RequiredError}
|
|
2058
2064
|
*/
|
|
2059
|
-
listBackups: (
|
|
2065
|
+
listBackups: (organisation_1, application_1, environment_1, type_1, order_1, limit_1, createdBefore_1, createdAfter_1, status_1, nextToken_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, type_1, order_1, limit_1, createdBefore_1, createdAfter_1, status_1, nextToken_1, ...args_1], void 0, function* (organisation, application, environment, type, order, limit, createdBefore, createdAfter, status, nextToken, options = {}) {
|
|
2060
2066
|
// verify required parameter 'organisation' is not null or undefined
|
|
2061
2067
|
assertParamExists('listBackups', 'organisation', organisation);
|
|
2062
2068
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -2133,8 +2139,8 @@ export const BackupManagementApiFp = function (configuration) {
|
|
|
2133
2139
|
* @throws {RequiredError}
|
|
2134
2140
|
*/
|
|
2135
2141
|
createBackup(organisation, application, environment, type, createBackupRequest, options) {
|
|
2136
|
-
var _a, _b, _c;
|
|
2137
2142
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2143
|
+
var _a, _b, _c;
|
|
2138
2144
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.createBackup(organisation, application, environment, type, createBackupRequest, options);
|
|
2139
2145
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
2140
2146
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['BackupManagementApi.createBackup']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -2153,8 +2159,8 @@ export const BackupManagementApiFp = function (configuration) {
|
|
|
2153
2159
|
* @throws {RequiredError}
|
|
2154
2160
|
*/
|
|
2155
2161
|
deleteBackup(organisation, application, environment, type, backupId, options) {
|
|
2156
|
-
var _a, _b, _c;
|
|
2157
2162
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2163
|
+
var _a, _b, _c;
|
|
2158
2164
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteBackup(organisation, application, environment, type, backupId, options);
|
|
2159
2165
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
2160
2166
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['BackupManagementApi.deleteBackup']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -2173,8 +2179,8 @@ export const BackupManagementApiFp = function (configuration) {
|
|
|
2173
2179
|
* @throws {RequiredError}
|
|
2174
2180
|
*/
|
|
2175
2181
|
downloadBackup(organisation, application, environment, type, backupId, options) {
|
|
2176
|
-
var _a, _b, _c;
|
|
2177
2182
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2183
|
+
var _a, _b, _c;
|
|
2178
2184
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.downloadBackup(organisation, application, environment, type, backupId, options);
|
|
2179
2185
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
2180
2186
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['BackupManagementApi.downloadBackup']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -2198,8 +2204,8 @@ export const BackupManagementApiFp = function (configuration) {
|
|
|
2198
2204
|
* @throws {RequiredError}
|
|
2199
2205
|
*/
|
|
2200
2206
|
listBackups(organisation, application, environment, type, order, limit, createdBefore, createdAfter, status, nextToken, options) {
|
|
2201
|
-
var _a, _b, _c;
|
|
2202
2207
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2208
|
+
var _a, _b, _c;
|
|
2203
2209
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.listBackups(organisation, application, environment, type, order, limit, createdBefore, createdAfter, status, nextToken, options);
|
|
2204
2210
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
2205
2211
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['BackupManagementApi.listBackups']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -2409,7 +2415,7 @@ export const CommandsApiAxiosParamCreator = function (configuration) {
|
|
|
2409
2415
|
* @param {*} [options] Override http request option.
|
|
2410
2416
|
* @throws {RequiredError}
|
|
2411
2417
|
*/
|
|
2412
|
-
createCommand: (
|
|
2418
|
+
createCommand: (organisation_1, environment_1, createCommandRequest_1, ...args_1) => __awaiter(this, [organisation_1, environment_1, createCommandRequest_1, ...args_1], void 0, function* (organisation, environment, createCommandRequest, options = {}) {
|
|
2413
2419
|
// verify required parameter 'organisation' is not null or undefined
|
|
2414
2420
|
assertParamExists('createCommand', 'organisation', organisation);
|
|
2415
2421
|
// verify required parameter 'environment' is not null or undefined
|
|
@@ -2450,7 +2456,7 @@ export const CommandsApiAxiosParamCreator = function (configuration) {
|
|
|
2450
2456
|
* @param {*} [options] Override http request option.
|
|
2451
2457
|
* @throws {RequiredError}
|
|
2452
2458
|
*/
|
|
2453
|
-
getCommand: (
|
|
2459
|
+
getCommand: (organisation_1, environment_1, command_1, ...args_1) => __awaiter(this, [organisation_1, environment_1, command_1, ...args_1], void 0, function* (organisation, environment, command, options = {}) {
|
|
2454
2460
|
// verify required parameter 'organisation' is not null or undefined
|
|
2455
2461
|
assertParamExists('getCommand', 'organisation', organisation);
|
|
2456
2462
|
// verify required parameter 'environment' is not null or undefined
|
|
@@ -2489,7 +2495,7 @@ export const CommandsApiAxiosParamCreator = function (configuration) {
|
|
|
2489
2495
|
* @param {*} [options] Override http request option.
|
|
2490
2496
|
* @throws {RequiredError}
|
|
2491
2497
|
*/
|
|
2492
|
-
listCommands: (
|
|
2498
|
+
listCommands: (organisation_1, environment_1, ...args_1) => __awaiter(this, [organisation_1, environment_1, ...args_1], void 0, function* (organisation, environment, options = {}) {
|
|
2493
2499
|
// verify required parameter 'organisation' is not null or undefined
|
|
2494
2500
|
assertParamExists('listCommands', 'organisation', organisation);
|
|
2495
2501
|
// verify required parameter 'environment' is not null or undefined
|
|
@@ -2536,8 +2542,8 @@ export const CommandsApiFp = function (configuration) {
|
|
|
2536
2542
|
* @throws {RequiredError}
|
|
2537
2543
|
*/
|
|
2538
2544
|
createCommand(organisation, environment, createCommandRequest, options) {
|
|
2539
|
-
var _a, _b, _c;
|
|
2540
2545
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2546
|
+
var _a, _b, _c;
|
|
2541
2547
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.createCommand(organisation, environment, createCommandRequest, options);
|
|
2542
2548
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
2543
2549
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CommandsApi.createCommand']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -2554,8 +2560,8 @@ export const CommandsApiFp = function (configuration) {
|
|
|
2554
2560
|
* @throws {RequiredError}
|
|
2555
2561
|
*/
|
|
2556
2562
|
getCommand(organisation, environment, command, options) {
|
|
2557
|
-
var _a, _b, _c;
|
|
2558
2563
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2564
|
+
var _a, _b, _c;
|
|
2559
2565
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getCommand(organisation, environment, command, options);
|
|
2560
2566
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
2561
2567
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CommandsApi.getCommand']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -2571,8 +2577,8 @@ export const CommandsApiFp = function (configuration) {
|
|
|
2571
2577
|
* @throws {RequiredError}
|
|
2572
2578
|
*/
|
|
2573
2579
|
listCommands(organisation, environment, options) {
|
|
2574
|
-
var _a, _b, _c;
|
|
2575
2580
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2581
|
+
var _a, _b, _c;
|
|
2576
2582
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.listCommands(organisation, environment, options);
|
|
2577
2583
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
2578
2584
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CommandsApi.listCommands']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -2686,7 +2692,7 @@ export const ComposeApiAxiosParamCreator = function (configuration) {
|
|
|
2686
2692
|
* @param {*} [options] Override http request option.
|
|
2687
2693
|
* @throws {RequiredError}
|
|
2688
2694
|
*/
|
|
2689
|
-
getEnvironmentCompose: (
|
|
2695
|
+
getEnvironmentCompose: (organisation_1, application_1, environment_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, ...args_1], void 0, function* (organisation, application, environment, options = {}) {
|
|
2690
2696
|
// verify required parameter 'organisation' is not null or undefined
|
|
2691
2697
|
assertParamExists('getEnvironmentCompose', 'organisation', organisation);
|
|
2692
2698
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -2717,6 +2723,51 @@ export const ComposeApiAxiosParamCreator = function (configuration) {
|
|
|
2717
2723
|
options: localVarRequestOptions,
|
|
2718
2724
|
};
|
|
2719
2725
|
}),
|
|
2726
|
+
/**
|
|
2727
|
+
* Partially updates top-level fields of the environment\'s compose definition, such as architecture, task-level CPU/Memory, or min/max scaling capacity. Only fields included in the request body are modified. The \'containers\' array, if provided, REPLACES the existing containers array; if omitted, the existing containers are NOT modified by this PATCH operation. (For modifying individual containers, use PATCH /containers/{containerName}). This triggers a validation, registers a new task definition, and updates the service.
|
|
2728
|
+
* @summary Partially Update Environment Compose Definition
|
|
2729
|
+
* @param {string} organisation The organisation ID
|
|
2730
|
+
* @param {string} application The application ID
|
|
2731
|
+
* @param {string} environment The environment ID
|
|
2732
|
+
* @param {PatchEnvironmentComposeRequest} patchEnvironmentComposeRequest Partial compose definition updates. All fields are optional.
|
|
2733
|
+
* @param {*} [options] Override http request option.
|
|
2734
|
+
* @throws {RequiredError}
|
|
2735
|
+
*/
|
|
2736
|
+
patchEnvironmentCompose: (organisation_1, application_1, environment_1, patchEnvironmentComposeRequest_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, patchEnvironmentComposeRequest_1, ...args_1], void 0, function* (organisation, application, environment, patchEnvironmentComposeRequest, options = {}) {
|
|
2737
|
+
// verify required parameter 'organisation' is not null or undefined
|
|
2738
|
+
assertParamExists('patchEnvironmentCompose', 'organisation', organisation);
|
|
2739
|
+
// verify required parameter 'application' is not null or undefined
|
|
2740
|
+
assertParamExists('patchEnvironmentCompose', 'application', application);
|
|
2741
|
+
// verify required parameter 'environment' is not null or undefined
|
|
2742
|
+
assertParamExists('patchEnvironmentCompose', 'environment', environment);
|
|
2743
|
+
// verify required parameter 'patchEnvironmentComposeRequest' is not null or undefined
|
|
2744
|
+
assertParamExists('patchEnvironmentCompose', 'patchEnvironmentComposeRequest', patchEnvironmentComposeRequest);
|
|
2745
|
+
const localVarPath = `/api/v3/organizations/{organisation}/applications/{application}/environments/{environment}/compose`
|
|
2746
|
+
.replace(`{${"organisation"}}`, encodeURIComponent(String(organisation)))
|
|
2747
|
+
.replace(`{${"application"}}`, encodeURIComponent(String(application)))
|
|
2748
|
+
.replace(`{${"environment"}}`, encodeURIComponent(String(environment)));
|
|
2749
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2750
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2751
|
+
let baseOptions;
|
|
2752
|
+
if (configuration) {
|
|
2753
|
+
baseOptions = configuration.baseOptions;
|
|
2754
|
+
}
|
|
2755
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PATCH' }, baseOptions), options);
|
|
2756
|
+
const localVarHeaderParameter = {};
|
|
2757
|
+
const localVarQueryParameter = {};
|
|
2758
|
+
// authentication BearerAuth required
|
|
2759
|
+
// http bearer authentication required
|
|
2760
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2761
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
2762
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2763
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2764
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2765
|
+
localVarRequestOptions.data = serializeDataIfNeeded(patchEnvironmentComposeRequest, localVarRequestOptions, configuration);
|
|
2766
|
+
return {
|
|
2767
|
+
url: toPathString(localVarUrlObj),
|
|
2768
|
+
options: localVarRequestOptions,
|
|
2769
|
+
};
|
|
2770
|
+
}),
|
|
2720
2771
|
/**
|
|
2721
2772
|
* Accepts a docker-compose.yml file content, translates it into the internal compose definition format, and validates it. Quant Cloud provides comprehensive support for standard Docker Compose features including commands, entrypoints, health checks, dependencies, volume mounts, resource limits, and more. For detailed documentation on supported features and examples, see: https://docs.quantcdn.io/introduction-to-quant-cloud/importing-docker-compose/. Supports image tag suffixing via the imageSuffix query parameter or by sending a JSON wrapper with yamlContent and imageSuffix fields. When provided, internal image tags are transformed to {containerName}-{suffix} format (e.g., \'nginx-feature-xyz\').
|
|
2722
2773
|
* @summary Validate a compose file
|
|
@@ -2726,7 +2777,7 @@ export const ComposeApiAxiosParamCreator = function (configuration) {
|
|
|
2726
2777
|
* @param {*} [options] Override http request option.
|
|
2727
2778
|
* @throws {RequiredError}
|
|
2728
2779
|
*/
|
|
2729
|
-
validateCompose: (
|
|
2780
|
+
validateCompose: (organisation_1, validateComposeRequest_1, imageSuffix_1, ...args_1) => __awaiter(this, [organisation_1, validateComposeRequest_1, imageSuffix_1, ...args_1], void 0, function* (organisation, validateComposeRequest, imageSuffix, options = {}) {
|
|
2730
2781
|
// verify required parameter 'organisation' is not null or undefined
|
|
2731
2782
|
assertParamExists('validateCompose', 'organisation', organisation);
|
|
2732
2783
|
// verify required parameter 'validateComposeRequest' is not null or undefined
|
|
@@ -2777,14 +2828,33 @@ export const ComposeApiFp = function (configuration) {
|
|
|
2777
2828
|
* @throws {RequiredError}
|
|
2778
2829
|
*/
|
|
2779
2830
|
getEnvironmentCompose(organisation, application, environment, options) {
|
|
2780
|
-
var _a, _b, _c;
|
|
2781
2831
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2832
|
+
var _a, _b, _c;
|
|
2782
2833
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getEnvironmentCompose(organisation, application, environment, options);
|
|
2783
2834
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
2784
2835
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ComposeApi.getEnvironmentCompose']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
2785
2836
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2786
2837
|
});
|
|
2787
2838
|
},
|
|
2839
|
+
/**
|
|
2840
|
+
* Partially updates top-level fields of the environment\'s compose definition, such as architecture, task-level CPU/Memory, or min/max scaling capacity. Only fields included in the request body are modified. The \'containers\' array, if provided, REPLACES the existing containers array; if omitted, the existing containers are NOT modified by this PATCH operation. (For modifying individual containers, use PATCH /containers/{containerName}). This triggers a validation, registers a new task definition, and updates the service.
|
|
2841
|
+
* @summary Partially Update Environment Compose Definition
|
|
2842
|
+
* @param {string} organisation The organisation ID
|
|
2843
|
+
* @param {string} application The application ID
|
|
2844
|
+
* @param {string} environment The environment ID
|
|
2845
|
+
* @param {PatchEnvironmentComposeRequest} patchEnvironmentComposeRequest Partial compose definition updates. All fields are optional.
|
|
2846
|
+
* @param {*} [options] Override http request option.
|
|
2847
|
+
* @throws {RequiredError}
|
|
2848
|
+
*/
|
|
2849
|
+
patchEnvironmentCompose(organisation, application, environment, patchEnvironmentComposeRequest, options) {
|
|
2850
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2851
|
+
var _a, _b, _c;
|
|
2852
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.patchEnvironmentCompose(organisation, application, environment, patchEnvironmentComposeRequest, options);
|
|
2853
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
2854
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ComposeApi.patchEnvironmentCompose']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
2855
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2856
|
+
});
|
|
2857
|
+
},
|
|
2788
2858
|
/**
|
|
2789
2859
|
* Accepts a docker-compose.yml file content, translates it into the internal compose definition format, and validates it. Quant Cloud provides comprehensive support for standard Docker Compose features including commands, entrypoints, health checks, dependencies, volume mounts, resource limits, and more. For detailed documentation on supported features and examples, see: https://docs.quantcdn.io/introduction-to-quant-cloud/importing-docker-compose/. Supports image tag suffixing via the imageSuffix query parameter or by sending a JSON wrapper with yamlContent and imageSuffix fields. When provided, internal image tags are transformed to {containerName}-{suffix} format (e.g., \'nginx-feature-xyz\').
|
|
2790
2860
|
* @summary Validate a compose file
|
|
@@ -2795,8 +2865,8 @@ export const ComposeApiFp = function (configuration) {
|
|
|
2795
2865
|
* @throws {RequiredError}
|
|
2796
2866
|
*/
|
|
2797
2867
|
validateCompose(organisation, validateComposeRequest, imageSuffix, options) {
|
|
2798
|
-
var _a, _b, _c;
|
|
2799
2868
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2869
|
+
var _a, _b, _c;
|
|
2800
2870
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.validateCompose(organisation, validateComposeRequest, imageSuffix, options);
|
|
2801
2871
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
2802
2872
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ComposeApi.validateCompose']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -2824,6 +2894,19 @@ export const ComposeApiFactory = function (configuration, basePath, axios) {
|
|
|
2824
2894
|
getEnvironmentCompose(organisation, application, environment, options) {
|
|
2825
2895
|
return localVarFp.getEnvironmentCompose(organisation, application, environment, options).then((request) => request(axios, basePath));
|
|
2826
2896
|
},
|
|
2897
|
+
/**
|
|
2898
|
+
* Partially updates top-level fields of the environment\'s compose definition, such as architecture, task-level CPU/Memory, or min/max scaling capacity. Only fields included in the request body are modified. The \'containers\' array, if provided, REPLACES the existing containers array; if omitted, the existing containers are NOT modified by this PATCH operation. (For modifying individual containers, use PATCH /containers/{containerName}). This triggers a validation, registers a new task definition, and updates the service.
|
|
2899
|
+
* @summary Partially Update Environment Compose Definition
|
|
2900
|
+
* @param {string} organisation The organisation ID
|
|
2901
|
+
* @param {string} application The application ID
|
|
2902
|
+
* @param {string} environment The environment ID
|
|
2903
|
+
* @param {PatchEnvironmentComposeRequest} patchEnvironmentComposeRequest Partial compose definition updates. All fields are optional.
|
|
2904
|
+
* @param {*} [options] Override http request option.
|
|
2905
|
+
* @throws {RequiredError}
|
|
2906
|
+
*/
|
|
2907
|
+
patchEnvironmentCompose(organisation, application, environment, patchEnvironmentComposeRequest, options) {
|
|
2908
|
+
return localVarFp.patchEnvironmentCompose(organisation, application, environment, patchEnvironmentComposeRequest, options).then((request) => request(axios, basePath));
|
|
2909
|
+
},
|
|
2827
2910
|
/**
|
|
2828
2911
|
* Accepts a docker-compose.yml file content, translates it into the internal compose definition format, and validates it. Quant Cloud provides comprehensive support for standard Docker Compose features including commands, entrypoints, health checks, dependencies, volume mounts, resource limits, and more. For detailed documentation on supported features and examples, see: https://docs.quantcdn.io/introduction-to-quant-cloud/importing-docker-compose/. Supports image tag suffixing via the imageSuffix query parameter or by sending a JSON wrapper with yamlContent and imageSuffix fields. When provided, internal image tags are transformed to {containerName}-{suffix} format (e.g., \'nginx-feature-xyz\').
|
|
2829
2912
|
* @summary Validate a compose file
|
|
@@ -2858,6 +2941,20 @@ export class ComposeApi extends BaseAPI {
|
|
|
2858
2941
|
getEnvironmentCompose(organisation, application, environment, options) {
|
|
2859
2942
|
return ComposeApiFp(this.configuration).getEnvironmentCompose(organisation, application, environment, options).then((request) => request(this.axios, this.basePath));
|
|
2860
2943
|
}
|
|
2944
|
+
/**
|
|
2945
|
+
* Partially updates top-level fields of the environment\'s compose definition, such as architecture, task-level CPU/Memory, or min/max scaling capacity. Only fields included in the request body are modified. The \'containers\' array, if provided, REPLACES the existing containers array; if omitted, the existing containers are NOT modified by this PATCH operation. (For modifying individual containers, use PATCH /containers/{containerName}). This triggers a validation, registers a new task definition, and updates the service.
|
|
2946
|
+
* @summary Partially Update Environment Compose Definition
|
|
2947
|
+
* @param {string} organisation The organisation ID
|
|
2948
|
+
* @param {string} application The application ID
|
|
2949
|
+
* @param {string} environment The environment ID
|
|
2950
|
+
* @param {PatchEnvironmentComposeRequest} patchEnvironmentComposeRequest Partial compose definition updates. All fields are optional.
|
|
2951
|
+
* @param {*} [options] Override http request option.
|
|
2952
|
+
* @throws {RequiredError}
|
|
2953
|
+
* @memberof ComposeApi
|
|
2954
|
+
*/
|
|
2955
|
+
patchEnvironmentCompose(organisation, application, environment, patchEnvironmentComposeRequest, options) {
|
|
2956
|
+
return ComposeApiFp(this.configuration).patchEnvironmentCompose(organisation, application, environment, patchEnvironmentComposeRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2957
|
+
}
|
|
2861
2958
|
/**
|
|
2862
2959
|
* Accepts a docker-compose.yml file content, translates it into the internal compose definition format, and validates it. Quant Cloud provides comprehensive support for standard Docker Compose features including commands, entrypoints, health checks, dependencies, volume mounts, resource limits, and more. For detailed documentation on supported features and examples, see: https://docs.quantcdn.io/introduction-to-quant-cloud/importing-docker-compose/. Supports image tag suffixing via the imageSuffix query parameter or by sending a JSON wrapper with yamlContent and imageSuffix fields. When provided, internal image tags are transformed to {containerName}-{suffix} format (e.g., \'nginx-feature-xyz\').
|
|
2863
2960
|
* @summary Validate a compose file
|
|
@@ -2887,7 +2984,7 @@ export const ContainersApiAxiosParamCreator = function (configuration) {
|
|
|
2887
2984
|
* @param {*} [options] Override http request option.
|
|
2888
2985
|
* @throws {RequiredError}
|
|
2889
2986
|
*/
|
|
2890
|
-
listContainers: (
|
|
2987
|
+
listContainers: (organisation_1, application_1, environment_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, ...args_1], void 0, function* (organisation, application, environment, options = {}) {
|
|
2891
2988
|
// verify required parameter 'organisation' is not null or undefined
|
|
2892
2989
|
assertParamExists('listContainers', 'organisation', organisation);
|
|
2893
2990
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -2929,7 +3026,7 @@ export const ContainersApiAxiosParamCreator = function (configuration) {
|
|
|
2929
3026
|
* @param {*} [options] Override http request option.
|
|
2930
3027
|
* @throws {RequiredError}
|
|
2931
3028
|
*/
|
|
2932
|
-
updateContainer: (
|
|
3029
|
+
updateContainer: (organisation_1, application_1, environment_1, container_1, container2_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, container_1, container2_1, ...args_1], void 0, function* (organisation, application, environment, container, container2, options = {}) {
|
|
2933
3030
|
// verify required parameter 'organisation' is not null or undefined
|
|
2934
3031
|
assertParamExists('updateContainer', 'organisation', organisation);
|
|
2935
3032
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -2986,8 +3083,8 @@ export const ContainersApiFp = function (configuration) {
|
|
|
2986
3083
|
* @throws {RequiredError}
|
|
2987
3084
|
*/
|
|
2988
3085
|
listContainers(organisation, application, environment, options) {
|
|
2989
|
-
var _a, _b, _c;
|
|
2990
3086
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3087
|
+
var _a, _b, _c;
|
|
2991
3088
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.listContainers(organisation, application, environment, options);
|
|
2992
3089
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
2993
3090
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ContainersApi.listContainers']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -3006,8 +3103,8 @@ export const ContainersApiFp = function (configuration) {
|
|
|
3006
3103
|
* @throws {RequiredError}
|
|
3007
3104
|
*/
|
|
3008
3105
|
updateContainer(organisation, application, environment, container, container2, options) {
|
|
3009
|
-
var _a, _b, _c;
|
|
3010
3106
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3107
|
+
var _a, _b, _c;
|
|
3011
3108
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.updateContainer(organisation, application, environment, container, container2, options);
|
|
3012
3109
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
3013
3110
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ContainersApi.updateContainer']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -3103,7 +3200,7 @@ export const CrawlerSchedulesApiAxiosParamCreator = function (configuration) {
|
|
|
3103
3200
|
* @param {*} [options] Override http request option.
|
|
3104
3201
|
* @throws {RequiredError}
|
|
3105
3202
|
*/
|
|
3106
|
-
crawlerSchedulesAdd: (
|
|
3203
|
+
crawlerSchedulesAdd: (organization_1, project_1, crawler_1, v2CrawlerScheduleRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, crawler_1, v2CrawlerScheduleRequest_1, ...args_1], void 0, function* (organization, project, crawler, v2CrawlerScheduleRequest, options = {}) {
|
|
3107
3204
|
// verify required parameter 'organization' is not null or undefined
|
|
3108
3205
|
assertParamExists('crawlerSchedulesAdd', 'organization', organization);
|
|
3109
3206
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -3148,7 +3245,7 @@ export const CrawlerSchedulesApiAxiosParamCreator = function (configuration) {
|
|
|
3148
3245
|
* @param {*} [options] Override http request option.
|
|
3149
3246
|
* @throws {RequiredError}
|
|
3150
3247
|
*/
|
|
3151
|
-
crawlerSchedulesDelete: (
|
|
3248
|
+
crawlerSchedulesDelete: (organization_1, project_1, crawler_1, crawlerSchedule_1, ...args_1) => __awaiter(this, [organization_1, project_1, crawler_1, crawlerSchedule_1, ...args_1], void 0, function* (organization, project, crawler, crawlerSchedule, options = {}) {
|
|
3152
3249
|
// verify required parameter 'organization' is not null or undefined
|
|
3153
3250
|
assertParamExists('crawlerSchedulesDelete', 'organization', organization);
|
|
3154
3251
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -3193,7 +3290,7 @@ export const CrawlerSchedulesApiAxiosParamCreator = function (configuration) {
|
|
|
3193
3290
|
* @param {*} [options] Override http request option.
|
|
3194
3291
|
* @throws {RequiredError}
|
|
3195
3292
|
*/
|
|
3196
|
-
crawlerSchedulesEdit: (
|
|
3293
|
+
crawlerSchedulesEdit: (organization_1, project_1, crawler_1, crawlerSchedule_1, v2CrawlerScheduleRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, crawler_1, crawlerSchedule_1, v2CrawlerScheduleRequest_1, ...args_1], void 0, function* (organization, project, crawler, crawlerSchedule, v2CrawlerScheduleRequest, options = {}) {
|
|
3197
3294
|
// verify required parameter 'organization' is not null or undefined
|
|
3198
3295
|
assertParamExists('crawlerSchedulesEdit', 'organization', organization);
|
|
3199
3296
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -3240,7 +3337,7 @@ export const CrawlerSchedulesApiAxiosParamCreator = function (configuration) {
|
|
|
3240
3337
|
* @param {*} [options] Override http request option.
|
|
3241
3338
|
* @throws {RequiredError}
|
|
3242
3339
|
*/
|
|
3243
|
-
crawlerSchedulesList: (
|
|
3340
|
+
crawlerSchedulesList: (organization_1, project_1, crawler_1, ...args_1) => __awaiter(this, [organization_1, project_1, crawler_1, ...args_1], void 0, function* (organization, project, crawler, options = {}) {
|
|
3244
3341
|
// verify required parameter 'organization' is not null or undefined
|
|
3245
3342
|
assertParamExists('crawlerSchedulesList', 'organization', organization);
|
|
3246
3343
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -3281,7 +3378,7 @@ export const CrawlerSchedulesApiAxiosParamCreator = function (configuration) {
|
|
|
3281
3378
|
* @param {*} [options] Override http request option.
|
|
3282
3379
|
* @throws {RequiredError}
|
|
3283
3380
|
*/
|
|
3284
|
-
crawlerSchedulesShow: (
|
|
3381
|
+
crawlerSchedulesShow: (organization_1, project_1, crawler_1, crawlerSchedule_1, ...args_1) => __awaiter(this, [organization_1, project_1, crawler_1, crawlerSchedule_1, ...args_1], void 0, function* (organization, project, crawler, crawlerSchedule, options = {}) {
|
|
3285
3382
|
// verify required parameter 'organization' is not null or undefined
|
|
3286
3383
|
assertParamExists('crawlerSchedulesShow', 'organization', organization);
|
|
3287
3384
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -3335,8 +3432,8 @@ export const CrawlerSchedulesApiFp = function (configuration) {
|
|
|
3335
3432
|
* @throws {RequiredError}
|
|
3336
3433
|
*/
|
|
3337
3434
|
crawlerSchedulesAdd(organization, project, crawler, v2CrawlerScheduleRequest, options) {
|
|
3338
|
-
var _a, _b, _c;
|
|
3339
3435
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3436
|
+
var _a, _b, _c;
|
|
3340
3437
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.crawlerSchedulesAdd(organization, project, crawler, v2CrawlerScheduleRequest, options);
|
|
3341
3438
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
3342
3439
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CrawlerSchedulesApi.crawlerSchedulesAdd']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -3354,8 +3451,8 @@ export const CrawlerSchedulesApiFp = function (configuration) {
|
|
|
3354
3451
|
* @throws {RequiredError}
|
|
3355
3452
|
*/
|
|
3356
3453
|
crawlerSchedulesDelete(organization, project, crawler, crawlerSchedule, options) {
|
|
3357
|
-
var _a, _b, _c;
|
|
3358
3454
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3455
|
+
var _a, _b, _c;
|
|
3359
3456
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.crawlerSchedulesDelete(organization, project, crawler, crawlerSchedule, options);
|
|
3360
3457
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
3361
3458
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CrawlerSchedulesApi.crawlerSchedulesDelete']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -3374,8 +3471,8 @@ export const CrawlerSchedulesApiFp = function (configuration) {
|
|
|
3374
3471
|
* @throws {RequiredError}
|
|
3375
3472
|
*/
|
|
3376
3473
|
crawlerSchedulesEdit(organization, project, crawler, crawlerSchedule, v2CrawlerScheduleRequest, options) {
|
|
3377
|
-
var _a, _b, _c;
|
|
3378
3474
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3475
|
+
var _a, _b, _c;
|
|
3379
3476
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.crawlerSchedulesEdit(organization, project, crawler, crawlerSchedule, v2CrawlerScheduleRequest, options);
|
|
3380
3477
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
3381
3478
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CrawlerSchedulesApi.crawlerSchedulesEdit']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -3392,8 +3489,8 @@ export const CrawlerSchedulesApiFp = function (configuration) {
|
|
|
3392
3489
|
* @throws {RequiredError}
|
|
3393
3490
|
*/
|
|
3394
3491
|
crawlerSchedulesList(organization, project, crawler, options) {
|
|
3395
|
-
var _a, _b, _c;
|
|
3396
3492
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3493
|
+
var _a, _b, _c;
|
|
3397
3494
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.crawlerSchedulesList(organization, project, crawler, options);
|
|
3398
3495
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
3399
3496
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CrawlerSchedulesApi.crawlerSchedulesList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -3411,8 +3508,8 @@ export const CrawlerSchedulesApiFp = function (configuration) {
|
|
|
3411
3508
|
* @throws {RequiredError}
|
|
3412
3509
|
*/
|
|
3413
3510
|
crawlerSchedulesShow(organization, project, crawler, crawlerSchedule, options) {
|
|
3414
|
-
var _a, _b, _c;
|
|
3415
3511
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3512
|
+
var _a, _b, _c;
|
|
3416
3513
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.crawlerSchedulesShow(organization, project, crawler, crawlerSchedule, options);
|
|
3417
3514
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
3418
3515
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CrawlerSchedulesApi.crawlerSchedulesShow']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -3588,7 +3685,7 @@ export const CrawlersApiAxiosParamCreator = function (configuration) {
|
|
|
3588
3685
|
* @param {*} [options] Override http request option.
|
|
3589
3686
|
* @throws {RequiredError}
|
|
3590
3687
|
*/
|
|
3591
|
-
crawlersCreate: (
|
|
3688
|
+
crawlersCreate: (organization_1, project_1, v2CrawlerRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, v2CrawlerRequest_1, ...args_1], void 0, function* (organization, project, v2CrawlerRequest, options = {}) {
|
|
3592
3689
|
// verify required parameter 'organization' is not null or undefined
|
|
3593
3690
|
assertParamExists('crawlersCreate', 'organization', organization);
|
|
3594
3691
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -3629,7 +3726,7 @@ export const CrawlersApiAxiosParamCreator = function (configuration) {
|
|
|
3629
3726
|
* @param {*} [options] Override http request option.
|
|
3630
3727
|
* @throws {RequiredError}
|
|
3631
3728
|
*/
|
|
3632
|
-
crawlersDelete: (
|
|
3729
|
+
crawlersDelete: (organization_1, project_1, crawler_1, ...args_1) => __awaiter(this, [organization_1, project_1, crawler_1, ...args_1], void 0, function* (organization, project, crawler, options = {}) {
|
|
3633
3730
|
// verify required parameter 'organization' is not null or undefined
|
|
3634
3731
|
assertParamExists('crawlersDelete', 'organization', organization);
|
|
3635
3732
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -3660,6 +3757,90 @@ export const CrawlersApiAxiosParamCreator = function (configuration) {
|
|
|
3660
3757
|
options: localVarRequestOptions,
|
|
3661
3758
|
};
|
|
3662
3759
|
}),
|
|
3760
|
+
/**
|
|
3761
|
+
*
|
|
3762
|
+
* @summary Get a run by ID
|
|
3763
|
+
* @param {string} organization Organization identifier
|
|
3764
|
+
* @param {string} project Project identifier
|
|
3765
|
+
* @param {string} crawler Crawler identifier
|
|
3766
|
+
* @param {number} runId Run identifier
|
|
3767
|
+
* @param {*} [options] Override http request option.
|
|
3768
|
+
* @throws {RequiredError}
|
|
3769
|
+
*/
|
|
3770
|
+
crawlersGetRunById: (organization_1, project_1, crawler_1, runId_1, ...args_1) => __awaiter(this, [organization_1, project_1, crawler_1, runId_1, ...args_1], void 0, function* (organization, project, crawler, runId, options = {}) {
|
|
3771
|
+
// verify required parameter 'organization' is not null or undefined
|
|
3772
|
+
assertParamExists('crawlersGetRunById', 'organization', organization);
|
|
3773
|
+
// verify required parameter 'project' is not null or undefined
|
|
3774
|
+
assertParamExists('crawlersGetRunById', 'project', project);
|
|
3775
|
+
// verify required parameter 'crawler' is not null or undefined
|
|
3776
|
+
assertParamExists('crawlersGetRunById', 'crawler', crawler);
|
|
3777
|
+
// verify required parameter 'runId' is not null or undefined
|
|
3778
|
+
assertParamExists('crawlersGetRunById', 'runId', runId);
|
|
3779
|
+
const localVarPath = `/api/v2/organizations/{organization}/projects/{project}/crawlers/{crawler}/runs/{run_id}`
|
|
3780
|
+
.replace(`{${"organization"}}`, encodeURIComponent(String(organization)))
|
|
3781
|
+
.replace(`{${"project"}}`, encodeURIComponent(String(project)))
|
|
3782
|
+
.replace(`{${"crawler"}}`, encodeURIComponent(String(crawler)))
|
|
3783
|
+
.replace(`{${"run_id"}}`, encodeURIComponent(String(runId)));
|
|
3784
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3785
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3786
|
+
let baseOptions;
|
|
3787
|
+
if (configuration) {
|
|
3788
|
+
baseOptions = configuration.baseOptions;
|
|
3789
|
+
}
|
|
3790
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
3791
|
+
const localVarHeaderParameter = {};
|
|
3792
|
+
const localVarQueryParameter = {};
|
|
3793
|
+
// authentication BearerAuth required
|
|
3794
|
+
// http bearer authentication required
|
|
3795
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3796
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3797
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3798
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3799
|
+
return {
|
|
3800
|
+
url: toPathString(localVarUrlObj),
|
|
3801
|
+
options: localVarRequestOptions,
|
|
3802
|
+
};
|
|
3803
|
+
}),
|
|
3804
|
+
/**
|
|
3805
|
+
*
|
|
3806
|
+
* @summary Get all runs for a crawler
|
|
3807
|
+
* @param {string} organization Organization identifier
|
|
3808
|
+
* @param {string} project Project identifier
|
|
3809
|
+
* @param {string} crawler Crawler identifier
|
|
3810
|
+
* @param {*} [options] Override http request option.
|
|
3811
|
+
* @throws {RequiredError}
|
|
3812
|
+
*/
|
|
3813
|
+
crawlersGetRuns: (organization_1, project_1, crawler_1, ...args_1) => __awaiter(this, [organization_1, project_1, crawler_1, ...args_1], void 0, function* (organization, project, crawler, options = {}) {
|
|
3814
|
+
// verify required parameter 'organization' is not null or undefined
|
|
3815
|
+
assertParamExists('crawlersGetRuns', 'organization', organization);
|
|
3816
|
+
// verify required parameter 'project' is not null or undefined
|
|
3817
|
+
assertParamExists('crawlersGetRuns', 'project', project);
|
|
3818
|
+
// verify required parameter 'crawler' is not null or undefined
|
|
3819
|
+
assertParamExists('crawlersGetRuns', 'crawler', crawler);
|
|
3820
|
+
const localVarPath = `/api/v2/organizations/{organization}/projects/{project}/crawlers/{crawler}/runs`
|
|
3821
|
+
.replace(`{${"organization"}}`, encodeURIComponent(String(organization)))
|
|
3822
|
+
.replace(`{${"project"}}`, encodeURIComponent(String(project)))
|
|
3823
|
+
.replace(`{${"crawler"}}`, encodeURIComponent(String(crawler)));
|
|
3824
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3825
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3826
|
+
let baseOptions;
|
|
3827
|
+
if (configuration) {
|
|
3828
|
+
baseOptions = configuration.baseOptions;
|
|
3829
|
+
}
|
|
3830
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
3831
|
+
const localVarHeaderParameter = {};
|
|
3832
|
+
const localVarQueryParameter = {};
|
|
3833
|
+
// authentication BearerAuth required
|
|
3834
|
+
// http bearer authentication required
|
|
3835
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3836
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3837
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3838
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3839
|
+
return {
|
|
3840
|
+
url: toPathString(localVarUrlObj),
|
|
3841
|
+
options: localVarRequestOptions,
|
|
3842
|
+
};
|
|
3843
|
+
}),
|
|
3663
3844
|
/**
|
|
3664
3845
|
*
|
|
3665
3846
|
* @summary List crawlers for the project
|
|
@@ -3668,7 +3849,7 @@ export const CrawlersApiAxiosParamCreator = function (configuration) {
|
|
|
3668
3849
|
* @param {*} [options] Override http request option.
|
|
3669
3850
|
* @throws {RequiredError}
|
|
3670
3851
|
*/
|
|
3671
|
-
crawlersList: (
|
|
3852
|
+
crawlersList: (organization_1, project_1, ...args_1) => __awaiter(this, [organization_1, project_1, ...args_1], void 0, function* (organization, project, options = {}) {
|
|
3672
3853
|
// verify required parameter 'organization' is not null or undefined
|
|
3673
3854
|
assertParamExists('crawlersList', 'organization', organization);
|
|
3674
3855
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -3705,7 +3886,7 @@ export const CrawlersApiAxiosParamCreator = function (configuration) {
|
|
|
3705
3886
|
* @param {*} [options] Override http request option.
|
|
3706
3887
|
* @throws {RequiredError}
|
|
3707
3888
|
*/
|
|
3708
|
-
crawlersRead: (
|
|
3889
|
+
crawlersRead: (organization_1, project_1, crawler_1, ...args_1) => __awaiter(this, [organization_1, project_1, crawler_1, ...args_1], void 0, function* (organization, project, crawler, options = {}) {
|
|
3709
3890
|
// verify required parameter 'organization' is not null or undefined
|
|
3710
3891
|
assertParamExists('crawlersRead', 'organization', organization);
|
|
3711
3892
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -3746,7 +3927,7 @@ export const CrawlersApiAxiosParamCreator = function (configuration) {
|
|
|
3746
3927
|
* @param {*} [options] Override http request option.
|
|
3747
3928
|
* @throws {RequiredError}
|
|
3748
3929
|
*/
|
|
3749
|
-
crawlersRun: (
|
|
3930
|
+
crawlersRun: (organization_1, project_1, crawler_1, crawlersRunRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, crawler_1, crawlersRunRequest_1, ...args_1], void 0, function* (organization, project, crawler, crawlersRunRequest, options = {}) {
|
|
3750
3931
|
// verify required parameter 'organization' is not null or undefined
|
|
3751
3932
|
assertParamExists('crawlersRun', 'organization', organization);
|
|
3752
3933
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -3791,7 +3972,7 @@ export const CrawlersApiAxiosParamCreator = function (configuration) {
|
|
|
3791
3972
|
* @param {*} [options] Override http request option.
|
|
3792
3973
|
* @throws {RequiredError}
|
|
3793
3974
|
*/
|
|
3794
|
-
crawlersUpdate: (
|
|
3975
|
+
crawlersUpdate: (organization_1, project_1, crawler_1, v2CrawlerRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, crawler_1, v2CrawlerRequest_1, ...args_1], void 0, function* (organization, project, crawler, v2CrawlerRequest, options = {}) {
|
|
3795
3976
|
// verify required parameter 'organization' is not null or undefined
|
|
3796
3977
|
assertParamExists('crawlersUpdate', 'organization', organization);
|
|
3797
3978
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -3845,8 +4026,8 @@ export const CrawlersApiFp = function (configuration) {
|
|
|
3845
4026
|
* @throws {RequiredError}
|
|
3846
4027
|
*/
|
|
3847
4028
|
crawlersCreate(organization, project, v2CrawlerRequest, options) {
|
|
3848
|
-
var _a, _b, _c;
|
|
3849
4029
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4030
|
+
var _a, _b, _c;
|
|
3850
4031
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.crawlersCreate(organization, project, v2CrawlerRequest, options);
|
|
3851
4032
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
3852
4033
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CrawlersApi.crawlersCreate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -3863,14 +4044,51 @@ export const CrawlersApiFp = function (configuration) {
|
|
|
3863
4044
|
* @throws {RequiredError}
|
|
3864
4045
|
*/
|
|
3865
4046
|
crawlersDelete(organization, project, crawler, options) {
|
|
3866
|
-
var _a, _b, _c;
|
|
3867
4047
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4048
|
+
var _a, _b, _c;
|
|
3868
4049
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.crawlersDelete(organization, project, crawler, options);
|
|
3869
4050
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
3870
4051
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CrawlersApi.crawlersDelete']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
3871
4052
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3872
4053
|
});
|
|
3873
4054
|
},
|
|
4055
|
+
/**
|
|
4056
|
+
*
|
|
4057
|
+
* @summary Get a run by ID
|
|
4058
|
+
* @param {string} organization Organization identifier
|
|
4059
|
+
* @param {string} project Project identifier
|
|
4060
|
+
* @param {string} crawler Crawler identifier
|
|
4061
|
+
* @param {number} runId Run identifier
|
|
4062
|
+
* @param {*} [options] Override http request option.
|
|
4063
|
+
* @throws {RequiredError}
|
|
4064
|
+
*/
|
|
4065
|
+
crawlersGetRunById(organization, project, crawler, runId, options) {
|
|
4066
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
4067
|
+
var _a, _b, _c;
|
|
4068
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.crawlersGetRunById(organization, project, crawler, runId, options);
|
|
4069
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
4070
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CrawlersApi.crawlersGetRunById']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
4071
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4072
|
+
});
|
|
4073
|
+
},
|
|
4074
|
+
/**
|
|
4075
|
+
*
|
|
4076
|
+
* @summary Get all runs for a crawler
|
|
4077
|
+
* @param {string} organization Organization identifier
|
|
4078
|
+
* @param {string} project Project identifier
|
|
4079
|
+
* @param {string} crawler Crawler identifier
|
|
4080
|
+
* @param {*} [options] Override http request option.
|
|
4081
|
+
* @throws {RequiredError}
|
|
4082
|
+
*/
|
|
4083
|
+
crawlersGetRuns(organization, project, crawler, options) {
|
|
4084
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
4085
|
+
var _a, _b, _c;
|
|
4086
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.crawlersGetRuns(organization, project, crawler, options);
|
|
4087
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
4088
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CrawlersApi.crawlersGetRuns']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
4089
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4090
|
+
});
|
|
4091
|
+
},
|
|
3874
4092
|
/**
|
|
3875
4093
|
*
|
|
3876
4094
|
* @summary List crawlers for the project
|
|
@@ -3880,8 +4098,8 @@ export const CrawlersApiFp = function (configuration) {
|
|
|
3880
4098
|
* @throws {RequiredError}
|
|
3881
4099
|
*/
|
|
3882
4100
|
crawlersList(organization, project, options) {
|
|
3883
|
-
var _a, _b, _c;
|
|
3884
4101
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4102
|
+
var _a, _b, _c;
|
|
3885
4103
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.crawlersList(organization, project, options);
|
|
3886
4104
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
3887
4105
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CrawlersApi.crawlersList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -3898,8 +4116,8 @@ export const CrawlersApiFp = function (configuration) {
|
|
|
3898
4116
|
* @throws {RequiredError}
|
|
3899
4117
|
*/
|
|
3900
4118
|
crawlersRead(organization, project, crawler, options) {
|
|
3901
|
-
var _a, _b, _c;
|
|
3902
4119
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4120
|
+
var _a, _b, _c;
|
|
3903
4121
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.crawlersRead(organization, project, crawler, options);
|
|
3904
4122
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
3905
4123
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CrawlersApi.crawlersRead']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -3917,8 +4135,8 @@ export const CrawlersApiFp = function (configuration) {
|
|
|
3917
4135
|
* @throws {RequiredError}
|
|
3918
4136
|
*/
|
|
3919
4137
|
crawlersRun(organization, project, crawler, crawlersRunRequest, options) {
|
|
3920
|
-
var _a, _b, _c;
|
|
3921
4138
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4139
|
+
var _a, _b, _c;
|
|
3922
4140
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.crawlersRun(organization, project, crawler, crawlersRunRequest, options);
|
|
3923
4141
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
3924
4142
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CrawlersApi.crawlersRun']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -3936,8 +4154,8 @@ export const CrawlersApiFp = function (configuration) {
|
|
|
3936
4154
|
* @throws {RequiredError}
|
|
3937
4155
|
*/
|
|
3938
4156
|
crawlersUpdate(organization, project, crawler, v2CrawlerRequest, options) {
|
|
3939
|
-
var _a, _b, _c;
|
|
3940
4157
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4158
|
+
var _a, _b, _c;
|
|
3941
4159
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.crawlersUpdate(organization, project, crawler, v2CrawlerRequest, options);
|
|
3942
4160
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
3943
4161
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CrawlersApi.crawlersUpdate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -3977,6 +4195,31 @@ export const CrawlersApiFactory = function (configuration, basePath, axios) {
|
|
|
3977
4195
|
crawlersDelete(organization, project, crawler, options) {
|
|
3978
4196
|
return localVarFp.crawlersDelete(organization, project, crawler, options).then((request) => request(axios, basePath));
|
|
3979
4197
|
},
|
|
4198
|
+
/**
|
|
4199
|
+
*
|
|
4200
|
+
* @summary Get a run by ID
|
|
4201
|
+
* @param {string} organization Organization identifier
|
|
4202
|
+
* @param {string} project Project identifier
|
|
4203
|
+
* @param {string} crawler Crawler identifier
|
|
4204
|
+
* @param {number} runId Run identifier
|
|
4205
|
+
* @param {*} [options] Override http request option.
|
|
4206
|
+
* @throws {RequiredError}
|
|
4207
|
+
*/
|
|
4208
|
+
crawlersGetRunById(organization, project, crawler, runId, options) {
|
|
4209
|
+
return localVarFp.crawlersGetRunById(organization, project, crawler, runId, options).then((request) => request(axios, basePath));
|
|
4210
|
+
},
|
|
4211
|
+
/**
|
|
4212
|
+
*
|
|
4213
|
+
* @summary Get all runs for a crawler
|
|
4214
|
+
* @param {string} organization Organization identifier
|
|
4215
|
+
* @param {string} project Project identifier
|
|
4216
|
+
* @param {string} crawler Crawler identifier
|
|
4217
|
+
* @param {*} [options] Override http request option.
|
|
4218
|
+
* @throws {RequiredError}
|
|
4219
|
+
*/
|
|
4220
|
+
crawlersGetRuns(organization, project, crawler, options) {
|
|
4221
|
+
return localVarFp.crawlersGetRuns(organization, project, crawler, options).then((request) => request(axios, basePath));
|
|
4222
|
+
},
|
|
3980
4223
|
/**
|
|
3981
4224
|
*
|
|
3982
4225
|
* @summary List crawlers for the project
|
|
@@ -4061,6 +4304,33 @@ export class CrawlersApi extends BaseAPI {
|
|
|
4061
4304
|
crawlersDelete(organization, project, crawler, options) {
|
|
4062
4305
|
return CrawlersApiFp(this.configuration).crawlersDelete(organization, project, crawler, options).then((request) => request(this.axios, this.basePath));
|
|
4063
4306
|
}
|
|
4307
|
+
/**
|
|
4308
|
+
*
|
|
4309
|
+
* @summary Get a run by ID
|
|
4310
|
+
* @param {string} organization Organization identifier
|
|
4311
|
+
* @param {string} project Project identifier
|
|
4312
|
+
* @param {string} crawler Crawler identifier
|
|
4313
|
+
* @param {number} runId Run identifier
|
|
4314
|
+
* @param {*} [options] Override http request option.
|
|
4315
|
+
* @throws {RequiredError}
|
|
4316
|
+
* @memberof CrawlersApi
|
|
4317
|
+
*/
|
|
4318
|
+
crawlersGetRunById(organization, project, crawler, runId, options) {
|
|
4319
|
+
return CrawlersApiFp(this.configuration).crawlersGetRunById(organization, project, crawler, runId, options).then((request) => request(this.axios, this.basePath));
|
|
4320
|
+
}
|
|
4321
|
+
/**
|
|
4322
|
+
*
|
|
4323
|
+
* @summary Get all runs for a crawler
|
|
4324
|
+
* @param {string} organization Organization identifier
|
|
4325
|
+
* @param {string} project Project identifier
|
|
4326
|
+
* @param {string} crawler Crawler identifier
|
|
4327
|
+
* @param {*} [options] Override http request option.
|
|
4328
|
+
* @throws {RequiredError}
|
|
4329
|
+
* @memberof CrawlersApi
|
|
4330
|
+
*/
|
|
4331
|
+
crawlersGetRuns(organization, project, crawler, options) {
|
|
4332
|
+
return CrawlersApiFp(this.configuration).crawlersGetRuns(organization, project, crawler, options).then((request) => request(this.axios, this.basePath));
|
|
4333
|
+
}
|
|
4064
4334
|
/**
|
|
4065
4335
|
*
|
|
4066
4336
|
* @summary List crawlers for the project
|
|
@@ -4131,7 +4401,7 @@ export const CronApiAxiosParamCreator = function (configuration) {
|
|
|
4131
4401
|
* @param {*} [options] Override http request option.
|
|
4132
4402
|
* @throws {RequiredError}
|
|
4133
4403
|
*/
|
|
4134
|
-
createCronJob: (
|
|
4404
|
+
createCronJob: (organisation_1, application_1, environment_1, createCronJobRequest_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, createCronJobRequest_1, ...args_1], void 0, function* (organisation, application, environment, createCronJobRequest, options = {}) {
|
|
4135
4405
|
// verify required parameter 'organisation' is not null or undefined
|
|
4136
4406
|
assertParamExists('createCronJob', 'organisation', organisation);
|
|
4137
4407
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -4176,7 +4446,7 @@ export const CronApiAxiosParamCreator = function (configuration) {
|
|
|
4176
4446
|
* @param {*} [options] Override http request option.
|
|
4177
4447
|
* @throws {RequiredError}
|
|
4178
4448
|
*/
|
|
4179
|
-
deleteCronJob: (
|
|
4449
|
+
deleteCronJob: (organisation_1, application_1, environment_1, cron_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, cron_1, ...args_1], void 0, function* (organisation, application, environment, cron, options = {}) {
|
|
4180
4450
|
// verify required parameter 'organisation' is not null or undefined
|
|
4181
4451
|
assertParamExists('deleteCronJob', 'organisation', organisation);
|
|
4182
4452
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -4220,7 +4490,7 @@ export const CronApiAxiosParamCreator = function (configuration) {
|
|
|
4220
4490
|
* @param {*} [options] Override http request option.
|
|
4221
4491
|
* @throws {RequiredError}
|
|
4222
4492
|
*/
|
|
4223
|
-
getCronJob: (
|
|
4493
|
+
getCronJob: (organisation_1, application_1, environment_1, cron_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, cron_1, ...args_1], void 0, function* (organisation, application, environment, cron, options = {}) {
|
|
4224
4494
|
// verify required parameter 'organisation' is not null or undefined
|
|
4225
4495
|
assertParamExists('getCronJob', 'organisation', organisation);
|
|
4226
4496
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -4265,7 +4535,7 @@ export const CronApiAxiosParamCreator = function (configuration) {
|
|
|
4265
4535
|
* @param {*} [options] Override http request option.
|
|
4266
4536
|
* @throws {RequiredError}
|
|
4267
4537
|
*/
|
|
4268
|
-
getCronRun: (
|
|
4538
|
+
getCronRun: (organisation_1, application_1, environment_1, cron_1, run_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, cron_1, run_1, ...args_1], void 0, function* (organisation, application, environment, cron, run, options = {}) {
|
|
4269
4539
|
// verify required parameter 'organisation' is not null or undefined
|
|
4270
4540
|
assertParamExists('getCronRun', 'organisation', organisation);
|
|
4271
4541
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -4312,7 +4582,7 @@ export const CronApiAxiosParamCreator = function (configuration) {
|
|
|
4312
4582
|
* @param {*} [options] Override http request option.
|
|
4313
4583
|
* @throws {RequiredError}
|
|
4314
4584
|
*/
|
|
4315
|
-
listCronJobRuns: (
|
|
4585
|
+
listCronJobRuns: (organisation_1, application_1, environment_1, cron_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, cron_1, ...args_1], void 0, function* (organisation, application, environment, cron, options = {}) {
|
|
4316
4586
|
// verify required parameter 'organisation' is not null or undefined
|
|
4317
4587
|
assertParamExists('listCronJobRuns', 'organisation', organisation);
|
|
4318
4588
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -4355,7 +4625,7 @@ export const CronApiAxiosParamCreator = function (configuration) {
|
|
|
4355
4625
|
* @param {*} [options] Override http request option.
|
|
4356
4626
|
* @throws {RequiredError}
|
|
4357
4627
|
*/
|
|
4358
|
-
listCronJobs: (
|
|
4628
|
+
listCronJobs: (organisation_1, application_1, environment_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, ...args_1], void 0, function* (organisation, application, environment, options = {}) {
|
|
4359
4629
|
// verify required parameter 'organisation' is not null or undefined
|
|
4360
4630
|
assertParamExists('listCronJobs', 'organisation', organisation);
|
|
4361
4631
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -4397,7 +4667,7 @@ export const CronApiAxiosParamCreator = function (configuration) {
|
|
|
4397
4667
|
* @param {*} [options] Override http request option.
|
|
4398
4668
|
* @throws {RequiredError}
|
|
4399
4669
|
*/
|
|
4400
|
-
updateCronJob: (
|
|
4670
|
+
updateCronJob: (organisation_1, application_1, environment_1, cron_1, updateCronJobRequest_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, cron_1, updateCronJobRequest_1, ...args_1], void 0, function* (organisation, application, environment, cron, updateCronJobRequest, options = {}) {
|
|
4401
4671
|
// verify required parameter 'organisation' is not null or undefined
|
|
4402
4672
|
assertParamExists('updateCronJob', 'organisation', organisation);
|
|
4403
4673
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -4455,8 +4725,8 @@ export const CronApiFp = function (configuration) {
|
|
|
4455
4725
|
* @throws {RequiredError}
|
|
4456
4726
|
*/
|
|
4457
4727
|
createCronJob(organisation, application, environment, createCronJobRequest, options) {
|
|
4458
|
-
var _a, _b, _c;
|
|
4459
4728
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4729
|
+
var _a, _b, _c;
|
|
4460
4730
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.createCronJob(organisation, application, environment, createCronJobRequest, options);
|
|
4461
4731
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
4462
4732
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CronApi.createCronJob']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -4474,8 +4744,8 @@ export const CronApiFp = function (configuration) {
|
|
|
4474
4744
|
* @throws {RequiredError}
|
|
4475
4745
|
*/
|
|
4476
4746
|
deleteCronJob(organisation, application, environment, cron, options) {
|
|
4477
|
-
var _a, _b, _c;
|
|
4478
4747
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4748
|
+
var _a, _b, _c;
|
|
4479
4749
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteCronJob(organisation, application, environment, cron, options);
|
|
4480
4750
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
4481
4751
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CronApi.deleteCronJob']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -4493,8 +4763,8 @@ export const CronApiFp = function (configuration) {
|
|
|
4493
4763
|
* @throws {RequiredError}
|
|
4494
4764
|
*/
|
|
4495
4765
|
getCronJob(organisation, application, environment, cron, options) {
|
|
4496
|
-
var _a, _b, _c;
|
|
4497
4766
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4767
|
+
var _a, _b, _c;
|
|
4498
4768
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getCronJob(organisation, application, environment, cron, options);
|
|
4499
4769
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
4500
4770
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CronApi.getCronJob']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -4513,8 +4783,8 @@ export const CronApiFp = function (configuration) {
|
|
|
4513
4783
|
* @throws {RequiredError}
|
|
4514
4784
|
*/
|
|
4515
4785
|
getCronRun(organisation, application, environment, cron, run, options) {
|
|
4516
|
-
var _a, _b, _c;
|
|
4517
4786
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4787
|
+
var _a, _b, _c;
|
|
4518
4788
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getCronRun(organisation, application, environment, cron, run, options);
|
|
4519
4789
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
4520
4790
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CronApi.getCronRun']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -4532,8 +4802,8 @@ export const CronApiFp = function (configuration) {
|
|
|
4532
4802
|
* @throws {RequiredError}
|
|
4533
4803
|
*/
|
|
4534
4804
|
listCronJobRuns(organisation, application, environment, cron, options) {
|
|
4535
|
-
var _a, _b, _c;
|
|
4536
4805
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4806
|
+
var _a, _b, _c;
|
|
4537
4807
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.listCronJobRuns(organisation, application, environment, cron, options);
|
|
4538
4808
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
4539
4809
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CronApi.listCronJobRuns']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -4550,8 +4820,8 @@ export const CronApiFp = function (configuration) {
|
|
|
4550
4820
|
* @throws {RequiredError}
|
|
4551
4821
|
*/
|
|
4552
4822
|
listCronJobs(organisation, application, environment, options) {
|
|
4553
|
-
var _a, _b, _c;
|
|
4554
4823
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4824
|
+
var _a, _b, _c;
|
|
4555
4825
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.listCronJobs(organisation, application, environment, options);
|
|
4556
4826
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
4557
4827
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CronApi.listCronJobs']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -4570,8 +4840,8 @@ export const CronApiFp = function (configuration) {
|
|
|
4570
4840
|
* @throws {RequiredError}
|
|
4571
4841
|
*/
|
|
4572
4842
|
updateCronJob(organisation, application, environment, cron, updateCronJobRequest, options) {
|
|
4573
|
-
var _a, _b, _c;
|
|
4574
4843
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4844
|
+
var _a, _b, _c;
|
|
4575
4845
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.updateCronJob(organisation, application, environment, cron, updateCronJobRequest, options);
|
|
4576
4846
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
4577
4847
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CronApi.updateCronJob']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -4803,7 +5073,7 @@ export const DomainsApiAxiosParamCreator = function (configuration) {
|
|
|
4803
5073
|
* @param {*} [options] Override http request option.
|
|
4804
5074
|
* @throws {RequiredError}
|
|
4805
5075
|
*/
|
|
4806
|
-
domainsCreate: (
|
|
5076
|
+
domainsCreate: (organization_1, project_1, v2DomainRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, v2DomainRequest_1, ...args_1], void 0, function* (organization, project, v2DomainRequest, options = {}) {
|
|
4807
5077
|
// verify required parameter 'organization' is not null or undefined
|
|
4808
5078
|
assertParamExists('domainsCreate', 'organization', organization);
|
|
4809
5079
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -4844,7 +5114,7 @@ export const DomainsApiAxiosParamCreator = function (configuration) {
|
|
|
4844
5114
|
* @param {*} [options] Override http request option.
|
|
4845
5115
|
* @throws {RequiredError}
|
|
4846
5116
|
*/
|
|
4847
|
-
domainsDelete: (
|
|
5117
|
+
domainsDelete: (organization_1, project_1, domain_1, ...args_1) => __awaiter(this, [organization_1, project_1, domain_1, ...args_1], void 0, function* (organization, project, domain, options = {}) {
|
|
4848
5118
|
// verify required parameter 'organization' is not null or undefined
|
|
4849
5119
|
assertParamExists('domainsDelete', 'organization', organization);
|
|
4850
5120
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -4883,7 +5153,7 @@ export const DomainsApiAxiosParamCreator = function (configuration) {
|
|
|
4883
5153
|
* @param {*} [options] Override http request option.
|
|
4884
5154
|
* @throws {RequiredError}
|
|
4885
5155
|
*/
|
|
4886
|
-
domainsList: (
|
|
5156
|
+
domainsList: (organization_1, project_1, ...args_1) => __awaiter(this, [organization_1, project_1, ...args_1], void 0, function* (organization, project, options = {}) {
|
|
4887
5157
|
// verify required parameter 'organization' is not null or undefined
|
|
4888
5158
|
assertParamExists('domainsList', 'organization', organization);
|
|
4889
5159
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -4920,7 +5190,7 @@ export const DomainsApiAxiosParamCreator = function (configuration) {
|
|
|
4920
5190
|
* @param {*} [options] Override http request option.
|
|
4921
5191
|
* @throws {RequiredError}
|
|
4922
5192
|
*/
|
|
4923
|
-
domainsRead: (
|
|
5193
|
+
domainsRead: (organization_1, project_1, domain_1, ...args_1) => __awaiter(this, [organization_1, project_1, domain_1, ...args_1], void 0, function* (organization, project, domain, options = {}) {
|
|
4924
5194
|
// verify required parameter 'organization' is not null or undefined
|
|
4925
5195
|
assertParamExists('domainsRead', 'organization', organization);
|
|
4926
5196
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -4960,7 +5230,7 @@ export const DomainsApiAxiosParamCreator = function (configuration) {
|
|
|
4960
5230
|
* @param {*} [options] Override http request option.
|
|
4961
5231
|
* @throws {RequiredError}
|
|
4962
5232
|
*/
|
|
4963
|
-
domainsRenew: (
|
|
5233
|
+
domainsRenew: (organization_1, project_1, domain_1, ...args_1) => __awaiter(this, [organization_1, project_1, domain_1, ...args_1], void 0, function* (organization, project, domain, options = {}) {
|
|
4964
5234
|
// verify required parameter 'organization' is not null or undefined
|
|
4965
5235
|
assertParamExists('domainsRenew', 'organization', organization);
|
|
4966
5236
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -5010,8 +5280,8 @@ export const DomainsApiFp = function (configuration) {
|
|
|
5010
5280
|
* @throws {RequiredError}
|
|
5011
5281
|
*/
|
|
5012
5282
|
domainsCreate(organization, project, v2DomainRequest, options) {
|
|
5013
|
-
var _a, _b, _c;
|
|
5014
5283
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5284
|
+
var _a, _b, _c;
|
|
5015
5285
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.domainsCreate(organization, project, v2DomainRequest, options);
|
|
5016
5286
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
5017
5287
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DomainsApi.domainsCreate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -5028,8 +5298,8 @@ export const DomainsApiFp = function (configuration) {
|
|
|
5028
5298
|
* @throws {RequiredError}
|
|
5029
5299
|
*/
|
|
5030
5300
|
domainsDelete(organization, project, domain, options) {
|
|
5031
|
-
var _a, _b, _c;
|
|
5032
5301
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5302
|
+
var _a, _b, _c;
|
|
5033
5303
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.domainsDelete(organization, project, domain, options);
|
|
5034
5304
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
5035
5305
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DomainsApi.domainsDelete']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -5045,8 +5315,8 @@ export const DomainsApiFp = function (configuration) {
|
|
|
5045
5315
|
* @throws {RequiredError}
|
|
5046
5316
|
*/
|
|
5047
5317
|
domainsList(organization, project, options) {
|
|
5048
|
-
var _a, _b, _c;
|
|
5049
5318
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5319
|
+
var _a, _b, _c;
|
|
5050
5320
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.domainsList(organization, project, options);
|
|
5051
5321
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
5052
5322
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DomainsApi.domainsList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -5063,8 +5333,8 @@ export const DomainsApiFp = function (configuration) {
|
|
|
5063
5333
|
* @throws {RequiredError}
|
|
5064
5334
|
*/
|
|
5065
5335
|
domainsRead(organization, project, domain, options) {
|
|
5066
|
-
var _a, _b, _c;
|
|
5067
5336
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5337
|
+
var _a, _b, _c;
|
|
5068
5338
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.domainsRead(organization, project, domain, options);
|
|
5069
5339
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
5070
5340
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DomainsApi.domainsRead']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -5081,8 +5351,8 @@ export const DomainsApiFp = function (configuration) {
|
|
|
5081
5351
|
* @throws {RequiredError}
|
|
5082
5352
|
*/
|
|
5083
5353
|
domainsRenew(organization, project, domain, options) {
|
|
5084
|
-
var _a, _b, _c;
|
|
5085
5354
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5355
|
+
var _a, _b, _c;
|
|
5086
5356
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.domainsRenew(organization, project, domain, options);
|
|
5087
5357
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
5088
5358
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DomainsApi.domainsRenew']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -5246,7 +5516,7 @@ export const EnvironmentsApiAxiosParamCreator = function (configuration) {
|
|
|
5246
5516
|
* @param {*} [options] Override http request option.
|
|
5247
5517
|
* @throws {RequiredError}
|
|
5248
5518
|
*/
|
|
5249
|
-
createEnvironment: (
|
|
5519
|
+
createEnvironment: (organisation_1, application_1, createEnvironmentRequest_1, ...args_1) => __awaiter(this, [organisation_1, application_1, createEnvironmentRequest_1, ...args_1], void 0, function* (organisation, application, createEnvironmentRequest, options = {}) {
|
|
5250
5520
|
// verify required parameter 'organisation' is not null or undefined
|
|
5251
5521
|
assertParamExists('createEnvironment', 'organisation', organisation);
|
|
5252
5522
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -5287,7 +5557,7 @@ export const EnvironmentsApiAxiosParamCreator = function (configuration) {
|
|
|
5287
5557
|
* @param {*} [options] Override http request option.
|
|
5288
5558
|
* @throws {RequiredError}
|
|
5289
5559
|
*/
|
|
5290
|
-
deleteEnvironment: (
|
|
5560
|
+
deleteEnvironment: (organisation_1, application_1, environment_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, ...args_1], void 0, function* (organisation, application, environment, options = {}) {
|
|
5291
5561
|
// verify required parameter 'organisation' is not null or undefined
|
|
5292
5562
|
assertParamExists('deleteEnvironment', 'organisation', organisation);
|
|
5293
5563
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -5327,7 +5597,7 @@ export const EnvironmentsApiAxiosParamCreator = function (configuration) {
|
|
|
5327
5597
|
* @param {*} [options] Override http request option.
|
|
5328
5598
|
* @throws {RequiredError}
|
|
5329
5599
|
*/
|
|
5330
|
-
getEnvironment: (
|
|
5600
|
+
getEnvironment: (organisation_1, application_1, environment_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, ...args_1], void 0, function* (organisation, application, environment, options = {}) {
|
|
5331
5601
|
// verify required parameter 'organisation' is not null or undefined
|
|
5332
5602
|
assertParamExists('getEnvironment', 'organisation', organisation);
|
|
5333
5603
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -5373,7 +5643,7 @@ export const EnvironmentsApiAxiosParamCreator = function (configuration) {
|
|
|
5373
5643
|
* @param {*} [options] Override http request option.
|
|
5374
5644
|
* @throws {RequiredError}
|
|
5375
5645
|
*/
|
|
5376
|
-
getEnvironmentLogs: (
|
|
5646
|
+
getEnvironmentLogs: (organisation_1, application_1, environment_1, startTime_1, endTime_1, containerName_1, filterPattern_1, limit_1, nextToken_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, startTime_1, endTime_1, containerName_1, filterPattern_1, limit_1, nextToken_1, ...args_1], void 0, function* (organisation, application, environment, startTime, endTime, containerName, filterPattern, limit, nextToken, options = {}) {
|
|
5377
5647
|
// verify required parameter 'organisation' is not null or undefined
|
|
5378
5648
|
assertParamExists('getEnvironmentLogs', 'organisation', organisation);
|
|
5379
5649
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -5436,7 +5706,7 @@ export const EnvironmentsApiAxiosParamCreator = function (configuration) {
|
|
|
5436
5706
|
* @param {*} [options] Override http request option.
|
|
5437
5707
|
* @throws {RequiredError}
|
|
5438
5708
|
*/
|
|
5439
|
-
getEnvironmentMetrics: (
|
|
5709
|
+
getEnvironmentMetrics: (organisation_1, application_1, environment_1, startTime_1, endTime_1, period_1, statistics_1, containerName_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, startTime_1, endTime_1, period_1, statistics_1, containerName_1, ...args_1], void 0, function* (organisation, application, environment, startTime, endTime, period, statistics, containerName, options = {}) {
|
|
5440
5710
|
// verify required parameter 'organisation' is not null or undefined
|
|
5441
5711
|
assertParamExists('getEnvironmentMetrics', 'organisation', organisation);
|
|
5442
5712
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -5490,7 +5760,7 @@ export const EnvironmentsApiAxiosParamCreator = function (configuration) {
|
|
|
5490
5760
|
* @param {*} [options] Override http request option.
|
|
5491
5761
|
* @throws {RequiredError}
|
|
5492
5762
|
*/
|
|
5493
|
-
listEnvironments: (
|
|
5763
|
+
listEnvironments: (organisation_1, application_1, ...args_1) => __awaiter(this, [organisation_1, application_1, ...args_1], void 0, function* (organisation, application, options = {}) {
|
|
5494
5764
|
// verify required parameter 'organisation' is not null or undefined
|
|
5495
5765
|
assertParamExists('listEnvironments', 'organisation', organisation);
|
|
5496
5766
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -5528,7 +5798,7 @@ export const EnvironmentsApiAxiosParamCreator = function (configuration) {
|
|
|
5528
5798
|
* @param {*} [options] Override http request option.
|
|
5529
5799
|
* @throws {RequiredError}
|
|
5530
5800
|
*/
|
|
5531
|
-
listSyncOperations: (
|
|
5801
|
+
listSyncOperations: (organisation_1, application_1, environment_1, type_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, type_1, ...args_1], void 0, function* (organisation, application, environment, type, options = {}) {
|
|
5532
5802
|
// verify required parameter 'organisation' is not null or undefined
|
|
5533
5803
|
assertParamExists('listSyncOperations', 'organisation', organisation);
|
|
5534
5804
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -5573,7 +5843,7 @@ export const EnvironmentsApiAxiosParamCreator = function (configuration) {
|
|
|
5573
5843
|
* @param {*} [options] Override http request option.
|
|
5574
5844
|
* @throws {RequiredError}
|
|
5575
5845
|
*/
|
|
5576
|
-
syncToEnvironment: (
|
|
5846
|
+
syncToEnvironment: (organisation_1, application_1, environment_1, type_1, syncToEnvironmentRequest_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, type_1, syncToEnvironmentRequest_1, ...args_1], void 0, function* (organisation, application, environment, type, syncToEnvironmentRequest, options = {}) {
|
|
5577
5847
|
// verify required parameter 'organisation' is not null or undefined
|
|
5578
5848
|
assertParamExists('syncToEnvironment', 'organisation', organisation);
|
|
5579
5849
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -5621,7 +5891,7 @@ export const EnvironmentsApiAxiosParamCreator = function (configuration) {
|
|
|
5621
5891
|
* @param {*} [options] Override http request option.
|
|
5622
5892
|
* @throws {RequiredError}
|
|
5623
5893
|
*/
|
|
5624
|
-
updateEnvironment: (
|
|
5894
|
+
updateEnvironment: (organisation_1, application_1, environment_1, updateEnvironmentRequest_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, updateEnvironmentRequest_1, ...args_1], void 0, function* (organisation, application, environment, updateEnvironmentRequest, options = {}) {
|
|
5625
5895
|
// verify required parameter 'organisation' is not null or undefined
|
|
5626
5896
|
assertParamExists('updateEnvironment', 'organisation', organisation);
|
|
5627
5897
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -5666,7 +5936,7 @@ export const EnvironmentsApiAxiosParamCreator = function (configuration) {
|
|
|
5666
5936
|
* @param {*} [options] Override http request option.
|
|
5667
5937
|
* @throws {RequiredError}
|
|
5668
5938
|
*/
|
|
5669
|
-
updateEnvironmentState: (
|
|
5939
|
+
updateEnvironmentState: (organisation_1, application_1, environment_1, updateEnvironmentStateRequest_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, updateEnvironmentStateRequest_1, ...args_1], void 0, function* (organisation, application, environment, updateEnvironmentStateRequest, options = {}) {
|
|
5670
5940
|
// verify required parameter 'organisation' is not null or undefined
|
|
5671
5941
|
assertParamExists('updateEnvironmentState', 'organisation', organisation);
|
|
5672
5942
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -5720,8 +5990,8 @@ export const EnvironmentsApiFp = function (configuration) {
|
|
|
5720
5990
|
* @throws {RequiredError}
|
|
5721
5991
|
*/
|
|
5722
5992
|
createEnvironment(organisation, application, createEnvironmentRequest, options) {
|
|
5723
|
-
var _a, _b, _c;
|
|
5724
5993
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5994
|
+
var _a, _b, _c;
|
|
5725
5995
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.createEnvironment(organisation, application, createEnvironmentRequest, options);
|
|
5726
5996
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
5727
5997
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['EnvironmentsApi.createEnvironment']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -5738,8 +6008,8 @@ export const EnvironmentsApiFp = function (configuration) {
|
|
|
5738
6008
|
* @throws {RequiredError}
|
|
5739
6009
|
*/
|
|
5740
6010
|
deleteEnvironment(organisation, application, environment, options) {
|
|
5741
|
-
var _a, _b, _c;
|
|
5742
6011
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6012
|
+
var _a, _b, _c;
|
|
5743
6013
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteEnvironment(organisation, application, environment, options);
|
|
5744
6014
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
5745
6015
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['EnvironmentsApi.deleteEnvironment']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -5756,8 +6026,8 @@ export const EnvironmentsApiFp = function (configuration) {
|
|
|
5756
6026
|
* @throws {RequiredError}
|
|
5757
6027
|
*/
|
|
5758
6028
|
getEnvironment(organisation, application, environment, options) {
|
|
5759
|
-
var _a, _b, _c;
|
|
5760
6029
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6030
|
+
var _a, _b, _c;
|
|
5761
6031
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getEnvironment(organisation, application, environment, options);
|
|
5762
6032
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
5763
6033
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['EnvironmentsApi.getEnvironment']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -5780,8 +6050,8 @@ export const EnvironmentsApiFp = function (configuration) {
|
|
|
5780
6050
|
* @throws {RequiredError}
|
|
5781
6051
|
*/
|
|
5782
6052
|
getEnvironmentLogs(organisation, application, environment, startTime, endTime, containerName, filterPattern, limit, nextToken, options) {
|
|
5783
|
-
var _a, _b, _c;
|
|
5784
6053
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6054
|
+
var _a, _b, _c;
|
|
5785
6055
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getEnvironmentLogs(organisation, application, environment, startTime, endTime, containerName, filterPattern, limit, nextToken, options);
|
|
5786
6056
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
5787
6057
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['EnvironmentsApi.getEnvironmentLogs']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -5803,8 +6073,8 @@ export const EnvironmentsApiFp = function (configuration) {
|
|
|
5803
6073
|
* @throws {RequiredError}
|
|
5804
6074
|
*/
|
|
5805
6075
|
getEnvironmentMetrics(organisation, application, environment, startTime, endTime, period, statistics, containerName, options) {
|
|
5806
|
-
var _a, _b, _c;
|
|
5807
6076
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6077
|
+
var _a, _b, _c;
|
|
5808
6078
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getEnvironmentMetrics(organisation, application, environment, startTime, endTime, period, statistics, containerName, options);
|
|
5809
6079
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
5810
6080
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['EnvironmentsApi.getEnvironmentMetrics']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -5820,8 +6090,8 @@ export const EnvironmentsApiFp = function (configuration) {
|
|
|
5820
6090
|
* @throws {RequiredError}
|
|
5821
6091
|
*/
|
|
5822
6092
|
listEnvironments(organisation, application, options) {
|
|
5823
|
-
var _a, _b, _c;
|
|
5824
6093
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6094
|
+
var _a, _b, _c;
|
|
5825
6095
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.listEnvironments(organisation, application, options);
|
|
5826
6096
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
5827
6097
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['EnvironmentsApi.listEnvironments']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -5839,8 +6109,8 @@ export const EnvironmentsApiFp = function (configuration) {
|
|
|
5839
6109
|
* @throws {RequiredError}
|
|
5840
6110
|
*/
|
|
5841
6111
|
listSyncOperations(organisation, application, environment, type, options) {
|
|
5842
|
-
var _a, _b, _c;
|
|
5843
6112
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6113
|
+
var _a, _b, _c;
|
|
5844
6114
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.listSyncOperations(organisation, application, environment, type, options);
|
|
5845
6115
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
5846
6116
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['EnvironmentsApi.listSyncOperations']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -5859,8 +6129,8 @@ export const EnvironmentsApiFp = function (configuration) {
|
|
|
5859
6129
|
* @throws {RequiredError}
|
|
5860
6130
|
*/
|
|
5861
6131
|
syncToEnvironment(organisation, application, environment, type, syncToEnvironmentRequest, options) {
|
|
5862
|
-
var _a, _b, _c;
|
|
5863
6132
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6133
|
+
var _a, _b, _c;
|
|
5864
6134
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.syncToEnvironment(organisation, application, environment, type, syncToEnvironmentRequest, options);
|
|
5865
6135
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
5866
6136
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['EnvironmentsApi.syncToEnvironment']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -5878,8 +6148,8 @@ export const EnvironmentsApiFp = function (configuration) {
|
|
|
5878
6148
|
* @throws {RequiredError}
|
|
5879
6149
|
*/
|
|
5880
6150
|
updateEnvironment(organisation, application, environment, updateEnvironmentRequest, options) {
|
|
5881
|
-
var _a, _b, _c;
|
|
5882
6151
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6152
|
+
var _a, _b, _c;
|
|
5883
6153
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.updateEnvironment(organisation, application, environment, updateEnvironmentRequest, options);
|
|
5884
6154
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
5885
6155
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['EnvironmentsApi.updateEnvironment']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -5897,8 +6167,8 @@ export const EnvironmentsApiFp = function (configuration) {
|
|
|
5897
6167
|
* @throws {RequiredError}
|
|
5898
6168
|
*/
|
|
5899
6169
|
updateEnvironmentState(organisation, application, environment, updateEnvironmentStateRequest, options) {
|
|
5900
|
-
var _a, _b, _c;
|
|
5901
6170
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6171
|
+
var _a, _b, _c;
|
|
5902
6172
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.updateEnvironmentState(organisation, application, environment, updateEnvironmentStateRequest, options);
|
|
5903
6173
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
5904
6174
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['EnvironmentsApi.updateEnvironmentState']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -6233,7 +6503,7 @@ export const HeadersApiAxiosParamCreator = function (configuration) {
|
|
|
6233
6503
|
* @param {*} [options] Override http request option.
|
|
6234
6504
|
* @throws {RequiredError}
|
|
6235
6505
|
*/
|
|
6236
|
-
headersCreate: (
|
|
6506
|
+
headersCreate: (organization_1, project_1, v2CustomHeaderRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, v2CustomHeaderRequest_1, ...args_1], void 0, function* (organization, project, v2CustomHeaderRequest, options = {}) {
|
|
6237
6507
|
// verify required parameter 'organization' is not null or undefined
|
|
6238
6508
|
assertParamExists('headersCreate', 'organization', organization);
|
|
6239
6509
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -6274,7 +6544,7 @@ export const HeadersApiAxiosParamCreator = function (configuration) {
|
|
|
6274
6544
|
* @param {*} [options] Override http request option.
|
|
6275
6545
|
* @throws {RequiredError}
|
|
6276
6546
|
*/
|
|
6277
|
-
headersDelete: (
|
|
6547
|
+
headersDelete: (organization_1, project_1, v2CustomHeaderRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, v2CustomHeaderRequest_1, ...args_1], void 0, function* (organization, project, v2CustomHeaderRequest, options = {}) {
|
|
6278
6548
|
// verify required parameter 'organization' is not null or undefined
|
|
6279
6549
|
assertParamExists('headersDelete', 'organization', organization);
|
|
6280
6550
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -6314,7 +6584,7 @@ export const HeadersApiAxiosParamCreator = function (configuration) {
|
|
|
6314
6584
|
* @param {*} [options] Override http request option.
|
|
6315
6585
|
* @throws {RequiredError}
|
|
6316
6586
|
*/
|
|
6317
|
-
headersList: (
|
|
6587
|
+
headersList: (organization_1, project_1, ...args_1) => __awaiter(this, [organization_1, project_1, ...args_1], void 0, function* (organization, project, options = {}) {
|
|
6318
6588
|
// verify required parameter 'organization' is not null or undefined
|
|
6319
6589
|
assertParamExists('headersList', 'organization', organization);
|
|
6320
6590
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -6361,8 +6631,8 @@ export const HeadersApiFp = function (configuration) {
|
|
|
6361
6631
|
* @throws {RequiredError}
|
|
6362
6632
|
*/
|
|
6363
6633
|
headersCreate(organization, project, v2CustomHeaderRequest, options) {
|
|
6364
|
-
var _a, _b, _c;
|
|
6365
6634
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6635
|
+
var _a, _b, _c;
|
|
6366
6636
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.headersCreate(organization, project, v2CustomHeaderRequest, options);
|
|
6367
6637
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
6368
6638
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['HeadersApi.headersCreate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -6379,8 +6649,8 @@ export const HeadersApiFp = function (configuration) {
|
|
|
6379
6649
|
* @throws {RequiredError}
|
|
6380
6650
|
*/
|
|
6381
6651
|
headersDelete(organization, project, v2CustomHeaderRequest, options) {
|
|
6382
|
-
var _a, _b, _c;
|
|
6383
6652
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6653
|
+
var _a, _b, _c;
|
|
6384
6654
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.headersDelete(organization, project, v2CustomHeaderRequest, options);
|
|
6385
6655
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
6386
6656
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['HeadersApi.headersDelete']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -6396,8 +6666,8 @@ export const HeadersApiFp = function (configuration) {
|
|
|
6396
6666
|
* @throws {RequiredError}
|
|
6397
6667
|
*/
|
|
6398
6668
|
headersList(organization, project, options) {
|
|
6399
|
-
var _a, _b, _c;
|
|
6400
6669
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6670
|
+
var _a, _b, _c;
|
|
6401
6671
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.headersList(organization, project, options);
|
|
6402
6672
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
6403
6673
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['HeadersApi.headersList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -6511,7 +6781,7 @@ export const KVApiAxiosParamCreator = function (configuration) {
|
|
|
6511
6781
|
* @param {*} [options] Override http request option.
|
|
6512
6782
|
* @throws {RequiredError}
|
|
6513
6783
|
*/
|
|
6514
|
-
kVCreate: (
|
|
6784
|
+
kVCreate: (organization_1, project_1, v2StoreRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, v2StoreRequest_1, ...args_1], void 0, function* (organization, project, v2StoreRequest, options = {}) {
|
|
6515
6785
|
// verify required parameter 'organization' is not null or undefined
|
|
6516
6786
|
assertParamExists('kVCreate', 'organization', organization);
|
|
6517
6787
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -6552,7 +6822,7 @@ export const KVApiAxiosParamCreator = function (configuration) {
|
|
|
6552
6822
|
* @param {*} [options] Override http request option.
|
|
6553
6823
|
* @throws {RequiredError}
|
|
6554
6824
|
*/
|
|
6555
|
-
kVDelete: (
|
|
6825
|
+
kVDelete: (organization_1, project_1, storeId_1, ...args_1) => __awaiter(this, [organization_1, project_1, storeId_1, ...args_1], void 0, function* (organization, project, storeId, options = {}) {
|
|
6556
6826
|
// verify required parameter 'organization' is not null or undefined
|
|
6557
6827
|
assertParamExists('kVDelete', 'organization', organization);
|
|
6558
6828
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -6593,7 +6863,7 @@ export const KVApiAxiosParamCreator = function (configuration) {
|
|
|
6593
6863
|
* @param {*} [options] Override http request option.
|
|
6594
6864
|
* @throws {RequiredError}
|
|
6595
6865
|
*/
|
|
6596
|
-
kVItemsCreate: (
|
|
6866
|
+
kVItemsCreate: (organization_1, project_1, storeId_1, v2StoreItemRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, storeId_1, v2StoreItemRequest_1, ...args_1], void 0, function* (organization, project, storeId, v2StoreItemRequest, options = {}) {
|
|
6597
6867
|
// verify required parameter 'organization' is not null or undefined
|
|
6598
6868
|
assertParamExists('kVItemsCreate', 'organization', organization);
|
|
6599
6869
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -6638,7 +6908,7 @@ export const KVApiAxiosParamCreator = function (configuration) {
|
|
|
6638
6908
|
* @param {*} [options] Override http request option.
|
|
6639
6909
|
* @throws {RequiredError}
|
|
6640
6910
|
*/
|
|
6641
|
-
kVItemsDelete: (
|
|
6911
|
+
kVItemsDelete: (organization_1, project_1, storeId_1, key_1, ...args_1) => __awaiter(this, [organization_1, project_1, storeId_1, key_1, ...args_1], void 0, function* (organization, project, storeId, key, options = {}) {
|
|
6642
6912
|
// verify required parameter 'organization' is not null or undefined
|
|
6643
6913
|
assertParamExists('kVItemsDelete', 'organization', organization);
|
|
6644
6914
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -6685,7 +6955,7 @@ export const KVApiAxiosParamCreator = function (configuration) {
|
|
|
6685
6955
|
* @param {*} [options] Override http request option.
|
|
6686
6956
|
* @throws {RequiredError}
|
|
6687
6957
|
*/
|
|
6688
|
-
kVItemsList: (
|
|
6958
|
+
kVItemsList: (organization_1, project_1, storeId_1, cursor_1, limit_1, search_1, includeValues_1, ...args_1) => __awaiter(this, [organization_1, project_1, storeId_1, cursor_1, limit_1, search_1, includeValues_1, ...args_1], void 0, function* (organization, project, storeId, cursor, limit, search, includeValues, options = {}) {
|
|
6689
6959
|
// verify required parameter 'organization' is not null or undefined
|
|
6690
6960
|
assertParamExists('kVItemsList', 'organization', organization);
|
|
6691
6961
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -6738,7 +7008,7 @@ export const KVApiAxiosParamCreator = function (configuration) {
|
|
|
6738
7008
|
* @param {*} [options] Override http request option.
|
|
6739
7009
|
* @throws {RequiredError}
|
|
6740
7010
|
*/
|
|
6741
|
-
kVItemsShow: (
|
|
7011
|
+
kVItemsShow: (organization_1, project_1, storeId_1, key_1, ...args_1) => __awaiter(this, [organization_1, project_1, storeId_1, key_1, ...args_1], void 0, function* (organization, project, storeId, key, options = {}) {
|
|
6742
7012
|
// verify required parameter 'organization' is not null or undefined
|
|
6743
7013
|
assertParamExists('kVItemsShow', 'organization', organization);
|
|
6744
7014
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -6783,7 +7053,7 @@ export const KVApiAxiosParamCreator = function (configuration) {
|
|
|
6783
7053
|
* @param {*} [options] Override http request option.
|
|
6784
7054
|
* @throws {RequiredError}
|
|
6785
7055
|
*/
|
|
6786
|
-
kVItemsUpdate: (
|
|
7056
|
+
kVItemsUpdate: (organization_1, project_1, storeId_1, key_1, v2StoreItemUpdateRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, storeId_1, key_1, v2StoreItemUpdateRequest_1, ...args_1], void 0, function* (organization, project, storeId, key, v2StoreItemUpdateRequest, options = {}) {
|
|
6787
7057
|
// verify required parameter 'organization' is not null or undefined
|
|
6788
7058
|
assertParamExists('kVItemsUpdate', 'organization', organization);
|
|
6789
7059
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -6829,7 +7099,7 @@ export const KVApiAxiosParamCreator = function (configuration) {
|
|
|
6829
7099
|
* @param {*} [options] Override http request option.
|
|
6830
7100
|
* @throws {RequiredError}
|
|
6831
7101
|
*/
|
|
6832
|
-
kVList: (
|
|
7102
|
+
kVList: (organization_1, project_1, ...args_1) => __awaiter(this, [organization_1, project_1, ...args_1], void 0, function* (organization, project, options = {}) {
|
|
6833
7103
|
// verify required parameter 'organization' is not null or undefined
|
|
6834
7104
|
assertParamExists('kVList', 'organization', organization);
|
|
6835
7105
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -6866,7 +7136,7 @@ export const KVApiAxiosParamCreator = function (configuration) {
|
|
|
6866
7136
|
* @param {*} [options] Override http request option.
|
|
6867
7137
|
* @throws {RequiredError}
|
|
6868
7138
|
*/
|
|
6869
|
-
kVShow: (
|
|
7139
|
+
kVShow: (organization_1, project_1, storeId_1, ...args_1) => __awaiter(this, [organization_1, project_1, storeId_1, ...args_1], void 0, function* (organization, project, storeId, options = {}) {
|
|
6870
7140
|
// verify required parameter 'organization' is not null or undefined
|
|
6871
7141
|
assertParamExists('kVShow', 'organization', organization);
|
|
6872
7142
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -6916,8 +7186,8 @@ export const KVApiFp = function (configuration) {
|
|
|
6916
7186
|
* @throws {RequiredError}
|
|
6917
7187
|
*/
|
|
6918
7188
|
kVCreate(organization, project, v2StoreRequest, options) {
|
|
6919
|
-
var _a, _b, _c;
|
|
6920
7189
|
return __awaiter(this, void 0, void 0, function* () {
|
|
7190
|
+
var _a, _b, _c;
|
|
6921
7191
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.kVCreate(organization, project, v2StoreRequest, options);
|
|
6922
7192
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
6923
7193
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['KVApi.kVCreate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -6934,8 +7204,8 @@ export const KVApiFp = function (configuration) {
|
|
|
6934
7204
|
* @throws {RequiredError}
|
|
6935
7205
|
*/
|
|
6936
7206
|
kVDelete(organization, project, storeId, options) {
|
|
6937
|
-
var _a, _b, _c;
|
|
6938
7207
|
return __awaiter(this, void 0, void 0, function* () {
|
|
7208
|
+
var _a, _b, _c;
|
|
6939
7209
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.kVDelete(organization, project, storeId, options);
|
|
6940
7210
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
6941
7211
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['KVApi.kVDelete']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -6953,8 +7223,8 @@ export const KVApiFp = function (configuration) {
|
|
|
6953
7223
|
* @throws {RequiredError}
|
|
6954
7224
|
*/
|
|
6955
7225
|
kVItemsCreate(organization, project, storeId, v2StoreItemRequest, options) {
|
|
6956
|
-
var _a, _b, _c;
|
|
6957
7226
|
return __awaiter(this, void 0, void 0, function* () {
|
|
7227
|
+
var _a, _b, _c;
|
|
6958
7228
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.kVItemsCreate(organization, project, storeId, v2StoreItemRequest, options);
|
|
6959
7229
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
6960
7230
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['KVApi.kVItemsCreate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -6972,8 +7242,8 @@ export const KVApiFp = function (configuration) {
|
|
|
6972
7242
|
* @throws {RequiredError}
|
|
6973
7243
|
*/
|
|
6974
7244
|
kVItemsDelete(organization, project, storeId, key, options) {
|
|
6975
|
-
var _a, _b, _c;
|
|
6976
7245
|
return __awaiter(this, void 0, void 0, function* () {
|
|
7246
|
+
var _a, _b, _c;
|
|
6977
7247
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.kVItemsDelete(organization, project, storeId, key, options);
|
|
6978
7248
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
6979
7249
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['KVApi.kVItemsDelete']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -6994,8 +7264,8 @@ export const KVApiFp = function (configuration) {
|
|
|
6994
7264
|
* @throws {RequiredError}
|
|
6995
7265
|
*/
|
|
6996
7266
|
kVItemsList(organization, project, storeId, cursor, limit, search, includeValues, options) {
|
|
6997
|
-
var _a, _b, _c;
|
|
6998
7267
|
return __awaiter(this, void 0, void 0, function* () {
|
|
7268
|
+
var _a, _b, _c;
|
|
6999
7269
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.kVItemsList(organization, project, storeId, cursor, limit, search, includeValues, options);
|
|
7000
7270
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
7001
7271
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['KVApi.kVItemsList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -7013,8 +7283,8 @@ export const KVApiFp = function (configuration) {
|
|
|
7013
7283
|
* @throws {RequiredError}
|
|
7014
7284
|
*/
|
|
7015
7285
|
kVItemsShow(organization, project, storeId, key, options) {
|
|
7016
|
-
var _a, _b, _c;
|
|
7017
7286
|
return __awaiter(this, void 0, void 0, function* () {
|
|
7287
|
+
var _a, _b, _c;
|
|
7018
7288
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.kVItemsShow(organization, project, storeId, key, options);
|
|
7019
7289
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
7020
7290
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['KVApi.kVItemsShow']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -7033,8 +7303,8 @@ export const KVApiFp = function (configuration) {
|
|
|
7033
7303
|
* @throws {RequiredError}
|
|
7034
7304
|
*/
|
|
7035
7305
|
kVItemsUpdate(organization, project, storeId, key, v2StoreItemUpdateRequest, options) {
|
|
7036
|
-
var _a, _b, _c;
|
|
7037
7306
|
return __awaiter(this, void 0, void 0, function* () {
|
|
7307
|
+
var _a, _b, _c;
|
|
7038
7308
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.kVItemsUpdate(organization, project, storeId, key, v2StoreItemUpdateRequest, options);
|
|
7039
7309
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
7040
7310
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['KVApi.kVItemsUpdate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -7050,8 +7320,8 @@ export const KVApiFp = function (configuration) {
|
|
|
7050
7320
|
* @throws {RequiredError}
|
|
7051
7321
|
*/
|
|
7052
7322
|
kVList(organization, project, options) {
|
|
7053
|
-
var _a, _b, _c;
|
|
7054
7323
|
return __awaiter(this, void 0, void 0, function* () {
|
|
7324
|
+
var _a, _b, _c;
|
|
7055
7325
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.kVList(organization, project, options);
|
|
7056
7326
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
7057
7327
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['KVApi.kVList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -7068,8 +7338,8 @@ export const KVApiFp = function (configuration) {
|
|
|
7068
7338
|
* @throws {RequiredError}
|
|
7069
7339
|
*/
|
|
7070
7340
|
kVShow(organization, project, storeId, options) {
|
|
7071
|
-
var _a, _b, _c;
|
|
7072
7341
|
return __awaiter(this, void 0, void 0, function* () {
|
|
7342
|
+
var _a, _b, _c;
|
|
7073
7343
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.kVShow(organization, project, storeId, options);
|
|
7074
7344
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
7075
7345
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['KVApi.kVShow']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -7348,7 +7618,7 @@ export const OrganizationsApiAxiosParamCreator = function (configuration) {
|
|
|
7348
7618
|
* @param {*} [options] Override http request option.
|
|
7349
7619
|
* @throws {RequiredError}
|
|
7350
7620
|
*/
|
|
7351
|
-
organizationsList: (
|
|
7621
|
+
organizationsList: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
7352
7622
|
const localVarPath = `/api/v2/organizations`;
|
|
7353
7623
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
7354
7624
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -7377,7 +7647,7 @@ export const OrganizationsApiAxiosParamCreator = function (configuration) {
|
|
|
7377
7647
|
* @param {*} [options] Override http request option.
|
|
7378
7648
|
* @throws {RequiredError}
|
|
7379
7649
|
*/
|
|
7380
|
-
organizationsRead: (
|
|
7650
|
+
organizationsRead: (organization_1, ...args_1) => __awaiter(this, [organization_1, ...args_1], void 0, function* (organization, options = {}) {
|
|
7381
7651
|
// verify required parameter 'organization' is not null or undefined
|
|
7382
7652
|
assertParamExists('organizationsRead', 'organization', organization);
|
|
7383
7653
|
const localVarPath = `/api/v2/organizations/{organization}`
|
|
@@ -7418,8 +7688,8 @@ export const OrganizationsApiFp = function (configuration) {
|
|
|
7418
7688
|
* @throws {RequiredError}
|
|
7419
7689
|
*/
|
|
7420
7690
|
organizationsList(options) {
|
|
7421
|
-
var _a, _b, _c;
|
|
7422
7691
|
return __awaiter(this, void 0, void 0, function* () {
|
|
7692
|
+
var _a, _b, _c;
|
|
7423
7693
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.organizationsList(options);
|
|
7424
7694
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
7425
7695
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['OrganizationsApi.organizationsList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -7434,8 +7704,8 @@ export const OrganizationsApiFp = function (configuration) {
|
|
|
7434
7704
|
* @throws {RequiredError}
|
|
7435
7705
|
*/
|
|
7436
7706
|
organizationsRead(organization, options) {
|
|
7437
|
-
var _a, _b, _c;
|
|
7438
7707
|
return __awaiter(this, void 0, void 0, function* () {
|
|
7708
|
+
var _a, _b, _c;
|
|
7439
7709
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.organizationsRead(organization, options);
|
|
7440
7710
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
7441
7711
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['OrganizationsApi.organizationsRead']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -7515,7 +7785,7 @@ export const ProjectsApiAxiosParamCreator = function (configuration) {
|
|
|
7515
7785
|
* @param {*} [options] Override http request option.
|
|
7516
7786
|
* @throws {RequiredError}
|
|
7517
7787
|
*/
|
|
7518
|
-
projectsCreate: (
|
|
7788
|
+
projectsCreate: (organization_1, v2ProjectRequest_1, ...args_1) => __awaiter(this, [organization_1, v2ProjectRequest_1, ...args_1], void 0, function* (organization, v2ProjectRequest, options = {}) {
|
|
7519
7789
|
// verify required parameter 'organization' is not null or undefined
|
|
7520
7790
|
assertParamExists('projectsCreate', 'organization', organization);
|
|
7521
7791
|
// verify required parameter 'v2ProjectRequest' is not null or undefined
|
|
@@ -7552,7 +7822,7 @@ export const ProjectsApiAxiosParamCreator = function (configuration) {
|
|
|
7552
7822
|
* @param {*} [options] Override http request option.
|
|
7553
7823
|
* @throws {RequiredError}
|
|
7554
7824
|
*/
|
|
7555
|
-
projectsDelete: (
|
|
7825
|
+
projectsDelete: (organization_1, project_1, ...args_1) => __awaiter(this, [organization_1, project_1, ...args_1], void 0, function* (organization, project, options = {}) {
|
|
7556
7826
|
// verify required parameter 'organization' is not null or undefined
|
|
7557
7827
|
assertParamExists('projectsDelete', 'organization', organization);
|
|
7558
7828
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -7587,7 +7857,7 @@ export const ProjectsApiAxiosParamCreator = function (configuration) {
|
|
|
7587
7857
|
* @param {*} [options] Override http request option.
|
|
7588
7858
|
* @throws {RequiredError}
|
|
7589
7859
|
*/
|
|
7590
|
-
projectsList: (
|
|
7860
|
+
projectsList: (organization_1, ...args_1) => __awaiter(this, [organization_1, ...args_1], void 0, function* (organization, options = {}) {
|
|
7591
7861
|
// verify required parameter 'organization' is not null or undefined
|
|
7592
7862
|
assertParamExists('projectsList', 'organization', organization);
|
|
7593
7863
|
const localVarPath = `/api/v2/organizations/{organization}/projects`
|
|
@@ -7621,7 +7891,7 @@ export const ProjectsApiAxiosParamCreator = function (configuration) {
|
|
|
7621
7891
|
* @param {*} [options] Override http request option.
|
|
7622
7892
|
* @throws {RequiredError}
|
|
7623
7893
|
*/
|
|
7624
|
-
projectsRead: (
|
|
7894
|
+
projectsRead: (organization_1, project_1, withToken_1, ...args_1) => __awaiter(this, [organization_1, project_1, withToken_1, ...args_1], void 0, function* (organization, project, withToken, options = {}) {
|
|
7625
7895
|
// verify required parameter 'organization' is not null or undefined
|
|
7626
7896
|
assertParamExists('projectsRead', 'organization', organization);
|
|
7627
7897
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -7663,7 +7933,7 @@ export const ProjectsApiAxiosParamCreator = function (configuration) {
|
|
|
7663
7933
|
* @param {*} [options] Override http request option.
|
|
7664
7934
|
* @throws {RequiredError}
|
|
7665
7935
|
*/
|
|
7666
|
-
projectsUpdate: (
|
|
7936
|
+
projectsUpdate: (organization_1, project_1, v2ProjectRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, v2ProjectRequest_1, ...args_1], void 0, function* (organization, project, v2ProjectRequest, options = {}) {
|
|
7667
7937
|
// verify required parameter 'organization' is not null or undefined
|
|
7668
7938
|
assertParamExists('projectsUpdate', 'organization', organization);
|
|
7669
7939
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -7713,8 +7983,8 @@ export const ProjectsApiFp = function (configuration) {
|
|
|
7713
7983
|
* @throws {RequiredError}
|
|
7714
7984
|
*/
|
|
7715
7985
|
projectsCreate(organization, v2ProjectRequest, options) {
|
|
7716
|
-
var _a, _b, _c;
|
|
7717
7986
|
return __awaiter(this, void 0, void 0, function* () {
|
|
7987
|
+
var _a, _b, _c;
|
|
7718
7988
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectsCreate(organization, v2ProjectRequest, options);
|
|
7719
7989
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
7720
7990
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ProjectsApi.projectsCreate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -7730,8 +8000,8 @@ export const ProjectsApiFp = function (configuration) {
|
|
|
7730
8000
|
* @throws {RequiredError}
|
|
7731
8001
|
*/
|
|
7732
8002
|
projectsDelete(organization, project, options) {
|
|
7733
|
-
var _a, _b, _c;
|
|
7734
8003
|
return __awaiter(this, void 0, void 0, function* () {
|
|
8004
|
+
var _a, _b, _c;
|
|
7735
8005
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectsDelete(organization, project, options);
|
|
7736
8006
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
7737
8007
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ProjectsApi.projectsDelete']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -7746,8 +8016,8 @@ export const ProjectsApiFp = function (configuration) {
|
|
|
7746
8016
|
* @throws {RequiredError}
|
|
7747
8017
|
*/
|
|
7748
8018
|
projectsList(organization, options) {
|
|
7749
|
-
var _a, _b, _c;
|
|
7750
8019
|
return __awaiter(this, void 0, void 0, function* () {
|
|
8020
|
+
var _a, _b, _c;
|
|
7751
8021
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectsList(organization, options);
|
|
7752
8022
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
7753
8023
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ProjectsApi.projectsList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -7764,8 +8034,8 @@ export const ProjectsApiFp = function (configuration) {
|
|
|
7764
8034
|
* @throws {RequiredError}
|
|
7765
8035
|
*/
|
|
7766
8036
|
projectsRead(organization, project, withToken, options) {
|
|
7767
|
-
var _a, _b, _c;
|
|
7768
8037
|
return __awaiter(this, void 0, void 0, function* () {
|
|
8038
|
+
var _a, _b, _c;
|
|
7769
8039
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectsRead(organization, project, withToken, options);
|
|
7770
8040
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
7771
8041
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ProjectsApi.projectsRead']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -7782,8 +8052,8 @@ export const ProjectsApiFp = function (configuration) {
|
|
|
7782
8052
|
* @throws {RequiredError}
|
|
7783
8053
|
*/
|
|
7784
8054
|
projectsUpdate(organization, project, v2ProjectRequest, options) {
|
|
7785
|
-
var _a, _b, _c;
|
|
7786
8055
|
return __awaiter(this, void 0, void 0, function* () {
|
|
8056
|
+
var _a, _b, _c;
|
|
7787
8057
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectsUpdate(organization, project, v2ProjectRequest, options);
|
|
7788
8058
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
7789
8059
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ProjectsApi.projectsUpdate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -7941,7 +8211,7 @@ export const PurgeApiAxiosParamCreator = function (configuration) {
|
|
|
7941
8211
|
* @param {*} [options] Override http request option.
|
|
7942
8212
|
* @throws {RequiredError}
|
|
7943
8213
|
*/
|
|
7944
|
-
purgeCreate: (
|
|
8214
|
+
purgeCreate: (organization_1, project_1, purgeCreateRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, purgeCreateRequest_1, ...args_1], void 0, function* (organization, project, purgeCreateRequest, options = {}) {
|
|
7945
8215
|
// verify required parameter 'organization' is not null or undefined
|
|
7946
8216
|
assertParamExists('purgeCreate', 'organization', organization);
|
|
7947
8217
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -7992,8 +8262,8 @@ export const PurgeApiFp = function (configuration) {
|
|
|
7992
8262
|
* @throws {RequiredError}
|
|
7993
8263
|
*/
|
|
7994
8264
|
purgeCreate(organization, project, purgeCreateRequest, options) {
|
|
7995
|
-
var _a, _b, _c;
|
|
7996
8265
|
return __awaiter(this, void 0, void 0, function* () {
|
|
8266
|
+
var _a, _b, _c;
|
|
7997
8267
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.purgeCreate(organization, project, purgeCreateRequest, options);
|
|
7998
8268
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
7999
8269
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PurgeApi.purgeCreate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -8059,7 +8329,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
8059
8329
|
* @param {*} [options] Override http request option.
|
|
8060
8330
|
* @throws {RequiredError}
|
|
8061
8331
|
*/
|
|
8062
|
-
rulesAuthCreate: (
|
|
8332
|
+
rulesAuthCreate: (organization_1, project_1, v2RuleAuthRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, v2RuleAuthRequest_1, ...args_1], void 0, function* (organization, project, v2RuleAuthRequest, options = {}) {
|
|
8063
8333
|
// verify required parameter 'organization' is not null or undefined
|
|
8064
8334
|
assertParamExists('rulesAuthCreate', 'organization', organization);
|
|
8065
8335
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -8100,7 +8370,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
8100
8370
|
* @param {*} [options] Override http request option.
|
|
8101
8371
|
* @throws {RequiredError}
|
|
8102
8372
|
*/
|
|
8103
|
-
rulesAuthDelete: (
|
|
8373
|
+
rulesAuthDelete: (organization_1, project_1, rule_1, ...args_1) => __awaiter(this, [organization_1, project_1, rule_1, ...args_1], void 0, function* (organization, project, rule, options = {}) {
|
|
8104
8374
|
// verify required parameter 'organization' is not null or undefined
|
|
8105
8375
|
assertParamExists('rulesAuthDelete', 'organization', organization);
|
|
8106
8376
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -8139,7 +8409,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
8139
8409
|
* @param {*} [options] Override http request option.
|
|
8140
8410
|
* @throws {RequiredError}
|
|
8141
8411
|
*/
|
|
8142
|
-
rulesAuthList: (
|
|
8412
|
+
rulesAuthList: (organization_1, project_1, ...args_1) => __awaiter(this, [organization_1, project_1, ...args_1], void 0, function* (organization, project, options = {}) {
|
|
8143
8413
|
// verify required parameter 'organization' is not null or undefined
|
|
8144
8414
|
assertParamExists('rulesAuthList', 'organization', organization);
|
|
8145
8415
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -8176,7 +8446,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
8176
8446
|
* @param {*} [options] Override http request option.
|
|
8177
8447
|
* @throws {RequiredError}
|
|
8178
8448
|
*/
|
|
8179
|
-
rulesAuthRead: (
|
|
8449
|
+
rulesAuthRead: (organization_1, project_1, rule_1, ...args_1) => __awaiter(this, [organization_1, project_1, rule_1, ...args_1], void 0, function* (organization, project, rule, options = {}) {
|
|
8180
8450
|
// verify required parameter 'organization' is not null or undefined
|
|
8181
8451
|
assertParamExists('rulesAuthRead', 'organization', organization);
|
|
8182
8452
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -8217,7 +8487,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
8217
8487
|
* @param {*} [options] Override http request option.
|
|
8218
8488
|
* @throws {RequiredError}
|
|
8219
8489
|
*/
|
|
8220
|
-
rulesAuthUpdate: (
|
|
8490
|
+
rulesAuthUpdate: (organization_1, project_1, rule_1, v2RuleAuthRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, rule_1, v2RuleAuthRequest_1, ...args_1], void 0, function* (organization, project, rule, v2RuleAuthRequest, options = {}) {
|
|
8221
8491
|
// verify required parameter 'organization' is not null or undefined
|
|
8222
8492
|
assertParamExists('rulesAuthUpdate', 'organization', organization);
|
|
8223
8493
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -8261,7 +8531,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
8261
8531
|
* @param {*} [options] Override http request option.
|
|
8262
8532
|
* @throws {RequiredError}
|
|
8263
8533
|
*/
|
|
8264
|
-
rulesBotChallengeCreate: (
|
|
8534
|
+
rulesBotChallengeCreate: (organization_1, project_1, v2RuleBotChallengeRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, v2RuleBotChallengeRequest_1, ...args_1], void 0, function* (organization, project, v2RuleBotChallengeRequest, options = {}) {
|
|
8265
8535
|
// verify required parameter 'organization' is not null or undefined
|
|
8266
8536
|
assertParamExists('rulesBotChallengeCreate', 'organization', organization);
|
|
8267
8537
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -8302,7 +8572,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
8302
8572
|
* @param {*} [options] Override http request option.
|
|
8303
8573
|
* @throws {RequiredError}
|
|
8304
8574
|
*/
|
|
8305
|
-
rulesBotChallengeDelete: (
|
|
8575
|
+
rulesBotChallengeDelete: (organization_1, project_1, rule_1, ...args_1) => __awaiter(this, [organization_1, project_1, rule_1, ...args_1], void 0, function* (organization, project, rule, options = {}) {
|
|
8306
8576
|
// verify required parameter 'organization' is not null or undefined
|
|
8307
8577
|
assertParamExists('rulesBotChallengeDelete', 'organization', organization);
|
|
8308
8578
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -8341,7 +8611,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
8341
8611
|
* @param {*} [options] Override http request option.
|
|
8342
8612
|
* @throws {RequiredError}
|
|
8343
8613
|
*/
|
|
8344
|
-
rulesBotChallengeList: (
|
|
8614
|
+
rulesBotChallengeList: (organization_1, project_1, ...args_1) => __awaiter(this, [organization_1, project_1, ...args_1], void 0, function* (organization, project, options = {}) {
|
|
8345
8615
|
// verify required parameter 'organization' is not null or undefined
|
|
8346
8616
|
assertParamExists('rulesBotChallengeList', 'organization', organization);
|
|
8347
8617
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -8378,7 +8648,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
8378
8648
|
* @param {*} [options] Override http request option.
|
|
8379
8649
|
* @throws {RequiredError}
|
|
8380
8650
|
*/
|
|
8381
|
-
rulesBotChallengeRead: (
|
|
8651
|
+
rulesBotChallengeRead: (organization_1, project_1, rule_1, ...args_1) => __awaiter(this, [organization_1, project_1, rule_1, ...args_1], void 0, function* (organization, project, rule, options = {}) {
|
|
8382
8652
|
// verify required parameter 'organization' is not null or undefined
|
|
8383
8653
|
assertParamExists('rulesBotChallengeRead', 'organization', organization);
|
|
8384
8654
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -8419,7 +8689,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
8419
8689
|
* @param {*} [options] Override http request option.
|
|
8420
8690
|
* @throws {RequiredError}
|
|
8421
8691
|
*/
|
|
8422
|
-
rulesBotChallengeUpdate: (
|
|
8692
|
+
rulesBotChallengeUpdate: (organization_1, project_1, rule_1, v2RuleBotChallengeRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, rule_1, v2RuleBotChallengeRequest_1, ...args_1], void 0, function* (organization, project, rule, v2RuleBotChallengeRequest, options = {}) {
|
|
8423
8693
|
// verify required parameter 'organization' is not null or undefined
|
|
8424
8694
|
assertParamExists('rulesBotChallengeUpdate', 'organization', organization);
|
|
8425
8695
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -8463,7 +8733,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
8463
8733
|
* @param {*} [options] Override http request option.
|
|
8464
8734
|
* @throws {RequiredError}
|
|
8465
8735
|
*/
|
|
8466
|
-
rulesContentFilterCreate: (
|
|
8736
|
+
rulesContentFilterCreate: (organization_1, project_1, v2RuleContentFilterRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, v2RuleContentFilterRequest_1, ...args_1], void 0, function* (organization, project, v2RuleContentFilterRequest, options = {}) {
|
|
8467
8737
|
// verify required parameter 'organization' is not null or undefined
|
|
8468
8738
|
assertParamExists('rulesContentFilterCreate', 'organization', organization);
|
|
8469
8739
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -8504,7 +8774,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
8504
8774
|
* @param {*} [options] Override http request option.
|
|
8505
8775
|
* @throws {RequiredError}
|
|
8506
8776
|
*/
|
|
8507
|
-
rulesContentFilterDelete: (
|
|
8777
|
+
rulesContentFilterDelete: (organization_1, project_1, rule_1, ...args_1) => __awaiter(this, [organization_1, project_1, rule_1, ...args_1], void 0, function* (organization, project, rule, options = {}) {
|
|
8508
8778
|
// verify required parameter 'organization' is not null or undefined
|
|
8509
8779
|
assertParamExists('rulesContentFilterDelete', 'organization', organization);
|
|
8510
8780
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -8543,7 +8813,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
8543
8813
|
* @param {*} [options] Override http request option.
|
|
8544
8814
|
* @throws {RequiredError}
|
|
8545
8815
|
*/
|
|
8546
|
-
rulesContentFilterList: (
|
|
8816
|
+
rulesContentFilterList: (organization_1, project_1, ...args_1) => __awaiter(this, [organization_1, project_1, ...args_1], void 0, function* (organization, project, options = {}) {
|
|
8547
8817
|
// verify required parameter 'organization' is not null or undefined
|
|
8548
8818
|
assertParamExists('rulesContentFilterList', 'organization', organization);
|
|
8549
8819
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -8580,7 +8850,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
8580
8850
|
* @param {*} [options] Override http request option.
|
|
8581
8851
|
* @throws {RequiredError}
|
|
8582
8852
|
*/
|
|
8583
|
-
rulesContentFilterRead: (
|
|
8853
|
+
rulesContentFilterRead: (organization_1, project_1, rule_1, ...args_1) => __awaiter(this, [organization_1, project_1, rule_1, ...args_1], void 0, function* (organization, project, rule, options = {}) {
|
|
8584
8854
|
// verify required parameter 'organization' is not null or undefined
|
|
8585
8855
|
assertParamExists('rulesContentFilterRead', 'organization', organization);
|
|
8586
8856
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -8621,7 +8891,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
8621
8891
|
* @param {*} [options] Override http request option.
|
|
8622
8892
|
* @throws {RequiredError}
|
|
8623
8893
|
*/
|
|
8624
|
-
rulesContentFilterUpdate: (
|
|
8894
|
+
rulesContentFilterUpdate: (organization_1, project_1, rule_1, v2RuleContentFilterRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, rule_1, v2RuleContentFilterRequest_1, ...args_1], void 0, function* (organization, project, rule, v2RuleContentFilterRequest, options = {}) {
|
|
8625
8895
|
// verify required parameter 'organization' is not null or undefined
|
|
8626
8896
|
assertParamExists('rulesContentFilterUpdate', 'organization', organization);
|
|
8627
8897
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -8665,7 +8935,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
8665
8935
|
* @param {*} [options] Override http request option.
|
|
8666
8936
|
* @throws {RequiredError}
|
|
8667
8937
|
*/
|
|
8668
|
-
rulesCustomResponseCreate: (
|
|
8938
|
+
rulesCustomResponseCreate: (organization_1, project_1, v2RuleCustomResponseRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, v2RuleCustomResponseRequest_1, ...args_1], void 0, function* (organization, project, v2RuleCustomResponseRequest, options = {}) {
|
|
8669
8939
|
// verify required parameter 'organization' is not null or undefined
|
|
8670
8940
|
assertParamExists('rulesCustomResponseCreate', 'organization', organization);
|
|
8671
8941
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -8706,7 +8976,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
8706
8976
|
* @param {*} [options] Override http request option.
|
|
8707
8977
|
* @throws {RequiredError}
|
|
8708
8978
|
*/
|
|
8709
|
-
rulesCustomResponseDelete: (
|
|
8979
|
+
rulesCustomResponseDelete: (organization_1, project_1, rule_1, ...args_1) => __awaiter(this, [organization_1, project_1, rule_1, ...args_1], void 0, function* (organization, project, rule, options = {}) {
|
|
8710
8980
|
// verify required parameter 'organization' is not null or undefined
|
|
8711
8981
|
assertParamExists('rulesCustomResponseDelete', 'organization', organization);
|
|
8712
8982
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -8745,7 +9015,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
8745
9015
|
* @param {*} [options] Override http request option.
|
|
8746
9016
|
* @throws {RequiredError}
|
|
8747
9017
|
*/
|
|
8748
|
-
rulesCustomResponseList: (
|
|
9018
|
+
rulesCustomResponseList: (organization_1, project_1, ...args_1) => __awaiter(this, [organization_1, project_1, ...args_1], void 0, function* (organization, project, options = {}) {
|
|
8749
9019
|
// verify required parameter 'organization' is not null or undefined
|
|
8750
9020
|
assertParamExists('rulesCustomResponseList', 'organization', organization);
|
|
8751
9021
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -8782,7 +9052,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
8782
9052
|
* @param {*} [options] Override http request option.
|
|
8783
9053
|
* @throws {RequiredError}
|
|
8784
9054
|
*/
|
|
8785
|
-
rulesCustomResponseRead: (
|
|
9055
|
+
rulesCustomResponseRead: (organization_1, project_1, rule_1, ...args_1) => __awaiter(this, [organization_1, project_1, rule_1, ...args_1], void 0, function* (organization, project, rule, options = {}) {
|
|
8786
9056
|
// verify required parameter 'organization' is not null or undefined
|
|
8787
9057
|
assertParamExists('rulesCustomResponseRead', 'organization', organization);
|
|
8788
9058
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -8823,7 +9093,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
8823
9093
|
* @param {*} [options] Override http request option.
|
|
8824
9094
|
* @throws {RequiredError}
|
|
8825
9095
|
*/
|
|
8826
|
-
rulesCustomResponseUpdate: (
|
|
9096
|
+
rulesCustomResponseUpdate: (organization_1, project_1, rule_1, v2RuleCustomResponseRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, rule_1, v2RuleCustomResponseRequest_1, ...args_1], void 0, function* (organization, project, rule, v2RuleCustomResponseRequest, options = {}) {
|
|
8827
9097
|
// verify required parameter 'organization' is not null or undefined
|
|
8828
9098
|
assertParamExists('rulesCustomResponseUpdate', 'organization', organization);
|
|
8829
9099
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -8867,7 +9137,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
8867
9137
|
* @param {*} [options] Override http request option.
|
|
8868
9138
|
* @throws {RequiredError}
|
|
8869
9139
|
*/
|
|
8870
|
-
rulesFunctionCreate: (
|
|
9140
|
+
rulesFunctionCreate: (organization_1, project_1, v2RuleFunctionRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, v2RuleFunctionRequest_1, ...args_1], void 0, function* (organization, project, v2RuleFunctionRequest, options = {}) {
|
|
8871
9141
|
// verify required parameter 'organization' is not null or undefined
|
|
8872
9142
|
assertParamExists('rulesFunctionCreate', 'organization', organization);
|
|
8873
9143
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -8908,7 +9178,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
8908
9178
|
* @param {*} [options] Override http request option.
|
|
8909
9179
|
* @throws {RequiredError}
|
|
8910
9180
|
*/
|
|
8911
|
-
rulesFunctionDelete: (
|
|
9181
|
+
rulesFunctionDelete: (organization_1, project_1, rule_1, ...args_1) => __awaiter(this, [organization_1, project_1, rule_1, ...args_1], void 0, function* (organization, project, rule, options = {}) {
|
|
8912
9182
|
// verify required parameter 'organization' is not null or undefined
|
|
8913
9183
|
assertParamExists('rulesFunctionDelete', 'organization', organization);
|
|
8914
9184
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -8947,7 +9217,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
8947
9217
|
* @param {*} [options] Override http request option.
|
|
8948
9218
|
* @throws {RequiredError}
|
|
8949
9219
|
*/
|
|
8950
|
-
rulesFunctionList: (
|
|
9220
|
+
rulesFunctionList: (organization_1, project_1, ...args_1) => __awaiter(this, [organization_1, project_1, ...args_1], void 0, function* (organization, project, options = {}) {
|
|
8951
9221
|
// verify required parameter 'organization' is not null or undefined
|
|
8952
9222
|
assertParamExists('rulesFunctionList', 'organization', organization);
|
|
8953
9223
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -8984,7 +9254,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
8984
9254
|
* @param {*} [options] Override http request option.
|
|
8985
9255
|
* @throws {RequiredError}
|
|
8986
9256
|
*/
|
|
8987
|
-
rulesFunctionRead: (
|
|
9257
|
+
rulesFunctionRead: (organization_1, project_1, rule_1, ...args_1) => __awaiter(this, [organization_1, project_1, rule_1, ...args_1], void 0, function* (organization, project, rule, options = {}) {
|
|
8988
9258
|
// verify required parameter 'organization' is not null or undefined
|
|
8989
9259
|
assertParamExists('rulesFunctionRead', 'organization', organization);
|
|
8990
9260
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -9025,7 +9295,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
9025
9295
|
* @param {*} [options] Override http request option.
|
|
9026
9296
|
* @throws {RequiredError}
|
|
9027
9297
|
*/
|
|
9028
|
-
rulesFunctionUpdate: (
|
|
9298
|
+
rulesFunctionUpdate: (organization_1, project_1, rule_1, v2RuleFunctionRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, rule_1, v2RuleFunctionRequest_1, ...args_1], void 0, function* (organization, project, rule, v2RuleFunctionRequest, options = {}) {
|
|
9029
9299
|
// verify required parameter 'organization' is not null or undefined
|
|
9030
9300
|
assertParamExists('rulesFunctionUpdate', 'organization', organization);
|
|
9031
9301
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -9069,7 +9339,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
9069
9339
|
* @param {*} [options] Override http request option.
|
|
9070
9340
|
* @throws {RequiredError}
|
|
9071
9341
|
*/
|
|
9072
|
-
rulesHeadersCreate: (
|
|
9342
|
+
rulesHeadersCreate: (organization_1, project_1, v2RuleHeaderRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, v2RuleHeaderRequest_1, ...args_1], void 0, function* (organization, project, v2RuleHeaderRequest, options = {}) {
|
|
9073
9343
|
// verify required parameter 'organization' is not null or undefined
|
|
9074
9344
|
assertParamExists('rulesHeadersCreate', 'organization', organization);
|
|
9075
9345
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -9110,7 +9380,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
9110
9380
|
* @param {*} [options] Override http request option.
|
|
9111
9381
|
* @throws {RequiredError}
|
|
9112
9382
|
*/
|
|
9113
|
-
rulesHeadersDelete: (
|
|
9383
|
+
rulesHeadersDelete: (organization_1, project_1, rule_1, ...args_1) => __awaiter(this, [organization_1, project_1, rule_1, ...args_1], void 0, function* (organization, project, rule, options = {}) {
|
|
9114
9384
|
// verify required parameter 'organization' is not null or undefined
|
|
9115
9385
|
assertParamExists('rulesHeadersDelete', 'organization', organization);
|
|
9116
9386
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -9149,7 +9419,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
9149
9419
|
* @param {*} [options] Override http request option.
|
|
9150
9420
|
* @throws {RequiredError}
|
|
9151
9421
|
*/
|
|
9152
|
-
rulesHeadersList: (
|
|
9422
|
+
rulesHeadersList: (organization_1, project_1, ...args_1) => __awaiter(this, [organization_1, project_1, ...args_1], void 0, function* (organization, project, options = {}) {
|
|
9153
9423
|
// verify required parameter 'organization' is not null or undefined
|
|
9154
9424
|
assertParamExists('rulesHeadersList', 'organization', organization);
|
|
9155
9425
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -9186,7 +9456,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
9186
9456
|
* @param {*} [options] Override http request option.
|
|
9187
9457
|
* @throws {RequiredError}
|
|
9188
9458
|
*/
|
|
9189
|
-
rulesHeadersRead: (
|
|
9459
|
+
rulesHeadersRead: (organization_1, project_1, rule_1, ...args_1) => __awaiter(this, [organization_1, project_1, rule_1, ...args_1], void 0, function* (organization, project, rule, options = {}) {
|
|
9190
9460
|
// verify required parameter 'organization' is not null or undefined
|
|
9191
9461
|
assertParamExists('rulesHeadersRead', 'organization', organization);
|
|
9192
9462
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -9227,7 +9497,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
9227
9497
|
* @param {*} [options] Override http request option.
|
|
9228
9498
|
* @throws {RequiredError}
|
|
9229
9499
|
*/
|
|
9230
|
-
rulesHeadersUpdate: (
|
|
9500
|
+
rulesHeadersUpdate: (organization_1, project_1, rule_1, v2RuleHeaderRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, rule_1, v2RuleHeaderRequest_1, ...args_1], void 0, function* (organization, project, rule, v2RuleHeaderRequest, options = {}) {
|
|
9231
9501
|
// verify required parameter 'organization' is not null or undefined
|
|
9232
9502
|
assertParamExists('rulesHeadersUpdate', 'organization', organization);
|
|
9233
9503
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -9271,7 +9541,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
9271
9541
|
* @param {*} [options] Override http request option.
|
|
9272
9542
|
* @throws {RequiredError}
|
|
9273
9543
|
*/
|
|
9274
|
-
rulesProxyCreate: (
|
|
9544
|
+
rulesProxyCreate: (organization_1, project_1, v2RuleProxyRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, v2RuleProxyRequest_1, ...args_1], void 0, function* (organization, project, v2RuleProxyRequest, options = {}) {
|
|
9275
9545
|
// verify required parameter 'organization' is not null or undefined
|
|
9276
9546
|
assertParamExists('rulesProxyCreate', 'organization', organization);
|
|
9277
9547
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -9312,7 +9582,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
9312
9582
|
* @param {*} [options] Override http request option.
|
|
9313
9583
|
* @throws {RequiredError}
|
|
9314
9584
|
*/
|
|
9315
|
-
rulesProxyDelete: (
|
|
9585
|
+
rulesProxyDelete: (organization_1, project_1, rule_1, ...args_1) => __awaiter(this, [organization_1, project_1, rule_1, ...args_1], void 0, function* (organization, project, rule, options = {}) {
|
|
9316
9586
|
// verify required parameter 'organization' is not null or undefined
|
|
9317
9587
|
assertParamExists('rulesProxyDelete', 'organization', organization);
|
|
9318
9588
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -9351,7 +9621,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
9351
9621
|
* @param {*} [options] Override http request option.
|
|
9352
9622
|
* @throws {RequiredError}
|
|
9353
9623
|
*/
|
|
9354
|
-
rulesProxyList: (
|
|
9624
|
+
rulesProxyList: (organization_1, project_1, ...args_1) => __awaiter(this, [organization_1, project_1, ...args_1], void 0, function* (organization, project, options = {}) {
|
|
9355
9625
|
// verify required parameter 'organization' is not null or undefined
|
|
9356
9626
|
assertParamExists('rulesProxyList', 'organization', organization);
|
|
9357
9627
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -9388,7 +9658,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
9388
9658
|
* @param {*} [options] Override http request option.
|
|
9389
9659
|
* @throws {RequiredError}
|
|
9390
9660
|
*/
|
|
9391
|
-
rulesProxyRead: (
|
|
9661
|
+
rulesProxyRead: (organization_1, project_1, rule_1, ...args_1) => __awaiter(this, [organization_1, project_1, rule_1, ...args_1], void 0, function* (organization, project, rule, options = {}) {
|
|
9392
9662
|
// verify required parameter 'organization' is not null or undefined
|
|
9393
9663
|
assertParamExists('rulesProxyRead', 'organization', organization);
|
|
9394
9664
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -9429,7 +9699,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
9429
9699
|
* @param {*} [options] Override http request option.
|
|
9430
9700
|
* @throws {RequiredError}
|
|
9431
9701
|
*/
|
|
9432
|
-
rulesProxyUpdate: (
|
|
9702
|
+
rulesProxyUpdate: (organization_1, project_1, rule_1, v2RuleProxyRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, rule_1, v2RuleProxyRequest_1, ...args_1], void 0, function* (organization, project, rule, v2RuleProxyRequest, options = {}) {
|
|
9433
9703
|
// verify required parameter 'organization' is not null or undefined
|
|
9434
9704
|
assertParamExists('rulesProxyUpdate', 'organization', organization);
|
|
9435
9705
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -9473,7 +9743,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
9473
9743
|
* @param {*} [options] Override http request option.
|
|
9474
9744
|
* @throws {RequiredError}
|
|
9475
9745
|
*/
|
|
9476
|
-
rulesRedirectCreate: (
|
|
9746
|
+
rulesRedirectCreate: (organization_1, project_1, v2RuleRedirectRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, v2RuleRedirectRequest_1, ...args_1], void 0, function* (organization, project, v2RuleRedirectRequest, options = {}) {
|
|
9477
9747
|
// verify required parameter 'organization' is not null or undefined
|
|
9478
9748
|
assertParamExists('rulesRedirectCreate', 'organization', organization);
|
|
9479
9749
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -9514,7 +9784,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
9514
9784
|
* @param {*} [options] Override http request option.
|
|
9515
9785
|
* @throws {RequiredError}
|
|
9516
9786
|
*/
|
|
9517
|
-
rulesRedirectDelete: (
|
|
9787
|
+
rulesRedirectDelete: (organization_1, project_1, rule_1, ...args_1) => __awaiter(this, [organization_1, project_1, rule_1, ...args_1], void 0, function* (organization, project, rule, options = {}) {
|
|
9518
9788
|
// verify required parameter 'organization' is not null or undefined
|
|
9519
9789
|
assertParamExists('rulesRedirectDelete', 'organization', organization);
|
|
9520
9790
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -9553,7 +9823,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
9553
9823
|
* @param {*} [options] Override http request option.
|
|
9554
9824
|
* @throws {RequiredError}
|
|
9555
9825
|
*/
|
|
9556
|
-
rulesRedirectList: (
|
|
9826
|
+
rulesRedirectList: (organization_1, project_1, ...args_1) => __awaiter(this, [organization_1, project_1, ...args_1], void 0, function* (organization, project, options = {}) {
|
|
9557
9827
|
// verify required parameter 'organization' is not null or undefined
|
|
9558
9828
|
assertParamExists('rulesRedirectList', 'organization', organization);
|
|
9559
9829
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -9590,7 +9860,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
9590
9860
|
* @param {*} [options] Override http request option.
|
|
9591
9861
|
* @throws {RequiredError}
|
|
9592
9862
|
*/
|
|
9593
|
-
rulesRedirectRead: (
|
|
9863
|
+
rulesRedirectRead: (organization_1, project_1, rule_1, ...args_1) => __awaiter(this, [organization_1, project_1, rule_1, ...args_1], void 0, function* (organization, project, rule, options = {}) {
|
|
9594
9864
|
// verify required parameter 'organization' is not null or undefined
|
|
9595
9865
|
assertParamExists('rulesRedirectRead', 'organization', organization);
|
|
9596
9866
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -9631,7 +9901,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
9631
9901
|
* @param {*} [options] Override http request option.
|
|
9632
9902
|
* @throws {RequiredError}
|
|
9633
9903
|
*/
|
|
9634
|
-
rulesRedirectUpdate: (
|
|
9904
|
+
rulesRedirectUpdate: (organization_1, project_1, rule_1, v2RuleRedirectRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, rule_1, v2RuleRedirectRequest_1, ...args_1], void 0, function* (organization, project, rule, v2RuleRedirectRequest, options = {}) {
|
|
9635
9905
|
// verify required parameter 'organization' is not null or undefined
|
|
9636
9906
|
assertParamExists('rulesRedirectUpdate', 'organization', organization);
|
|
9637
9907
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -9675,7 +9945,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
9675
9945
|
* @param {*} [options] Override http request option.
|
|
9676
9946
|
* @throws {RequiredError}
|
|
9677
9947
|
*/
|
|
9678
|
-
rulesServeStaticCreate: (
|
|
9948
|
+
rulesServeStaticCreate: (organization_1, project_1, v2RuleServeStaticRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, v2RuleServeStaticRequest_1, ...args_1], void 0, function* (organization, project, v2RuleServeStaticRequest, options = {}) {
|
|
9679
9949
|
// verify required parameter 'organization' is not null or undefined
|
|
9680
9950
|
assertParamExists('rulesServeStaticCreate', 'organization', organization);
|
|
9681
9951
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -9716,7 +9986,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
9716
9986
|
* @param {*} [options] Override http request option.
|
|
9717
9987
|
* @throws {RequiredError}
|
|
9718
9988
|
*/
|
|
9719
|
-
rulesServeStaticDelete: (
|
|
9989
|
+
rulesServeStaticDelete: (organization_1, project_1, rule_1, ...args_1) => __awaiter(this, [organization_1, project_1, rule_1, ...args_1], void 0, function* (organization, project, rule, options = {}) {
|
|
9720
9990
|
// verify required parameter 'organization' is not null or undefined
|
|
9721
9991
|
assertParamExists('rulesServeStaticDelete', 'organization', organization);
|
|
9722
9992
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -9755,7 +10025,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
9755
10025
|
* @param {*} [options] Override http request option.
|
|
9756
10026
|
* @throws {RequiredError}
|
|
9757
10027
|
*/
|
|
9758
|
-
rulesServeStaticList: (
|
|
10028
|
+
rulesServeStaticList: (organization_1, project_1, ...args_1) => __awaiter(this, [organization_1, project_1, ...args_1], void 0, function* (organization, project, options = {}) {
|
|
9759
10029
|
// verify required parameter 'organization' is not null or undefined
|
|
9760
10030
|
assertParamExists('rulesServeStaticList', 'organization', organization);
|
|
9761
10031
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -9792,7 +10062,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
9792
10062
|
* @param {*} [options] Override http request option.
|
|
9793
10063
|
* @throws {RequiredError}
|
|
9794
10064
|
*/
|
|
9795
|
-
rulesServeStaticRead: (
|
|
10065
|
+
rulesServeStaticRead: (organization_1, project_1, rule_1, ...args_1) => __awaiter(this, [organization_1, project_1, rule_1, ...args_1], void 0, function* (organization, project, rule, options = {}) {
|
|
9796
10066
|
// verify required parameter 'organization' is not null or undefined
|
|
9797
10067
|
assertParamExists('rulesServeStaticRead', 'organization', organization);
|
|
9798
10068
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -9833,7 +10103,7 @@ export const RulesApiAxiosParamCreator = function (configuration) {
|
|
|
9833
10103
|
* @param {*} [options] Override http request option.
|
|
9834
10104
|
* @throws {RequiredError}
|
|
9835
10105
|
*/
|
|
9836
|
-
rulesServeStaticUpdate: (
|
|
10106
|
+
rulesServeStaticUpdate: (organization_1, project_1, rule_1, v2RuleServeStaticRequest_1, ...args_1) => __awaiter(this, [organization_1, project_1, rule_1, v2RuleServeStaticRequest_1, ...args_1], void 0, function* (organization, project, rule, v2RuleServeStaticRequest, options = {}) {
|
|
9837
10107
|
// verify required parameter 'organization' is not null or undefined
|
|
9838
10108
|
assertParamExists('rulesServeStaticUpdate', 'organization', organization);
|
|
9839
10109
|
// verify required parameter 'project' is not null or undefined
|
|
@@ -9887,8 +10157,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
9887
10157
|
* @throws {RequiredError}
|
|
9888
10158
|
*/
|
|
9889
10159
|
rulesAuthCreate(organization, project, v2RuleAuthRequest, options) {
|
|
9890
|
-
var _a, _b, _c;
|
|
9891
10160
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10161
|
+
var _a, _b, _c;
|
|
9892
10162
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesAuthCreate(organization, project, v2RuleAuthRequest, options);
|
|
9893
10163
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
9894
10164
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesAuthCreate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -9905,8 +10175,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
9905
10175
|
* @throws {RequiredError}
|
|
9906
10176
|
*/
|
|
9907
10177
|
rulesAuthDelete(organization, project, rule, options) {
|
|
9908
|
-
var _a, _b, _c;
|
|
9909
10178
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10179
|
+
var _a, _b, _c;
|
|
9910
10180
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesAuthDelete(organization, project, rule, options);
|
|
9911
10181
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
9912
10182
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesAuthDelete']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -9922,8 +10192,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
9922
10192
|
* @throws {RequiredError}
|
|
9923
10193
|
*/
|
|
9924
10194
|
rulesAuthList(organization, project, options) {
|
|
9925
|
-
var _a, _b, _c;
|
|
9926
10195
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10196
|
+
var _a, _b, _c;
|
|
9927
10197
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesAuthList(organization, project, options);
|
|
9928
10198
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
9929
10199
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesAuthList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -9940,8 +10210,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
9940
10210
|
* @throws {RequiredError}
|
|
9941
10211
|
*/
|
|
9942
10212
|
rulesAuthRead(organization, project, rule, options) {
|
|
9943
|
-
var _a, _b, _c;
|
|
9944
10213
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10214
|
+
var _a, _b, _c;
|
|
9945
10215
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesAuthRead(organization, project, rule, options);
|
|
9946
10216
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
9947
10217
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesAuthRead']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -9959,8 +10229,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
9959
10229
|
* @throws {RequiredError}
|
|
9960
10230
|
*/
|
|
9961
10231
|
rulesAuthUpdate(organization, project, rule, v2RuleAuthRequest, options) {
|
|
9962
|
-
var _a, _b, _c;
|
|
9963
10232
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10233
|
+
var _a, _b, _c;
|
|
9964
10234
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesAuthUpdate(organization, project, rule, v2RuleAuthRequest, options);
|
|
9965
10235
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
9966
10236
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesAuthUpdate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -9977,8 +10247,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
9977
10247
|
* @throws {RequiredError}
|
|
9978
10248
|
*/
|
|
9979
10249
|
rulesBotChallengeCreate(organization, project, v2RuleBotChallengeRequest, options) {
|
|
9980
|
-
var _a, _b, _c;
|
|
9981
10250
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10251
|
+
var _a, _b, _c;
|
|
9982
10252
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesBotChallengeCreate(organization, project, v2RuleBotChallengeRequest, options);
|
|
9983
10253
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
9984
10254
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesBotChallengeCreate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -9995,8 +10265,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
9995
10265
|
* @throws {RequiredError}
|
|
9996
10266
|
*/
|
|
9997
10267
|
rulesBotChallengeDelete(organization, project, rule, options) {
|
|
9998
|
-
var _a, _b, _c;
|
|
9999
10268
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10269
|
+
var _a, _b, _c;
|
|
10000
10270
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesBotChallengeDelete(organization, project, rule, options);
|
|
10001
10271
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10002
10272
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesBotChallengeDelete']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10012,8 +10282,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10012
10282
|
* @throws {RequiredError}
|
|
10013
10283
|
*/
|
|
10014
10284
|
rulesBotChallengeList(organization, project, options) {
|
|
10015
|
-
var _a, _b, _c;
|
|
10016
10285
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10286
|
+
var _a, _b, _c;
|
|
10017
10287
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesBotChallengeList(organization, project, options);
|
|
10018
10288
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10019
10289
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesBotChallengeList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10030,8 +10300,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10030
10300
|
* @throws {RequiredError}
|
|
10031
10301
|
*/
|
|
10032
10302
|
rulesBotChallengeRead(organization, project, rule, options) {
|
|
10033
|
-
var _a, _b, _c;
|
|
10034
10303
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10304
|
+
var _a, _b, _c;
|
|
10035
10305
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesBotChallengeRead(organization, project, rule, options);
|
|
10036
10306
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10037
10307
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesBotChallengeRead']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10049,8 +10319,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10049
10319
|
* @throws {RequiredError}
|
|
10050
10320
|
*/
|
|
10051
10321
|
rulesBotChallengeUpdate(organization, project, rule, v2RuleBotChallengeRequest, options) {
|
|
10052
|
-
var _a, _b, _c;
|
|
10053
10322
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10323
|
+
var _a, _b, _c;
|
|
10054
10324
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesBotChallengeUpdate(organization, project, rule, v2RuleBotChallengeRequest, options);
|
|
10055
10325
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10056
10326
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesBotChallengeUpdate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10067,8 +10337,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10067
10337
|
* @throws {RequiredError}
|
|
10068
10338
|
*/
|
|
10069
10339
|
rulesContentFilterCreate(organization, project, v2RuleContentFilterRequest, options) {
|
|
10070
|
-
var _a, _b, _c;
|
|
10071
10340
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10341
|
+
var _a, _b, _c;
|
|
10072
10342
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesContentFilterCreate(organization, project, v2RuleContentFilterRequest, options);
|
|
10073
10343
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10074
10344
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesContentFilterCreate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10085,8 +10355,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10085
10355
|
* @throws {RequiredError}
|
|
10086
10356
|
*/
|
|
10087
10357
|
rulesContentFilterDelete(organization, project, rule, options) {
|
|
10088
|
-
var _a, _b, _c;
|
|
10089
10358
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10359
|
+
var _a, _b, _c;
|
|
10090
10360
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesContentFilterDelete(organization, project, rule, options);
|
|
10091
10361
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10092
10362
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesContentFilterDelete']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10102,8 +10372,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10102
10372
|
* @throws {RequiredError}
|
|
10103
10373
|
*/
|
|
10104
10374
|
rulesContentFilterList(organization, project, options) {
|
|
10105
|
-
var _a, _b, _c;
|
|
10106
10375
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10376
|
+
var _a, _b, _c;
|
|
10107
10377
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesContentFilterList(organization, project, options);
|
|
10108
10378
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10109
10379
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesContentFilterList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10120,8 +10390,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10120
10390
|
* @throws {RequiredError}
|
|
10121
10391
|
*/
|
|
10122
10392
|
rulesContentFilterRead(organization, project, rule, options) {
|
|
10123
|
-
var _a, _b, _c;
|
|
10124
10393
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10394
|
+
var _a, _b, _c;
|
|
10125
10395
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesContentFilterRead(organization, project, rule, options);
|
|
10126
10396
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10127
10397
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesContentFilterRead']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10139,8 +10409,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10139
10409
|
* @throws {RequiredError}
|
|
10140
10410
|
*/
|
|
10141
10411
|
rulesContentFilterUpdate(organization, project, rule, v2RuleContentFilterRequest, options) {
|
|
10142
|
-
var _a, _b, _c;
|
|
10143
10412
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10413
|
+
var _a, _b, _c;
|
|
10144
10414
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesContentFilterUpdate(organization, project, rule, v2RuleContentFilterRequest, options);
|
|
10145
10415
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10146
10416
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesContentFilterUpdate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10157,8 +10427,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10157
10427
|
* @throws {RequiredError}
|
|
10158
10428
|
*/
|
|
10159
10429
|
rulesCustomResponseCreate(organization, project, v2RuleCustomResponseRequest, options) {
|
|
10160
|
-
var _a, _b, _c;
|
|
10161
10430
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10431
|
+
var _a, _b, _c;
|
|
10162
10432
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesCustomResponseCreate(organization, project, v2RuleCustomResponseRequest, options);
|
|
10163
10433
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10164
10434
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesCustomResponseCreate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10175,8 +10445,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10175
10445
|
* @throws {RequiredError}
|
|
10176
10446
|
*/
|
|
10177
10447
|
rulesCustomResponseDelete(organization, project, rule, options) {
|
|
10178
|
-
var _a, _b, _c;
|
|
10179
10448
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10449
|
+
var _a, _b, _c;
|
|
10180
10450
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesCustomResponseDelete(organization, project, rule, options);
|
|
10181
10451
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10182
10452
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesCustomResponseDelete']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10192,8 +10462,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10192
10462
|
* @throws {RequiredError}
|
|
10193
10463
|
*/
|
|
10194
10464
|
rulesCustomResponseList(organization, project, options) {
|
|
10195
|
-
var _a, _b, _c;
|
|
10196
10465
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10466
|
+
var _a, _b, _c;
|
|
10197
10467
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesCustomResponseList(organization, project, options);
|
|
10198
10468
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10199
10469
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesCustomResponseList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10210,8 +10480,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10210
10480
|
* @throws {RequiredError}
|
|
10211
10481
|
*/
|
|
10212
10482
|
rulesCustomResponseRead(organization, project, rule, options) {
|
|
10213
|
-
var _a, _b, _c;
|
|
10214
10483
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10484
|
+
var _a, _b, _c;
|
|
10215
10485
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesCustomResponseRead(organization, project, rule, options);
|
|
10216
10486
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10217
10487
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesCustomResponseRead']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10229,8 +10499,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10229
10499
|
* @throws {RequiredError}
|
|
10230
10500
|
*/
|
|
10231
10501
|
rulesCustomResponseUpdate(organization, project, rule, v2RuleCustomResponseRequest, options) {
|
|
10232
|
-
var _a, _b, _c;
|
|
10233
10502
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10503
|
+
var _a, _b, _c;
|
|
10234
10504
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesCustomResponseUpdate(organization, project, rule, v2RuleCustomResponseRequest, options);
|
|
10235
10505
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10236
10506
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesCustomResponseUpdate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10247,8 +10517,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10247
10517
|
* @throws {RequiredError}
|
|
10248
10518
|
*/
|
|
10249
10519
|
rulesFunctionCreate(organization, project, v2RuleFunctionRequest, options) {
|
|
10250
|
-
var _a, _b, _c;
|
|
10251
10520
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10521
|
+
var _a, _b, _c;
|
|
10252
10522
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesFunctionCreate(organization, project, v2RuleFunctionRequest, options);
|
|
10253
10523
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10254
10524
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesFunctionCreate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10265,8 +10535,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10265
10535
|
* @throws {RequiredError}
|
|
10266
10536
|
*/
|
|
10267
10537
|
rulesFunctionDelete(organization, project, rule, options) {
|
|
10268
|
-
var _a, _b, _c;
|
|
10269
10538
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10539
|
+
var _a, _b, _c;
|
|
10270
10540
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesFunctionDelete(organization, project, rule, options);
|
|
10271
10541
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10272
10542
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesFunctionDelete']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10282,8 +10552,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10282
10552
|
* @throws {RequiredError}
|
|
10283
10553
|
*/
|
|
10284
10554
|
rulesFunctionList(organization, project, options) {
|
|
10285
|
-
var _a, _b, _c;
|
|
10286
10555
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10556
|
+
var _a, _b, _c;
|
|
10287
10557
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesFunctionList(organization, project, options);
|
|
10288
10558
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10289
10559
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesFunctionList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10300,8 +10570,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10300
10570
|
* @throws {RequiredError}
|
|
10301
10571
|
*/
|
|
10302
10572
|
rulesFunctionRead(organization, project, rule, options) {
|
|
10303
|
-
var _a, _b, _c;
|
|
10304
10573
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10574
|
+
var _a, _b, _c;
|
|
10305
10575
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesFunctionRead(organization, project, rule, options);
|
|
10306
10576
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10307
10577
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesFunctionRead']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10319,8 +10589,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10319
10589
|
* @throws {RequiredError}
|
|
10320
10590
|
*/
|
|
10321
10591
|
rulesFunctionUpdate(organization, project, rule, v2RuleFunctionRequest, options) {
|
|
10322
|
-
var _a, _b, _c;
|
|
10323
10592
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10593
|
+
var _a, _b, _c;
|
|
10324
10594
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesFunctionUpdate(organization, project, rule, v2RuleFunctionRequest, options);
|
|
10325
10595
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10326
10596
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesFunctionUpdate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10337,8 +10607,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10337
10607
|
* @throws {RequiredError}
|
|
10338
10608
|
*/
|
|
10339
10609
|
rulesHeadersCreate(organization, project, v2RuleHeaderRequest, options) {
|
|
10340
|
-
var _a, _b, _c;
|
|
10341
10610
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10611
|
+
var _a, _b, _c;
|
|
10342
10612
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesHeadersCreate(organization, project, v2RuleHeaderRequest, options);
|
|
10343
10613
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10344
10614
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesHeadersCreate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10355,8 +10625,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10355
10625
|
* @throws {RequiredError}
|
|
10356
10626
|
*/
|
|
10357
10627
|
rulesHeadersDelete(organization, project, rule, options) {
|
|
10358
|
-
var _a, _b, _c;
|
|
10359
10628
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10629
|
+
var _a, _b, _c;
|
|
10360
10630
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesHeadersDelete(organization, project, rule, options);
|
|
10361
10631
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10362
10632
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesHeadersDelete']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10372,8 +10642,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10372
10642
|
* @throws {RequiredError}
|
|
10373
10643
|
*/
|
|
10374
10644
|
rulesHeadersList(organization, project, options) {
|
|
10375
|
-
var _a, _b, _c;
|
|
10376
10645
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10646
|
+
var _a, _b, _c;
|
|
10377
10647
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesHeadersList(organization, project, options);
|
|
10378
10648
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10379
10649
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesHeadersList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10390,8 +10660,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10390
10660
|
* @throws {RequiredError}
|
|
10391
10661
|
*/
|
|
10392
10662
|
rulesHeadersRead(organization, project, rule, options) {
|
|
10393
|
-
var _a, _b, _c;
|
|
10394
10663
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10664
|
+
var _a, _b, _c;
|
|
10395
10665
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesHeadersRead(organization, project, rule, options);
|
|
10396
10666
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10397
10667
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesHeadersRead']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10409,8 +10679,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10409
10679
|
* @throws {RequiredError}
|
|
10410
10680
|
*/
|
|
10411
10681
|
rulesHeadersUpdate(organization, project, rule, v2RuleHeaderRequest, options) {
|
|
10412
|
-
var _a, _b, _c;
|
|
10413
10682
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10683
|
+
var _a, _b, _c;
|
|
10414
10684
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesHeadersUpdate(organization, project, rule, v2RuleHeaderRequest, options);
|
|
10415
10685
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10416
10686
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesHeadersUpdate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10427,8 +10697,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10427
10697
|
* @throws {RequiredError}
|
|
10428
10698
|
*/
|
|
10429
10699
|
rulesProxyCreate(organization, project, v2RuleProxyRequest, options) {
|
|
10430
|
-
var _a, _b, _c;
|
|
10431
10700
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10701
|
+
var _a, _b, _c;
|
|
10432
10702
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesProxyCreate(organization, project, v2RuleProxyRequest, options);
|
|
10433
10703
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10434
10704
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesProxyCreate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10445,8 +10715,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10445
10715
|
* @throws {RequiredError}
|
|
10446
10716
|
*/
|
|
10447
10717
|
rulesProxyDelete(organization, project, rule, options) {
|
|
10448
|
-
var _a, _b, _c;
|
|
10449
10718
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10719
|
+
var _a, _b, _c;
|
|
10450
10720
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesProxyDelete(organization, project, rule, options);
|
|
10451
10721
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10452
10722
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesProxyDelete']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10462,8 +10732,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10462
10732
|
* @throws {RequiredError}
|
|
10463
10733
|
*/
|
|
10464
10734
|
rulesProxyList(organization, project, options) {
|
|
10465
|
-
var _a, _b, _c;
|
|
10466
10735
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10736
|
+
var _a, _b, _c;
|
|
10467
10737
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesProxyList(organization, project, options);
|
|
10468
10738
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10469
10739
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesProxyList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10480,8 +10750,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10480
10750
|
* @throws {RequiredError}
|
|
10481
10751
|
*/
|
|
10482
10752
|
rulesProxyRead(organization, project, rule, options) {
|
|
10483
|
-
var _a, _b, _c;
|
|
10484
10753
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10754
|
+
var _a, _b, _c;
|
|
10485
10755
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesProxyRead(organization, project, rule, options);
|
|
10486
10756
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10487
10757
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesProxyRead']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10499,8 +10769,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10499
10769
|
* @throws {RequiredError}
|
|
10500
10770
|
*/
|
|
10501
10771
|
rulesProxyUpdate(organization, project, rule, v2RuleProxyRequest, options) {
|
|
10502
|
-
var _a, _b, _c;
|
|
10503
10772
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10773
|
+
var _a, _b, _c;
|
|
10504
10774
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesProxyUpdate(organization, project, rule, v2RuleProxyRequest, options);
|
|
10505
10775
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10506
10776
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesProxyUpdate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10517,8 +10787,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10517
10787
|
* @throws {RequiredError}
|
|
10518
10788
|
*/
|
|
10519
10789
|
rulesRedirectCreate(organization, project, v2RuleRedirectRequest, options) {
|
|
10520
|
-
var _a, _b, _c;
|
|
10521
10790
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10791
|
+
var _a, _b, _c;
|
|
10522
10792
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesRedirectCreate(organization, project, v2RuleRedirectRequest, options);
|
|
10523
10793
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10524
10794
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesRedirectCreate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10535,8 +10805,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10535
10805
|
* @throws {RequiredError}
|
|
10536
10806
|
*/
|
|
10537
10807
|
rulesRedirectDelete(organization, project, rule, options) {
|
|
10538
|
-
var _a, _b, _c;
|
|
10539
10808
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10809
|
+
var _a, _b, _c;
|
|
10540
10810
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesRedirectDelete(organization, project, rule, options);
|
|
10541
10811
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10542
10812
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesRedirectDelete']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10552,8 +10822,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10552
10822
|
* @throws {RequiredError}
|
|
10553
10823
|
*/
|
|
10554
10824
|
rulesRedirectList(organization, project, options) {
|
|
10555
|
-
var _a, _b, _c;
|
|
10556
10825
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10826
|
+
var _a, _b, _c;
|
|
10557
10827
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesRedirectList(organization, project, options);
|
|
10558
10828
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10559
10829
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesRedirectList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10570,8 +10840,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10570
10840
|
* @throws {RequiredError}
|
|
10571
10841
|
*/
|
|
10572
10842
|
rulesRedirectRead(organization, project, rule, options) {
|
|
10573
|
-
var _a, _b, _c;
|
|
10574
10843
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10844
|
+
var _a, _b, _c;
|
|
10575
10845
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesRedirectRead(organization, project, rule, options);
|
|
10576
10846
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10577
10847
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesRedirectRead']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10589,8 +10859,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10589
10859
|
* @throws {RequiredError}
|
|
10590
10860
|
*/
|
|
10591
10861
|
rulesRedirectUpdate(organization, project, rule, v2RuleRedirectRequest, options) {
|
|
10592
|
-
var _a, _b, _c;
|
|
10593
10862
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10863
|
+
var _a, _b, _c;
|
|
10594
10864
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesRedirectUpdate(organization, project, rule, v2RuleRedirectRequest, options);
|
|
10595
10865
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10596
10866
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesRedirectUpdate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10607,8 +10877,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10607
10877
|
* @throws {RequiredError}
|
|
10608
10878
|
*/
|
|
10609
10879
|
rulesServeStaticCreate(organization, project, v2RuleServeStaticRequest, options) {
|
|
10610
|
-
var _a, _b, _c;
|
|
10611
10880
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10881
|
+
var _a, _b, _c;
|
|
10612
10882
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesServeStaticCreate(organization, project, v2RuleServeStaticRequest, options);
|
|
10613
10883
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10614
10884
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesServeStaticCreate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10625,8 +10895,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10625
10895
|
* @throws {RequiredError}
|
|
10626
10896
|
*/
|
|
10627
10897
|
rulesServeStaticDelete(organization, project, rule, options) {
|
|
10628
|
-
var _a, _b, _c;
|
|
10629
10898
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10899
|
+
var _a, _b, _c;
|
|
10630
10900
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesServeStaticDelete(organization, project, rule, options);
|
|
10631
10901
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10632
10902
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesServeStaticDelete']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10642,8 +10912,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10642
10912
|
* @throws {RequiredError}
|
|
10643
10913
|
*/
|
|
10644
10914
|
rulesServeStaticList(organization, project, options) {
|
|
10645
|
-
var _a, _b, _c;
|
|
10646
10915
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10916
|
+
var _a, _b, _c;
|
|
10647
10917
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesServeStaticList(organization, project, options);
|
|
10648
10918
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10649
10919
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesServeStaticList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10660,8 +10930,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10660
10930
|
* @throws {RequiredError}
|
|
10661
10931
|
*/
|
|
10662
10932
|
rulesServeStaticRead(organization, project, rule, options) {
|
|
10663
|
-
var _a, _b, _c;
|
|
10664
10933
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10934
|
+
var _a, _b, _c;
|
|
10665
10935
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesServeStaticRead(organization, project, rule, options);
|
|
10666
10936
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10667
10937
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesServeStaticRead']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -10679,8 +10949,8 @@ export const RulesApiFp = function (configuration) {
|
|
|
10679
10949
|
* @throws {RequiredError}
|
|
10680
10950
|
*/
|
|
10681
10951
|
rulesServeStaticUpdate(organization, project, rule, v2RuleServeStaticRequest, options) {
|
|
10682
|
-
var _a, _b, _c;
|
|
10683
10952
|
return __awaiter(this, void 0, void 0, function* () {
|
|
10953
|
+
var _a, _b, _c;
|
|
10684
10954
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.rulesServeStaticUpdate(organization, project, rule, v2RuleServeStaticRequest, options);
|
|
10685
10955
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
10686
10956
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RulesApi.rulesServeStaticUpdate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -11846,7 +12116,7 @@ export const SSHAccessApiAxiosParamCreator = function (configuration) {
|
|
|
11846
12116
|
* @param {*} [options] Override http request option.
|
|
11847
12117
|
* @throws {RequiredError}
|
|
11848
12118
|
*/
|
|
11849
|
-
getSshAccessCredentials: (
|
|
12119
|
+
getSshAccessCredentials: (organisation_1, application_1, environment_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, ...args_1], void 0, function* (organisation, application, environment, options = {}) {
|
|
11850
12120
|
// verify required parameter 'organisation' is not null or undefined
|
|
11851
12121
|
assertParamExists('getSshAccessCredentials', 'organisation', organisation);
|
|
11852
12122
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -11896,8 +12166,8 @@ export const SSHAccessApiFp = function (configuration) {
|
|
|
11896
12166
|
* @throws {RequiredError}
|
|
11897
12167
|
*/
|
|
11898
12168
|
getSshAccessCredentials(organisation, application, environment, options) {
|
|
11899
|
-
var _a, _b, _c;
|
|
11900
12169
|
return __awaiter(this, void 0, void 0, function* () {
|
|
12170
|
+
var _a, _b, _c;
|
|
11901
12171
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getSshAccessCredentials(organisation, application, environment, options);
|
|
11902
12172
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
11903
12173
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SSHAccessApi.getSshAccessCredentials']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -11964,7 +12234,7 @@ export const ScalingPolicyApiAxiosParamCreator = function (configuration) {
|
|
|
11964
12234
|
* @param {*} [options] Override http request option.
|
|
11965
12235
|
* @throws {RequiredError}
|
|
11966
12236
|
*/
|
|
11967
|
-
deleteScalingPolicy: (
|
|
12237
|
+
deleteScalingPolicy: (organisation_1, application_1, environment_1, policyName_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, policyName_1, ...args_1], void 0, function* (organisation, application, environment, policyName, options = {}) {
|
|
11968
12238
|
// verify required parameter 'organisation' is not null or undefined
|
|
11969
12239
|
assertParamExists('deleteScalingPolicy', 'organisation', organisation);
|
|
11970
12240
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -12007,7 +12277,7 @@ export const ScalingPolicyApiAxiosParamCreator = function (configuration) {
|
|
|
12007
12277
|
* @param {*} [options] Override http request option.
|
|
12008
12278
|
* @throws {RequiredError}
|
|
12009
12279
|
*/
|
|
12010
|
-
getScalingPolicies: (
|
|
12280
|
+
getScalingPolicies: (organisation_1, application_1, environment_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, ...args_1], void 0, function* (organisation, application, environment, options = {}) {
|
|
12011
12281
|
// verify required parameter 'organisation' is not null or undefined
|
|
12012
12282
|
assertParamExists('getScalingPolicies', 'organisation', organisation);
|
|
12013
12283
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -12048,7 +12318,7 @@ export const ScalingPolicyApiAxiosParamCreator = function (configuration) {
|
|
|
12048
12318
|
* @param {*} [options] Override http request option.
|
|
12049
12319
|
* @throws {RequiredError}
|
|
12050
12320
|
*/
|
|
12051
|
-
updateScalingPolicy: (
|
|
12321
|
+
updateScalingPolicy: (organisation_1, application_1, environment_1, scalingPolicy_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, scalingPolicy_1, ...args_1], void 0, function* (organisation, application, environment, scalingPolicy, options = {}) {
|
|
12052
12322
|
// verify required parameter 'organisation' is not null or undefined
|
|
12053
12323
|
assertParamExists('updateScalingPolicy', 'organisation', organisation);
|
|
12054
12324
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -12103,8 +12373,8 @@ export const ScalingPolicyApiFp = function (configuration) {
|
|
|
12103
12373
|
* @throws {RequiredError}
|
|
12104
12374
|
*/
|
|
12105
12375
|
deleteScalingPolicy(organisation, application, environment, policyName, options) {
|
|
12106
|
-
var _a, _b, _c;
|
|
12107
12376
|
return __awaiter(this, void 0, void 0, function* () {
|
|
12377
|
+
var _a, _b, _c;
|
|
12108
12378
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteScalingPolicy(organisation, application, environment, policyName, options);
|
|
12109
12379
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
12110
12380
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ScalingPolicyApi.deleteScalingPolicy']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -12121,8 +12391,8 @@ export const ScalingPolicyApiFp = function (configuration) {
|
|
|
12121
12391
|
* @throws {RequiredError}
|
|
12122
12392
|
*/
|
|
12123
12393
|
getScalingPolicies(organisation, application, environment, options) {
|
|
12124
|
-
var _a, _b, _c;
|
|
12125
12394
|
return __awaiter(this, void 0, void 0, function* () {
|
|
12395
|
+
var _a, _b, _c;
|
|
12126
12396
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getScalingPolicies(organisation, application, environment, options);
|
|
12127
12397
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
12128
12398
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ScalingPolicyApi.getScalingPolicies']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -12140,8 +12410,8 @@ export const ScalingPolicyApiFp = function (configuration) {
|
|
|
12140
12410
|
* @throws {RequiredError}
|
|
12141
12411
|
*/
|
|
12142
12412
|
updateScalingPolicy(organisation, application, environment, scalingPolicy, options) {
|
|
12143
|
-
var _a, _b, _c;
|
|
12144
12413
|
return __awaiter(this, void 0, void 0, function* () {
|
|
12414
|
+
var _a, _b, _c;
|
|
12145
12415
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.updateScalingPolicy(organisation, application, environment, scalingPolicy, options);
|
|
12146
12416
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
12147
12417
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ScalingPolicyApi.updateScalingPolicy']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -12262,7 +12532,7 @@ export const VariablesApiAxiosParamCreator = function (configuration) {
|
|
|
12262
12532
|
* @param {*} [options] Override http request option.
|
|
12263
12533
|
* @throws {RequiredError}
|
|
12264
12534
|
*/
|
|
12265
|
-
bulkSetEnvironmentVariables: (
|
|
12535
|
+
bulkSetEnvironmentVariables: (apiOrganisation_1, apiApplication_1, apiEnvironment_1, bulkSetEnvironmentVariablesRequest_1, ...args_1) => __awaiter(this, [apiOrganisation_1, apiApplication_1, apiEnvironment_1, bulkSetEnvironmentVariablesRequest_1, ...args_1], void 0, function* (apiOrganisation, apiApplication, apiEnvironment, bulkSetEnvironmentVariablesRequest, options = {}) {
|
|
12266
12536
|
// verify required parameter 'apiOrganisation' is not null or undefined
|
|
12267
12537
|
assertParamExists('bulkSetEnvironmentVariables', 'apiOrganisation', apiOrganisation);
|
|
12268
12538
|
// verify required parameter 'apiApplication' is not null or undefined
|
|
@@ -12307,7 +12577,7 @@ export const VariablesApiAxiosParamCreator = function (configuration) {
|
|
|
12307
12577
|
* @param {*} [options] Override http request option.
|
|
12308
12578
|
* @throws {RequiredError}
|
|
12309
12579
|
*/
|
|
12310
|
-
deleteEnvironmentVariable: (
|
|
12580
|
+
deleteEnvironmentVariable: (apiOrganisation_1, apiApplication_1, apiEnvironment_1, apiVariable_1, ...args_1) => __awaiter(this, [apiOrganisation_1, apiApplication_1, apiEnvironment_1, apiVariable_1, ...args_1], void 0, function* (apiOrganisation, apiApplication, apiEnvironment, apiVariable, options = {}) {
|
|
12311
12581
|
// verify required parameter 'apiOrganisation' is not null or undefined
|
|
12312
12582
|
assertParamExists('deleteEnvironmentVariable', 'apiOrganisation', apiOrganisation);
|
|
12313
12583
|
// verify required parameter 'apiApplication' is not null or undefined
|
|
@@ -12350,7 +12620,7 @@ export const VariablesApiAxiosParamCreator = function (configuration) {
|
|
|
12350
12620
|
* @param {*} [options] Override http request option.
|
|
12351
12621
|
* @throws {RequiredError}
|
|
12352
12622
|
*/
|
|
12353
|
-
listEnvironmentVariables: (
|
|
12623
|
+
listEnvironmentVariables: (apiOrganisation_1, apiApplication_1, apiEnvironment_1, ...args_1) => __awaiter(this, [apiOrganisation_1, apiApplication_1, apiEnvironment_1, ...args_1], void 0, function* (apiOrganisation, apiApplication, apiEnvironment, options = {}) {
|
|
12354
12624
|
// verify required parameter 'apiOrganisation' is not null or undefined
|
|
12355
12625
|
assertParamExists('listEnvironmentVariables', 'apiOrganisation', apiOrganisation);
|
|
12356
12626
|
// verify required parameter 'apiApplication' is not null or undefined
|
|
@@ -12392,7 +12662,7 @@ export const VariablesApiAxiosParamCreator = function (configuration) {
|
|
|
12392
12662
|
* @param {*} [options] Override http request option.
|
|
12393
12663
|
* @throws {RequiredError}
|
|
12394
12664
|
*/
|
|
12395
|
-
updateEnvironmentVariable: (
|
|
12665
|
+
updateEnvironmentVariable: (apiOrganisation_1, apiApplication_1, apiEnvironment_1, apiVariable_1, updateEnvironmentVariableRequest_1, ...args_1) => __awaiter(this, [apiOrganisation_1, apiApplication_1, apiEnvironment_1, apiVariable_1, updateEnvironmentVariableRequest_1, ...args_1], void 0, function* (apiOrganisation, apiApplication, apiEnvironment, apiVariable, updateEnvironmentVariableRequest, options = {}) {
|
|
12396
12666
|
// verify required parameter 'apiOrganisation' is not null or undefined
|
|
12397
12667
|
assertParamExists('updateEnvironmentVariable', 'apiOrganisation', apiOrganisation);
|
|
12398
12668
|
// verify required parameter 'apiApplication' is not null or undefined
|
|
@@ -12450,8 +12720,8 @@ export const VariablesApiFp = function (configuration) {
|
|
|
12450
12720
|
* @throws {RequiredError}
|
|
12451
12721
|
*/
|
|
12452
12722
|
bulkSetEnvironmentVariables(apiOrganisation, apiApplication, apiEnvironment, bulkSetEnvironmentVariablesRequest, options) {
|
|
12453
|
-
var _a, _b, _c;
|
|
12454
12723
|
return __awaiter(this, void 0, void 0, function* () {
|
|
12724
|
+
var _a, _b, _c;
|
|
12455
12725
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.bulkSetEnvironmentVariables(apiOrganisation, apiApplication, apiEnvironment, bulkSetEnvironmentVariablesRequest, options);
|
|
12456
12726
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
12457
12727
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['VariablesApi.bulkSetEnvironmentVariables']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -12469,8 +12739,8 @@ export const VariablesApiFp = function (configuration) {
|
|
|
12469
12739
|
* @throws {RequiredError}
|
|
12470
12740
|
*/
|
|
12471
12741
|
deleteEnvironmentVariable(apiOrganisation, apiApplication, apiEnvironment, apiVariable, options) {
|
|
12472
|
-
var _a, _b, _c;
|
|
12473
12742
|
return __awaiter(this, void 0, void 0, function* () {
|
|
12743
|
+
var _a, _b, _c;
|
|
12474
12744
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteEnvironmentVariable(apiOrganisation, apiApplication, apiEnvironment, apiVariable, options);
|
|
12475
12745
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
12476
12746
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['VariablesApi.deleteEnvironmentVariable']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -12487,8 +12757,8 @@ export const VariablesApiFp = function (configuration) {
|
|
|
12487
12757
|
* @throws {RequiredError}
|
|
12488
12758
|
*/
|
|
12489
12759
|
listEnvironmentVariables(apiOrganisation, apiApplication, apiEnvironment, options) {
|
|
12490
|
-
var _a, _b, _c;
|
|
12491
12760
|
return __awaiter(this, void 0, void 0, function* () {
|
|
12761
|
+
var _a, _b, _c;
|
|
12492
12762
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.listEnvironmentVariables(apiOrganisation, apiApplication, apiEnvironment, options);
|
|
12493
12763
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
12494
12764
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['VariablesApi.listEnvironmentVariables']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -12507,8 +12777,8 @@ export const VariablesApiFp = function (configuration) {
|
|
|
12507
12777
|
* @throws {RequiredError}
|
|
12508
12778
|
*/
|
|
12509
12779
|
updateEnvironmentVariable(apiOrganisation, apiApplication, apiEnvironment, apiVariable, updateEnvironmentVariableRequest, options) {
|
|
12510
|
-
var _a, _b, _c;
|
|
12511
12780
|
return __awaiter(this, void 0, void 0, function* () {
|
|
12781
|
+
var _a, _b, _c;
|
|
12512
12782
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.updateEnvironmentVariable(apiOrganisation, apiApplication, apiEnvironment, apiVariable, updateEnvironmentVariableRequest, options);
|
|
12513
12783
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
12514
12784
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['VariablesApi.updateEnvironmentVariable']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -12658,7 +12928,7 @@ export const VolumesApiAxiosParamCreator = function (configuration) {
|
|
|
12658
12928
|
* @param {*} [options] Override http request option.
|
|
12659
12929
|
* @throws {RequiredError}
|
|
12660
12930
|
*/
|
|
12661
|
-
createVolume: (
|
|
12931
|
+
createVolume: (organisation_1, application_1, environment_1, createVolumeRequest_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, createVolumeRequest_1, ...args_1], void 0, function* (organisation, application, environment, createVolumeRequest, options = {}) {
|
|
12662
12932
|
// verify required parameter 'organisation' is not null or undefined
|
|
12663
12933
|
assertParamExists('createVolume', 'organisation', organisation);
|
|
12664
12934
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -12703,7 +12973,7 @@ export const VolumesApiAxiosParamCreator = function (configuration) {
|
|
|
12703
12973
|
* @param {*} [options] Override http request option.
|
|
12704
12974
|
* @throws {RequiredError}
|
|
12705
12975
|
*/
|
|
12706
|
-
deleteVolume: (
|
|
12976
|
+
deleteVolume: (organisation_1, application_1, environment_1, volume_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, volume_1, ...args_1], void 0, function* (organisation, application, environment, volume, options = {}) {
|
|
12707
12977
|
// verify required parameter 'organisation' is not null or undefined
|
|
12708
12978
|
assertParamExists('deleteVolume', 'organisation', organisation);
|
|
12709
12979
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -12747,7 +13017,7 @@ export const VolumesApiAxiosParamCreator = function (configuration) {
|
|
|
12747
13017
|
* @param {*} [options] Override http request option.
|
|
12748
13018
|
* @throws {RequiredError}
|
|
12749
13019
|
*/
|
|
12750
|
-
getVolume: (
|
|
13020
|
+
getVolume: (organisation_1, application_1, environment_1, volume_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, volume_1, ...args_1], void 0, function* (organisation, application, environment, volume, options = {}) {
|
|
12751
13021
|
// verify required parameter 'organisation' is not null or undefined
|
|
12752
13022
|
assertParamExists('getVolume', 'organisation', organisation);
|
|
12753
13023
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -12790,7 +13060,7 @@ export const VolumesApiAxiosParamCreator = function (configuration) {
|
|
|
12790
13060
|
* @param {*} [options] Override http request option.
|
|
12791
13061
|
* @throws {RequiredError}
|
|
12792
13062
|
*/
|
|
12793
|
-
listVolumes: (
|
|
13063
|
+
listVolumes: (organisation_1, application_1, environment_1, ...args_1) => __awaiter(this, [organisation_1, application_1, environment_1, ...args_1], void 0, function* (organisation, application, environment, options = {}) {
|
|
12794
13064
|
// verify required parameter 'organisation' is not null or undefined
|
|
12795
13065
|
assertParamExists('listVolumes', 'organisation', organisation);
|
|
12796
13066
|
// verify required parameter 'application' is not null or undefined
|
|
@@ -12841,8 +13111,8 @@ export const VolumesApiFp = function (configuration) {
|
|
|
12841
13111
|
* @throws {RequiredError}
|
|
12842
13112
|
*/
|
|
12843
13113
|
createVolume(organisation, application, environment, createVolumeRequest, options) {
|
|
12844
|
-
var _a, _b, _c;
|
|
12845
13114
|
return __awaiter(this, void 0, void 0, function* () {
|
|
13115
|
+
var _a, _b, _c;
|
|
12846
13116
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.createVolume(organisation, application, environment, createVolumeRequest, options);
|
|
12847
13117
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
12848
13118
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['VolumesApi.createVolume']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -12860,8 +13130,8 @@ export const VolumesApiFp = function (configuration) {
|
|
|
12860
13130
|
* @throws {RequiredError}
|
|
12861
13131
|
*/
|
|
12862
13132
|
deleteVolume(organisation, application, environment, volume, options) {
|
|
12863
|
-
var _a, _b, _c;
|
|
12864
13133
|
return __awaiter(this, void 0, void 0, function* () {
|
|
13134
|
+
var _a, _b, _c;
|
|
12865
13135
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteVolume(organisation, application, environment, volume, options);
|
|
12866
13136
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
12867
13137
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['VolumesApi.deleteVolume']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -12879,8 +13149,8 @@ export const VolumesApiFp = function (configuration) {
|
|
|
12879
13149
|
* @throws {RequiredError}
|
|
12880
13150
|
*/
|
|
12881
13151
|
getVolume(organisation, application, environment, volume, options) {
|
|
12882
|
-
var _a, _b, _c;
|
|
12883
13152
|
return __awaiter(this, void 0, void 0, function* () {
|
|
13153
|
+
var _a, _b, _c;
|
|
12884
13154
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getVolume(organisation, application, environment, volume, options);
|
|
12885
13155
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
12886
13156
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['VolumesApi.getVolume']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
@@ -12897,8 +13167,8 @@ export const VolumesApiFp = function (configuration) {
|
|
|
12897
13167
|
* @throws {RequiredError}
|
|
12898
13168
|
*/
|
|
12899
13169
|
listVolumes(organisation, application, environment, options) {
|
|
12900
|
-
var _a, _b, _c;
|
|
12901
13170
|
return __awaiter(this, void 0, void 0, function* () {
|
|
13171
|
+
var _a, _b, _c;
|
|
12902
13172
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.listVolumes(organisation, application, environment, options);
|
|
12903
13173
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
12904
13174
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['VolumesApi.listVolumes']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|