qovery-typescript-axios 1.1.860 → 1.1.862
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 +272 -2
- package/dist/api.d.ts +178 -2
- package/dist/api.js +163 -9
- package/dist/esm/api.d.ts +178 -2
- package/dist/esm/api.js +154 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -9199,6 +9199,19 @@ export const DockerfileFragmentInlineTypeEnum = {
|
|
|
9199
9199
|
|
|
9200
9200
|
export type DockerfileFragmentInlineTypeEnum = typeof DockerfileFragmentInlineTypeEnum[keyof typeof DockerfileFragmentInlineTypeEnum];
|
|
9201
9201
|
|
|
9202
|
+
/**
|
|
9203
|
+
*
|
|
9204
|
+
* @export
|
|
9205
|
+
* @interface EksAnywhereClusterJwtResponse
|
|
9206
|
+
*/
|
|
9207
|
+
export interface EksAnywhereClusterJwtResponse {
|
|
9208
|
+
/**
|
|
9209
|
+
*
|
|
9210
|
+
* @type {string}
|
|
9211
|
+
* @memberof EksAnywhereClusterJwtResponse
|
|
9212
|
+
*/
|
|
9213
|
+
'jwt': string;
|
|
9214
|
+
}
|
|
9202
9215
|
/**
|
|
9203
9216
|
*
|
|
9204
9217
|
* @export
|
|
@@ -10353,17 +10366,74 @@ export interface EnvironmentOverviewResponse {
|
|
|
10353
10366
|
* @type {ClusterOverviewResponse}
|
|
10354
10367
|
* @memberof EnvironmentOverviewResponse
|
|
10355
10368
|
*/
|
|
10369
|
+
'cluster': ClusterOverviewResponse;
|
|
10370
|
+
/**
|
|
10371
|
+
*
|
|
10372
|
+
* @type {ServicesOverviewResponse}
|
|
10373
|
+
* @memberof EnvironmentOverviewResponse
|
|
10374
|
+
*/
|
|
10375
|
+
'services_overview': ServicesOverviewResponse;
|
|
10376
|
+
/**
|
|
10377
|
+
*
|
|
10378
|
+
* @type {EnvironmentStatus}
|
|
10379
|
+
* @memberof EnvironmentOverviewResponse
|
|
10380
|
+
*/
|
|
10381
|
+
'deployment_status'?: EnvironmentStatus | null;
|
|
10382
|
+
}
|
|
10383
|
+
|
|
10384
|
+
|
|
10385
|
+
/**
|
|
10386
|
+
*
|
|
10387
|
+
* @export
|
|
10388
|
+
* @interface EnvironmentOverviewResponseDeprecated
|
|
10389
|
+
*/
|
|
10390
|
+
export interface EnvironmentOverviewResponseDeprecated {
|
|
10391
|
+
/**
|
|
10392
|
+
*
|
|
10393
|
+
* @type {string}
|
|
10394
|
+
* @memberof EnvironmentOverviewResponseDeprecated
|
|
10395
|
+
*/
|
|
10396
|
+
'id': string;
|
|
10397
|
+
/**
|
|
10398
|
+
*
|
|
10399
|
+
* @type {string}
|
|
10400
|
+
* @memberof EnvironmentOverviewResponseDeprecated
|
|
10401
|
+
*/
|
|
10402
|
+
'created_at': string;
|
|
10403
|
+
/**
|
|
10404
|
+
*
|
|
10405
|
+
* @type {string}
|
|
10406
|
+
* @memberof EnvironmentOverviewResponseDeprecated
|
|
10407
|
+
*/
|
|
10408
|
+
'updated_at': string;
|
|
10409
|
+
/**
|
|
10410
|
+
*
|
|
10411
|
+
* @type {string}
|
|
10412
|
+
* @memberof EnvironmentOverviewResponseDeprecated
|
|
10413
|
+
*/
|
|
10414
|
+
'name': string;
|
|
10415
|
+
/**
|
|
10416
|
+
*
|
|
10417
|
+
* @type {EnvironmentModeEnum}
|
|
10418
|
+
* @memberof EnvironmentOverviewResponseDeprecated
|
|
10419
|
+
*/
|
|
10420
|
+
'mode': EnvironmentModeEnum;
|
|
10421
|
+
/**
|
|
10422
|
+
*
|
|
10423
|
+
* @type {ClusterOverviewResponse}
|
|
10424
|
+
* @memberof EnvironmentOverviewResponseDeprecated
|
|
10425
|
+
*/
|
|
10356
10426
|
'cluster'?: ClusterOverviewResponse;
|
|
10357
10427
|
/**
|
|
10358
10428
|
*
|
|
10359
10429
|
* @type {number}
|
|
10360
|
-
* @memberof
|
|
10430
|
+
* @memberof EnvironmentOverviewResponseDeprecated
|
|
10361
10431
|
*/
|
|
10362
10432
|
'service_count': number;
|
|
10363
10433
|
/**
|
|
10364
10434
|
*
|
|
10365
10435
|
* @type {EnvironmentStatus}
|
|
10366
|
-
* @memberof
|
|
10436
|
+
* @memberof EnvironmentOverviewResponseDeprecated
|
|
10367
10437
|
*/
|
|
10368
10438
|
'deployment_status'?: EnvironmentStatus;
|
|
10369
10439
|
}
|
|
@@ -10382,6 +10452,19 @@ export interface EnvironmentOverviewResponseList {
|
|
|
10382
10452
|
*/
|
|
10383
10453
|
'results'?: Array<EnvironmentOverviewResponse>;
|
|
10384
10454
|
}
|
|
10455
|
+
/**
|
|
10456
|
+
*
|
|
10457
|
+
* @export
|
|
10458
|
+
* @interface EnvironmentOverviewResponseListDeprecated
|
|
10459
|
+
*/
|
|
10460
|
+
export interface EnvironmentOverviewResponseListDeprecated {
|
|
10461
|
+
/**
|
|
10462
|
+
*
|
|
10463
|
+
* @type {Array<EnvironmentOverviewResponseDeprecated>}
|
|
10464
|
+
* @memberof EnvironmentOverviewResponseListDeprecated
|
|
10465
|
+
*/
|
|
10466
|
+
'results'?: Array<EnvironmentOverviewResponseDeprecated>;
|
|
10467
|
+
}
|
|
10385
10468
|
/**
|
|
10386
10469
|
*
|
|
10387
10470
|
* @export
|
|
@@ -19889,6 +19972,34 @@ export const ServiceTypeForVariableEnum = {
|
|
|
19889
19972
|
export type ServiceTypeForVariableEnum = typeof ServiceTypeForVariableEnum[keyof typeof ServiceTypeForVariableEnum];
|
|
19890
19973
|
|
|
19891
19974
|
|
|
19975
|
+
/**
|
|
19976
|
+
*
|
|
19977
|
+
* @export
|
|
19978
|
+
* @interface ServicesOverviewResponse
|
|
19979
|
+
*/
|
|
19980
|
+
export interface ServicesOverviewResponse {
|
|
19981
|
+
/**
|
|
19982
|
+
*
|
|
19983
|
+
* @type {number}
|
|
19984
|
+
* @memberof ServicesOverviewResponse
|
|
19985
|
+
*/
|
|
19986
|
+
'service_count': number;
|
|
19987
|
+
/**
|
|
19988
|
+
*
|
|
19989
|
+
* @type {string}
|
|
19990
|
+
* @memberof ServicesOverviewResponse
|
|
19991
|
+
*/
|
|
19992
|
+
'managed_by': ServicesOverviewResponseManagedByEnum;
|
|
19993
|
+
}
|
|
19994
|
+
|
|
19995
|
+
export const ServicesOverviewResponseManagedByEnum = {
|
|
19996
|
+
QOVERY: 'QOVERY',
|
|
19997
|
+
ARGOCD: 'ARGOCD',
|
|
19998
|
+
MIXED: 'MIXED'
|
|
19999
|
+
} as const;
|
|
20000
|
+
|
|
20001
|
+
export type ServicesOverviewResponseManagedByEnum = typeof ServicesOverviewResponseManagedByEnum[keyof typeof ServicesOverviewResponseManagedByEnum];
|
|
20002
|
+
|
|
19892
20003
|
/**
|
|
19893
20004
|
*
|
|
19894
20005
|
* @export
|
|
@@ -34045,6 +34156,51 @@ export const ClustersApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
34045
34156
|
|
|
34046
34157
|
|
|
34047
34158
|
|
|
34159
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
34160
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
34161
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
34162
|
+
|
|
34163
|
+
return {
|
|
34164
|
+
url: toPathString(localVarUrlObj),
|
|
34165
|
+
options: localVarRequestOptions,
|
|
34166
|
+
};
|
|
34167
|
+
},
|
|
34168
|
+
/**
|
|
34169
|
+
* Returns the latest valid JWT currently used for engine deployments for the specified EKS Anywhere cluster.
|
|
34170
|
+
* @summary Get latest EKS Anywhere cluster JWT
|
|
34171
|
+
* @param {string} organizationId Organization ID
|
|
34172
|
+
* @param {string} clusterId Cluster ID
|
|
34173
|
+
* @param {*} [options] Override http request option.
|
|
34174
|
+
* @throws {RequiredError}
|
|
34175
|
+
*/
|
|
34176
|
+
getEksAnywhereClusterJwt: async (organizationId: string, clusterId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
34177
|
+
// verify required parameter 'organizationId' is not null or undefined
|
|
34178
|
+
assertParamExists('getEksAnywhereClusterJwt', 'organizationId', organizationId)
|
|
34179
|
+
// verify required parameter 'clusterId' is not null or undefined
|
|
34180
|
+
assertParamExists('getEksAnywhereClusterJwt', 'clusterId', clusterId)
|
|
34181
|
+
const localVarPath = `/organization/{organizationId}/cluster/{clusterId}/eks-anywhere/jwt`
|
|
34182
|
+
.replace(`{${"organizationId"}}`, encodeURIComponent(String(organizationId)))
|
|
34183
|
+
.replace(`{${"clusterId"}}`, encodeURIComponent(String(clusterId)));
|
|
34184
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
34185
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
34186
|
+
let baseOptions;
|
|
34187
|
+
if (configuration) {
|
|
34188
|
+
baseOptions = configuration.baseOptions;
|
|
34189
|
+
}
|
|
34190
|
+
|
|
34191
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
34192
|
+
const localVarHeaderParameter = {} as any;
|
|
34193
|
+
const localVarQueryParameter = {} as any;
|
|
34194
|
+
|
|
34195
|
+
// authentication ApiKeyAuth required
|
|
34196
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
34197
|
+
|
|
34198
|
+
// authentication bearerAuth required
|
|
34199
|
+
// http bearer authentication required
|
|
34200
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
34201
|
+
|
|
34202
|
+
|
|
34203
|
+
|
|
34048
34204
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
34049
34205
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
34050
34206
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -34976,6 +35132,20 @@ export const ClustersApiFp = function(configuration?: Configuration) {
|
|
|
34976
35132
|
const localVarOperationServerBasePath = operationServerMap['ClustersApi.getDefaultClusterAdvancedSettings']?.[localVarOperationServerIndex]?.url;
|
|
34977
35133
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
34978
35134
|
},
|
|
35135
|
+
/**
|
|
35136
|
+
* Returns the latest valid JWT currently used for engine deployments for the specified EKS Anywhere cluster.
|
|
35137
|
+
* @summary Get latest EKS Anywhere cluster JWT
|
|
35138
|
+
* @param {string} organizationId Organization ID
|
|
35139
|
+
* @param {string} clusterId Cluster ID
|
|
35140
|
+
* @param {*} [options] Override http request option.
|
|
35141
|
+
* @throws {RequiredError}
|
|
35142
|
+
*/
|
|
35143
|
+
async getEksAnywhereClusterJwt(organizationId: string, clusterId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EksAnywhereClusterJwtResponse>> {
|
|
35144
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getEksAnywhereClusterJwt(organizationId, clusterId, options);
|
|
35145
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
35146
|
+
const localVarOperationServerBasePath = operationServerMap['ClustersApi.getEksAnywhereClusterJwt']?.[localVarOperationServerIndex]?.url;
|
|
35147
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
35148
|
+
},
|
|
34979
35149
|
/**
|
|
34980
35150
|
*
|
|
34981
35151
|
* @summary List environments services by cluster id
|
|
@@ -35392,6 +35562,17 @@ export const ClustersApiFactory = function (configuration?: Configuration, baseP
|
|
|
35392
35562
|
getDefaultClusterAdvancedSettings(options?: RawAxiosRequestConfig): AxiosPromise<ClusterAdvancedSettings> {
|
|
35393
35563
|
return localVarFp.getDefaultClusterAdvancedSettings(options).then((request) => request(axios, basePath));
|
|
35394
35564
|
},
|
|
35565
|
+
/**
|
|
35566
|
+
* Returns the latest valid JWT currently used for engine deployments for the specified EKS Anywhere cluster.
|
|
35567
|
+
* @summary Get latest EKS Anywhere cluster JWT
|
|
35568
|
+
* @param {string} organizationId Organization ID
|
|
35569
|
+
* @param {string} clusterId Cluster ID
|
|
35570
|
+
* @param {*} [options] Override http request option.
|
|
35571
|
+
* @throws {RequiredError}
|
|
35572
|
+
*/
|
|
35573
|
+
getEksAnywhereClusterJwt(organizationId: string, clusterId: string, options?: RawAxiosRequestConfig): AxiosPromise<EksAnywhereClusterJwtResponse> {
|
|
35574
|
+
return localVarFp.getEksAnywhereClusterJwt(organizationId, clusterId, options).then((request) => request(axios, basePath));
|
|
35575
|
+
},
|
|
35395
35576
|
/**
|
|
35396
35577
|
*
|
|
35397
35578
|
* @summary List environments services by cluster id
|
|
@@ -35793,6 +35974,19 @@ export class ClustersApi extends BaseAPI {
|
|
|
35793
35974
|
return ClustersApiFp(this.configuration).getDefaultClusterAdvancedSettings(options).then((request) => request(this.axios, this.basePath));
|
|
35794
35975
|
}
|
|
35795
35976
|
|
|
35977
|
+
/**
|
|
35978
|
+
* Returns the latest valid JWT currently used for engine deployments for the specified EKS Anywhere cluster.
|
|
35979
|
+
* @summary Get latest EKS Anywhere cluster JWT
|
|
35980
|
+
* @param {string} organizationId Organization ID
|
|
35981
|
+
* @param {string} clusterId Cluster ID
|
|
35982
|
+
* @param {*} [options] Override http request option.
|
|
35983
|
+
* @throws {RequiredError}
|
|
35984
|
+
* @memberof ClustersApi
|
|
35985
|
+
*/
|
|
35986
|
+
public getEksAnywhereClusterJwt(organizationId: string, clusterId: string, options?: RawAxiosRequestConfig) {
|
|
35987
|
+
return ClustersApiFp(this.configuration).getEksAnywhereClusterJwt(organizationId, clusterId, options).then((request) => request(this.axios, this.basePath));
|
|
35988
|
+
}
|
|
35989
|
+
|
|
35796
35990
|
/**
|
|
35797
35991
|
*
|
|
35798
35992
|
* @summary List environments services by cluster id
|
|
@@ -47690,6 +47884,47 @@ export const EnvironmentsApiAxiosParamCreator = function (configuration?: Config
|
|
|
47690
47884
|
getProjectEnvironmentsOverview: async (projectId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
47691
47885
|
// verify required parameter 'projectId' is not null or undefined
|
|
47692
47886
|
assertParamExists('getProjectEnvironmentsOverview', 'projectId', projectId)
|
|
47887
|
+
const localVarPath = `/project/{projectId}/environment/overview`
|
|
47888
|
+
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
|
|
47889
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
47890
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
47891
|
+
let baseOptions;
|
|
47892
|
+
if (configuration) {
|
|
47893
|
+
baseOptions = configuration.baseOptions;
|
|
47894
|
+
}
|
|
47895
|
+
|
|
47896
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
47897
|
+
const localVarHeaderParameter = {} as any;
|
|
47898
|
+
const localVarQueryParameter = {} as any;
|
|
47899
|
+
|
|
47900
|
+
// authentication ApiKeyAuth required
|
|
47901
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
47902
|
+
|
|
47903
|
+
// authentication bearerAuth required
|
|
47904
|
+
// http bearer authentication required
|
|
47905
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
47906
|
+
|
|
47907
|
+
|
|
47908
|
+
|
|
47909
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
47910
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
47911
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
47912
|
+
|
|
47913
|
+
return {
|
|
47914
|
+
url: toPathString(localVarUrlObj),
|
|
47915
|
+
options: localVarRequestOptions,
|
|
47916
|
+
};
|
|
47917
|
+
},
|
|
47918
|
+
/**
|
|
47919
|
+
* Returns a list of environments with their overview information including deployment status, service count, and cluster details.
|
|
47920
|
+
* @summary List environments overview
|
|
47921
|
+
* @param {string} projectId Project ID
|
|
47922
|
+
* @param {*} [options] Override http request option.
|
|
47923
|
+
* @throws {RequiredError}
|
|
47924
|
+
*/
|
|
47925
|
+
getProjectEnvironmentsOverviewDeprecated: async (projectId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
47926
|
+
// verify required parameter 'projectId' is not null or undefined
|
|
47927
|
+
assertParamExists('getProjectEnvironmentsOverviewDeprecated', 'projectId', projectId)
|
|
47693
47928
|
const localVarPath = `/project/{projectId}/environmentOverview`
|
|
47694
47929
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
|
|
47695
47930
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -47853,6 +48088,19 @@ export const EnvironmentsApiFp = function(configuration?: Configuration) {
|
|
|
47853
48088
|
const localVarOperationServerBasePath = operationServerMap['EnvironmentsApi.getProjectEnvironmentsOverview']?.[localVarOperationServerIndex]?.url;
|
|
47854
48089
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
47855
48090
|
},
|
|
48091
|
+
/**
|
|
48092
|
+
* Returns a list of environments with their overview information including deployment status, service count, and cluster details.
|
|
48093
|
+
* @summary List environments overview
|
|
48094
|
+
* @param {string} projectId Project ID
|
|
48095
|
+
* @param {*} [options] Override http request option.
|
|
48096
|
+
* @throws {RequiredError}
|
|
48097
|
+
*/
|
|
48098
|
+
async getProjectEnvironmentsOverviewDeprecated(projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EnvironmentOverviewResponseListDeprecated>> {
|
|
48099
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getProjectEnvironmentsOverviewDeprecated(projectId, options);
|
|
48100
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
48101
|
+
const localVarOperationServerBasePath = operationServerMap['EnvironmentsApi.getProjectEnvironmentsOverviewDeprecated']?.[localVarOperationServerIndex]?.url;
|
|
48102
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
48103
|
+
},
|
|
47856
48104
|
/**
|
|
47857
48105
|
* Returns a list of environments with only their id and status.
|
|
47858
48106
|
* @summary List environments statuses
|
|
@@ -47920,6 +48168,16 @@ export const EnvironmentsApiFactory = function (configuration?: Configuration, b
|
|
|
47920
48168
|
getProjectEnvironmentsOverview(projectId: string, options?: RawAxiosRequestConfig): AxiosPromise<EnvironmentOverviewResponseList> {
|
|
47921
48169
|
return localVarFp.getProjectEnvironmentsOverview(projectId, options).then((request) => request(axios, basePath));
|
|
47922
48170
|
},
|
|
48171
|
+
/**
|
|
48172
|
+
* Returns a list of environments with their overview information including deployment status, service count, and cluster details.
|
|
48173
|
+
* @summary List environments overview
|
|
48174
|
+
* @param {string} projectId Project ID
|
|
48175
|
+
* @param {*} [options] Override http request option.
|
|
48176
|
+
* @throws {RequiredError}
|
|
48177
|
+
*/
|
|
48178
|
+
getProjectEnvironmentsOverviewDeprecated(projectId: string, options?: RawAxiosRequestConfig): AxiosPromise<EnvironmentOverviewResponseListDeprecated> {
|
|
48179
|
+
return localVarFp.getProjectEnvironmentsOverviewDeprecated(projectId, options).then((request) => request(axios, basePath));
|
|
48180
|
+
},
|
|
47923
48181
|
/**
|
|
47924
48182
|
* Returns a list of environments with only their id and status.
|
|
47925
48183
|
* @summary List environments statuses
|
|
@@ -47987,6 +48245,18 @@ export class EnvironmentsApi extends BaseAPI {
|
|
|
47987
48245
|
return EnvironmentsApiFp(this.configuration).getProjectEnvironmentsOverview(projectId, options).then((request) => request(this.axios, this.basePath));
|
|
47988
48246
|
}
|
|
47989
48247
|
|
|
48248
|
+
/**
|
|
48249
|
+
* Returns a list of environments with their overview information including deployment status, service count, and cluster details.
|
|
48250
|
+
* @summary List environments overview
|
|
48251
|
+
* @param {string} projectId Project ID
|
|
48252
|
+
* @param {*} [options] Override http request option.
|
|
48253
|
+
* @throws {RequiredError}
|
|
48254
|
+
* @memberof EnvironmentsApi
|
|
48255
|
+
*/
|
|
48256
|
+
public getProjectEnvironmentsOverviewDeprecated(projectId: string, options?: RawAxiosRequestConfig) {
|
|
48257
|
+
return EnvironmentsApiFp(this.configuration).getProjectEnvironmentsOverviewDeprecated(projectId, options).then((request) => request(this.axios, this.basePath));
|
|
48258
|
+
}
|
|
48259
|
+
|
|
47990
48260
|
/**
|
|
47991
48261
|
* Returns a list of environments with only their id and status.
|
|
47992
48262
|
* @summary List environments statuses
|
package/dist/api.d.ts
CHANGED
|
@@ -8919,6 +8919,19 @@ export declare const DockerfileFragmentInlineTypeEnum: {
|
|
|
8919
8919
|
readonly INLINE: "inline";
|
|
8920
8920
|
};
|
|
8921
8921
|
export type DockerfileFragmentInlineTypeEnum = typeof DockerfileFragmentInlineTypeEnum[keyof typeof DockerfileFragmentInlineTypeEnum];
|
|
8922
|
+
/**
|
|
8923
|
+
*
|
|
8924
|
+
* @export
|
|
8925
|
+
* @interface EksAnywhereClusterJwtResponse
|
|
8926
|
+
*/
|
|
8927
|
+
export interface EksAnywhereClusterJwtResponse {
|
|
8928
|
+
/**
|
|
8929
|
+
*
|
|
8930
|
+
* @type {string}
|
|
8931
|
+
* @memberof EksAnywhereClusterJwtResponse
|
|
8932
|
+
*/
|
|
8933
|
+
'jwt': string;
|
|
8934
|
+
}
|
|
8922
8935
|
/**
|
|
8923
8936
|
*
|
|
8924
8937
|
* @export
|
|
@@ -10035,17 +10048,72 @@ export interface EnvironmentOverviewResponse {
|
|
|
10035
10048
|
* @type {ClusterOverviewResponse}
|
|
10036
10049
|
* @memberof EnvironmentOverviewResponse
|
|
10037
10050
|
*/
|
|
10051
|
+
'cluster': ClusterOverviewResponse;
|
|
10052
|
+
/**
|
|
10053
|
+
*
|
|
10054
|
+
* @type {ServicesOverviewResponse}
|
|
10055
|
+
* @memberof EnvironmentOverviewResponse
|
|
10056
|
+
*/
|
|
10057
|
+
'services_overview': ServicesOverviewResponse;
|
|
10058
|
+
/**
|
|
10059
|
+
*
|
|
10060
|
+
* @type {EnvironmentStatus}
|
|
10061
|
+
* @memberof EnvironmentOverviewResponse
|
|
10062
|
+
*/
|
|
10063
|
+
'deployment_status'?: EnvironmentStatus | null;
|
|
10064
|
+
}
|
|
10065
|
+
/**
|
|
10066
|
+
*
|
|
10067
|
+
* @export
|
|
10068
|
+
* @interface EnvironmentOverviewResponseDeprecated
|
|
10069
|
+
*/
|
|
10070
|
+
export interface EnvironmentOverviewResponseDeprecated {
|
|
10071
|
+
/**
|
|
10072
|
+
*
|
|
10073
|
+
* @type {string}
|
|
10074
|
+
* @memberof EnvironmentOverviewResponseDeprecated
|
|
10075
|
+
*/
|
|
10076
|
+
'id': string;
|
|
10077
|
+
/**
|
|
10078
|
+
*
|
|
10079
|
+
* @type {string}
|
|
10080
|
+
* @memberof EnvironmentOverviewResponseDeprecated
|
|
10081
|
+
*/
|
|
10082
|
+
'created_at': string;
|
|
10083
|
+
/**
|
|
10084
|
+
*
|
|
10085
|
+
* @type {string}
|
|
10086
|
+
* @memberof EnvironmentOverviewResponseDeprecated
|
|
10087
|
+
*/
|
|
10088
|
+
'updated_at': string;
|
|
10089
|
+
/**
|
|
10090
|
+
*
|
|
10091
|
+
* @type {string}
|
|
10092
|
+
* @memberof EnvironmentOverviewResponseDeprecated
|
|
10093
|
+
*/
|
|
10094
|
+
'name': string;
|
|
10095
|
+
/**
|
|
10096
|
+
*
|
|
10097
|
+
* @type {EnvironmentModeEnum}
|
|
10098
|
+
* @memberof EnvironmentOverviewResponseDeprecated
|
|
10099
|
+
*/
|
|
10100
|
+
'mode': EnvironmentModeEnum;
|
|
10101
|
+
/**
|
|
10102
|
+
*
|
|
10103
|
+
* @type {ClusterOverviewResponse}
|
|
10104
|
+
* @memberof EnvironmentOverviewResponseDeprecated
|
|
10105
|
+
*/
|
|
10038
10106
|
'cluster'?: ClusterOverviewResponse;
|
|
10039
10107
|
/**
|
|
10040
10108
|
*
|
|
10041
10109
|
* @type {number}
|
|
10042
|
-
* @memberof
|
|
10110
|
+
* @memberof EnvironmentOverviewResponseDeprecated
|
|
10043
10111
|
*/
|
|
10044
10112
|
'service_count': number;
|
|
10045
10113
|
/**
|
|
10046
10114
|
*
|
|
10047
10115
|
* @type {EnvironmentStatus}
|
|
10048
|
-
* @memberof
|
|
10116
|
+
* @memberof EnvironmentOverviewResponseDeprecated
|
|
10049
10117
|
*/
|
|
10050
10118
|
'deployment_status'?: EnvironmentStatus;
|
|
10051
10119
|
}
|
|
@@ -10062,6 +10130,19 @@ export interface EnvironmentOverviewResponseList {
|
|
|
10062
10130
|
*/
|
|
10063
10131
|
'results'?: Array<EnvironmentOverviewResponse>;
|
|
10064
10132
|
}
|
|
10133
|
+
/**
|
|
10134
|
+
*
|
|
10135
|
+
* @export
|
|
10136
|
+
* @interface EnvironmentOverviewResponseListDeprecated
|
|
10137
|
+
*/
|
|
10138
|
+
export interface EnvironmentOverviewResponseListDeprecated {
|
|
10139
|
+
/**
|
|
10140
|
+
*
|
|
10141
|
+
* @type {Array<EnvironmentOverviewResponseDeprecated>}
|
|
10142
|
+
* @memberof EnvironmentOverviewResponseListDeprecated
|
|
10143
|
+
*/
|
|
10144
|
+
'results'?: Array<EnvironmentOverviewResponseDeprecated>;
|
|
10145
|
+
}
|
|
10065
10146
|
/**
|
|
10066
10147
|
*
|
|
10067
10148
|
* @export
|
|
@@ -19251,6 +19332,31 @@ export declare const ServiceTypeForVariableEnum: {
|
|
|
19251
19332
|
readonly TERRAFORM: "TERRAFORM";
|
|
19252
19333
|
};
|
|
19253
19334
|
export type ServiceTypeForVariableEnum = typeof ServiceTypeForVariableEnum[keyof typeof ServiceTypeForVariableEnum];
|
|
19335
|
+
/**
|
|
19336
|
+
*
|
|
19337
|
+
* @export
|
|
19338
|
+
* @interface ServicesOverviewResponse
|
|
19339
|
+
*/
|
|
19340
|
+
export interface ServicesOverviewResponse {
|
|
19341
|
+
/**
|
|
19342
|
+
*
|
|
19343
|
+
* @type {number}
|
|
19344
|
+
* @memberof ServicesOverviewResponse
|
|
19345
|
+
*/
|
|
19346
|
+
'service_count': number;
|
|
19347
|
+
/**
|
|
19348
|
+
*
|
|
19349
|
+
* @type {string}
|
|
19350
|
+
* @memberof ServicesOverviewResponse
|
|
19351
|
+
*/
|
|
19352
|
+
'managed_by': ServicesOverviewResponseManagedByEnum;
|
|
19353
|
+
}
|
|
19354
|
+
export declare const ServicesOverviewResponseManagedByEnum: {
|
|
19355
|
+
readonly QOVERY: "QOVERY";
|
|
19356
|
+
readonly ARGOCD: "ARGOCD";
|
|
19357
|
+
readonly MIXED: "MIXED";
|
|
19358
|
+
};
|
|
19359
|
+
export type ServicesOverviewResponseManagedByEnum = typeof ServicesOverviewResponseManagedByEnum[keyof typeof ServicesOverviewResponseManagedByEnum];
|
|
19254
19360
|
/**
|
|
19255
19361
|
*
|
|
19256
19362
|
* @export
|
|
@@ -26723,6 +26829,15 @@ export declare const ClustersApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
26723
26829
|
* @throws {RequiredError}
|
|
26724
26830
|
*/
|
|
26725
26831
|
getDefaultClusterAdvancedSettings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
26832
|
+
/**
|
|
26833
|
+
* Returns the latest valid JWT currently used for engine deployments for the specified EKS Anywhere cluster.
|
|
26834
|
+
* @summary Get latest EKS Anywhere cluster JWT
|
|
26835
|
+
* @param {string} organizationId Organization ID
|
|
26836
|
+
* @param {string} clusterId Cluster ID
|
|
26837
|
+
* @param {*} [options] Override http request option.
|
|
26838
|
+
* @throws {RequiredError}
|
|
26839
|
+
*/
|
|
26840
|
+
getEksAnywhereClusterJwt: (organizationId: string, clusterId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
26726
26841
|
/**
|
|
26727
26842
|
*
|
|
26728
26843
|
* @summary List environments services by cluster id
|
|
@@ -27030,6 +27145,15 @@ export declare const ClustersApiFp: (configuration?: Configuration) => {
|
|
|
27030
27145
|
* @throws {RequiredError}
|
|
27031
27146
|
*/
|
|
27032
27147
|
getDefaultClusterAdvancedSettings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterAdvancedSettings>>;
|
|
27148
|
+
/**
|
|
27149
|
+
* Returns the latest valid JWT currently used for engine deployments for the specified EKS Anywhere cluster.
|
|
27150
|
+
* @summary Get latest EKS Anywhere cluster JWT
|
|
27151
|
+
* @param {string} organizationId Organization ID
|
|
27152
|
+
* @param {string} clusterId Cluster ID
|
|
27153
|
+
* @param {*} [options] Override http request option.
|
|
27154
|
+
* @throws {RequiredError}
|
|
27155
|
+
*/
|
|
27156
|
+
getEksAnywhereClusterJwt(organizationId: string, clusterId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EksAnywhereClusterJwtResponse>>;
|
|
27033
27157
|
/**
|
|
27034
27158
|
*
|
|
27035
27159
|
* @summary List environments services by cluster id
|
|
@@ -27337,6 +27461,15 @@ export declare const ClustersApiFactory: (configuration?: Configuration, basePat
|
|
|
27337
27461
|
* @throws {RequiredError}
|
|
27338
27462
|
*/
|
|
27339
27463
|
getDefaultClusterAdvancedSettings(options?: RawAxiosRequestConfig): AxiosPromise<ClusterAdvancedSettings>;
|
|
27464
|
+
/**
|
|
27465
|
+
* Returns the latest valid JWT currently used for engine deployments for the specified EKS Anywhere cluster.
|
|
27466
|
+
* @summary Get latest EKS Anywhere cluster JWT
|
|
27467
|
+
* @param {string} organizationId Organization ID
|
|
27468
|
+
* @param {string} clusterId Cluster ID
|
|
27469
|
+
* @param {*} [options] Override http request option.
|
|
27470
|
+
* @throws {RequiredError}
|
|
27471
|
+
*/
|
|
27472
|
+
getEksAnywhereClusterJwt(organizationId: string, clusterId: string, options?: RawAxiosRequestConfig): AxiosPromise<EksAnywhereClusterJwtResponse>;
|
|
27340
27473
|
/**
|
|
27341
27474
|
*
|
|
27342
27475
|
* @summary List environments services by cluster id
|
|
@@ -27661,6 +27794,16 @@ export declare class ClustersApi extends BaseAPI {
|
|
|
27661
27794
|
* @memberof ClustersApi
|
|
27662
27795
|
*/
|
|
27663
27796
|
getDefaultClusterAdvancedSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClusterAdvancedSettings, any, {}>>;
|
|
27797
|
+
/**
|
|
27798
|
+
* Returns the latest valid JWT currently used for engine deployments for the specified EKS Anywhere cluster.
|
|
27799
|
+
* @summary Get latest EKS Anywhere cluster JWT
|
|
27800
|
+
* @param {string} organizationId Organization ID
|
|
27801
|
+
* @param {string} clusterId Cluster ID
|
|
27802
|
+
* @param {*} [options] Override http request option.
|
|
27803
|
+
* @throws {RequiredError}
|
|
27804
|
+
* @memberof ClustersApi
|
|
27805
|
+
*/
|
|
27806
|
+
getEksAnywhereClusterJwt(organizationId: string, clusterId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EksAnywhereClusterJwtResponse, any, {}>>;
|
|
27664
27807
|
/**
|
|
27665
27808
|
*
|
|
27666
27809
|
* @summary List environments services by cluster id
|
|
@@ -33200,6 +33343,14 @@ export declare const EnvironmentsApiAxiosParamCreator: (configuration?: Configur
|
|
|
33200
33343
|
* @throws {RequiredError}
|
|
33201
33344
|
*/
|
|
33202
33345
|
getProjectEnvironmentsOverview: (projectId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
33346
|
+
/**
|
|
33347
|
+
* Returns a list of environments with their overview information including deployment status, service count, and cluster details.
|
|
33348
|
+
* @summary List environments overview
|
|
33349
|
+
* @param {string} projectId Project ID
|
|
33350
|
+
* @param {*} [options] Override http request option.
|
|
33351
|
+
* @throws {RequiredError}
|
|
33352
|
+
*/
|
|
33353
|
+
getProjectEnvironmentsOverviewDeprecated: (projectId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
33203
33354
|
/**
|
|
33204
33355
|
* Returns a list of environments with only their id and status.
|
|
33205
33356
|
* @summary List environments statuses
|
|
@@ -33247,6 +33398,14 @@ export declare const EnvironmentsApiFp: (configuration?: Configuration) => {
|
|
|
33247
33398
|
* @throws {RequiredError}
|
|
33248
33399
|
*/
|
|
33249
33400
|
getProjectEnvironmentsOverview(projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EnvironmentOverviewResponseList>>;
|
|
33401
|
+
/**
|
|
33402
|
+
* Returns a list of environments with their overview information including deployment status, service count, and cluster details.
|
|
33403
|
+
* @summary List environments overview
|
|
33404
|
+
* @param {string} projectId Project ID
|
|
33405
|
+
* @param {*} [options] Override http request option.
|
|
33406
|
+
* @throws {RequiredError}
|
|
33407
|
+
*/
|
|
33408
|
+
getProjectEnvironmentsOverviewDeprecated(projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EnvironmentOverviewResponseListDeprecated>>;
|
|
33250
33409
|
/**
|
|
33251
33410
|
* Returns a list of environments with only their id and status.
|
|
33252
33411
|
* @summary List environments statuses
|
|
@@ -33294,6 +33453,14 @@ export declare const EnvironmentsApiFactory: (configuration?: Configuration, bas
|
|
|
33294
33453
|
* @throws {RequiredError}
|
|
33295
33454
|
*/
|
|
33296
33455
|
getProjectEnvironmentsOverview(projectId: string, options?: RawAxiosRequestConfig): AxiosPromise<EnvironmentOverviewResponseList>;
|
|
33456
|
+
/**
|
|
33457
|
+
* Returns a list of environments with their overview information including deployment status, service count, and cluster details.
|
|
33458
|
+
* @summary List environments overview
|
|
33459
|
+
* @param {string} projectId Project ID
|
|
33460
|
+
* @param {*} [options] Override http request option.
|
|
33461
|
+
* @throws {RequiredError}
|
|
33462
|
+
*/
|
|
33463
|
+
getProjectEnvironmentsOverviewDeprecated(projectId: string, options?: RawAxiosRequestConfig): AxiosPromise<EnvironmentOverviewResponseListDeprecated>;
|
|
33297
33464
|
/**
|
|
33298
33465
|
* Returns a list of environments with only their id and status.
|
|
33299
33466
|
* @summary List environments statuses
|
|
@@ -33346,6 +33513,15 @@ export declare class EnvironmentsApi extends BaseAPI {
|
|
|
33346
33513
|
* @memberof EnvironmentsApi
|
|
33347
33514
|
*/
|
|
33348
33515
|
getProjectEnvironmentsOverview(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EnvironmentOverviewResponseList, any, {}>>;
|
|
33516
|
+
/**
|
|
33517
|
+
* Returns a list of environments with their overview information including deployment status, service count, and cluster details.
|
|
33518
|
+
* @summary List environments overview
|
|
33519
|
+
* @param {string} projectId Project ID
|
|
33520
|
+
* @param {*} [options] Override http request option.
|
|
33521
|
+
* @throws {RequiredError}
|
|
33522
|
+
* @memberof EnvironmentsApi
|
|
33523
|
+
*/
|
|
33524
|
+
getProjectEnvironmentsOverviewDeprecated(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EnvironmentOverviewResponseListDeprecated, any, {}>>;
|
|
33349
33525
|
/**
|
|
33350
33526
|
* Returns a list of environments with only their id and status.
|
|
33351
33527
|
* @summary List environments statuses
|