qovery-typescript-axios 1.1.893 → 1.1.895
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 +191 -0
- package/dist/api.d.ts +142 -0
- package/dist/api.js +90 -11
- package/dist/esm/api.d.ts +142 -0
- package/dist/esm/api.js +79 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -2383,6 +2383,83 @@ export interface ArgocdAppResponse {
|
|
|
2383
2383
|
}
|
|
2384
2384
|
|
|
2385
2385
|
|
|
2386
|
+
/**
|
|
2387
|
+
*
|
|
2388
|
+
* @export
|
|
2389
|
+
* @enum {string}
|
|
2390
|
+
*/
|
|
2391
|
+
|
|
2392
|
+
export const ArgocdAssociatedServiceType = {
|
|
2393
|
+
ARGOCD_APP: 'ARGOCD_APP'
|
|
2394
|
+
} as const;
|
|
2395
|
+
|
|
2396
|
+
export type ArgocdAssociatedServiceType = typeof ArgocdAssociatedServiceType[keyof typeof ArgocdAssociatedServiceType];
|
|
2397
|
+
|
|
2398
|
+
|
|
2399
|
+
/**
|
|
2400
|
+
*
|
|
2401
|
+
* @export
|
|
2402
|
+
* @interface ArgocdAssociatedServicesResponse
|
|
2403
|
+
*/
|
|
2404
|
+
export interface ArgocdAssociatedServicesResponse {
|
|
2405
|
+
/**
|
|
2406
|
+
*
|
|
2407
|
+
* @type {string}
|
|
2408
|
+
* @memberof ArgocdAssociatedServicesResponse
|
|
2409
|
+
*/
|
|
2410
|
+
'project_id': string;
|
|
2411
|
+
/**
|
|
2412
|
+
*
|
|
2413
|
+
* @type {string}
|
|
2414
|
+
* @memberof ArgocdAssociatedServicesResponse
|
|
2415
|
+
*/
|
|
2416
|
+
'project_name': string;
|
|
2417
|
+
/**
|
|
2418
|
+
*
|
|
2419
|
+
* @type {string}
|
|
2420
|
+
* @memberof ArgocdAssociatedServicesResponse
|
|
2421
|
+
*/
|
|
2422
|
+
'environment_id': string;
|
|
2423
|
+
/**
|
|
2424
|
+
*
|
|
2425
|
+
* @type {string}
|
|
2426
|
+
* @memberof ArgocdAssociatedServicesResponse
|
|
2427
|
+
*/
|
|
2428
|
+
'environment_name': string;
|
|
2429
|
+
/**
|
|
2430
|
+
*
|
|
2431
|
+
* @type {string}
|
|
2432
|
+
* @memberof ArgocdAssociatedServicesResponse
|
|
2433
|
+
*/
|
|
2434
|
+
'service_id': string;
|
|
2435
|
+
/**
|
|
2436
|
+
*
|
|
2437
|
+
* @type {string}
|
|
2438
|
+
* @memberof ArgocdAssociatedServicesResponse
|
|
2439
|
+
*/
|
|
2440
|
+
'service_name': string;
|
|
2441
|
+
/**
|
|
2442
|
+
*
|
|
2443
|
+
* @type {ArgocdAssociatedServiceType}
|
|
2444
|
+
* @memberof ArgocdAssociatedServicesResponse
|
|
2445
|
+
*/
|
|
2446
|
+
'service_type': ArgocdAssociatedServiceType;
|
|
2447
|
+
}
|
|
2448
|
+
|
|
2449
|
+
|
|
2450
|
+
/**
|
|
2451
|
+
*
|
|
2452
|
+
* @export
|
|
2453
|
+
* @interface ArgocdAssociatedServicesResponseList
|
|
2454
|
+
*/
|
|
2455
|
+
export interface ArgocdAssociatedServicesResponseList {
|
|
2456
|
+
/**
|
|
2457
|
+
*
|
|
2458
|
+
* @type {Array<ArgocdAssociatedServicesResponse>}
|
|
2459
|
+
* @memberof ArgocdAssociatedServicesResponseList
|
|
2460
|
+
*/
|
|
2461
|
+
'results'?: Array<ArgocdAssociatedServicesResponse>;
|
|
2462
|
+
}
|
|
2386
2463
|
/**
|
|
2387
2464
|
*
|
|
2388
2465
|
* @export
|
|
@@ -10360,6 +10437,12 @@ export interface EksInfrastructureOutputs {
|
|
|
10360
10437
|
* @memberof EksInfrastructureOutputs
|
|
10361
10438
|
*/
|
|
10362
10439
|
'vpc_id': string;
|
|
10440
|
+
/**
|
|
10441
|
+
*
|
|
10442
|
+
* @type {EksInfrastructureOutputsExternalSecretsAutomaticAuthentication}
|
|
10443
|
+
* @memberof EksInfrastructureOutputs
|
|
10444
|
+
*/
|
|
10445
|
+
'external_secrets_automatic_authentication'?: EksInfrastructureOutputsExternalSecretsAutomaticAuthentication | null;
|
|
10363
10446
|
}
|
|
10364
10447
|
|
|
10365
10448
|
export const EksInfrastructureOutputsKindEnum = {
|
|
@@ -10368,6 +10451,19 @@ export const EksInfrastructureOutputsKindEnum = {
|
|
|
10368
10451
|
|
|
10369
10452
|
export type EksInfrastructureOutputsKindEnum = typeof EksInfrastructureOutputsKindEnum[keyof typeof EksInfrastructureOutputsKindEnum];
|
|
10370
10453
|
|
|
10454
|
+
/**
|
|
10455
|
+
*
|
|
10456
|
+
* @export
|
|
10457
|
+
* @interface EksInfrastructureOutputsExternalSecretsAutomaticAuthentication
|
|
10458
|
+
*/
|
|
10459
|
+
export interface EksInfrastructureOutputsExternalSecretsAutomaticAuthentication {
|
|
10460
|
+
/**
|
|
10461
|
+
* ARN of the IAM role used by External Secrets Operator on EKS
|
|
10462
|
+
* @type {string}
|
|
10463
|
+
* @memberof EksInfrastructureOutputsExternalSecretsAutomaticAuthentication
|
|
10464
|
+
*/
|
|
10465
|
+
'eks_role_arn': string;
|
|
10466
|
+
}
|
|
10371
10467
|
/**
|
|
10372
10468
|
*
|
|
10373
10469
|
* @export
|
|
@@ -12781,6 +12877,12 @@ export interface GkeInfrastructureOutputs {
|
|
|
12781
12877
|
* @memberof GkeInfrastructureOutputs
|
|
12782
12878
|
*/
|
|
12783
12879
|
'cluster_self_link': string;
|
|
12880
|
+
/**
|
|
12881
|
+
*
|
|
12882
|
+
* @type {GkeInfrastructureOutputsExternalSecretsAutomaticAuthentication}
|
|
12883
|
+
* @memberof GkeInfrastructureOutputs
|
|
12884
|
+
*/
|
|
12885
|
+
'external_secrets_automatic_authentication'?: GkeInfrastructureOutputsExternalSecretsAutomaticAuthentication | null;
|
|
12784
12886
|
}
|
|
12785
12887
|
|
|
12786
12888
|
export const GkeInfrastructureOutputsKindEnum = {
|
|
@@ -12789,6 +12891,19 @@ export const GkeInfrastructureOutputsKindEnum = {
|
|
|
12789
12891
|
|
|
12790
12892
|
export type GkeInfrastructureOutputsKindEnum = typeof GkeInfrastructureOutputsKindEnum[keyof typeof GkeInfrastructureOutputsKindEnum];
|
|
12791
12893
|
|
|
12894
|
+
/**
|
|
12895
|
+
*
|
|
12896
|
+
* @export
|
|
12897
|
+
* @interface GkeInfrastructureOutputsExternalSecretsAutomaticAuthentication
|
|
12898
|
+
*/
|
|
12899
|
+
export interface GkeInfrastructureOutputsExternalSecretsAutomaticAuthentication {
|
|
12900
|
+
/**
|
|
12901
|
+
* GCP service account email used by External Secrets Operator on GKE
|
|
12902
|
+
* @type {string}
|
|
12903
|
+
* @memberof GkeInfrastructureOutputsExternalSecretsAutomaticAuthentication
|
|
12904
|
+
*/
|
|
12905
|
+
'gke_service_account': string;
|
|
12906
|
+
}
|
|
12792
12907
|
/**
|
|
12793
12908
|
*
|
|
12794
12909
|
* @export
|
|
@@ -29447,6 +29562,47 @@ export const ArgoCDApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
29447
29562
|
|
|
29448
29563
|
|
|
29449
29564
|
|
|
29565
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
29566
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
29567
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
29568
|
+
|
|
29569
|
+
return {
|
|
29570
|
+
url: toPathString(localVarUrlObj),
|
|
29571
|
+
options: localVarRequestOptions,
|
|
29572
|
+
};
|
|
29573
|
+
},
|
|
29574
|
+
/**
|
|
29575
|
+
* List the ArgoCD discovered apps for a cluster, mapped to their project, environment, and service context. Requires VIEWER role.
|
|
29576
|
+
* @summary Get ArgoCD associated services for a cluster
|
|
29577
|
+
* @param {string} clusterId Cluster ID
|
|
29578
|
+
* @param {*} [options] Override http request option.
|
|
29579
|
+
* @throws {RequiredError}
|
|
29580
|
+
*/
|
|
29581
|
+
getArgoCdAssociatedServices: async (clusterId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29582
|
+
// verify required parameter 'clusterId' is not null or undefined
|
|
29583
|
+
assertParamExists('getArgoCdAssociatedServices', 'clusterId', clusterId)
|
|
29584
|
+
const localVarPath = `/cluster/{clusterId}/argocdApps/associatedServices`
|
|
29585
|
+
.replace(`{${"clusterId"}}`, encodeURIComponent(String(clusterId)));
|
|
29586
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
29587
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
29588
|
+
let baseOptions;
|
|
29589
|
+
if (configuration) {
|
|
29590
|
+
baseOptions = configuration.baseOptions;
|
|
29591
|
+
}
|
|
29592
|
+
|
|
29593
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
29594
|
+
const localVarHeaderParameter = {} as any;
|
|
29595
|
+
const localVarQueryParameter = {} as any;
|
|
29596
|
+
|
|
29597
|
+
// authentication ApiKeyAuth required
|
|
29598
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
29599
|
+
|
|
29600
|
+
// authentication bearerAuth required
|
|
29601
|
+
// http bearer authentication required
|
|
29602
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
29603
|
+
|
|
29604
|
+
|
|
29605
|
+
|
|
29450
29606
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
29451
29607
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
29452
29608
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -29710,6 +29866,19 @@ export const ArgoCDApiFp = function(configuration?: Configuration) {
|
|
|
29710
29866
|
const localVarOperationServerBasePath = operationServerMap['ArgoCDApi.getArgoCdAppManifest']?.[localVarOperationServerIndex]?.url;
|
|
29711
29867
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
29712
29868
|
},
|
|
29869
|
+
/**
|
|
29870
|
+
* List the ArgoCD discovered apps for a cluster, mapped to their project, environment, and service context. Requires VIEWER role.
|
|
29871
|
+
* @summary Get ArgoCD associated services for a cluster
|
|
29872
|
+
* @param {string} clusterId Cluster ID
|
|
29873
|
+
* @param {*} [options] Override http request option.
|
|
29874
|
+
* @throws {RequiredError}
|
|
29875
|
+
*/
|
|
29876
|
+
async getArgoCdAssociatedServices(clusterId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ArgocdAssociatedServicesResponseList>> {
|
|
29877
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getArgoCdAssociatedServices(clusterId, options);
|
|
29878
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
29879
|
+
const localVarOperationServerBasePath = operationServerMap['ArgoCDApi.getArgoCdAssociatedServices']?.[localVarOperationServerIndex]?.url;
|
|
29880
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
29881
|
+
},
|
|
29713
29882
|
/**
|
|
29714
29883
|
* Retrieve the stored ArgoCD configuration for a cluster. The token is always returned as REDACTED. Requires VIEWER role.
|
|
29715
29884
|
* @summary Get ArgoCD credentials for a cluster
|
|
@@ -29827,6 +29996,16 @@ export const ArgoCDApiFactory = function (configuration?: Configuration, basePat
|
|
|
29827
29996
|
getArgoCdAppManifest(argocdAppId: string, options?: RawAxiosRequestConfig): AxiosPromise<ArgocdAppManifestResponse> {
|
|
29828
29997
|
return localVarFp.getArgoCdAppManifest(argocdAppId, options).then((request) => request(axios, basePath));
|
|
29829
29998
|
},
|
|
29999
|
+
/**
|
|
30000
|
+
* List the ArgoCD discovered apps for a cluster, mapped to their project, environment, and service context. Requires VIEWER role.
|
|
30001
|
+
* @summary Get ArgoCD associated services for a cluster
|
|
30002
|
+
* @param {string} clusterId Cluster ID
|
|
30003
|
+
* @param {*} [options] Override http request option.
|
|
30004
|
+
* @throws {RequiredError}
|
|
30005
|
+
*/
|
|
30006
|
+
getArgoCdAssociatedServices(clusterId: string, options?: RawAxiosRequestConfig): AxiosPromise<ArgocdAssociatedServicesResponseList> {
|
|
30007
|
+
return localVarFp.getArgoCdAssociatedServices(clusterId, options).then((request) => request(axios, basePath));
|
|
30008
|
+
},
|
|
29830
30009
|
/**
|
|
29831
30010
|
* Retrieve the stored ArgoCD configuration for a cluster. The token is always returned as REDACTED. Requires VIEWER role.
|
|
29832
30011
|
* @summary Get ArgoCD credentials for a cluster
|
|
@@ -29942,6 +30121,18 @@ export class ArgoCDApi extends BaseAPI {
|
|
|
29942
30121
|
return ArgoCDApiFp(this.configuration).getArgoCdAppManifest(argocdAppId, options).then((request) => request(this.axios, this.basePath));
|
|
29943
30122
|
}
|
|
29944
30123
|
|
|
30124
|
+
/**
|
|
30125
|
+
* List the ArgoCD discovered apps for a cluster, mapped to their project, environment, and service context. Requires VIEWER role.
|
|
30126
|
+
* @summary Get ArgoCD associated services for a cluster
|
|
30127
|
+
* @param {string} clusterId Cluster ID
|
|
30128
|
+
* @param {*} [options] Override http request option.
|
|
30129
|
+
* @throws {RequiredError}
|
|
30130
|
+
* @memberof ArgoCDApi
|
|
30131
|
+
*/
|
|
30132
|
+
public getArgoCdAssociatedServices(clusterId: string, options?: RawAxiosRequestConfig) {
|
|
30133
|
+
return ArgoCDApiFp(this.configuration).getArgoCdAssociatedServices(clusterId, options).then((request) => request(this.axios, this.basePath));
|
|
30134
|
+
}
|
|
30135
|
+
|
|
29945
30136
|
/**
|
|
29946
30137
|
* Retrieve the stored ArgoCD configuration for a cluster. The token is always returned as REDACTED. Requires VIEWER role.
|
|
29947
30138
|
* @summary Get ArgoCD credentials for a cluster
|
package/dist/api.d.ts
CHANGED
|
@@ -2294,6 +2294,77 @@ export interface ArgocdAppResponse {
|
|
|
2294
2294
|
*/
|
|
2295
2295
|
'git_repository'?: ApplicationGitRepository | null;
|
|
2296
2296
|
}
|
|
2297
|
+
/**
|
|
2298
|
+
*
|
|
2299
|
+
* @export
|
|
2300
|
+
* @enum {string}
|
|
2301
|
+
*/
|
|
2302
|
+
export declare const ArgocdAssociatedServiceType: {
|
|
2303
|
+
readonly ARGOCD_APP: "ARGOCD_APP";
|
|
2304
|
+
};
|
|
2305
|
+
export type ArgocdAssociatedServiceType = typeof ArgocdAssociatedServiceType[keyof typeof ArgocdAssociatedServiceType];
|
|
2306
|
+
/**
|
|
2307
|
+
*
|
|
2308
|
+
* @export
|
|
2309
|
+
* @interface ArgocdAssociatedServicesResponse
|
|
2310
|
+
*/
|
|
2311
|
+
export interface ArgocdAssociatedServicesResponse {
|
|
2312
|
+
/**
|
|
2313
|
+
*
|
|
2314
|
+
* @type {string}
|
|
2315
|
+
* @memberof ArgocdAssociatedServicesResponse
|
|
2316
|
+
*/
|
|
2317
|
+
'project_id': string;
|
|
2318
|
+
/**
|
|
2319
|
+
*
|
|
2320
|
+
* @type {string}
|
|
2321
|
+
* @memberof ArgocdAssociatedServicesResponse
|
|
2322
|
+
*/
|
|
2323
|
+
'project_name': string;
|
|
2324
|
+
/**
|
|
2325
|
+
*
|
|
2326
|
+
* @type {string}
|
|
2327
|
+
* @memberof ArgocdAssociatedServicesResponse
|
|
2328
|
+
*/
|
|
2329
|
+
'environment_id': string;
|
|
2330
|
+
/**
|
|
2331
|
+
*
|
|
2332
|
+
* @type {string}
|
|
2333
|
+
* @memberof ArgocdAssociatedServicesResponse
|
|
2334
|
+
*/
|
|
2335
|
+
'environment_name': string;
|
|
2336
|
+
/**
|
|
2337
|
+
*
|
|
2338
|
+
* @type {string}
|
|
2339
|
+
* @memberof ArgocdAssociatedServicesResponse
|
|
2340
|
+
*/
|
|
2341
|
+
'service_id': string;
|
|
2342
|
+
/**
|
|
2343
|
+
*
|
|
2344
|
+
* @type {string}
|
|
2345
|
+
* @memberof ArgocdAssociatedServicesResponse
|
|
2346
|
+
*/
|
|
2347
|
+
'service_name': string;
|
|
2348
|
+
/**
|
|
2349
|
+
*
|
|
2350
|
+
* @type {ArgocdAssociatedServiceType}
|
|
2351
|
+
* @memberof ArgocdAssociatedServicesResponse
|
|
2352
|
+
*/
|
|
2353
|
+
'service_type': ArgocdAssociatedServiceType;
|
|
2354
|
+
}
|
|
2355
|
+
/**
|
|
2356
|
+
*
|
|
2357
|
+
* @export
|
|
2358
|
+
* @interface ArgocdAssociatedServicesResponseList
|
|
2359
|
+
*/
|
|
2360
|
+
export interface ArgocdAssociatedServicesResponseList {
|
|
2361
|
+
/**
|
|
2362
|
+
*
|
|
2363
|
+
* @type {Array<ArgocdAssociatedServicesResponse>}
|
|
2364
|
+
* @memberof ArgocdAssociatedServicesResponseList
|
|
2365
|
+
*/
|
|
2366
|
+
'results'?: Array<ArgocdAssociatedServicesResponse>;
|
|
2367
|
+
}
|
|
2297
2368
|
/**
|
|
2298
2369
|
*
|
|
2299
2370
|
* @export
|
|
@@ -10042,11 +10113,30 @@ export interface EksInfrastructureOutputs {
|
|
|
10042
10113
|
* @memberof EksInfrastructureOutputs
|
|
10043
10114
|
*/
|
|
10044
10115
|
'vpc_id': string;
|
|
10116
|
+
/**
|
|
10117
|
+
*
|
|
10118
|
+
* @type {EksInfrastructureOutputsExternalSecretsAutomaticAuthentication}
|
|
10119
|
+
* @memberof EksInfrastructureOutputs
|
|
10120
|
+
*/
|
|
10121
|
+
'external_secrets_automatic_authentication'?: EksInfrastructureOutputsExternalSecretsAutomaticAuthentication | null;
|
|
10045
10122
|
}
|
|
10046
10123
|
export declare const EksInfrastructureOutputsKindEnum: {
|
|
10047
10124
|
readonly EKS: "EKS";
|
|
10048
10125
|
};
|
|
10049
10126
|
export type EksInfrastructureOutputsKindEnum = typeof EksInfrastructureOutputsKindEnum[keyof typeof EksInfrastructureOutputsKindEnum];
|
|
10127
|
+
/**
|
|
10128
|
+
*
|
|
10129
|
+
* @export
|
|
10130
|
+
* @interface EksInfrastructureOutputsExternalSecretsAutomaticAuthentication
|
|
10131
|
+
*/
|
|
10132
|
+
export interface EksInfrastructureOutputsExternalSecretsAutomaticAuthentication {
|
|
10133
|
+
/**
|
|
10134
|
+
* ARN of the IAM role used by External Secrets Operator on EKS
|
|
10135
|
+
* @type {string}
|
|
10136
|
+
* @memberof EksInfrastructureOutputsExternalSecretsAutomaticAuthentication
|
|
10137
|
+
*/
|
|
10138
|
+
'eks_role_arn': string;
|
|
10139
|
+
}
|
|
10050
10140
|
/**
|
|
10051
10141
|
*
|
|
10052
10142
|
* @export
|
|
@@ -12382,11 +12472,30 @@ export interface GkeInfrastructureOutputs {
|
|
|
12382
12472
|
* @memberof GkeInfrastructureOutputs
|
|
12383
12473
|
*/
|
|
12384
12474
|
'cluster_self_link': string;
|
|
12475
|
+
/**
|
|
12476
|
+
*
|
|
12477
|
+
* @type {GkeInfrastructureOutputsExternalSecretsAutomaticAuthentication}
|
|
12478
|
+
* @memberof GkeInfrastructureOutputs
|
|
12479
|
+
*/
|
|
12480
|
+
'external_secrets_automatic_authentication'?: GkeInfrastructureOutputsExternalSecretsAutomaticAuthentication | null;
|
|
12385
12481
|
}
|
|
12386
12482
|
export declare const GkeInfrastructureOutputsKindEnum: {
|
|
12387
12483
|
readonly GKE: "GKE";
|
|
12388
12484
|
};
|
|
12389
12485
|
export type GkeInfrastructureOutputsKindEnum = typeof GkeInfrastructureOutputsKindEnum[keyof typeof GkeInfrastructureOutputsKindEnum];
|
|
12486
|
+
/**
|
|
12487
|
+
*
|
|
12488
|
+
* @export
|
|
12489
|
+
* @interface GkeInfrastructureOutputsExternalSecretsAutomaticAuthentication
|
|
12490
|
+
*/
|
|
12491
|
+
export interface GkeInfrastructureOutputsExternalSecretsAutomaticAuthentication {
|
|
12492
|
+
/**
|
|
12493
|
+
* GCP service account email used by External Secrets Operator on GKE
|
|
12494
|
+
* @type {string}
|
|
12495
|
+
* @memberof GkeInfrastructureOutputsExternalSecretsAutomaticAuthentication
|
|
12496
|
+
*/
|
|
12497
|
+
'gke_service_account': string;
|
|
12498
|
+
}
|
|
12390
12499
|
/**
|
|
12391
12500
|
*
|
|
12392
12501
|
* @export
|
|
@@ -25601,6 +25710,14 @@ export declare const ArgoCDApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
25601
25710
|
* @throws {RequiredError}
|
|
25602
25711
|
*/
|
|
25603
25712
|
getArgoCdAppManifest: (argocdAppId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25713
|
+
/**
|
|
25714
|
+
* List the ArgoCD discovered apps for a cluster, mapped to their project, environment, and service context. Requires VIEWER role.
|
|
25715
|
+
* @summary Get ArgoCD associated services for a cluster
|
|
25716
|
+
* @param {string} clusterId Cluster ID
|
|
25717
|
+
* @param {*} [options] Override http request option.
|
|
25718
|
+
* @throws {RequiredError}
|
|
25719
|
+
*/
|
|
25720
|
+
getArgoCdAssociatedServices: (clusterId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25604
25721
|
/**
|
|
25605
25722
|
* Retrieve the stored ArgoCD configuration for a cluster. The token is always returned as REDACTED. Requires VIEWER role.
|
|
25606
25723
|
* @summary Get ArgoCD credentials for a cluster
|
|
@@ -25684,6 +25801,14 @@ export declare const ArgoCDApiFp: (configuration?: Configuration) => {
|
|
|
25684
25801
|
* @throws {RequiredError}
|
|
25685
25802
|
*/
|
|
25686
25803
|
getArgoCdAppManifest(argocdAppId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ArgocdAppManifestResponse>>;
|
|
25804
|
+
/**
|
|
25805
|
+
* List the ArgoCD discovered apps for a cluster, mapped to their project, environment, and service context. Requires VIEWER role.
|
|
25806
|
+
* @summary Get ArgoCD associated services for a cluster
|
|
25807
|
+
* @param {string} clusterId Cluster ID
|
|
25808
|
+
* @param {*} [options] Override http request option.
|
|
25809
|
+
* @throws {RequiredError}
|
|
25810
|
+
*/
|
|
25811
|
+
getArgoCdAssociatedServices(clusterId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ArgocdAssociatedServicesResponseList>>;
|
|
25687
25812
|
/**
|
|
25688
25813
|
* Retrieve the stored ArgoCD configuration for a cluster. The token is always returned as REDACTED. Requires VIEWER role.
|
|
25689
25814
|
* @summary Get ArgoCD credentials for a cluster
|
|
@@ -25767,6 +25892,14 @@ export declare const ArgoCDApiFactory: (configuration?: Configuration, basePath?
|
|
|
25767
25892
|
* @throws {RequiredError}
|
|
25768
25893
|
*/
|
|
25769
25894
|
getArgoCdAppManifest(argocdAppId: string, options?: RawAxiosRequestConfig): AxiosPromise<ArgocdAppManifestResponse>;
|
|
25895
|
+
/**
|
|
25896
|
+
* List the ArgoCD discovered apps for a cluster, mapped to their project, environment, and service context. Requires VIEWER role.
|
|
25897
|
+
* @summary Get ArgoCD associated services for a cluster
|
|
25898
|
+
* @param {string} clusterId Cluster ID
|
|
25899
|
+
* @param {*} [options] Override http request option.
|
|
25900
|
+
* @throws {RequiredError}
|
|
25901
|
+
*/
|
|
25902
|
+
getArgoCdAssociatedServices(clusterId: string, options?: RawAxiosRequestConfig): AxiosPromise<ArgocdAssociatedServicesResponseList>;
|
|
25770
25903
|
/**
|
|
25771
25904
|
* Retrieve the stored ArgoCD configuration for a cluster. The token is always returned as REDACTED. Requires VIEWER role.
|
|
25772
25905
|
* @summary Get ArgoCD credentials for a cluster
|
|
@@ -25857,6 +25990,15 @@ export declare class ArgoCDApi extends BaseAPI {
|
|
|
25857
25990
|
* @memberof ArgoCDApi
|
|
25858
25991
|
*/
|
|
25859
25992
|
getArgoCdAppManifest(argocdAppId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ArgocdAppManifestResponse, any, {}>>;
|
|
25993
|
+
/**
|
|
25994
|
+
* List the ArgoCD discovered apps for a cluster, mapped to their project, environment, and service context. Requires VIEWER role.
|
|
25995
|
+
* @summary Get ArgoCD associated services for a cluster
|
|
25996
|
+
* @param {string} clusterId Cluster ID
|
|
25997
|
+
* @param {*} [options] Override http request option.
|
|
25998
|
+
* @throws {RequiredError}
|
|
25999
|
+
* @memberof ArgoCDApi
|
|
26000
|
+
*/
|
|
26001
|
+
getArgoCdAssociatedServices(clusterId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ArgocdAssociatedServicesResponseList, any, {}>>;
|
|
25860
26002
|
/**
|
|
25861
26003
|
* Retrieve the stored ArgoCD configuration for a cluster. The token is always returned as REDACTED. Requires VIEWER role.
|
|
25862
26004
|
* @summary Get ArgoCD credentials for a cluster
|
package/dist/api.js
CHANGED
|
@@ -22,17 +22,17 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
22
22
|
});
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.
|
|
26
|
-
exports.
|
|
27
|
-
exports.
|
|
28
|
-
exports.
|
|
29
|
-
exports.
|
|
30
|
-
exports.
|
|
31
|
-
exports.
|
|
32
|
-
exports.
|
|
33
|
-
exports.
|
|
34
|
-
exports.
|
|
35
|
-
exports.VariableMainCallsApi = exports.VariableMainCallsApiFactory = exports.VariableMainCallsApiFp = exports.VariableMainCallsApiAxiosParamCreator = exports.UserSignUpApi = exports.UserSignUpApiFactory = exports.UserSignUpApiFp = exports.UserSignUpApiAxiosParamCreator = exports.TerraformsApi = exports.TerraformsApiFactory = exports.TerraformsApiFp = exports.TerraformsApiAxiosParamCreator = exports.TerraformResourcesApi = exports.TerraformResourcesApiFactory = exports.TerraformResourcesApiFp = exports.TerraformResourcesApiAxiosParamCreator = exports.TerraformMainCallsApi = exports.TerraformMainCallsApiFactory = exports.TerraformMainCallsApiFp = exports.TerraformMainCallsApiAxiosParamCreator = exports.TerraformDeploymentRestrictionApi = exports.TerraformDeploymentRestrictionApiFactory = exports.TerraformDeploymentRestrictionApiFp = exports.TerraformDeploymentRestrictionApiAxiosParamCreator = exports.TerraformDeploymentHistoryApi = exports.TerraformDeploymentHistoryApiFactory = exports.TerraformDeploymentHistoryApiFp = exports.TerraformDeploymentHistoryApiAxiosParamCreator = exports.TerraformConfigurationApi = exports.TerraformConfigurationApiFactory = exports.TerraformConfigurationApiFp = exports.TerraformConfigurationApiAxiosParamCreator = exports.TerraformActionsApi = exports.TerraformActionsApiFactory = exports.TerraformActionsApiFp = exports.TerraformActionsApiAxiosParamCreator = exports.GetIngressDeploymentStatusServiceTypeEnum = exports.ServiceStatusApi = void 0;
|
|
25
|
+
exports.CompanySizeEnum = exports.ClusterStateEnum = exports.ClusterLogsStepEnum = exports.ClusterFeatureResponseTypeEnum = exports.ClusterFeatureResponseValueTypeEnum = exports.ClusterFeatureNatGatewayTypeScalewayTypeEnum = exports.ClusterFeatureNatGatewayTypeScalewayProviderEnum = exports.ClusterFeatureNatGatewayTypeGcpProviderEnum = exports.ClusterDeploymentStatusEnum = exports.ClusterDeleteMode = exports.ClusterAdvancedSettingsAwsEksEc2MetadataImdsEnum = exports.ClusterAdvancedSettingsAwsEksEfsTransitionToIaEnum = exports.ClusterAdvancedSettingsAwsEksEfsPerformanceModeEnum = exports.ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum = exports.ClusterAdvancedSettingsLokiDeploymentModeEnum = exports.CloudflareDnsProviderResponseProviderEnum = exports.CloudflareDnsProviderRequestProviderEnum = exports.CloudVendorEnum = exports.CloudProviderEnum = exports.CheckedCustomDomainStatus = exports.BuildModeEnum = exports.AzureStaticClusterCredentialsObjectTypeEnum = exports.AwsStaticCredentialsRequestTypeEnum = exports.AwsStaticCredentialsAuthDtoModeEnum = exports.AwsStaticClusterCredentialsObjectTypeEnum = exports.AwsSecretManagerEndpointDtoModeEnum = exports.AwsRoleCredentialsRequestTypeEnum = exports.AwsRoleClusterCredentialsObjectTypeEnum = exports.AwsRoleArnAuthDtoModeEnum = exports.AwsParameterStoreEndpointDtoModeEnum = exports.AutoscalingMode = exports.AutomaticallyConfiguredAuthDtoModeEnum = exports.ArgocdAssociatedServiceType = exports.ArgoCdConnectionStatusEnum = exports.ArgoCdConnectionCheckResponseReasonEnum = exports.ApplicationAdvancedSettingsDeploymentUpdateStrategyTypeEnum = exports.ApplicationAdvancedSettingsDeploymentTopologySpreadZoneEnum = exports.ApplicationAdvancedSettingsDeploymentAntiaffinityPodEnum = exports.AnnotationsGroupAssociatedItemType = exports.AlertTargetType = exports.AlertSeverity = exports.AlertRuleState = exports.AlertRuleSource = exports.AlertRuleConditionOperator = exports.AlertRuleConditionKind = exports.AlertRuleConditionFunction = exports.AlertReceiverType = exports.AksInfrastructureOutputsKindEnum = exports.APIVariableTypeEnum = exports.APIVariableScopeEnum = void 0;
|
|
26
|
+
exports.JobScheduleEvent = exports.JobLifecycleTypeEnum = exports.JobForceEvent = exports.InvoiceStatusEnum = exports.InviteStatusEnum = exports.InviteMemberRoleEnum = exports.HelmRepositoryKindEnum = exports.HelmRepositoryAssociatedServiceType = exports.HelmPortProtocolEnum = exports.HelmForceEvent = exports.GkeInfrastructureOutputsKindEnum = exports.GitWebhookStatusResponseProviderEnum = exports.GitWebhookStatusResponseStatusEnum = exports.GitTokenAssociatedServiceType = exports.GitProviderEnum = exports.GenericClusterCredentialsObjectTypeEnum = exports.GcpStaticClusterCredentialsObjectTypeEnum = exports.GcpSecretManagerEndpointDtoModeEnum = exports.GcpJsonCredentialsAuthDtoModeEnum = exports.EnvironmentStatusEventOriginEnum = exports.EnvironmentModeEnum = exports.EnvironmentLogTypeEnum = exports.EnvironmentDeploymentStatusEnum = exports.EksInfrastructureOutputsKindEnum = exports.EksAnywhereVsphereStaticCredentialsRequestTypeEnum = exports.EksAnywhereVsphereRoleCredentialsRequestTypeEnum = exports.EksAnywhereVsphereClusterCredentialsObjectTypeEnum = exports.DockerfileFragmentInlineTypeEnum = exports.DockerfileFragmentFileTypeEnum = exports.DeploymentRestrictionTypeEnum = exports.DeploymentRestrictionModeEnum = exports.DeploymentInfraReason = exports.DeploymentHistoryTriggerAction = exports.DeploymentHistoryStatusEnum = exports.DeploymentHistoryServiceDetailsOneOf2JobTypeEnum = exports.DeploymentHistoryActionStatus = exports.DeleteTerraformAction = exports.DatabaseTypeEnum = exports.DatabaseModeEnum = exports.DatabaseEditRequestDiskTypeEnum = exports.DatabaseAccessibilityEnum = exports.DatabaseDiskTypeEnum = exports.CustomDomainStatusEnum = exports.CreateEnvironmentModeEnum = exports.CpuArchitectureEnum = exports.ContainerRegistryKindEnum = exports.ContainerRegistryAssociatedServiceType = exports.ContainerAdvancedSettingsDeploymentUpdateStrategyTypeEnum = exports.ContainerAdvancedSettingsDeploymentTopologySpreadZoneEnum = exports.ContainerAdvancedSettingsDeploymentAntiaffinityPodEnum = void 0;
|
|
27
|
+
exports.TerraformDeployRequestActionEnum = exports.TerraformAutoDeployConfigTerraformActionEnum = exports.StorageTypeEnum = exports.StepMetricStatusEnum = exports.StatusKindEnum = exports.StateEnum = exports.StageStepMetricNameEnum = exports.StageStatusEnum = exports.ServicesOverviewResponseManagedByEnum = exports.ServiceTypeForVariableEnum = exports.ServiceTypeEnum = exports.ServiceSubActionEnum = exports.ServiceStepMetricNameEnum = exports.ServiceLightResponseJobTypeEnum = exports.ServiceDeploymentStatusEnum = exports.ServiceActionStatusEnum = exports.ServiceActionEnum = exports.ScalewayClusterCredentialsObjectTypeEnum = exports.Route53StaticCredentialsResponseTypeEnum = exports.Route53StaticCredentialsRequestTypeEnum = exports.Route53DnsProviderResponseProviderEnum = exports.Route53DnsProviderRequestProviderEnum = exports.RewardClaimTypeEnum = exports.RegistryMirroringModeEnum = exports.QueuedDeploymentRequestWithStagesStagesInnerServicesInnerDetailsOneOfJobTypeEnum = exports.QoveryDnsProviderResponseProviderEnum = exports.QoveryDnsProviderRequestProviderEnum = exports.PortProtocolEnum = exports.PlanEnum = exports.OrganizationWebhookKindEnum = exports.OrganizationWebhookEventEnum = exports.OrganizationEventType = exports.OrganizationEventTargetType = exports.OrganizationEventTargetLevel = exports.OrganizationEventSubTargetType = exports.OrganizationEventOrigin = exports.OrganizationCustomRoleProjectPermission = exports.OrganizationCustomRoleClusterPermission = exports.OrganizationApiTokenScope = exports.OrganizationAnnotationsGroupScopeEnum = exports.ObservabilityResourceProfile = exports.MetricsConfigurationManagedByQoveryKindEnum = exports.LinkedServiceTypeEnum = exports.LabelsGroupAssociatedItemType = exports.KubernetesEnum = exports.KedaScalerRole = exports.KarpenterNodePoolRequirementOperator = exports.KarpenterNodePoolRequirementKey = exports.KapsuleInfrastructureOutputsKindEnum = exports.JobTypeEnum = void 0;
|
|
28
|
+
exports.ApplicationMainCallsApi = exports.ApplicationMainCallsApiFactory = exports.ApplicationMainCallsApiFp = exports.ApplicationMainCallsApiAxiosParamCreator = exports.ApplicationLogsApi = exports.ApplicationLogsApiFactory = exports.ApplicationLogsApiFp = exports.ApplicationLogsApiAxiosParamCreator = exports.ApplicationEnvironmentVariableApi = exports.ApplicationEnvironmentVariableApiFactory = exports.ApplicationEnvironmentVariableApiFp = exports.ApplicationEnvironmentVariableApiAxiosParamCreator = exports.ApplicationDeploymentRestrictionApi = exports.ApplicationDeploymentRestrictionApiFactory = exports.ApplicationDeploymentRestrictionApiFp = exports.ApplicationDeploymentRestrictionApiAxiosParamCreator = exports.ApplicationDeploymentHistoryApi = exports.ApplicationDeploymentHistoryApiFactory = exports.ApplicationDeploymentHistoryApiFp = exports.ApplicationDeploymentHistoryApiAxiosParamCreator = exports.ApplicationCustomDomainApi = exports.ApplicationCustomDomainApiFactory = exports.ApplicationCustomDomainApiFp = exports.ApplicationCustomDomainApiAxiosParamCreator = exports.ApplicationConfigurationApi = exports.ApplicationConfigurationApiFactory = exports.ApplicationConfigurationApiFp = exports.ApplicationConfigurationApiAxiosParamCreator = exports.ApplicationActionsApi = exports.ApplicationActionsApiFactory = exports.ApplicationActionsApiFp = exports.ApplicationActionsApiAxiosParamCreator = exports.AlertRulesApi = exports.AlertRulesApiFactory = exports.AlertRulesApiFp = exports.AlertRulesApiAxiosParamCreator = exports.AlertReceiversApi = exports.AlertReceiversApiFactory = exports.AlertReceiversApiFp = exports.AlertReceiversApiAxiosParamCreator = exports.AccountInfoApi = exports.AccountInfoApiFactory = exports.AccountInfoApiFp = exports.AccountInfoApiAxiosParamCreator = exports.WeekdayEnum = exports.TypeOfUseEnum = exports.TfVarsDiscoveryModeSpecificPathsTypeEnum = exports.TfVarsDiscoveryModeAutoDiscoverTypeEnum = exports.TerraformResourceResponseModeEnum = exports.TerraformEngineEnum = void 0;
|
|
29
|
+
exports.ContainerDeploymentHistoryApi = exports.ContainerDeploymentHistoryApiFactory = exports.ContainerDeploymentHistoryApiFp = exports.ContainerDeploymentHistoryApiAxiosParamCreator = exports.ContainerCustomDomainApi = exports.ContainerCustomDomainApiFactory = exports.ContainerCustomDomainApiFp = exports.ContainerCustomDomainApiAxiosParamCreator = exports.ContainerConfigurationApi = exports.ContainerConfigurationApiFactory = exports.ContainerConfigurationApiFp = exports.ContainerConfigurationApiAxiosParamCreator = exports.ContainerActionsApi = exports.ContainerActionsApiFactory = exports.ContainerActionsApiFp = exports.ContainerActionsApiAxiosParamCreator = exports.ClustersApi = exports.ClustersApiFactory = exports.ClustersApiFp = exports.ClustersApiAxiosParamCreator = exports.CloudProviderCredentialsApi = exports.CloudProviderCredentialsApiFactory = exports.CloudProviderCredentialsApiFp = exports.CloudProviderCredentialsApiAxiosParamCreator = exports.ListAzureAKSInstanceTypeGpuEnum = exports.ListAWSEKSInstanceTypeGpuEnum = exports.CloudProviderApi = exports.CloudProviderApiFactory = exports.CloudProviderApiFp = exports.CloudProviderApiAxiosParamCreator = exports.BillingApi = exports.BillingApiFactory = exports.BillingApiFp = exports.BillingApiAxiosParamCreator = exports.BackupsApi = exports.BackupsApiFactory = exports.BackupsApiFp = exports.BackupsApiAxiosParamCreator = exports.ArgoCDApi = exports.ArgoCDApiFactory = exports.ArgoCDApiFp = exports.ArgoCDApiAxiosParamCreator = exports.ApplicationsApi = exports.ApplicationsApiFactory = exports.ApplicationsApiFp = exports.ApplicationsApiAxiosParamCreator = exports.ApplicationSecretApi = exports.ApplicationSecretApiFactory = exports.ApplicationSecretApiFp = exports.ApplicationSecretApiAxiosParamCreator = void 0;
|
|
30
|
+
exports.DeploymentQueueActionsApiFp = exports.DeploymentQueueActionsApiAxiosParamCreator = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.DatabasesApi = exports.DatabasesApiFactory = exports.DatabasesApiFp = exports.DatabasesApiAxiosParamCreator = exports.DatabaseMainCallsApi = exports.DatabaseMainCallsApiFactory = exports.DatabaseMainCallsApiFp = exports.DatabaseMainCallsApiAxiosParamCreator = exports.DatabaseDeploymentHistoryApi = exports.DatabaseDeploymentHistoryApiFactory = exports.DatabaseDeploymentHistoryApiFp = exports.DatabaseDeploymentHistoryApiAxiosParamCreator = exports.DatabaseApplicationApi = exports.DatabaseApplicationApiFactory = exports.DatabaseApplicationApiFp = exports.DatabaseApplicationApiAxiosParamCreator = exports.DatabaseActionsApi = exports.DatabaseActionsApiFactory = exports.DatabaseActionsApiFp = exports.DatabaseActionsApiAxiosParamCreator = exports.ContainersApi = exports.ContainersApiFactory = exports.ContainersApiFp = exports.ContainersApiAxiosParamCreator = exports.ContainerSecretApi = exports.ContainerSecretApiFactory = exports.ContainerSecretApiFp = exports.ContainerSecretApiAxiosParamCreator = exports.ContainerRegistriesApi = exports.ContainerRegistriesApiFactory = exports.ContainerRegistriesApiFp = exports.ContainerRegistriesApiAxiosParamCreator = exports.ContainerMainCallsApi = exports.ContainerMainCallsApiFactory = exports.ContainerMainCallsApiFp = exports.ContainerMainCallsApiAxiosParamCreator = exports.ContainerLogsApi = exports.ContainerLogsApiFactory = exports.ContainerLogsApiFp = exports.ContainerLogsApiAxiosParamCreator = exports.ContainerEnvironmentVariableApi = exports.ContainerEnvironmentVariableApiFactory = exports.ContainerEnvironmentVariableApiFp = exports.ContainerEnvironmentVariableApiAxiosParamCreator = void 0;
|
|
31
|
+
exports.GitRepositoriesApi = exports.GitRepositoriesApiFactory = exports.GitRepositoriesApiFp = exports.GitRepositoriesApiAxiosParamCreator = exports.EnvironmentsApi = exports.EnvironmentsApiFactory = exports.EnvironmentsApiFp = exports.EnvironmentsApiAxiosParamCreator = exports.EnvironmentVariableApi = exports.EnvironmentVariableApiFactory = exports.EnvironmentVariableApiFp = exports.EnvironmentVariableApiAxiosParamCreator = exports.EnvironmentSecretApi = exports.EnvironmentSecretApiFactory = exports.EnvironmentSecretApiFp = exports.EnvironmentSecretApiAxiosParamCreator = exports.EnvironmentMainCallsApi = exports.EnvironmentMainCallsApiFactory = exports.EnvironmentMainCallsApiFp = exports.EnvironmentMainCallsApiAxiosParamCreator = exports.EnvironmentLogsApi = exports.EnvironmentLogsApiFactory = exports.EnvironmentLogsApiFp = exports.EnvironmentLogsApiAxiosParamCreator = exports.EnvironmentExportApi = exports.EnvironmentExportApiFactory = exports.EnvironmentExportApiFp = exports.EnvironmentExportApiAxiosParamCreator = exports.EnvironmentDeploymentRuleApi = exports.EnvironmentDeploymentRuleApiFactory = exports.EnvironmentDeploymentRuleApiFp = exports.EnvironmentDeploymentRuleApiAxiosParamCreator = exports.EnvironmentDeploymentHistoryApi = exports.EnvironmentDeploymentHistoryApiFactory = exports.EnvironmentDeploymentHistoryApiFp = exports.EnvironmentDeploymentHistoryApiAxiosParamCreator = exports.EnvironmentActionsApi = exports.EnvironmentActionsApiFactory = exports.EnvironmentActionsApiFp = exports.EnvironmentActionsApiAxiosParamCreator = exports.EnvironmentApi = exports.EnvironmentApiFactory = exports.EnvironmentApiFp = exports.EnvironmentApiAxiosParamCreator = exports.DeploymentStageMainCallsApi = exports.DeploymentStageMainCallsApiFactory = exports.DeploymentStageMainCallsApiFp = exports.DeploymentStageMainCallsApiAxiosParamCreator = exports.DeploymentQueueActionsApi = exports.DeploymentQueueActionsApiFactory = void 0;
|
|
32
|
+
exports.JobDeploymentRestrictionApiFp = exports.JobDeploymentRestrictionApiAxiosParamCreator = exports.JobDeploymentHistoryApi = exports.JobDeploymentHistoryApiFactory = exports.JobDeploymentHistoryApiFp = exports.JobDeploymentHistoryApiAxiosParamCreator = exports.JobConfigurationApi = exports.JobConfigurationApiFactory = exports.JobConfigurationApiFp = exports.JobConfigurationApiAxiosParamCreator = exports.JobActionsApi = exports.JobActionsApiFactory = exports.JobActionsApiFp = exports.JobActionsApiAxiosParamCreator = exports.HelmsApi = exports.HelmsApiFactory = exports.HelmsApiFp = exports.HelmsApiAxiosParamCreator = exports.HelmRepositoriesApi = exports.HelmRepositoriesApiFactory = exports.HelmRepositoriesApiFp = exports.HelmRepositoriesApiAxiosParamCreator = exports.HelmMainCallsApi = exports.HelmMainCallsApiFactory = exports.HelmMainCallsApiFp = exports.HelmMainCallsApiAxiosParamCreator = exports.HelmDeploymentRestrictionApi = exports.HelmDeploymentRestrictionApiFactory = exports.HelmDeploymentRestrictionApiFp = exports.HelmDeploymentRestrictionApiAxiosParamCreator = exports.HelmDeploymentHistoryApi = exports.HelmDeploymentHistoryApiFactory = exports.HelmDeploymentHistoryApiFp = exports.HelmDeploymentHistoryApiAxiosParamCreator = exports.HelmCustomDomainApi = exports.HelmCustomDomainApiFactory = exports.HelmCustomDomainApiFp = exports.HelmCustomDomainApiAxiosParamCreator = exports.HelmConfigurationApi = exports.HelmConfigurationApiFactory = exports.HelmConfigurationApiFp = exports.HelmConfigurationApiAxiosParamCreator = exports.HelmActionsApi = exports.HelmActionsApiFactory = exports.HelmActionsApiFp = exports.HelmActionsApiAxiosParamCreator = exports.GithubAppApi = exports.GithubAppApiFactory = exports.GithubAppApiFp = exports.GithubAppApiAxiosParamCreator = void 0;
|
|
33
|
+
exports.OrganizationEnterpriseConnectionApi = exports.OrganizationEnterpriseConnectionApiFactory = exports.OrganizationEnterpriseConnectionApiFp = exports.OrganizationEnterpriseConnectionApiAxiosParamCreator = exports.OrganizationCustomRoleApi = exports.OrganizationCustomRoleApiFactory = exports.OrganizationCustomRoleApiFp = exports.OrganizationCustomRoleApiAxiosParamCreator = exports.OrganizationClusterLockApi = exports.OrganizationClusterLockApiFactory = exports.OrganizationClusterLockApiFp = exports.OrganizationClusterLockApiAxiosParamCreator = exports.OrganizationApiTokenApi = exports.OrganizationApiTokenApiFactory = exports.OrganizationApiTokenApiFp = exports.OrganizationApiTokenApiAxiosParamCreator = exports.OrganizationAnnotationsGroupApi = exports.OrganizationAnnotationsGroupApiFactory = exports.OrganizationAnnotationsGroupApiFp = exports.OrganizationAnnotationsGroupApiAxiosParamCreator = exports.OrganizationAccountGitRepositoriesApi = exports.OrganizationAccountGitRepositoriesApiFactory = exports.OrganizationAccountGitRepositoriesApiFp = exports.OrganizationAccountGitRepositoriesApiAxiosParamCreator = exports.MembersApi = exports.MembersApiFactory = exports.MembersApiFp = exports.MembersApiAxiosParamCreator = exports.LifecycleTemplateMainCallsApi = exports.LifecycleTemplateMainCallsApiFactory = exports.LifecycleTemplateMainCallsApiFp = exports.LifecycleTemplateMainCallsApiAxiosParamCreator = exports.JobsApi = exports.JobsApiFactory = exports.JobsApiFp = exports.JobsApiAxiosParamCreator = exports.JobSecretApi = exports.JobSecretApiFactory = exports.JobSecretApiFp = exports.JobSecretApiAxiosParamCreator = exports.JobMainCallsApi = exports.JobMainCallsApiFactory = exports.JobMainCallsApiFp = exports.JobMainCallsApiAxiosParamCreator = exports.JobEnvironmentVariableApi = exports.JobEnvironmentVariableApiFactory = exports.JobEnvironmentVariableApiFp = exports.JobEnvironmentVariableApiAxiosParamCreator = exports.JobDeploymentRestrictionApi = exports.JobDeploymentRestrictionApiFactory = void 0;
|
|
34
|
+
exports.ServiceStatusApiFp = exports.ServiceStatusApiAxiosParamCreator = exports.ServiceMainCallsApi = exports.ServiceMainCallsApiFactory = exports.ServiceMainCallsApiFp = exports.ServiceMainCallsApiAxiosParamCreator = exports.SecretManagerAccessApi = exports.SecretManagerAccessApiFactory = exports.SecretManagerAccessApiFp = exports.SecretManagerAccessApiAxiosParamCreator = exports.ReferralRewardsApi = exports.ReferralRewardsApiFactory = exports.ReferralRewardsApiFp = exports.ReferralRewardsApiAxiosParamCreator = exports.ProjectsApi = exports.ProjectsApiFactory = exports.ProjectsApiFp = exports.ProjectsApiAxiosParamCreator = exports.ProjectSecretApi = exports.ProjectSecretApiFactory = exports.ProjectSecretApiFp = exports.ProjectSecretApiAxiosParamCreator = exports.ProjectMainCallsApi = exports.ProjectMainCallsApiFactory = exports.ProjectMainCallsApiFp = exports.ProjectMainCallsApiAxiosParamCreator = exports.ProjectEnvironmentVariableApi = exports.ProjectEnvironmentVariableApiFactory = exports.ProjectEnvironmentVariableApiFp = exports.ProjectEnvironmentVariableApiAxiosParamCreator = exports.ProjectDeploymentRuleApi = exports.ProjectDeploymentRuleApiFactory = exports.ProjectDeploymentRuleApiFp = exports.ProjectDeploymentRuleApiAxiosParamCreator = exports.OrganizationWebhookApi = exports.OrganizationWebhookApiFactory = exports.OrganizationWebhookApiFp = exports.OrganizationWebhookApiAxiosParamCreator = exports.OrganizationMainCallsApi = exports.OrganizationMainCallsApiFactory = exports.OrganizationMainCallsApiFp = exports.OrganizationMainCallsApiAxiosParamCreator = exports.OrganizationLabelsGroupApi = exports.OrganizationLabelsGroupApiFactory = exports.OrganizationLabelsGroupApiFp = exports.OrganizationLabelsGroupApiAxiosParamCreator = exports.OrganizationEventApi = exports.OrganizationEventApiFactory = exports.OrganizationEventApiFp = exports.OrganizationEventApiAxiosParamCreator = void 0;
|
|
35
|
+
exports.VariableMainCallsApi = exports.VariableMainCallsApiFactory = exports.VariableMainCallsApiFp = exports.VariableMainCallsApiAxiosParamCreator = exports.UserSignUpApi = exports.UserSignUpApiFactory = exports.UserSignUpApiFp = exports.UserSignUpApiAxiosParamCreator = exports.TerraformsApi = exports.TerraformsApiFactory = exports.TerraformsApiFp = exports.TerraformsApiAxiosParamCreator = exports.TerraformResourcesApi = exports.TerraformResourcesApiFactory = exports.TerraformResourcesApiFp = exports.TerraformResourcesApiAxiosParamCreator = exports.TerraformMainCallsApi = exports.TerraformMainCallsApiFactory = exports.TerraformMainCallsApiFp = exports.TerraformMainCallsApiAxiosParamCreator = exports.TerraformDeploymentRestrictionApi = exports.TerraformDeploymentRestrictionApiFactory = exports.TerraformDeploymentRestrictionApiFp = exports.TerraformDeploymentRestrictionApiAxiosParamCreator = exports.TerraformDeploymentHistoryApi = exports.TerraformDeploymentHistoryApiFactory = exports.TerraformDeploymentHistoryApiFp = exports.TerraformDeploymentHistoryApiAxiosParamCreator = exports.TerraformConfigurationApi = exports.TerraformConfigurationApiFactory = exports.TerraformConfigurationApiFp = exports.TerraformConfigurationApiAxiosParamCreator = exports.TerraformActionsApi = exports.TerraformActionsApiFactory = exports.TerraformActionsApiFp = exports.TerraformActionsApiAxiosParamCreator = exports.GetIngressDeploymentStatusServiceTypeEnum = exports.ServiceStatusApi = exports.ServiceStatusApiFactory = void 0;
|
|
36
36
|
const axios_1 = require("axios");
|
|
37
37
|
// Some imports not used depending on template conditions
|
|
38
38
|
// @ts-ignore
|
|
@@ -204,6 +204,14 @@ exports.ArgoCdConnectionStatusEnum = {
|
|
|
204
204
|
CONNECTED: 'connected',
|
|
205
205
|
ERROR: 'error'
|
|
206
206
|
};
|
|
207
|
+
/**
|
|
208
|
+
*
|
|
209
|
+
* @export
|
|
210
|
+
* @enum {string}
|
|
211
|
+
*/
|
|
212
|
+
exports.ArgocdAssociatedServiceType = {
|
|
213
|
+
ARGOCD_APP: 'ARGOCD_APP'
|
|
214
|
+
};
|
|
207
215
|
exports.AutomaticallyConfiguredAuthDtoModeEnum = {
|
|
208
216
|
AUTOMATICALLY_CONFIGURED: 'AUTOMATICALLY_CONFIGURED'
|
|
209
217
|
};
|
|
@@ -6711,6 +6719,40 @@ const ArgoCDApiAxiosParamCreator = function (configuration) {
|
|
|
6711
6719
|
options: localVarRequestOptions,
|
|
6712
6720
|
};
|
|
6713
6721
|
}),
|
|
6722
|
+
/**
|
|
6723
|
+
* List the ArgoCD discovered apps for a cluster, mapped to their project, environment, and service context. Requires VIEWER role.
|
|
6724
|
+
* @summary Get ArgoCD associated services for a cluster
|
|
6725
|
+
* @param {string} clusterId Cluster ID
|
|
6726
|
+
* @param {*} [options] Override http request option.
|
|
6727
|
+
* @throws {RequiredError}
|
|
6728
|
+
*/
|
|
6729
|
+
getArgoCdAssociatedServices: (clusterId_1, ...args_1) => __awaiter(this, [clusterId_1, ...args_1], void 0, function* (clusterId, options = {}) {
|
|
6730
|
+
// verify required parameter 'clusterId' is not null or undefined
|
|
6731
|
+
(0, common_1.assertParamExists)('getArgoCdAssociatedServices', 'clusterId', clusterId);
|
|
6732
|
+
const localVarPath = `/cluster/{clusterId}/argocdApps/associatedServices`
|
|
6733
|
+
.replace(`{${"clusterId"}}`, encodeURIComponent(String(clusterId)));
|
|
6734
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6735
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
6736
|
+
let baseOptions;
|
|
6737
|
+
if (configuration) {
|
|
6738
|
+
baseOptions = configuration.baseOptions;
|
|
6739
|
+
}
|
|
6740
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
6741
|
+
const localVarHeaderParameter = {};
|
|
6742
|
+
const localVarQueryParameter = {};
|
|
6743
|
+
// authentication ApiKeyAuth required
|
|
6744
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
6745
|
+
// authentication bearerAuth required
|
|
6746
|
+
// http bearer authentication required
|
|
6747
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
6748
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
6749
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6750
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6751
|
+
return {
|
|
6752
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
6753
|
+
options: localVarRequestOptions,
|
|
6754
|
+
};
|
|
6755
|
+
}),
|
|
6714
6756
|
/**
|
|
6715
6757
|
* Retrieve the stored ArgoCD configuration for a cluster. The token is always returned as REDACTED. Requires VIEWER role.
|
|
6716
6758
|
* @summary Get ArgoCD credentials for a cluster
|
|
@@ -6950,6 +6992,22 @@ const ArgoCDApiFp = function (configuration) {
|
|
|
6950
6992
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6951
6993
|
});
|
|
6952
6994
|
},
|
|
6995
|
+
/**
|
|
6996
|
+
* List the ArgoCD discovered apps for a cluster, mapped to their project, environment, and service context. Requires VIEWER role.
|
|
6997
|
+
* @summary Get ArgoCD associated services for a cluster
|
|
6998
|
+
* @param {string} clusterId Cluster ID
|
|
6999
|
+
* @param {*} [options] Override http request option.
|
|
7000
|
+
* @throws {RequiredError}
|
|
7001
|
+
*/
|
|
7002
|
+
getArgoCdAssociatedServices(clusterId, options) {
|
|
7003
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
7004
|
+
var _a, _b, _c;
|
|
7005
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getArgoCdAssociatedServices(clusterId, options);
|
|
7006
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
7007
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ArgoCDApi.getArgoCdAssociatedServices']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
7008
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
7009
|
+
});
|
|
7010
|
+
},
|
|
6953
7011
|
/**
|
|
6954
7012
|
* Retrieve the stored ArgoCD configuration for a cluster. The token is always returned as REDACTED. Requires VIEWER role.
|
|
6955
7013
|
* @summary Get ArgoCD credentials for a cluster
|
|
@@ -7079,6 +7137,16 @@ const ArgoCDApiFactory = function (configuration, basePath, axios) {
|
|
|
7079
7137
|
getArgoCdAppManifest(argocdAppId, options) {
|
|
7080
7138
|
return localVarFp.getArgoCdAppManifest(argocdAppId, options).then((request) => request(axios, basePath));
|
|
7081
7139
|
},
|
|
7140
|
+
/**
|
|
7141
|
+
* List the ArgoCD discovered apps for a cluster, mapped to their project, environment, and service context. Requires VIEWER role.
|
|
7142
|
+
* @summary Get ArgoCD associated services for a cluster
|
|
7143
|
+
* @param {string} clusterId Cluster ID
|
|
7144
|
+
* @param {*} [options] Override http request option.
|
|
7145
|
+
* @throws {RequiredError}
|
|
7146
|
+
*/
|
|
7147
|
+
getArgoCdAssociatedServices(clusterId, options) {
|
|
7148
|
+
return localVarFp.getArgoCdAssociatedServices(clusterId, options).then((request) => request(axios, basePath));
|
|
7149
|
+
},
|
|
7082
7150
|
/**
|
|
7083
7151
|
* Retrieve the stored ArgoCD configuration for a cluster. The token is always returned as REDACTED. Requires VIEWER role.
|
|
7084
7152
|
* @summary Get ArgoCD credentials for a cluster
|
|
@@ -7189,6 +7257,17 @@ class ArgoCDApi extends base_1.BaseAPI {
|
|
|
7189
7257
|
getArgoCdAppManifest(argocdAppId, options) {
|
|
7190
7258
|
return (0, exports.ArgoCDApiFp)(this.configuration).getArgoCdAppManifest(argocdAppId, options).then((request) => request(this.axios, this.basePath));
|
|
7191
7259
|
}
|
|
7260
|
+
/**
|
|
7261
|
+
* List the ArgoCD discovered apps for a cluster, mapped to their project, environment, and service context. Requires VIEWER role.
|
|
7262
|
+
* @summary Get ArgoCD associated services for a cluster
|
|
7263
|
+
* @param {string} clusterId Cluster ID
|
|
7264
|
+
* @param {*} [options] Override http request option.
|
|
7265
|
+
* @throws {RequiredError}
|
|
7266
|
+
* @memberof ArgoCDApi
|
|
7267
|
+
*/
|
|
7268
|
+
getArgoCdAssociatedServices(clusterId, options) {
|
|
7269
|
+
return (0, exports.ArgoCDApiFp)(this.configuration).getArgoCdAssociatedServices(clusterId, options).then((request) => request(this.axios, this.basePath));
|
|
7270
|
+
}
|
|
7192
7271
|
/**
|
|
7193
7272
|
* Retrieve the stored ArgoCD configuration for a cluster. The token is always returned as REDACTED. Requires VIEWER role.
|
|
7194
7273
|
* @summary Get ArgoCD credentials for a cluster
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2294,6 +2294,77 @@ export interface ArgocdAppResponse {
|
|
|
2294
2294
|
*/
|
|
2295
2295
|
'git_repository'?: ApplicationGitRepository | null;
|
|
2296
2296
|
}
|
|
2297
|
+
/**
|
|
2298
|
+
*
|
|
2299
|
+
* @export
|
|
2300
|
+
* @enum {string}
|
|
2301
|
+
*/
|
|
2302
|
+
export declare const ArgocdAssociatedServiceType: {
|
|
2303
|
+
readonly ARGOCD_APP: "ARGOCD_APP";
|
|
2304
|
+
};
|
|
2305
|
+
export type ArgocdAssociatedServiceType = typeof ArgocdAssociatedServiceType[keyof typeof ArgocdAssociatedServiceType];
|
|
2306
|
+
/**
|
|
2307
|
+
*
|
|
2308
|
+
* @export
|
|
2309
|
+
* @interface ArgocdAssociatedServicesResponse
|
|
2310
|
+
*/
|
|
2311
|
+
export interface ArgocdAssociatedServicesResponse {
|
|
2312
|
+
/**
|
|
2313
|
+
*
|
|
2314
|
+
* @type {string}
|
|
2315
|
+
* @memberof ArgocdAssociatedServicesResponse
|
|
2316
|
+
*/
|
|
2317
|
+
'project_id': string;
|
|
2318
|
+
/**
|
|
2319
|
+
*
|
|
2320
|
+
* @type {string}
|
|
2321
|
+
* @memberof ArgocdAssociatedServicesResponse
|
|
2322
|
+
*/
|
|
2323
|
+
'project_name': string;
|
|
2324
|
+
/**
|
|
2325
|
+
*
|
|
2326
|
+
* @type {string}
|
|
2327
|
+
* @memberof ArgocdAssociatedServicesResponse
|
|
2328
|
+
*/
|
|
2329
|
+
'environment_id': string;
|
|
2330
|
+
/**
|
|
2331
|
+
*
|
|
2332
|
+
* @type {string}
|
|
2333
|
+
* @memberof ArgocdAssociatedServicesResponse
|
|
2334
|
+
*/
|
|
2335
|
+
'environment_name': string;
|
|
2336
|
+
/**
|
|
2337
|
+
*
|
|
2338
|
+
* @type {string}
|
|
2339
|
+
* @memberof ArgocdAssociatedServicesResponse
|
|
2340
|
+
*/
|
|
2341
|
+
'service_id': string;
|
|
2342
|
+
/**
|
|
2343
|
+
*
|
|
2344
|
+
* @type {string}
|
|
2345
|
+
* @memberof ArgocdAssociatedServicesResponse
|
|
2346
|
+
*/
|
|
2347
|
+
'service_name': string;
|
|
2348
|
+
/**
|
|
2349
|
+
*
|
|
2350
|
+
* @type {ArgocdAssociatedServiceType}
|
|
2351
|
+
* @memberof ArgocdAssociatedServicesResponse
|
|
2352
|
+
*/
|
|
2353
|
+
'service_type': ArgocdAssociatedServiceType;
|
|
2354
|
+
}
|
|
2355
|
+
/**
|
|
2356
|
+
*
|
|
2357
|
+
* @export
|
|
2358
|
+
* @interface ArgocdAssociatedServicesResponseList
|
|
2359
|
+
*/
|
|
2360
|
+
export interface ArgocdAssociatedServicesResponseList {
|
|
2361
|
+
/**
|
|
2362
|
+
*
|
|
2363
|
+
* @type {Array<ArgocdAssociatedServicesResponse>}
|
|
2364
|
+
* @memberof ArgocdAssociatedServicesResponseList
|
|
2365
|
+
*/
|
|
2366
|
+
'results'?: Array<ArgocdAssociatedServicesResponse>;
|
|
2367
|
+
}
|
|
2297
2368
|
/**
|
|
2298
2369
|
*
|
|
2299
2370
|
* @export
|
|
@@ -10042,11 +10113,30 @@ export interface EksInfrastructureOutputs {
|
|
|
10042
10113
|
* @memberof EksInfrastructureOutputs
|
|
10043
10114
|
*/
|
|
10044
10115
|
'vpc_id': string;
|
|
10116
|
+
/**
|
|
10117
|
+
*
|
|
10118
|
+
* @type {EksInfrastructureOutputsExternalSecretsAutomaticAuthentication}
|
|
10119
|
+
* @memberof EksInfrastructureOutputs
|
|
10120
|
+
*/
|
|
10121
|
+
'external_secrets_automatic_authentication'?: EksInfrastructureOutputsExternalSecretsAutomaticAuthentication | null;
|
|
10045
10122
|
}
|
|
10046
10123
|
export declare const EksInfrastructureOutputsKindEnum: {
|
|
10047
10124
|
readonly EKS: "EKS";
|
|
10048
10125
|
};
|
|
10049
10126
|
export type EksInfrastructureOutputsKindEnum = typeof EksInfrastructureOutputsKindEnum[keyof typeof EksInfrastructureOutputsKindEnum];
|
|
10127
|
+
/**
|
|
10128
|
+
*
|
|
10129
|
+
* @export
|
|
10130
|
+
* @interface EksInfrastructureOutputsExternalSecretsAutomaticAuthentication
|
|
10131
|
+
*/
|
|
10132
|
+
export interface EksInfrastructureOutputsExternalSecretsAutomaticAuthentication {
|
|
10133
|
+
/**
|
|
10134
|
+
* ARN of the IAM role used by External Secrets Operator on EKS
|
|
10135
|
+
* @type {string}
|
|
10136
|
+
* @memberof EksInfrastructureOutputsExternalSecretsAutomaticAuthentication
|
|
10137
|
+
*/
|
|
10138
|
+
'eks_role_arn': string;
|
|
10139
|
+
}
|
|
10050
10140
|
/**
|
|
10051
10141
|
*
|
|
10052
10142
|
* @export
|
|
@@ -12382,11 +12472,30 @@ export interface GkeInfrastructureOutputs {
|
|
|
12382
12472
|
* @memberof GkeInfrastructureOutputs
|
|
12383
12473
|
*/
|
|
12384
12474
|
'cluster_self_link': string;
|
|
12475
|
+
/**
|
|
12476
|
+
*
|
|
12477
|
+
* @type {GkeInfrastructureOutputsExternalSecretsAutomaticAuthentication}
|
|
12478
|
+
* @memberof GkeInfrastructureOutputs
|
|
12479
|
+
*/
|
|
12480
|
+
'external_secrets_automatic_authentication'?: GkeInfrastructureOutputsExternalSecretsAutomaticAuthentication | null;
|
|
12385
12481
|
}
|
|
12386
12482
|
export declare const GkeInfrastructureOutputsKindEnum: {
|
|
12387
12483
|
readonly GKE: "GKE";
|
|
12388
12484
|
};
|
|
12389
12485
|
export type GkeInfrastructureOutputsKindEnum = typeof GkeInfrastructureOutputsKindEnum[keyof typeof GkeInfrastructureOutputsKindEnum];
|
|
12486
|
+
/**
|
|
12487
|
+
*
|
|
12488
|
+
* @export
|
|
12489
|
+
* @interface GkeInfrastructureOutputsExternalSecretsAutomaticAuthentication
|
|
12490
|
+
*/
|
|
12491
|
+
export interface GkeInfrastructureOutputsExternalSecretsAutomaticAuthentication {
|
|
12492
|
+
/**
|
|
12493
|
+
* GCP service account email used by External Secrets Operator on GKE
|
|
12494
|
+
* @type {string}
|
|
12495
|
+
* @memberof GkeInfrastructureOutputsExternalSecretsAutomaticAuthentication
|
|
12496
|
+
*/
|
|
12497
|
+
'gke_service_account': string;
|
|
12498
|
+
}
|
|
12390
12499
|
/**
|
|
12391
12500
|
*
|
|
12392
12501
|
* @export
|
|
@@ -25601,6 +25710,14 @@ export declare const ArgoCDApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
25601
25710
|
* @throws {RequiredError}
|
|
25602
25711
|
*/
|
|
25603
25712
|
getArgoCdAppManifest: (argocdAppId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25713
|
+
/**
|
|
25714
|
+
* List the ArgoCD discovered apps for a cluster, mapped to their project, environment, and service context. Requires VIEWER role.
|
|
25715
|
+
* @summary Get ArgoCD associated services for a cluster
|
|
25716
|
+
* @param {string} clusterId Cluster ID
|
|
25717
|
+
* @param {*} [options] Override http request option.
|
|
25718
|
+
* @throws {RequiredError}
|
|
25719
|
+
*/
|
|
25720
|
+
getArgoCdAssociatedServices: (clusterId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25604
25721
|
/**
|
|
25605
25722
|
* Retrieve the stored ArgoCD configuration for a cluster. The token is always returned as REDACTED. Requires VIEWER role.
|
|
25606
25723
|
* @summary Get ArgoCD credentials for a cluster
|
|
@@ -25684,6 +25801,14 @@ export declare const ArgoCDApiFp: (configuration?: Configuration) => {
|
|
|
25684
25801
|
* @throws {RequiredError}
|
|
25685
25802
|
*/
|
|
25686
25803
|
getArgoCdAppManifest(argocdAppId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ArgocdAppManifestResponse>>;
|
|
25804
|
+
/**
|
|
25805
|
+
* List the ArgoCD discovered apps for a cluster, mapped to their project, environment, and service context. Requires VIEWER role.
|
|
25806
|
+
* @summary Get ArgoCD associated services for a cluster
|
|
25807
|
+
* @param {string} clusterId Cluster ID
|
|
25808
|
+
* @param {*} [options] Override http request option.
|
|
25809
|
+
* @throws {RequiredError}
|
|
25810
|
+
*/
|
|
25811
|
+
getArgoCdAssociatedServices(clusterId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ArgocdAssociatedServicesResponseList>>;
|
|
25687
25812
|
/**
|
|
25688
25813
|
* Retrieve the stored ArgoCD configuration for a cluster. The token is always returned as REDACTED. Requires VIEWER role.
|
|
25689
25814
|
* @summary Get ArgoCD credentials for a cluster
|
|
@@ -25767,6 +25892,14 @@ export declare const ArgoCDApiFactory: (configuration?: Configuration, basePath?
|
|
|
25767
25892
|
* @throws {RequiredError}
|
|
25768
25893
|
*/
|
|
25769
25894
|
getArgoCdAppManifest(argocdAppId: string, options?: RawAxiosRequestConfig): AxiosPromise<ArgocdAppManifestResponse>;
|
|
25895
|
+
/**
|
|
25896
|
+
* List the ArgoCD discovered apps for a cluster, mapped to their project, environment, and service context. Requires VIEWER role.
|
|
25897
|
+
* @summary Get ArgoCD associated services for a cluster
|
|
25898
|
+
* @param {string} clusterId Cluster ID
|
|
25899
|
+
* @param {*} [options] Override http request option.
|
|
25900
|
+
* @throws {RequiredError}
|
|
25901
|
+
*/
|
|
25902
|
+
getArgoCdAssociatedServices(clusterId: string, options?: RawAxiosRequestConfig): AxiosPromise<ArgocdAssociatedServicesResponseList>;
|
|
25770
25903
|
/**
|
|
25771
25904
|
* Retrieve the stored ArgoCD configuration for a cluster. The token is always returned as REDACTED. Requires VIEWER role.
|
|
25772
25905
|
* @summary Get ArgoCD credentials for a cluster
|
|
@@ -25857,6 +25990,15 @@ export declare class ArgoCDApi extends BaseAPI {
|
|
|
25857
25990
|
* @memberof ArgoCDApi
|
|
25858
25991
|
*/
|
|
25859
25992
|
getArgoCdAppManifest(argocdAppId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ArgocdAppManifestResponse, any, {}>>;
|
|
25993
|
+
/**
|
|
25994
|
+
* List the ArgoCD discovered apps for a cluster, mapped to their project, environment, and service context. Requires VIEWER role.
|
|
25995
|
+
* @summary Get ArgoCD associated services for a cluster
|
|
25996
|
+
* @param {string} clusterId Cluster ID
|
|
25997
|
+
* @param {*} [options] Override http request option.
|
|
25998
|
+
* @throws {RequiredError}
|
|
25999
|
+
* @memberof ArgoCDApi
|
|
26000
|
+
*/
|
|
26001
|
+
getArgoCdAssociatedServices(clusterId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ArgocdAssociatedServicesResponseList, any, {}>>;
|
|
25860
26002
|
/**
|
|
25861
26003
|
* Retrieve the stored ArgoCD configuration for a cluster. The token is always returned as REDACTED. Requires VIEWER role.
|
|
25862
26004
|
* @summary Get ArgoCD credentials for a cluster
|
package/dist/esm/api.js
CHANGED
|
@@ -191,6 +191,14 @@ export const ArgoCdConnectionStatusEnum = {
|
|
|
191
191
|
CONNECTED: 'connected',
|
|
192
192
|
ERROR: 'error'
|
|
193
193
|
};
|
|
194
|
+
/**
|
|
195
|
+
*
|
|
196
|
+
* @export
|
|
197
|
+
* @enum {string}
|
|
198
|
+
*/
|
|
199
|
+
export const ArgocdAssociatedServiceType = {
|
|
200
|
+
ARGOCD_APP: 'ARGOCD_APP'
|
|
201
|
+
};
|
|
194
202
|
export const AutomaticallyConfiguredAuthDtoModeEnum = {
|
|
195
203
|
AUTOMATICALLY_CONFIGURED: 'AUTOMATICALLY_CONFIGURED'
|
|
196
204
|
};
|
|
@@ -6646,6 +6654,40 @@ export const ArgoCDApiAxiosParamCreator = function (configuration) {
|
|
|
6646
6654
|
options: localVarRequestOptions,
|
|
6647
6655
|
};
|
|
6648
6656
|
}),
|
|
6657
|
+
/**
|
|
6658
|
+
* List the ArgoCD discovered apps for a cluster, mapped to their project, environment, and service context. Requires VIEWER role.
|
|
6659
|
+
* @summary Get ArgoCD associated services for a cluster
|
|
6660
|
+
* @param {string} clusterId Cluster ID
|
|
6661
|
+
* @param {*} [options] Override http request option.
|
|
6662
|
+
* @throws {RequiredError}
|
|
6663
|
+
*/
|
|
6664
|
+
getArgoCdAssociatedServices: (clusterId_1, ...args_1) => __awaiter(this, [clusterId_1, ...args_1], void 0, function* (clusterId, options = {}) {
|
|
6665
|
+
// verify required parameter 'clusterId' is not null or undefined
|
|
6666
|
+
assertParamExists('getArgoCdAssociatedServices', 'clusterId', clusterId);
|
|
6667
|
+
const localVarPath = `/cluster/{clusterId}/argocdApps/associatedServices`
|
|
6668
|
+
.replace(`{${"clusterId"}}`, encodeURIComponent(String(clusterId)));
|
|
6669
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6670
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
6671
|
+
let baseOptions;
|
|
6672
|
+
if (configuration) {
|
|
6673
|
+
baseOptions = configuration.baseOptions;
|
|
6674
|
+
}
|
|
6675
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
6676
|
+
const localVarHeaderParameter = {};
|
|
6677
|
+
const localVarQueryParameter = {};
|
|
6678
|
+
// authentication ApiKeyAuth required
|
|
6679
|
+
yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
|
|
6680
|
+
// authentication bearerAuth required
|
|
6681
|
+
// http bearer authentication required
|
|
6682
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
6683
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6684
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6685
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6686
|
+
return {
|
|
6687
|
+
url: toPathString(localVarUrlObj),
|
|
6688
|
+
options: localVarRequestOptions,
|
|
6689
|
+
};
|
|
6690
|
+
}),
|
|
6649
6691
|
/**
|
|
6650
6692
|
* Retrieve the stored ArgoCD configuration for a cluster. The token is always returned as REDACTED. Requires VIEWER role.
|
|
6651
6693
|
* @summary Get ArgoCD credentials for a cluster
|
|
@@ -6884,6 +6926,22 @@ export const ArgoCDApiFp = function (configuration) {
|
|
|
6884
6926
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6885
6927
|
});
|
|
6886
6928
|
},
|
|
6929
|
+
/**
|
|
6930
|
+
* List the ArgoCD discovered apps for a cluster, mapped to their project, environment, and service context. Requires VIEWER role.
|
|
6931
|
+
* @summary Get ArgoCD associated services for a cluster
|
|
6932
|
+
* @param {string} clusterId Cluster ID
|
|
6933
|
+
* @param {*} [options] Override http request option.
|
|
6934
|
+
* @throws {RequiredError}
|
|
6935
|
+
*/
|
|
6936
|
+
getArgoCdAssociatedServices(clusterId, options) {
|
|
6937
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
6938
|
+
var _a, _b, _c;
|
|
6939
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getArgoCdAssociatedServices(clusterId, options);
|
|
6940
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
6941
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ArgoCDApi.getArgoCdAssociatedServices']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
6942
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6943
|
+
});
|
|
6944
|
+
},
|
|
6887
6945
|
/**
|
|
6888
6946
|
* Retrieve the stored ArgoCD configuration for a cluster. The token is always returned as REDACTED. Requires VIEWER role.
|
|
6889
6947
|
* @summary Get ArgoCD credentials for a cluster
|
|
@@ -7012,6 +7070,16 @@ export const ArgoCDApiFactory = function (configuration, basePath, axios) {
|
|
|
7012
7070
|
getArgoCdAppManifest(argocdAppId, options) {
|
|
7013
7071
|
return localVarFp.getArgoCdAppManifest(argocdAppId, options).then((request) => request(axios, basePath));
|
|
7014
7072
|
},
|
|
7073
|
+
/**
|
|
7074
|
+
* List the ArgoCD discovered apps for a cluster, mapped to their project, environment, and service context. Requires VIEWER role.
|
|
7075
|
+
* @summary Get ArgoCD associated services for a cluster
|
|
7076
|
+
* @param {string} clusterId Cluster ID
|
|
7077
|
+
* @param {*} [options] Override http request option.
|
|
7078
|
+
* @throws {RequiredError}
|
|
7079
|
+
*/
|
|
7080
|
+
getArgoCdAssociatedServices(clusterId, options) {
|
|
7081
|
+
return localVarFp.getArgoCdAssociatedServices(clusterId, options).then((request) => request(axios, basePath));
|
|
7082
|
+
},
|
|
7015
7083
|
/**
|
|
7016
7084
|
* Retrieve the stored ArgoCD configuration for a cluster. The token is always returned as REDACTED. Requires VIEWER role.
|
|
7017
7085
|
* @summary Get ArgoCD credentials for a cluster
|
|
@@ -7121,6 +7189,17 @@ export class ArgoCDApi extends BaseAPI {
|
|
|
7121
7189
|
getArgoCdAppManifest(argocdAppId, options) {
|
|
7122
7190
|
return ArgoCDApiFp(this.configuration).getArgoCdAppManifest(argocdAppId, options).then((request) => request(this.axios, this.basePath));
|
|
7123
7191
|
}
|
|
7192
|
+
/**
|
|
7193
|
+
* List the ArgoCD discovered apps for a cluster, mapped to their project, environment, and service context. Requires VIEWER role.
|
|
7194
|
+
* @summary Get ArgoCD associated services for a cluster
|
|
7195
|
+
* @param {string} clusterId Cluster ID
|
|
7196
|
+
* @param {*} [options] Override http request option.
|
|
7197
|
+
* @throws {RequiredError}
|
|
7198
|
+
* @memberof ArgoCDApi
|
|
7199
|
+
*/
|
|
7200
|
+
getArgoCdAssociatedServices(clusterId, options) {
|
|
7201
|
+
return ArgoCDApiFp(this.configuration).getArgoCdAssociatedServices(clusterId, options).then((request) => request(this.axios, this.basePath));
|
|
7202
|
+
}
|
|
7124
7203
|
/**
|
|
7125
7204
|
* Retrieve the stored ArgoCD configuration for a cluster. The token is always returned as REDACTED. Requires VIEWER role.
|
|
7126
7205
|
* @summary Get ArgoCD credentials for a cluster
|