qovery-typescript-axios 1.1.802 → 1.1.803
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 +6 -462
- package/dist/api.d.ts +6 -219
- package/dist/api.js +3 -431
- package/dist/esm/api.d.ts +6 -219
- package/dist/esm/api.js +0 -424
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -13319,10 +13319,10 @@ export interface KedaScalerRequest {
|
|
|
13319
13319
|
'config_yaml'?: string;
|
|
13320
13320
|
/**
|
|
13321
13321
|
*
|
|
13322
|
-
* @type {
|
|
13322
|
+
* @type {KedaTriggerAuthenticationRequest}
|
|
13323
13323
|
* @memberof KedaScalerRequest
|
|
13324
13324
|
*/
|
|
13325
|
-
'
|
|
13325
|
+
'trigger_authentication'?: KedaTriggerAuthenticationRequest;
|
|
13326
13326
|
}
|
|
13327
13327
|
|
|
13328
13328
|
|
|
@@ -13370,10 +13370,10 @@ export interface KedaScalerResponse {
|
|
|
13370
13370
|
'role': KedaScalerRole;
|
|
13371
13371
|
/**
|
|
13372
13372
|
*
|
|
13373
|
-
* @type {
|
|
13373
|
+
* @type {object}
|
|
13374
13374
|
* @memberof KedaScalerResponse
|
|
13375
13375
|
*/
|
|
13376
|
-
'config_json'?:
|
|
13376
|
+
'config_json'?: object | null;
|
|
13377
13377
|
/**
|
|
13378
13378
|
*
|
|
13379
13379
|
* @type {string}
|
|
@@ -13382,10 +13382,10 @@ export interface KedaScalerResponse {
|
|
|
13382
13382
|
'config_yaml'?: string | null;
|
|
13383
13383
|
/**
|
|
13384
13384
|
*
|
|
13385
|
-
* @type {
|
|
13385
|
+
* @type {KedaTriggerAuthenticationResponse}
|
|
13386
13386
|
* @memberof KedaScalerResponse
|
|
13387
13387
|
*/
|
|
13388
|
-
'
|
|
13388
|
+
'trigger_authentication'?: KedaTriggerAuthenticationResponse;
|
|
13389
13389
|
}
|
|
13390
13390
|
|
|
13391
13391
|
|
|
@@ -53516,462 +53516,6 @@ export class JobsApi extends BaseAPI {
|
|
|
53516
53516
|
|
|
53517
53517
|
|
|
53518
53518
|
|
|
53519
|
-
/**
|
|
53520
|
-
* KedaTriggerAuthenticationApi - axios parameter creator
|
|
53521
|
-
* @export
|
|
53522
|
-
*/
|
|
53523
|
-
export const KedaTriggerAuthenticationApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
53524
|
-
return {
|
|
53525
|
-
/**
|
|
53526
|
-
*
|
|
53527
|
-
* @summary create Keda Trigger Authentications
|
|
53528
|
-
* @param {string} organizationId Organization ID
|
|
53529
|
-
* @param {KedaTriggerAuthenticationRequest} kedaTriggerAuthenticationRequest
|
|
53530
|
-
* @param {*} [options] Override http request option.
|
|
53531
|
-
* @throws {RequiredError}
|
|
53532
|
-
*/
|
|
53533
|
-
createKedaTriggerAuthentication: async (organizationId: string, kedaTriggerAuthenticationRequest: KedaTriggerAuthenticationRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
53534
|
-
// verify required parameter 'organizationId' is not null or undefined
|
|
53535
|
-
assertParamExists('createKedaTriggerAuthentication', 'organizationId', organizationId)
|
|
53536
|
-
// verify required parameter 'kedaTriggerAuthenticationRequest' is not null or undefined
|
|
53537
|
-
assertParamExists('createKedaTriggerAuthentication', 'kedaTriggerAuthenticationRequest', kedaTriggerAuthenticationRequest)
|
|
53538
|
-
const localVarPath = `/organization/{organizationId}/keda-trigger-authentications`
|
|
53539
|
-
.replace(`{${"organizationId"}}`, encodeURIComponent(String(organizationId)));
|
|
53540
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
53541
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
53542
|
-
let baseOptions;
|
|
53543
|
-
if (configuration) {
|
|
53544
|
-
baseOptions = configuration.baseOptions;
|
|
53545
|
-
}
|
|
53546
|
-
|
|
53547
|
-
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
53548
|
-
const localVarHeaderParameter = {} as any;
|
|
53549
|
-
const localVarQueryParameter = {} as any;
|
|
53550
|
-
|
|
53551
|
-
// authentication ApiKeyAuth required
|
|
53552
|
-
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
53553
|
-
|
|
53554
|
-
// authentication bearerAuth required
|
|
53555
|
-
// http bearer authentication required
|
|
53556
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
53557
|
-
|
|
53558
|
-
|
|
53559
|
-
|
|
53560
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
53561
|
-
|
|
53562
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
53563
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
53564
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
53565
|
-
localVarRequestOptions.data = serializeDataIfNeeded(kedaTriggerAuthenticationRequest, localVarRequestOptions, configuration)
|
|
53566
|
-
|
|
53567
|
-
return {
|
|
53568
|
-
url: toPathString(localVarUrlObj),
|
|
53569
|
-
options: localVarRequestOptions,
|
|
53570
|
-
};
|
|
53571
|
-
},
|
|
53572
|
-
/**
|
|
53573
|
-
*
|
|
53574
|
-
* @summary Delete a KEDA trigger authentication
|
|
53575
|
-
* @param {string} organizationId Organization ID
|
|
53576
|
-
* @param {string} triggerAuthenticationId KEDA triggerAuthentication ID
|
|
53577
|
-
* @param {*} [options] Override http request option.
|
|
53578
|
-
* @throws {RequiredError}
|
|
53579
|
-
*/
|
|
53580
|
-
deleteKedaTriggerAuthentication: async (organizationId: string, triggerAuthenticationId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
53581
|
-
// verify required parameter 'organizationId' is not null or undefined
|
|
53582
|
-
assertParamExists('deleteKedaTriggerAuthentication', 'organizationId', organizationId)
|
|
53583
|
-
// verify required parameter 'triggerAuthenticationId' is not null or undefined
|
|
53584
|
-
assertParamExists('deleteKedaTriggerAuthentication', 'triggerAuthenticationId', triggerAuthenticationId)
|
|
53585
|
-
const localVarPath = `/organization/{organizationId}/keda-trigger-authentications/{triggerAuthenticationId}`
|
|
53586
|
-
.replace(`{${"organizationId"}}`, encodeURIComponent(String(organizationId)))
|
|
53587
|
-
.replace(`{${"triggerAuthenticationId"}}`, encodeURIComponent(String(triggerAuthenticationId)));
|
|
53588
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
53589
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
53590
|
-
let baseOptions;
|
|
53591
|
-
if (configuration) {
|
|
53592
|
-
baseOptions = configuration.baseOptions;
|
|
53593
|
-
}
|
|
53594
|
-
|
|
53595
|
-
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
53596
|
-
const localVarHeaderParameter = {} as any;
|
|
53597
|
-
const localVarQueryParameter = {} as any;
|
|
53598
|
-
|
|
53599
|
-
// authentication ApiKeyAuth required
|
|
53600
|
-
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
53601
|
-
|
|
53602
|
-
// authentication bearerAuth required
|
|
53603
|
-
// http bearer authentication required
|
|
53604
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
53605
|
-
|
|
53606
|
-
|
|
53607
|
-
|
|
53608
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
53609
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
53610
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
53611
|
-
|
|
53612
|
-
return {
|
|
53613
|
-
url: toPathString(localVarUrlObj),
|
|
53614
|
-
options: localVarRequestOptions,
|
|
53615
|
-
};
|
|
53616
|
-
},
|
|
53617
|
-
/**
|
|
53618
|
-
*
|
|
53619
|
-
* @summary Get a KEDA trigger authentication
|
|
53620
|
-
* @param {string} organizationId Organization ID
|
|
53621
|
-
* @param {string} triggerAuthenticationId KEDA triggerAuthentication ID
|
|
53622
|
-
* @param {*} [options] Override http request option.
|
|
53623
|
-
* @throws {RequiredError}
|
|
53624
|
-
*/
|
|
53625
|
-
getKedaTriggerAuthentication: async (organizationId: string, triggerAuthenticationId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
53626
|
-
// verify required parameter 'organizationId' is not null or undefined
|
|
53627
|
-
assertParamExists('getKedaTriggerAuthentication', 'organizationId', organizationId)
|
|
53628
|
-
// verify required parameter 'triggerAuthenticationId' is not null or undefined
|
|
53629
|
-
assertParamExists('getKedaTriggerAuthentication', 'triggerAuthenticationId', triggerAuthenticationId)
|
|
53630
|
-
const localVarPath = `/organization/{organizationId}/keda-trigger-authentications/{triggerAuthenticationId}`
|
|
53631
|
-
.replace(`{${"organizationId"}}`, encodeURIComponent(String(organizationId)))
|
|
53632
|
-
.replace(`{${"triggerAuthenticationId"}}`, encodeURIComponent(String(triggerAuthenticationId)));
|
|
53633
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
53634
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
53635
|
-
let baseOptions;
|
|
53636
|
-
if (configuration) {
|
|
53637
|
-
baseOptions = configuration.baseOptions;
|
|
53638
|
-
}
|
|
53639
|
-
|
|
53640
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
53641
|
-
const localVarHeaderParameter = {} as any;
|
|
53642
|
-
const localVarQueryParameter = {} as any;
|
|
53643
|
-
|
|
53644
|
-
// authentication ApiKeyAuth required
|
|
53645
|
-
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
53646
|
-
|
|
53647
|
-
// authentication bearerAuth required
|
|
53648
|
-
// http bearer authentication required
|
|
53649
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
53650
|
-
|
|
53651
|
-
|
|
53652
|
-
|
|
53653
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
53654
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
53655
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
53656
|
-
|
|
53657
|
-
return {
|
|
53658
|
-
url: toPathString(localVarUrlObj),
|
|
53659
|
-
options: localVarRequestOptions,
|
|
53660
|
-
};
|
|
53661
|
-
},
|
|
53662
|
-
/**
|
|
53663
|
-
*
|
|
53664
|
-
* @summary list Keda TriggerAuthentications
|
|
53665
|
-
* @param {string} organizationId Organization ID
|
|
53666
|
-
* @param {*} [options] Override http request option.
|
|
53667
|
-
* @throws {RequiredError}
|
|
53668
|
-
*/
|
|
53669
|
-
listKedaTriggerAuthentications: async (organizationId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
53670
|
-
// verify required parameter 'organizationId' is not null or undefined
|
|
53671
|
-
assertParamExists('listKedaTriggerAuthentications', 'organizationId', organizationId)
|
|
53672
|
-
const localVarPath = `/organization/{organizationId}/keda-trigger-authentications`
|
|
53673
|
-
.replace(`{${"organizationId"}}`, encodeURIComponent(String(organizationId)));
|
|
53674
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
53675
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
53676
|
-
let baseOptions;
|
|
53677
|
-
if (configuration) {
|
|
53678
|
-
baseOptions = configuration.baseOptions;
|
|
53679
|
-
}
|
|
53680
|
-
|
|
53681
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
53682
|
-
const localVarHeaderParameter = {} as any;
|
|
53683
|
-
const localVarQueryParameter = {} as any;
|
|
53684
|
-
|
|
53685
|
-
// authentication ApiKeyAuth required
|
|
53686
|
-
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
53687
|
-
|
|
53688
|
-
// authentication bearerAuth required
|
|
53689
|
-
// http bearer authentication required
|
|
53690
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
53691
|
-
|
|
53692
|
-
|
|
53693
|
-
|
|
53694
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
53695
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
53696
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
53697
|
-
|
|
53698
|
-
return {
|
|
53699
|
-
url: toPathString(localVarUrlObj),
|
|
53700
|
-
options: localVarRequestOptions,
|
|
53701
|
-
};
|
|
53702
|
-
},
|
|
53703
|
-
/**
|
|
53704
|
-
*
|
|
53705
|
-
* @summary Update a KEDA trigger authentication
|
|
53706
|
-
* @param {string} organizationId Organization ID
|
|
53707
|
-
* @param {string} triggerAuthenticationId KEDA triggerAuthentication ID
|
|
53708
|
-
* @param {KedaTriggerAuthenticationRequest} [kedaTriggerAuthenticationRequest]
|
|
53709
|
-
* @param {*} [options] Override http request option.
|
|
53710
|
-
* @throws {RequiredError}
|
|
53711
|
-
*/
|
|
53712
|
-
updateKedaTriggerAuthentication: async (organizationId: string, triggerAuthenticationId: string, kedaTriggerAuthenticationRequest?: KedaTriggerAuthenticationRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
53713
|
-
// verify required parameter 'organizationId' is not null or undefined
|
|
53714
|
-
assertParamExists('updateKedaTriggerAuthentication', 'organizationId', organizationId)
|
|
53715
|
-
// verify required parameter 'triggerAuthenticationId' is not null or undefined
|
|
53716
|
-
assertParamExists('updateKedaTriggerAuthentication', 'triggerAuthenticationId', triggerAuthenticationId)
|
|
53717
|
-
const localVarPath = `/organization/{organizationId}/keda-trigger-authentications/{triggerAuthenticationId}`
|
|
53718
|
-
.replace(`{${"organizationId"}}`, encodeURIComponent(String(organizationId)))
|
|
53719
|
-
.replace(`{${"triggerAuthenticationId"}}`, encodeURIComponent(String(triggerAuthenticationId)));
|
|
53720
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
53721
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
53722
|
-
let baseOptions;
|
|
53723
|
-
if (configuration) {
|
|
53724
|
-
baseOptions = configuration.baseOptions;
|
|
53725
|
-
}
|
|
53726
|
-
|
|
53727
|
-
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
53728
|
-
const localVarHeaderParameter = {} as any;
|
|
53729
|
-
const localVarQueryParameter = {} as any;
|
|
53730
|
-
|
|
53731
|
-
// authentication ApiKeyAuth required
|
|
53732
|
-
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
53733
|
-
|
|
53734
|
-
// authentication bearerAuth required
|
|
53735
|
-
// http bearer authentication required
|
|
53736
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
53737
|
-
|
|
53738
|
-
|
|
53739
|
-
|
|
53740
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
53741
|
-
|
|
53742
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
53743
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
53744
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
53745
|
-
localVarRequestOptions.data = serializeDataIfNeeded(kedaTriggerAuthenticationRequest, localVarRequestOptions, configuration)
|
|
53746
|
-
|
|
53747
|
-
return {
|
|
53748
|
-
url: toPathString(localVarUrlObj),
|
|
53749
|
-
options: localVarRequestOptions,
|
|
53750
|
-
};
|
|
53751
|
-
},
|
|
53752
|
-
}
|
|
53753
|
-
};
|
|
53754
|
-
|
|
53755
|
-
/**
|
|
53756
|
-
* KedaTriggerAuthenticationApi - functional programming interface
|
|
53757
|
-
* @export
|
|
53758
|
-
*/
|
|
53759
|
-
export const KedaTriggerAuthenticationApiFp = function(configuration?: Configuration) {
|
|
53760
|
-
const localVarAxiosParamCreator = KedaTriggerAuthenticationApiAxiosParamCreator(configuration)
|
|
53761
|
-
return {
|
|
53762
|
-
/**
|
|
53763
|
-
*
|
|
53764
|
-
* @summary create Keda Trigger Authentications
|
|
53765
|
-
* @param {string} organizationId Organization ID
|
|
53766
|
-
* @param {KedaTriggerAuthenticationRequest} kedaTriggerAuthenticationRequest
|
|
53767
|
-
* @param {*} [options] Override http request option.
|
|
53768
|
-
* @throws {RequiredError}
|
|
53769
|
-
*/
|
|
53770
|
-
async createKedaTriggerAuthentication(organizationId: string, kedaTriggerAuthenticationRequest: KedaTriggerAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<KedaTriggerAuthenticationResponse>> {
|
|
53771
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createKedaTriggerAuthentication(organizationId, kedaTriggerAuthenticationRequest, options);
|
|
53772
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
53773
|
-
const localVarOperationServerBasePath = operationServerMap['KedaTriggerAuthenticationApi.createKedaTriggerAuthentication']?.[localVarOperationServerIndex]?.url;
|
|
53774
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
53775
|
-
},
|
|
53776
|
-
/**
|
|
53777
|
-
*
|
|
53778
|
-
* @summary Delete a KEDA trigger authentication
|
|
53779
|
-
* @param {string} organizationId Organization ID
|
|
53780
|
-
* @param {string} triggerAuthenticationId KEDA triggerAuthentication ID
|
|
53781
|
-
* @param {*} [options] Override http request option.
|
|
53782
|
-
* @throws {RequiredError}
|
|
53783
|
-
*/
|
|
53784
|
-
async deleteKedaTriggerAuthentication(organizationId: string, triggerAuthenticationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
53785
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteKedaTriggerAuthentication(organizationId, triggerAuthenticationId, options);
|
|
53786
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
53787
|
-
const localVarOperationServerBasePath = operationServerMap['KedaTriggerAuthenticationApi.deleteKedaTriggerAuthentication']?.[localVarOperationServerIndex]?.url;
|
|
53788
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
53789
|
-
},
|
|
53790
|
-
/**
|
|
53791
|
-
*
|
|
53792
|
-
* @summary Get a KEDA trigger authentication
|
|
53793
|
-
* @param {string} organizationId Organization ID
|
|
53794
|
-
* @param {string} triggerAuthenticationId KEDA triggerAuthentication ID
|
|
53795
|
-
* @param {*} [options] Override http request option.
|
|
53796
|
-
* @throws {RequiredError}
|
|
53797
|
-
*/
|
|
53798
|
-
async getKedaTriggerAuthentication(organizationId: string, triggerAuthenticationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<KedaTriggerAuthenticationResponse>> {
|
|
53799
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getKedaTriggerAuthentication(organizationId, triggerAuthenticationId, options);
|
|
53800
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
53801
|
-
const localVarOperationServerBasePath = operationServerMap['KedaTriggerAuthenticationApi.getKedaTriggerAuthentication']?.[localVarOperationServerIndex]?.url;
|
|
53802
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
53803
|
-
},
|
|
53804
|
-
/**
|
|
53805
|
-
*
|
|
53806
|
-
* @summary list Keda TriggerAuthentications
|
|
53807
|
-
* @param {string} organizationId Organization ID
|
|
53808
|
-
* @param {*} [options] Override http request option.
|
|
53809
|
-
* @throws {RequiredError}
|
|
53810
|
-
*/
|
|
53811
|
-
async listKedaTriggerAuthentications(organizationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<KedaTriggerAuthenticationResponseList>> {
|
|
53812
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listKedaTriggerAuthentications(organizationId, options);
|
|
53813
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
53814
|
-
const localVarOperationServerBasePath = operationServerMap['KedaTriggerAuthenticationApi.listKedaTriggerAuthentications']?.[localVarOperationServerIndex]?.url;
|
|
53815
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
53816
|
-
},
|
|
53817
|
-
/**
|
|
53818
|
-
*
|
|
53819
|
-
* @summary Update a KEDA trigger authentication
|
|
53820
|
-
* @param {string} organizationId Organization ID
|
|
53821
|
-
* @param {string} triggerAuthenticationId KEDA triggerAuthentication ID
|
|
53822
|
-
* @param {KedaTriggerAuthenticationRequest} [kedaTriggerAuthenticationRequest]
|
|
53823
|
-
* @param {*} [options] Override http request option.
|
|
53824
|
-
* @throws {RequiredError}
|
|
53825
|
-
*/
|
|
53826
|
-
async updateKedaTriggerAuthentication(organizationId: string, triggerAuthenticationId: string, kedaTriggerAuthenticationRequest?: KedaTriggerAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<KedaTriggerAuthenticationResponse>> {
|
|
53827
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateKedaTriggerAuthentication(organizationId, triggerAuthenticationId, kedaTriggerAuthenticationRequest, options);
|
|
53828
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
53829
|
-
const localVarOperationServerBasePath = operationServerMap['KedaTriggerAuthenticationApi.updateKedaTriggerAuthentication']?.[localVarOperationServerIndex]?.url;
|
|
53830
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
53831
|
-
},
|
|
53832
|
-
}
|
|
53833
|
-
};
|
|
53834
|
-
|
|
53835
|
-
/**
|
|
53836
|
-
* KedaTriggerAuthenticationApi - factory interface
|
|
53837
|
-
* @export
|
|
53838
|
-
*/
|
|
53839
|
-
export const KedaTriggerAuthenticationApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
53840
|
-
const localVarFp = KedaTriggerAuthenticationApiFp(configuration)
|
|
53841
|
-
return {
|
|
53842
|
-
/**
|
|
53843
|
-
*
|
|
53844
|
-
* @summary create Keda Trigger Authentications
|
|
53845
|
-
* @param {string} organizationId Organization ID
|
|
53846
|
-
* @param {KedaTriggerAuthenticationRequest} kedaTriggerAuthenticationRequest
|
|
53847
|
-
* @param {*} [options] Override http request option.
|
|
53848
|
-
* @throws {RequiredError}
|
|
53849
|
-
*/
|
|
53850
|
-
createKedaTriggerAuthentication(organizationId: string, kedaTriggerAuthenticationRequest: KedaTriggerAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<KedaTriggerAuthenticationResponse> {
|
|
53851
|
-
return localVarFp.createKedaTriggerAuthentication(organizationId, kedaTriggerAuthenticationRequest, options).then((request) => request(axios, basePath));
|
|
53852
|
-
},
|
|
53853
|
-
/**
|
|
53854
|
-
*
|
|
53855
|
-
* @summary Delete a KEDA trigger authentication
|
|
53856
|
-
* @param {string} organizationId Organization ID
|
|
53857
|
-
* @param {string} triggerAuthenticationId KEDA triggerAuthentication ID
|
|
53858
|
-
* @param {*} [options] Override http request option.
|
|
53859
|
-
* @throws {RequiredError}
|
|
53860
|
-
*/
|
|
53861
|
-
deleteKedaTriggerAuthentication(organizationId: string, triggerAuthenticationId: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
53862
|
-
return localVarFp.deleteKedaTriggerAuthentication(organizationId, triggerAuthenticationId, options).then((request) => request(axios, basePath));
|
|
53863
|
-
},
|
|
53864
|
-
/**
|
|
53865
|
-
*
|
|
53866
|
-
* @summary Get a KEDA trigger authentication
|
|
53867
|
-
* @param {string} organizationId Organization ID
|
|
53868
|
-
* @param {string} triggerAuthenticationId KEDA triggerAuthentication ID
|
|
53869
|
-
* @param {*} [options] Override http request option.
|
|
53870
|
-
* @throws {RequiredError}
|
|
53871
|
-
*/
|
|
53872
|
-
getKedaTriggerAuthentication(organizationId: string, triggerAuthenticationId: string, options?: RawAxiosRequestConfig): AxiosPromise<KedaTriggerAuthenticationResponse> {
|
|
53873
|
-
return localVarFp.getKedaTriggerAuthentication(organizationId, triggerAuthenticationId, options).then((request) => request(axios, basePath));
|
|
53874
|
-
},
|
|
53875
|
-
/**
|
|
53876
|
-
*
|
|
53877
|
-
* @summary list Keda TriggerAuthentications
|
|
53878
|
-
* @param {string} organizationId Organization ID
|
|
53879
|
-
* @param {*} [options] Override http request option.
|
|
53880
|
-
* @throws {RequiredError}
|
|
53881
|
-
*/
|
|
53882
|
-
listKedaTriggerAuthentications(organizationId: string, options?: RawAxiosRequestConfig): AxiosPromise<KedaTriggerAuthenticationResponseList> {
|
|
53883
|
-
return localVarFp.listKedaTriggerAuthentications(organizationId, options).then((request) => request(axios, basePath));
|
|
53884
|
-
},
|
|
53885
|
-
/**
|
|
53886
|
-
*
|
|
53887
|
-
* @summary Update a KEDA trigger authentication
|
|
53888
|
-
* @param {string} organizationId Organization ID
|
|
53889
|
-
* @param {string} triggerAuthenticationId KEDA triggerAuthentication ID
|
|
53890
|
-
* @param {KedaTriggerAuthenticationRequest} [kedaTriggerAuthenticationRequest]
|
|
53891
|
-
* @param {*} [options] Override http request option.
|
|
53892
|
-
* @throws {RequiredError}
|
|
53893
|
-
*/
|
|
53894
|
-
updateKedaTriggerAuthentication(organizationId: string, triggerAuthenticationId: string, kedaTriggerAuthenticationRequest?: KedaTriggerAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<KedaTriggerAuthenticationResponse> {
|
|
53895
|
-
return localVarFp.updateKedaTriggerAuthentication(organizationId, triggerAuthenticationId, kedaTriggerAuthenticationRequest, options).then((request) => request(axios, basePath));
|
|
53896
|
-
},
|
|
53897
|
-
};
|
|
53898
|
-
};
|
|
53899
|
-
|
|
53900
|
-
/**
|
|
53901
|
-
* KedaTriggerAuthenticationApi - object-oriented interface
|
|
53902
|
-
* @export
|
|
53903
|
-
* @class KedaTriggerAuthenticationApi
|
|
53904
|
-
* @extends {BaseAPI}
|
|
53905
|
-
*/
|
|
53906
|
-
export class KedaTriggerAuthenticationApi extends BaseAPI {
|
|
53907
|
-
/**
|
|
53908
|
-
*
|
|
53909
|
-
* @summary create Keda Trigger Authentications
|
|
53910
|
-
* @param {string} organizationId Organization ID
|
|
53911
|
-
* @param {KedaTriggerAuthenticationRequest} kedaTriggerAuthenticationRequest
|
|
53912
|
-
* @param {*} [options] Override http request option.
|
|
53913
|
-
* @throws {RequiredError}
|
|
53914
|
-
* @memberof KedaTriggerAuthenticationApi
|
|
53915
|
-
*/
|
|
53916
|
-
public createKedaTriggerAuthentication(organizationId: string, kedaTriggerAuthenticationRequest: KedaTriggerAuthenticationRequest, options?: RawAxiosRequestConfig) {
|
|
53917
|
-
return KedaTriggerAuthenticationApiFp(this.configuration).createKedaTriggerAuthentication(organizationId, kedaTriggerAuthenticationRequest, options).then((request) => request(this.axios, this.basePath));
|
|
53918
|
-
}
|
|
53919
|
-
|
|
53920
|
-
/**
|
|
53921
|
-
*
|
|
53922
|
-
* @summary Delete a KEDA trigger authentication
|
|
53923
|
-
* @param {string} organizationId Organization ID
|
|
53924
|
-
* @param {string} triggerAuthenticationId KEDA triggerAuthentication ID
|
|
53925
|
-
* @param {*} [options] Override http request option.
|
|
53926
|
-
* @throws {RequiredError}
|
|
53927
|
-
* @memberof KedaTriggerAuthenticationApi
|
|
53928
|
-
*/
|
|
53929
|
-
public deleteKedaTriggerAuthentication(organizationId: string, triggerAuthenticationId: string, options?: RawAxiosRequestConfig) {
|
|
53930
|
-
return KedaTriggerAuthenticationApiFp(this.configuration).deleteKedaTriggerAuthentication(organizationId, triggerAuthenticationId, options).then((request) => request(this.axios, this.basePath));
|
|
53931
|
-
}
|
|
53932
|
-
|
|
53933
|
-
/**
|
|
53934
|
-
*
|
|
53935
|
-
* @summary Get a KEDA trigger authentication
|
|
53936
|
-
* @param {string} organizationId Organization ID
|
|
53937
|
-
* @param {string} triggerAuthenticationId KEDA triggerAuthentication ID
|
|
53938
|
-
* @param {*} [options] Override http request option.
|
|
53939
|
-
* @throws {RequiredError}
|
|
53940
|
-
* @memberof KedaTriggerAuthenticationApi
|
|
53941
|
-
*/
|
|
53942
|
-
public getKedaTriggerAuthentication(organizationId: string, triggerAuthenticationId: string, options?: RawAxiosRequestConfig) {
|
|
53943
|
-
return KedaTriggerAuthenticationApiFp(this.configuration).getKedaTriggerAuthentication(organizationId, triggerAuthenticationId, options).then((request) => request(this.axios, this.basePath));
|
|
53944
|
-
}
|
|
53945
|
-
|
|
53946
|
-
/**
|
|
53947
|
-
*
|
|
53948
|
-
* @summary list Keda TriggerAuthentications
|
|
53949
|
-
* @param {string} organizationId Organization ID
|
|
53950
|
-
* @param {*} [options] Override http request option.
|
|
53951
|
-
* @throws {RequiredError}
|
|
53952
|
-
* @memberof KedaTriggerAuthenticationApi
|
|
53953
|
-
*/
|
|
53954
|
-
public listKedaTriggerAuthentications(organizationId: string, options?: RawAxiosRequestConfig) {
|
|
53955
|
-
return KedaTriggerAuthenticationApiFp(this.configuration).listKedaTriggerAuthentications(organizationId, options).then((request) => request(this.axios, this.basePath));
|
|
53956
|
-
}
|
|
53957
|
-
|
|
53958
|
-
/**
|
|
53959
|
-
*
|
|
53960
|
-
* @summary Update a KEDA trigger authentication
|
|
53961
|
-
* @param {string} organizationId Organization ID
|
|
53962
|
-
* @param {string} triggerAuthenticationId KEDA triggerAuthentication ID
|
|
53963
|
-
* @param {KedaTriggerAuthenticationRequest} [kedaTriggerAuthenticationRequest]
|
|
53964
|
-
* @param {*} [options] Override http request option.
|
|
53965
|
-
* @throws {RequiredError}
|
|
53966
|
-
* @memberof KedaTriggerAuthenticationApi
|
|
53967
|
-
*/
|
|
53968
|
-
public updateKedaTriggerAuthentication(organizationId: string, triggerAuthenticationId: string, kedaTriggerAuthenticationRequest?: KedaTriggerAuthenticationRequest, options?: RawAxiosRequestConfig) {
|
|
53969
|
-
return KedaTriggerAuthenticationApiFp(this.configuration).updateKedaTriggerAuthentication(organizationId, triggerAuthenticationId, kedaTriggerAuthenticationRequest, options).then((request) => request(this.axios, this.basePath));
|
|
53970
|
-
}
|
|
53971
|
-
}
|
|
53972
|
-
|
|
53973
|
-
|
|
53974
|
-
|
|
53975
53519
|
/**
|
|
53976
53520
|
* LifecycleTemplateMainCallsApi - axios parameter creator
|
|
53977
53521
|
* @export
|