qovery-typescript-axios 1.1.968 → 1.1.970
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 +421 -8
- package/dist/api.d.ts +295 -7
- package/dist/api.js +243 -17
- package/dist/esm/api.d.ts +295 -7
- package/dist/esm/api.js +227 -5
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -302,7 +302,7 @@ export interface AgenticWorkflowRequest {
|
|
|
302
302
|
*/
|
|
303
303
|
'mcp'?: string;
|
|
304
304
|
/**
|
|
305
|
-
*
|
|
305
|
+
* MCP connectors attached to this workflow. May include a USER-scoped connector, which only its owner can attach or keep attached when saving.
|
|
306
306
|
* @type {Array<string>}
|
|
307
307
|
* @memberof AgenticWorkflowRequest
|
|
308
308
|
*/
|
|
@@ -466,7 +466,7 @@ export interface AgenticWorkflowResponse {
|
|
|
466
466
|
*/
|
|
467
467
|
'mcp': string;
|
|
468
468
|
/**
|
|
469
|
-
*
|
|
469
|
+
* MCP connectors attached to this workflow. May include a USER-scoped connector, which only its owner can attach or keep attached when saving.
|
|
470
470
|
* @type {Array<string>}
|
|
471
471
|
* @memberof AgenticWorkflowResponse
|
|
472
472
|
*/
|
|
@@ -6425,6 +6425,141 @@ export declare const ClusterDeleteMode: {
|
|
|
6425
6425
|
readonly DELETE_QOVERY_CONFIG: "DELETE_QOVERY_CONFIG";
|
|
6426
6426
|
};
|
|
6427
6427
|
export type ClusterDeleteMode = typeof ClusterDeleteMode[keyof typeof ClusterDeleteMode];
|
|
6428
|
+
/**
|
|
6429
|
+
*
|
|
6430
|
+
* @export
|
|
6431
|
+
* @interface ClusterDeploymentHistory
|
|
6432
|
+
*/
|
|
6433
|
+
export interface ClusterDeploymentHistory {
|
|
6434
|
+
/**
|
|
6435
|
+
*
|
|
6436
|
+
* @type {ClusterDeploymentHistoryIdentifier}
|
|
6437
|
+
* @memberof ClusterDeploymentHistory
|
|
6438
|
+
*/
|
|
6439
|
+
'identifier': ClusterDeploymentHistoryIdentifier;
|
|
6440
|
+
/**
|
|
6441
|
+
*
|
|
6442
|
+
* @type {ClusterDeploymentHistoryAuditingData}
|
|
6443
|
+
* @memberof ClusterDeploymentHistory
|
|
6444
|
+
*/
|
|
6445
|
+
'auditing_data': ClusterDeploymentHistoryAuditingData;
|
|
6446
|
+
/**
|
|
6447
|
+
*
|
|
6448
|
+
* @type {StateEnum}
|
|
6449
|
+
* @memberof ClusterDeploymentHistory
|
|
6450
|
+
*/
|
|
6451
|
+
'status': StateEnum;
|
|
6452
|
+
/**
|
|
6453
|
+
*
|
|
6454
|
+
* @type {DeploymentHistoryActionStatus}
|
|
6455
|
+
* @memberof ClusterDeploymentHistory
|
|
6456
|
+
*/
|
|
6457
|
+
'action_status': DeploymentHistoryActionStatus;
|
|
6458
|
+
/**
|
|
6459
|
+
*
|
|
6460
|
+
* @type {DeploymentHistoryTriggerAction}
|
|
6461
|
+
* @memberof ClusterDeploymentHistory
|
|
6462
|
+
*/
|
|
6463
|
+
'trigger_action': DeploymentHistoryTriggerAction;
|
|
6464
|
+
/**
|
|
6465
|
+
*
|
|
6466
|
+
* @type {string}
|
|
6467
|
+
* @memberof ClusterDeploymentHistory
|
|
6468
|
+
*/
|
|
6469
|
+
'reason': ClusterDeploymentHistoryReasonEnum;
|
|
6470
|
+
/**
|
|
6471
|
+
*
|
|
6472
|
+
* @type {string}
|
|
6473
|
+
* @memberof ClusterDeploymentHistory
|
|
6474
|
+
*/
|
|
6475
|
+
'total_duration'?: string | null;
|
|
6476
|
+
}
|
|
6477
|
+
export declare const ClusterDeploymentHistoryReasonEnum: {
|
|
6478
|
+
readonly UNSPECIFIED: "UNSPECIFIED";
|
|
6479
|
+
readonly MAINTENANCE: "MAINTENANCE";
|
|
6480
|
+
};
|
|
6481
|
+
export type ClusterDeploymentHistoryReasonEnum = typeof ClusterDeploymentHistoryReasonEnum[keyof typeof ClusterDeploymentHistoryReasonEnum];
|
|
6482
|
+
/**
|
|
6483
|
+
*
|
|
6484
|
+
* @export
|
|
6485
|
+
* @interface ClusterDeploymentHistoryAuditingData
|
|
6486
|
+
*/
|
|
6487
|
+
export interface ClusterDeploymentHistoryAuditingData {
|
|
6488
|
+
/**
|
|
6489
|
+
*
|
|
6490
|
+
* @type {string}
|
|
6491
|
+
* @memberof ClusterDeploymentHistoryAuditingData
|
|
6492
|
+
*/
|
|
6493
|
+
'created_at': string;
|
|
6494
|
+
/**
|
|
6495
|
+
*
|
|
6496
|
+
* @type {string}
|
|
6497
|
+
* @memberof ClusterDeploymentHistoryAuditingData
|
|
6498
|
+
*/
|
|
6499
|
+
'updated_at': string;
|
|
6500
|
+
/**
|
|
6501
|
+
*
|
|
6502
|
+
* @type {OrganizationEventOrigin}
|
|
6503
|
+
* @memberof ClusterDeploymentHistoryAuditingData
|
|
6504
|
+
*/
|
|
6505
|
+
'origin'?: OrganizationEventOrigin | null;
|
|
6506
|
+
/**
|
|
6507
|
+
* Who triggered the deployment. Null for deployments created before this metadata was recorded
|
|
6508
|
+
* @type {string}
|
|
6509
|
+
* @memberof ClusterDeploymentHistoryAuditingData
|
|
6510
|
+
*/
|
|
6511
|
+
'triggered_by'?: string | null;
|
|
6512
|
+
}
|
|
6513
|
+
/**
|
|
6514
|
+
*
|
|
6515
|
+
* @export
|
|
6516
|
+
* @interface ClusterDeploymentHistoryIdentifier
|
|
6517
|
+
*/
|
|
6518
|
+
export interface ClusterDeploymentHistoryIdentifier {
|
|
6519
|
+
/**
|
|
6520
|
+
*
|
|
6521
|
+
* @type {string}
|
|
6522
|
+
* @memberof ClusterDeploymentHistoryIdentifier
|
|
6523
|
+
*/
|
|
6524
|
+
'deployment_id': string;
|
|
6525
|
+
/**
|
|
6526
|
+
*
|
|
6527
|
+
* @type {string}
|
|
6528
|
+
* @memberof ClusterDeploymentHistoryIdentifier
|
|
6529
|
+
*/
|
|
6530
|
+
'execution_id'?: string | null;
|
|
6531
|
+
/**
|
|
6532
|
+
*
|
|
6533
|
+
* @type {string}
|
|
6534
|
+
* @memberof ClusterDeploymentHistoryIdentifier
|
|
6535
|
+
*/
|
|
6536
|
+
'cluster_id': string;
|
|
6537
|
+
}
|
|
6538
|
+
/**
|
|
6539
|
+
*
|
|
6540
|
+
* @export
|
|
6541
|
+
* @interface ClusterDeploymentHistoryPaginatedResponseListV2
|
|
6542
|
+
*/
|
|
6543
|
+
export interface ClusterDeploymentHistoryPaginatedResponseListV2 {
|
|
6544
|
+
/**
|
|
6545
|
+
*
|
|
6546
|
+
* @type {number}
|
|
6547
|
+
* @memberof ClusterDeploymentHistoryPaginatedResponseListV2
|
|
6548
|
+
*/
|
|
6549
|
+
'page': number;
|
|
6550
|
+
/**
|
|
6551
|
+
*
|
|
6552
|
+
* @type {number}
|
|
6553
|
+
* @memberof ClusterDeploymentHistoryPaginatedResponseListV2
|
|
6554
|
+
*/
|
|
6555
|
+
'page_size': number;
|
|
6556
|
+
/**
|
|
6557
|
+
*
|
|
6558
|
+
* @type {Array<ClusterDeploymentHistory>}
|
|
6559
|
+
* @memberof ClusterDeploymentHistoryPaginatedResponseListV2
|
|
6560
|
+
*/
|
|
6561
|
+
'results'?: Array<ClusterDeploymentHistory>;
|
|
6562
|
+
}
|
|
6428
6563
|
/**
|
|
6429
6564
|
*
|
|
6430
6565
|
* @export
|
|
@@ -11272,6 +11407,7 @@ export declare const DeploymentHistoryActionStatus: {
|
|
|
11272
11407
|
readonly CANCELED: "CANCELED";
|
|
11273
11408
|
readonly CANCELING: "CANCELING";
|
|
11274
11409
|
readonly NEVER: "NEVER";
|
|
11410
|
+
readonly EXECUTING: "EXECUTING";
|
|
11275
11411
|
};
|
|
11276
11412
|
export type DeploymentHistoryActionStatus = typeof DeploymentHistoryActionStatus[keyof typeof DeploymentHistoryActionStatus];
|
|
11277
11413
|
/**
|
|
@@ -19343,7 +19479,7 @@ export interface ManagedDatabaseTypeResponseList {
|
|
|
19343
19479
|
*/
|
|
19344
19480
|
export interface McpServerRequest {
|
|
19345
19481
|
/**
|
|
19346
|
-
*
|
|
19482
|
+
* MCP server name, unique per scope owner within the organization
|
|
19347
19483
|
* @type {string}
|
|
19348
19484
|
* @memberof McpServerRequest
|
|
19349
19485
|
*/
|
|
@@ -19368,6 +19504,12 @@ export interface McpServerRequest {
|
|
|
19368
19504
|
'headers'?: {
|
|
19369
19505
|
[key: string]: string;
|
|
19370
19506
|
};
|
|
19507
|
+
/**
|
|
19508
|
+
* Cannot be changed after creation. On create, omitting it means ORGANIZATION, which requires the MANAGE_INFRASTRUCTURE permission; creating a USER connector requires CREATE_PROJECT. On edit, omitting it leaves the connector\'s scope unchanged, and stating a scope that differs from the connector\'s is refused with 400.
|
|
19509
|
+
* @type {McpServerScope}
|
|
19510
|
+
* @memberof McpServerRequest
|
|
19511
|
+
*/
|
|
19512
|
+
'scope'?: McpServerScope;
|
|
19371
19513
|
}
|
|
19372
19514
|
/**
|
|
19373
19515
|
*
|
|
@@ -19417,6 +19559,30 @@ export interface McpServerResponse {
|
|
|
19417
19559
|
* @memberof McpServerResponse
|
|
19418
19560
|
*/
|
|
19419
19561
|
'header_names': Set<string>;
|
|
19562
|
+
/**
|
|
19563
|
+
*
|
|
19564
|
+
* @type {McpServerScope}
|
|
19565
|
+
* @memberof McpServerResponse
|
|
19566
|
+
*/
|
|
19567
|
+
'scope': McpServerScope;
|
|
19568
|
+
/**
|
|
19569
|
+
* Identity of the owning member. Null for an ORGANIZATION connector.
|
|
19570
|
+
* @type {string}
|
|
19571
|
+
* @memberof McpServerResponse
|
|
19572
|
+
*/
|
|
19573
|
+
'owner_user_sub'?: string | null;
|
|
19574
|
+
/**
|
|
19575
|
+
* Display name of the owning member. Null for an ORGANIZATION connector.
|
|
19576
|
+
* @type {string}
|
|
19577
|
+
* @memberof McpServerResponse
|
|
19578
|
+
*/
|
|
19579
|
+
'owner_name'?: string | null;
|
|
19580
|
+
/**
|
|
19581
|
+
* Whether the member making this request may attach the connector to an agentic workflow. Computed per caller: an organization admin sees every USER connector but can attach none of them, so a picker must use this rather than scope alone.
|
|
19582
|
+
* @type {boolean}
|
|
19583
|
+
* @memberof McpServerResponse
|
|
19584
|
+
*/
|
|
19585
|
+
'attachable': boolean;
|
|
19420
19586
|
}
|
|
19421
19587
|
/**
|
|
19422
19588
|
*
|
|
@@ -19431,6 +19597,16 @@ export interface McpServerResponseList {
|
|
|
19431
19597
|
*/
|
|
19432
19598
|
'results': Array<McpServerResponse>;
|
|
19433
19599
|
}
|
|
19600
|
+
/**
|
|
19601
|
+
* ORGANIZATION: usable by every member who can edit an agentic workflow. USER: personal to the member who created it; only that member can attach or edit it.
|
|
19602
|
+
* @export
|
|
19603
|
+
* @enum {string}
|
|
19604
|
+
*/
|
|
19605
|
+
export declare const McpServerScope: {
|
|
19606
|
+
readonly ORGANIZATION: "ORGANIZATION";
|
|
19607
|
+
readonly USER: "USER";
|
|
19608
|
+
};
|
|
19609
|
+
export type McpServerScope = typeof McpServerScope[keyof typeof McpServerScope];
|
|
19434
19610
|
/**
|
|
19435
19611
|
*
|
|
19436
19612
|
* @export
|
|
@@ -32773,6 +32949,114 @@ export declare class CloudProviderCredentialsApi extends BaseAPI {
|
|
|
32773
32949
|
*/
|
|
32774
32950
|
listScalewayCredentials(organizationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClusterCredentialsResponseList, any, {}>>;
|
|
32775
32951
|
}
|
|
32952
|
+
/**
|
|
32953
|
+
* ClusterDeploymentHistoryApi - axios parameter creator
|
|
32954
|
+
* @export
|
|
32955
|
+
*/
|
|
32956
|
+
export declare const ClusterDeploymentHistoryApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
32957
|
+
/**
|
|
32958
|
+
* List previous and current cluster deployments. It returns actual deployments only: dry-runs and stop/delete operations are excluded. By default it returns the 20 last results. Use the pageSize query parameter to adjust the number of returned results
|
|
32959
|
+
* @summary List cluster deployments
|
|
32960
|
+
* @param {string} organizationId Organization ID
|
|
32961
|
+
* @param {string} clusterId Cluster ID
|
|
32962
|
+
* @param {number | null} [pageSize] The number of deployments to return in the current page. Must be greater than or equal to 1
|
|
32963
|
+
* @param {*} [options] Override http request option.
|
|
32964
|
+
* @throws {RequiredError}
|
|
32965
|
+
*/
|
|
32966
|
+
listClusterDeploymentHistoryV2: (organizationId: string, clusterId: string, pageSize?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
32967
|
+
/**
|
|
32968
|
+
* List the logs of a specific cluster deployment
|
|
32969
|
+
* @summary List logs for a specific cluster deployment
|
|
32970
|
+
* @param {string} organizationId Organization ID
|
|
32971
|
+
* @param {string} clusterId Cluster ID
|
|
32972
|
+
* @param {string} deploymentId Deployment ID
|
|
32973
|
+
* @param {*} [options] Override http request option.
|
|
32974
|
+
* @throws {RequiredError}
|
|
32975
|
+
*/
|
|
32976
|
+
listClusterDeploymentLogs: (organizationId: string, clusterId: string, deploymentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
32977
|
+
};
|
|
32978
|
+
/**
|
|
32979
|
+
* ClusterDeploymentHistoryApi - functional programming interface
|
|
32980
|
+
* @export
|
|
32981
|
+
*/
|
|
32982
|
+
export declare const ClusterDeploymentHistoryApiFp: (configuration?: Configuration) => {
|
|
32983
|
+
/**
|
|
32984
|
+
* List previous and current cluster deployments. It returns actual deployments only: dry-runs and stop/delete operations are excluded. By default it returns the 20 last results. Use the pageSize query parameter to adjust the number of returned results
|
|
32985
|
+
* @summary List cluster deployments
|
|
32986
|
+
* @param {string} organizationId Organization ID
|
|
32987
|
+
* @param {string} clusterId Cluster ID
|
|
32988
|
+
* @param {number | null} [pageSize] The number of deployments to return in the current page. Must be greater than or equal to 1
|
|
32989
|
+
* @param {*} [options] Override http request option.
|
|
32990
|
+
* @throws {RequiredError}
|
|
32991
|
+
*/
|
|
32992
|
+
listClusterDeploymentHistoryV2(organizationId: string, clusterId: string, pageSize?: number | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterDeploymentHistoryPaginatedResponseListV2>>;
|
|
32993
|
+
/**
|
|
32994
|
+
* List the logs of a specific cluster deployment
|
|
32995
|
+
* @summary List logs for a specific cluster deployment
|
|
32996
|
+
* @param {string} organizationId Organization ID
|
|
32997
|
+
* @param {string} clusterId Cluster ID
|
|
32998
|
+
* @param {string} deploymentId Deployment ID
|
|
32999
|
+
* @param {*} [options] Override http request option.
|
|
33000
|
+
* @throws {RequiredError}
|
|
33001
|
+
*/
|
|
33002
|
+
listClusterDeploymentLogs(organizationId: string, clusterId: string, deploymentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterLogsResponseList>>;
|
|
33003
|
+
};
|
|
33004
|
+
/**
|
|
33005
|
+
* ClusterDeploymentHistoryApi - factory interface
|
|
33006
|
+
* @export
|
|
33007
|
+
*/
|
|
33008
|
+
export declare const ClusterDeploymentHistoryApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
33009
|
+
/**
|
|
33010
|
+
* List previous and current cluster deployments. It returns actual deployments only: dry-runs and stop/delete operations are excluded. By default it returns the 20 last results. Use the pageSize query parameter to adjust the number of returned results
|
|
33011
|
+
* @summary List cluster deployments
|
|
33012
|
+
* @param {string} organizationId Organization ID
|
|
33013
|
+
* @param {string} clusterId Cluster ID
|
|
33014
|
+
* @param {number | null} [pageSize] The number of deployments to return in the current page. Must be greater than or equal to 1
|
|
33015
|
+
* @param {*} [options] Override http request option.
|
|
33016
|
+
* @throws {RequiredError}
|
|
33017
|
+
*/
|
|
33018
|
+
listClusterDeploymentHistoryV2(organizationId: string, clusterId: string, pageSize?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<ClusterDeploymentHistoryPaginatedResponseListV2>;
|
|
33019
|
+
/**
|
|
33020
|
+
* List the logs of a specific cluster deployment
|
|
33021
|
+
* @summary List logs for a specific cluster deployment
|
|
33022
|
+
* @param {string} organizationId Organization ID
|
|
33023
|
+
* @param {string} clusterId Cluster ID
|
|
33024
|
+
* @param {string} deploymentId Deployment ID
|
|
33025
|
+
* @param {*} [options] Override http request option.
|
|
33026
|
+
* @throws {RequiredError}
|
|
33027
|
+
*/
|
|
33028
|
+
listClusterDeploymentLogs(organizationId: string, clusterId: string, deploymentId: string, options?: RawAxiosRequestConfig): AxiosPromise<ClusterLogsResponseList>;
|
|
33029
|
+
};
|
|
33030
|
+
/**
|
|
33031
|
+
* ClusterDeploymentHistoryApi - object-oriented interface
|
|
33032
|
+
* @export
|
|
33033
|
+
* @class ClusterDeploymentHistoryApi
|
|
33034
|
+
* @extends {BaseAPI}
|
|
33035
|
+
*/
|
|
33036
|
+
export declare class ClusterDeploymentHistoryApi extends BaseAPI {
|
|
33037
|
+
/**
|
|
33038
|
+
* List previous and current cluster deployments. It returns actual deployments only: dry-runs and stop/delete operations are excluded. By default it returns the 20 last results. Use the pageSize query parameter to adjust the number of returned results
|
|
33039
|
+
* @summary List cluster deployments
|
|
33040
|
+
* @param {string} organizationId Organization ID
|
|
33041
|
+
* @param {string} clusterId Cluster ID
|
|
33042
|
+
* @param {number | null} [pageSize] The number of deployments to return in the current page. Must be greater than or equal to 1
|
|
33043
|
+
* @param {*} [options] Override http request option.
|
|
33044
|
+
* @throws {RequiredError}
|
|
33045
|
+
* @memberof ClusterDeploymentHistoryApi
|
|
33046
|
+
*/
|
|
33047
|
+
listClusterDeploymentHistoryV2(organizationId: string, clusterId: string, pageSize?: number | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClusterDeploymentHistoryPaginatedResponseListV2, any, {}>>;
|
|
33048
|
+
/**
|
|
33049
|
+
* List the logs of a specific cluster deployment
|
|
33050
|
+
* @summary List logs for a specific cluster deployment
|
|
33051
|
+
* @param {string} organizationId Organization ID
|
|
33052
|
+
* @param {string} clusterId Cluster ID
|
|
33053
|
+
* @param {string} deploymentId Deployment ID
|
|
33054
|
+
* @param {*} [options] Override http request option.
|
|
33055
|
+
* @throws {RequiredError}
|
|
33056
|
+
* @memberof ClusterDeploymentHistoryApi
|
|
33057
|
+
*/
|
|
33058
|
+
listClusterDeploymentLogs(organizationId: string, clusterId: string, deploymentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClusterLogsResponseList, any, {}>>;
|
|
33059
|
+
}
|
|
32776
33060
|
/**
|
|
32777
33061
|
* ClusterOperatorApi - axios parameter creator
|
|
32778
33062
|
* @export
|
|
@@ -33251,11 +33535,12 @@ export declare const ClustersApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
33251
33535
|
*/
|
|
33252
33536
|
listClusterAnalysisLogs: (clusterId: string, analysisId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
33253
33537
|
/**
|
|
33254
|
-
* List Cluster Logs
|
|
33538
|
+
* List Cluster Logs. Deprecated: use listClusterDeploymentLogs instead to fetch the logs of a specific cluster deployment.
|
|
33255
33539
|
* @summary List Cluster Logs
|
|
33256
33540
|
* @param {string} organizationId Organization ID
|
|
33257
33541
|
* @param {string} clusterId Cluster ID
|
|
33258
33542
|
* @param {*} [options] Override http request option.
|
|
33543
|
+
* @deprecated
|
|
33259
33544
|
* @throws {RequiredError}
|
|
33260
33545
|
*/
|
|
33261
33546
|
listClusterLogs: (organizationId: string, clusterId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -33621,11 +33906,12 @@ export declare const ClustersApiFp: (configuration?: Configuration) => {
|
|
|
33621
33906
|
*/
|
|
33622
33907
|
listClusterAnalysisLogs(clusterId: string, analysisId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterAnalysisLogResponseList>>;
|
|
33623
33908
|
/**
|
|
33624
|
-
* List Cluster Logs
|
|
33909
|
+
* List Cluster Logs. Deprecated: use listClusterDeploymentLogs instead to fetch the logs of a specific cluster deployment.
|
|
33625
33910
|
* @summary List Cluster Logs
|
|
33626
33911
|
* @param {string} organizationId Organization ID
|
|
33627
33912
|
* @param {string} clusterId Cluster ID
|
|
33628
33913
|
* @param {*} [options] Override http request option.
|
|
33914
|
+
* @deprecated
|
|
33629
33915
|
* @throws {RequiredError}
|
|
33630
33916
|
*/
|
|
33631
33917
|
listClusterLogs(organizationId: string, clusterId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterLogsResponseList>>;
|
|
@@ -33991,11 +34277,12 @@ export declare const ClustersApiFactory: (configuration?: Configuration, basePat
|
|
|
33991
34277
|
*/
|
|
33992
34278
|
listClusterAnalysisLogs(clusterId: string, analysisId: string, options?: RawAxiosRequestConfig): AxiosPromise<ClusterAnalysisLogResponseList>;
|
|
33993
34279
|
/**
|
|
33994
|
-
* List Cluster Logs
|
|
34280
|
+
* List Cluster Logs. Deprecated: use listClusterDeploymentLogs instead to fetch the logs of a specific cluster deployment.
|
|
33995
34281
|
* @summary List Cluster Logs
|
|
33996
34282
|
* @param {string} organizationId Organization ID
|
|
33997
34283
|
* @param {string} clusterId Cluster ID
|
|
33998
34284
|
* @param {*} [options] Override http request option.
|
|
34285
|
+
* @deprecated
|
|
33999
34286
|
* @throws {RequiredError}
|
|
34000
34287
|
*/
|
|
34001
34288
|
listClusterLogs(organizationId: string, clusterId: string, options?: RawAxiosRequestConfig): AxiosPromise<ClusterLogsResponseList>;
|
|
@@ -34389,11 +34676,12 @@ export declare class ClustersApi extends BaseAPI {
|
|
|
34389
34676
|
*/
|
|
34390
34677
|
listClusterAnalysisLogs(clusterId: string, analysisId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClusterAnalysisLogResponseList, any, {}>>;
|
|
34391
34678
|
/**
|
|
34392
|
-
* List Cluster Logs
|
|
34679
|
+
* List Cluster Logs. Deprecated: use listClusterDeploymentLogs instead to fetch the logs of a specific cluster deployment.
|
|
34393
34680
|
* @summary List Cluster Logs
|
|
34394
34681
|
* @param {string} organizationId Organization ID
|
|
34395
34682
|
* @param {string} clusterId Cluster ID
|
|
34396
34683
|
* @param {*} [options] Override http request option.
|
|
34684
|
+
* @deprecated
|
|
34397
34685
|
* @throws {RequiredError}
|
|
34398
34686
|
* @memberof ClustersApi
|
|
34399
34687
|
*/
|