@gooddata/api-client-tiger 11.39.0-alpha.2 → 11.39.0-alpha.4
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/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +291 -34
- package/esm/gd-tiger-model/TigerTypes.d.ts +4 -25
- package/esm/generated/afm-rest-api/api.d.ts +978 -186
- package/esm/generated/afm-rest-api/api.js +661 -70
- package/esm/generated/ai-json-api/api.d.ts +8 -8
- package/esm/generated/ai-json-api/api.js +6 -6
- package/esm/generated/auth-json-api/api.d.ts +0 -511
- package/esm/generated/auth-json-api/api.js +0 -650
- package/esm/generated/automation-json-api/api.d.ts +3 -0
- package/esm/generated/export-json-api/api.d.ts +3 -0
- package/esm/generated/metadata-json-api/api.d.ts +3 -0
- package/esm/generated/result-json-api/base.js +1 -1
- package/esm/generated/scan-json-api/api.d.ts +1 -1
- package/esm/index.d.ts +1 -1
- package/package.json +4 -4
|
@@ -390,14 +390,17 @@ export async function AILakeApiAxiosParamCreator_GetAiLakeServiceStatus(serviceI
|
|
|
390
390
|
}
|
|
391
391
|
// AILakeApi FP - AILakeApiAxiosParamCreator
|
|
392
392
|
/**
|
|
393
|
-
* (BETA) Returns
|
|
393
|
+
* (BETA) Returns data source associations for the specified AI Lake database instance.
|
|
394
394
|
* @summary (BETA) List data sources of an AILake Database instance
|
|
395
395
|
* @param {string} instanceId Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
396
|
+
* @param {string} [page] Zero-based page number.
|
|
397
|
+
* @param {string} [size] Number of items per page.
|
|
398
|
+
* @param {Array<string>} [metaInclude]
|
|
396
399
|
* @param {*} [options] Override http request option.
|
|
397
400
|
* @param {Configuration} [configuration] Optional configuration.
|
|
398
401
|
* @throws {RequiredError}
|
|
399
402
|
*/
|
|
400
|
-
export async function AILakeApiAxiosParamCreator_ListAiLakeDatabaseDataSources(instanceId, options = {}, configuration) {
|
|
403
|
+
export async function AILakeApiAxiosParamCreator_ListAiLakeDatabaseDataSources(instanceId, page, size, metaInclude, options = {}, configuration) {
|
|
401
404
|
// verify required parameter 'instanceId' is not null or undefined
|
|
402
405
|
assertParamExists('listAiLakeDatabaseDataSources', 'instanceId', instanceId);
|
|
403
406
|
const localVarPath = `/api/v1/ailake/database/instances/{instanceId}/dataSources`
|
|
@@ -411,6 +414,15 @@ export async function AILakeApiAxiosParamCreator_ListAiLakeDatabaseDataSources(i
|
|
|
411
414
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
412
415
|
const localVarHeaderParameter = {};
|
|
413
416
|
const localVarQueryParameter = {};
|
|
417
|
+
if (page !== undefined) {
|
|
418
|
+
localVarQueryParameter['page'] = page;
|
|
419
|
+
}
|
|
420
|
+
if (size !== undefined) {
|
|
421
|
+
localVarQueryParameter['size'] = size;
|
|
422
|
+
}
|
|
423
|
+
if (metaInclude) {
|
|
424
|
+
localVarQueryParameter['metaInclude'] = Array.from(metaInclude);
|
|
425
|
+
}
|
|
414
426
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
415
427
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
416
428
|
localVarRequestOptions.headers = {
|
|
@@ -425,16 +437,16 @@ export async function AILakeApiAxiosParamCreator_ListAiLakeDatabaseDataSources(i
|
|
|
425
437
|
}
|
|
426
438
|
// AILakeApi FP - AILakeApiAxiosParamCreator
|
|
427
439
|
/**
|
|
428
|
-
* (BETA) Lists database instances in the organization\'s AI Lake.
|
|
440
|
+
* (BETA) Lists database instances in the organization\'s AI Lake.
|
|
429
441
|
* @summary (BETA) List AI Lake Database instances
|
|
430
|
-
* @param {
|
|
431
|
-
* @param {
|
|
442
|
+
* @param {string} [page] Zero-based page number.
|
|
443
|
+
* @param {string} [size] Number of items per page.
|
|
432
444
|
* @param {Array<string>} [metaInclude]
|
|
433
445
|
* @param {*} [options] Override http request option.
|
|
434
446
|
* @param {Configuration} [configuration] Optional configuration.
|
|
435
447
|
* @throws {RequiredError}
|
|
436
448
|
*/
|
|
437
|
-
export async function AILakeApiAxiosParamCreator_ListAiLakeDatabaseInstances(
|
|
449
|
+
export async function AILakeApiAxiosParamCreator_ListAiLakeDatabaseInstances(page, size, metaInclude, options = {}, configuration) {
|
|
438
450
|
const localVarPath = `/api/v1/ailake/database/instances`;
|
|
439
451
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
440
452
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -445,12 +457,12 @@ export async function AILakeApiAxiosParamCreator_ListAiLakeDatabaseInstances(siz
|
|
|
445
457
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
446
458
|
const localVarHeaderParameter = {};
|
|
447
459
|
const localVarQueryParameter = {};
|
|
460
|
+
if (page !== undefined) {
|
|
461
|
+
localVarQueryParameter['page'] = page;
|
|
462
|
+
}
|
|
448
463
|
if (size !== undefined) {
|
|
449
464
|
localVarQueryParameter['size'] = size;
|
|
450
465
|
}
|
|
451
|
-
if (offset !== undefined) {
|
|
452
|
-
localVarQueryParameter['offset'] = offset;
|
|
453
|
-
}
|
|
454
466
|
if (metaInclude) {
|
|
455
467
|
localVarQueryParameter['metaInclude'] = Array.from(metaInclude);
|
|
456
468
|
}
|
|
@@ -470,11 +482,14 @@ export async function AILakeApiAxiosParamCreator_ListAiLakeDatabaseInstances(siz
|
|
|
470
482
|
/**
|
|
471
483
|
* (BETA) Lists ObjectStorages registered for the organization. Use the returned `name` as `sourceStorageName` in CreatePipeTable, or pass `storageId` to the ProvisionDatabase `storageIds` list. Provider credentials are stripped — only safe descriptors (id, name, type, bucket, region, endpoint, …) are returned.
|
|
472
484
|
* @summary (BETA) List registered AI Lake ObjectStorages
|
|
485
|
+
* @param {string} [page] Zero-based page number.
|
|
486
|
+
* @param {string} [size] Number of items per page.
|
|
487
|
+
* @param {Array<string>} [metaInclude]
|
|
473
488
|
* @param {*} [options] Override http request option.
|
|
474
489
|
* @param {Configuration} [configuration] Optional configuration.
|
|
475
490
|
* @throws {RequiredError}
|
|
476
491
|
*/
|
|
477
|
-
export async function AILakeApiAxiosParamCreator_ListAiLakeObjectStorages(options = {}, configuration) {
|
|
492
|
+
export async function AILakeApiAxiosParamCreator_ListAiLakeObjectStorages(page, size, metaInclude, options = {}, configuration) {
|
|
478
493
|
const localVarPath = `/api/v1/ailake/objectStorages`;
|
|
479
494
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
480
495
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -485,6 +500,15 @@ export async function AILakeApiAxiosParamCreator_ListAiLakeObjectStorages(option
|
|
|
485
500
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
486
501
|
const localVarHeaderParameter = {};
|
|
487
502
|
const localVarQueryParameter = {};
|
|
503
|
+
if (page !== undefined) {
|
|
504
|
+
localVarQueryParameter['page'] = page;
|
|
505
|
+
}
|
|
506
|
+
if (size !== undefined) {
|
|
507
|
+
localVarQueryParameter['size'] = size;
|
|
508
|
+
}
|
|
509
|
+
if (metaInclude) {
|
|
510
|
+
localVarQueryParameter['metaInclude'] = Array.from(metaInclude);
|
|
511
|
+
}
|
|
488
512
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
489
513
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
490
514
|
localVarRequestOptions.headers = {
|
|
@@ -499,14 +523,17 @@ export async function AILakeApiAxiosParamCreator_ListAiLakeObjectStorages(option
|
|
|
499
523
|
}
|
|
500
524
|
// AILakeApi FP - AILakeApiAxiosParamCreator
|
|
501
525
|
/**
|
|
502
|
-
* (BETA) Lists
|
|
526
|
+
* (BETA) Lists active pipe tables in the given AI Lake database instance.
|
|
503
527
|
* @summary (BETA) List AI Lake pipe tables
|
|
504
528
|
* @param {string} instanceId Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
529
|
+
* @param {string} [page] Zero-based page number.
|
|
530
|
+
* @param {string} [size] Number of items per page.
|
|
531
|
+
* @param {Array<string>} [metaInclude]
|
|
505
532
|
* @param {*} [options] Override http request option.
|
|
506
533
|
* @param {Configuration} [configuration] Optional configuration.
|
|
507
534
|
* @throws {RequiredError}
|
|
508
535
|
*/
|
|
509
|
-
export async function AILakeApiAxiosParamCreator_ListAiLakePipeTables(instanceId, options = {}, configuration) {
|
|
536
|
+
export async function AILakeApiAxiosParamCreator_ListAiLakePipeTables(instanceId, page, size, metaInclude, options = {}, configuration) {
|
|
510
537
|
// verify required parameter 'instanceId' is not null or undefined
|
|
511
538
|
assertParamExists('listAiLakePipeTables', 'instanceId', instanceId);
|
|
512
539
|
const localVarPath = `/api/v1/ailake/database/instances/{instanceId}/pipeTables`
|
|
@@ -520,6 +547,15 @@ export async function AILakeApiAxiosParamCreator_ListAiLakePipeTables(instanceId
|
|
|
520
547
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
521
548
|
const localVarHeaderParameter = {};
|
|
522
549
|
const localVarQueryParameter = {};
|
|
550
|
+
if (page !== undefined) {
|
|
551
|
+
localVarQueryParameter['page'] = page;
|
|
552
|
+
}
|
|
553
|
+
if (size !== undefined) {
|
|
554
|
+
localVarQueryParameter['size'] = size;
|
|
555
|
+
}
|
|
556
|
+
if (metaInclude) {
|
|
557
|
+
localVarQueryParameter['metaInclude'] = Array.from(metaInclude);
|
|
558
|
+
}
|
|
523
559
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
524
560
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
525
561
|
localVarRequestOptions.headers = {
|
|
@@ -534,16 +570,16 @@ export async function AILakeApiAxiosParamCreator_ListAiLakePipeTables(instanceId
|
|
|
534
570
|
}
|
|
535
571
|
// AILakeApi FP - AILakeApiAxiosParamCreator
|
|
536
572
|
/**
|
|
537
|
-
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name).
|
|
573
|
+
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name).
|
|
538
574
|
* @summary (BETA) List AI Lake services
|
|
539
|
-
* @param {
|
|
540
|
-
* @param {
|
|
575
|
+
* @param {string} [page] Zero-based page number.
|
|
576
|
+
* @param {string} [size] Number of items per page.
|
|
541
577
|
* @param {Array<string>} [metaInclude]
|
|
542
578
|
* @param {*} [options] Override http request option.
|
|
543
579
|
* @param {Configuration} [configuration] Optional configuration.
|
|
544
580
|
* @throws {RequiredError}
|
|
545
581
|
*/
|
|
546
|
-
export async function AILakeApiAxiosParamCreator_ListAiLakeServices(
|
|
582
|
+
export async function AILakeApiAxiosParamCreator_ListAiLakeServices(page, size, metaInclude, options = {}, configuration) {
|
|
547
583
|
const localVarPath = `/api/v1/ailake/services`;
|
|
548
584
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
549
585
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -554,12 +590,12 @@ export async function AILakeApiAxiosParamCreator_ListAiLakeServices(size, offset
|
|
|
554
590
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
555
591
|
const localVarHeaderParameter = {};
|
|
556
592
|
const localVarQueryParameter = {};
|
|
593
|
+
if (page !== undefined) {
|
|
594
|
+
localVarQueryParameter['page'] = page;
|
|
595
|
+
}
|
|
557
596
|
if (size !== undefined) {
|
|
558
597
|
localVarQueryParameter['size'] = size;
|
|
559
598
|
}
|
|
560
|
-
if (offset !== undefined) {
|
|
561
|
-
localVarQueryParameter['offset'] = offset;
|
|
562
|
-
}
|
|
563
599
|
if (metaInclude) {
|
|
564
600
|
localVarQueryParameter['metaInclude'] = Array.from(metaInclude);
|
|
565
601
|
}
|
|
@@ -626,6 +662,64 @@ export async function AILakeApiAxiosParamCreator_ProvisionAiLakeDatabaseInstance
|
|
|
626
662
|
};
|
|
627
663
|
}
|
|
628
664
|
// AILakeApi FP - AILakeApiAxiosParamCreator
|
|
665
|
+
/**
|
|
666
|
+
* (BETA) Deletes all rows for the specified Hive partition and re-loads them from S3. Use after overwriting a partition file in object storage with corrected data. Returns an operation-id header the client can use to poll for progress.
|
|
667
|
+
* @summary (BETA) Refresh a pipe table partition
|
|
668
|
+
* @param {string} instanceId Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
669
|
+
* @param {string} tableName Pipe table name.
|
|
670
|
+
* @param {RefreshPartitionRequest} refreshPartitionRequest
|
|
671
|
+
* @param {string} [operationId]
|
|
672
|
+
* @param {*} [options] Override http request option.
|
|
673
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
674
|
+
* @throws {RequiredError}
|
|
675
|
+
*/
|
|
676
|
+
export async function AILakeApiAxiosParamCreator_RefreshAiLakePipeTablePartition(instanceId, tableName, refreshPartitionRequest, operationId, options = {}, configuration) {
|
|
677
|
+
// verify required parameter 'instanceId' is not null or undefined
|
|
678
|
+
assertParamExists('refreshAiLakePipeTablePartition', 'instanceId', instanceId);
|
|
679
|
+
// verify required parameter 'tableName' is not null or undefined
|
|
680
|
+
assertParamExists('refreshAiLakePipeTablePartition', 'tableName', tableName);
|
|
681
|
+
// verify required parameter 'refreshPartitionRequest' is not null or undefined
|
|
682
|
+
assertParamExists('refreshAiLakePipeTablePartition', 'refreshPartitionRequest', refreshPartitionRequest);
|
|
683
|
+
const localVarPath = `/api/v1/ailake/database/instances/{instanceId}/pipeTables/{tableName}/refresh`
|
|
684
|
+
.replace(`{${"instanceId"}}`, encodeURIComponent(String(instanceId)))
|
|
685
|
+
.replace(`{${"tableName"}}`, encodeURIComponent(String(tableName)));
|
|
686
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
687
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
688
|
+
let baseOptions;
|
|
689
|
+
if (configuration) {
|
|
690
|
+
baseOptions = configuration.baseOptions;
|
|
691
|
+
}
|
|
692
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
693
|
+
const localVarHeaderParameter = {};
|
|
694
|
+
const localVarQueryParameter = {};
|
|
695
|
+
if (operationId !== undefined && operationId !== null) {
|
|
696
|
+
localVarHeaderParameter['operation-id'] = String(operationId);
|
|
697
|
+
}
|
|
698
|
+
const consumes = [
|
|
699
|
+
'application/json'
|
|
700
|
+
];
|
|
701
|
+
// use application/json if present, otherwise fallback to the first one
|
|
702
|
+
localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
|
|
703
|
+
? 'application/json'
|
|
704
|
+
: consumes[0];
|
|
705
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
706
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
707
|
+
localVarRequestOptions.headers = {
|
|
708
|
+
...localVarHeaderParameter,
|
|
709
|
+
...headersFromBaseOptions,
|
|
710
|
+
...options.headers,
|
|
711
|
+
};
|
|
712
|
+
const needsSerialization = typeof refreshPartitionRequest !== "string" ||
|
|
713
|
+
localVarRequestOptions.headers["Content-Type"] === "application/json";
|
|
714
|
+
localVarRequestOptions.data = needsSerialization
|
|
715
|
+
? JSON.stringify(refreshPartitionRequest !== undefined ? refreshPartitionRequest : {})
|
|
716
|
+
: refreshPartitionRequest || "";
|
|
717
|
+
return {
|
|
718
|
+
url: toPathString(localVarUrlObj),
|
|
719
|
+
options: localVarRequestOptions,
|
|
720
|
+
};
|
|
721
|
+
}
|
|
722
|
+
// AILakeApi FP - AILakeApiAxiosParamCreator
|
|
629
723
|
/**
|
|
630
724
|
* (BETA) Removes a data source association from an AI Lake database instance and deletes the corresponding data source from metadata-api. Fails if removing the data source would leave the instance with no data sources.
|
|
631
725
|
* @summary (BETA) Remove a data source from an AILake Database instance
|
|
@@ -909,7 +1003,7 @@ export async function AILakeApi_GetAiLakeServiceStatus(axios, basePath, requestP
|
|
|
909
1003
|
}
|
|
910
1004
|
// AILakeApi Api FP
|
|
911
1005
|
/**
|
|
912
|
-
* (BETA) Returns
|
|
1006
|
+
* (BETA) Returns data source associations for the specified AI Lake database instance.
|
|
913
1007
|
* @summary (BETA) List data sources of an AILake Database instance
|
|
914
1008
|
* @param {AxiosInstance} axios Axios instance.
|
|
915
1009
|
* @param {string} basePath Base path.
|
|
@@ -919,12 +1013,12 @@ export async function AILakeApi_GetAiLakeServiceStatus(axios, basePath, requestP
|
|
|
919
1013
|
* @throws {RequiredError}
|
|
920
1014
|
*/
|
|
921
1015
|
export async function AILakeApi_ListAiLakeDatabaseDataSources(axios, basePath, requestParameters, options, configuration) {
|
|
922
|
-
const localVarAxiosArgs = await AILakeApiAxiosParamCreator_ListAiLakeDatabaseDataSources(requestParameters.instanceId, options || {}, configuration);
|
|
1016
|
+
const localVarAxiosArgs = await AILakeApiAxiosParamCreator_ListAiLakeDatabaseDataSources(requestParameters.instanceId, requestParameters.page, requestParameters.size, requestParameters.metaInclude, options || {}, configuration);
|
|
923
1017
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
924
1018
|
}
|
|
925
1019
|
// AILakeApi Api FP
|
|
926
1020
|
/**
|
|
927
|
-
* (BETA) Lists database instances in the organization\'s AI Lake.
|
|
1021
|
+
* (BETA) Lists database instances in the organization\'s AI Lake.
|
|
928
1022
|
* @summary (BETA) List AI Lake Database instances
|
|
929
1023
|
* @param {AxiosInstance} axios Axios instance.
|
|
930
1024
|
* @param {string} basePath Base path.
|
|
@@ -934,7 +1028,7 @@ export async function AILakeApi_ListAiLakeDatabaseDataSources(axios, basePath, r
|
|
|
934
1028
|
* @throws {RequiredError}
|
|
935
1029
|
*/
|
|
936
1030
|
export async function AILakeApi_ListAiLakeDatabaseInstances(axios, basePath, requestParameters, options, configuration) {
|
|
937
|
-
const localVarAxiosArgs = await AILakeApiAxiosParamCreator_ListAiLakeDatabaseInstances(requestParameters.
|
|
1031
|
+
const localVarAxiosArgs = await AILakeApiAxiosParamCreator_ListAiLakeDatabaseInstances(requestParameters.page, requestParameters.size, requestParameters.metaInclude, options || {}, configuration);
|
|
938
1032
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
939
1033
|
}
|
|
940
1034
|
// AILakeApi Api FP
|
|
@@ -943,17 +1037,18 @@ export async function AILakeApi_ListAiLakeDatabaseInstances(axios, basePath, req
|
|
|
943
1037
|
* @summary (BETA) List registered AI Lake ObjectStorages
|
|
944
1038
|
* @param {AxiosInstance} axios Axios instance.
|
|
945
1039
|
* @param {string} basePath Base path.
|
|
1040
|
+
* @param {AILakeApiListAiLakeObjectStoragesRequest} requestParameters Request parameters.
|
|
946
1041
|
* @param {*} [options] Override http request option.
|
|
947
1042
|
* @param {Configuration} [configuration] Optional configuration.
|
|
948
1043
|
* @throws {RequiredError}
|
|
949
1044
|
*/
|
|
950
|
-
export async function AILakeApi_ListAiLakeObjectStorages(axios, basePath, options, configuration) {
|
|
951
|
-
const localVarAxiosArgs = await AILakeApiAxiosParamCreator_ListAiLakeObjectStorages(options || {}, configuration);
|
|
1045
|
+
export async function AILakeApi_ListAiLakeObjectStorages(axios, basePath, requestParameters, options, configuration) {
|
|
1046
|
+
const localVarAxiosArgs = await AILakeApiAxiosParamCreator_ListAiLakeObjectStorages(requestParameters.page, requestParameters.size, requestParameters.metaInclude, options || {}, configuration);
|
|
952
1047
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
953
1048
|
}
|
|
954
1049
|
// AILakeApi Api FP
|
|
955
1050
|
/**
|
|
956
|
-
* (BETA) Lists
|
|
1051
|
+
* (BETA) Lists active pipe tables in the given AI Lake database instance.
|
|
957
1052
|
* @summary (BETA) List AI Lake pipe tables
|
|
958
1053
|
* @param {AxiosInstance} axios Axios instance.
|
|
959
1054
|
* @param {string} basePath Base path.
|
|
@@ -963,12 +1058,12 @@ export async function AILakeApi_ListAiLakeObjectStorages(axios, basePath, option
|
|
|
963
1058
|
* @throws {RequiredError}
|
|
964
1059
|
*/
|
|
965
1060
|
export async function AILakeApi_ListAiLakePipeTables(axios, basePath, requestParameters, options, configuration) {
|
|
966
|
-
const localVarAxiosArgs = await AILakeApiAxiosParamCreator_ListAiLakePipeTables(requestParameters.instanceId, options || {}, configuration);
|
|
1061
|
+
const localVarAxiosArgs = await AILakeApiAxiosParamCreator_ListAiLakePipeTables(requestParameters.instanceId, requestParameters.page, requestParameters.size, requestParameters.metaInclude, options || {}, configuration);
|
|
967
1062
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
968
1063
|
}
|
|
969
1064
|
// AILakeApi Api FP
|
|
970
1065
|
/**
|
|
971
|
-
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name).
|
|
1066
|
+
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name).
|
|
972
1067
|
* @summary (BETA) List AI Lake services
|
|
973
1068
|
* @param {AxiosInstance} axios Axios instance.
|
|
974
1069
|
* @param {string} basePath Base path.
|
|
@@ -978,7 +1073,7 @@ export async function AILakeApi_ListAiLakePipeTables(axios, basePath, requestPar
|
|
|
978
1073
|
* @throws {RequiredError}
|
|
979
1074
|
*/
|
|
980
1075
|
export async function AILakeApi_ListAiLakeServices(axios, basePath, requestParameters, options, configuration) {
|
|
981
|
-
const localVarAxiosArgs = await AILakeApiAxiosParamCreator_ListAiLakeServices(requestParameters.
|
|
1076
|
+
const localVarAxiosArgs = await AILakeApiAxiosParamCreator_ListAiLakeServices(requestParameters.page, requestParameters.size, requestParameters.metaInclude, options || {}, configuration);
|
|
982
1077
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
983
1078
|
}
|
|
984
1079
|
// AILakeApi Api FP
|
|
@@ -997,6 +1092,21 @@ export async function AILakeApi_ProvisionAiLakeDatabaseInstance(axios, basePath,
|
|
|
997
1092
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
998
1093
|
}
|
|
999
1094
|
// AILakeApi Api FP
|
|
1095
|
+
/**
|
|
1096
|
+
* (BETA) Deletes all rows for the specified Hive partition and re-loads them from S3. Use after overwriting a partition file in object storage with corrected data. Returns an operation-id header the client can use to poll for progress.
|
|
1097
|
+
* @summary (BETA) Refresh a pipe table partition
|
|
1098
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
1099
|
+
* @param {string} basePath Base path.
|
|
1100
|
+
* @param {AILakeApiRefreshAiLakePipeTablePartitionRequest} requestParameters Request parameters.
|
|
1101
|
+
* @param {*} [options] Override http request option.
|
|
1102
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
1103
|
+
* @throws {RequiredError}
|
|
1104
|
+
*/
|
|
1105
|
+
export async function AILakeApi_RefreshAiLakePipeTablePartition(axios, basePath, requestParameters, options, configuration) {
|
|
1106
|
+
const localVarAxiosArgs = await AILakeApiAxiosParamCreator_RefreshAiLakePipeTablePartition(requestParameters.instanceId, requestParameters.tableName, requestParameters.refreshPartitionRequest, requestParameters.operationId, options || {}, configuration);
|
|
1107
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
1108
|
+
}
|
|
1109
|
+
// AILakeApi Api FP
|
|
1000
1110
|
/**
|
|
1001
1111
|
* (BETA) Removes a data source association from an AI Lake database instance and deletes the corresponding data source from metadata-api. Fails if removing the data source would leave the instance with no data sources.
|
|
1002
1112
|
* @summary (BETA) Remove a data source from an AILake Database instance
|
|
@@ -1148,7 +1258,7 @@ export class AILakeApi extends BaseAPI {
|
|
|
1148
1258
|
return AILakeApi_GetAiLakeServiceStatus(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
1149
1259
|
}
|
|
1150
1260
|
/**
|
|
1151
|
-
* (BETA) Returns
|
|
1261
|
+
* (BETA) Returns data source associations for the specified AI Lake database instance.
|
|
1152
1262
|
* @summary (BETA) List data sources of an AILake Database instance
|
|
1153
1263
|
* @param {AILakeApiListAiLakeDatabaseDataSourcesRequest} requestParameters Request parameters.
|
|
1154
1264
|
* @param {*} [options] Override http request option.
|
|
@@ -1159,7 +1269,7 @@ export class AILakeApi extends BaseAPI {
|
|
|
1159
1269
|
return AILakeApi_ListAiLakeDatabaseDataSources(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
1160
1270
|
}
|
|
1161
1271
|
/**
|
|
1162
|
-
* (BETA) Lists database instances in the organization\'s AI Lake.
|
|
1272
|
+
* (BETA) Lists database instances in the organization\'s AI Lake.
|
|
1163
1273
|
* @summary (BETA) List AI Lake Database instances
|
|
1164
1274
|
* @param {AILakeApiListAiLakeDatabaseInstancesRequest} requestParameters Request parameters.
|
|
1165
1275
|
* @param {*} [options] Override http request option.
|
|
@@ -1172,15 +1282,16 @@ export class AILakeApi extends BaseAPI {
|
|
|
1172
1282
|
/**
|
|
1173
1283
|
* (BETA) Lists ObjectStorages registered for the organization. Use the returned `name` as `sourceStorageName` in CreatePipeTable, or pass `storageId` to the ProvisionDatabase `storageIds` list. Provider credentials are stripped — only safe descriptors (id, name, type, bucket, region, endpoint, …) are returned.
|
|
1174
1284
|
* @summary (BETA) List registered AI Lake ObjectStorages
|
|
1285
|
+
* @param {AILakeApiListAiLakeObjectStoragesRequest} requestParameters Request parameters.
|
|
1175
1286
|
* @param {*} [options] Override http request option.
|
|
1176
1287
|
* @throws {RequiredError}
|
|
1177
1288
|
* @memberof AILakeApi
|
|
1178
1289
|
*/
|
|
1179
|
-
listAiLakeObjectStorages(options) {
|
|
1180
|
-
return AILakeApi_ListAiLakeObjectStorages(this.axios, this.basePath, options, this.configuration);
|
|
1290
|
+
listAiLakeObjectStorages(requestParameters = {}, options) {
|
|
1291
|
+
return AILakeApi_ListAiLakeObjectStorages(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
1181
1292
|
}
|
|
1182
1293
|
/**
|
|
1183
|
-
* (BETA) Lists
|
|
1294
|
+
* (BETA) Lists active pipe tables in the given AI Lake database instance.
|
|
1184
1295
|
* @summary (BETA) List AI Lake pipe tables
|
|
1185
1296
|
* @param {AILakeApiListAiLakePipeTablesRequest} requestParameters Request parameters.
|
|
1186
1297
|
* @param {*} [options] Override http request option.
|
|
@@ -1191,7 +1302,7 @@ export class AILakeApi extends BaseAPI {
|
|
|
1191
1302
|
return AILakeApi_ListAiLakePipeTables(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
1192
1303
|
}
|
|
1193
1304
|
/**
|
|
1194
|
-
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name).
|
|
1305
|
+
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name).
|
|
1195
1306
|
* @summary (BETA) List AI Lake services
|
|
1196
1307
|
* @param {AILakeApiListAiLakeServicesRequest} requestParameters Request parameters.
|
|
1197
1308
|
* @param {*} [options] Override http request option.
|
|
@@ -1212,6 +1323,17 @@ export class AILakeApi extends BaseAPI {
|
|
|
1212
1323
|
provisionAiLakeDatabaseInstance(requestParameters, options) {
|
|
1213
1324
|
return AILakeApi_ProvisionAiLakeDatabaseInstance(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
1214
1325
|
}
|
|
1326
|
+
/**
|
|
1327
|
+
* (BETA) Deletes all rows for the specified Hive partition and re-loads them from S3. Use after overwriting a partition file in object storage with corrected data. Returns an operation-id header the client can use to poll for progress.
|
|
1328
|
+
* @summary (BETA) Refresh a pipe table partition
|
|
1329
|
+
* @param {AILakeApiRefreshAiLakePipeTablePartitionRequest} requestParameters Request parameters.
|
|
1330
|
+
* @param {*} [options] Override http request option.
|
|
1331
|
+
* @throws {RequiredError}
|
|
1332
|
+
* @memberof AILakeApi
|
|
1333
|
+
*/
|
|
1334
|
+
refreshAiLakePipeTablePartition(requestParameters, options) {
|
|
1335
|
+
return AILakeApi_RefreshAiLakePipeTablePartition(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
1336
|
+
}
|
|
1215
1337
|
/**
|
|
1216
1338
|
* (BETA) Removes a data source association from an AI Lake database instance and deletes the corresponding data source from metadata-api. Fails if removing the data source would leave the instance with no data sources.
|
|
1217
1339
|
* @summary (BETA) Remove a data source from an AILake Database instance
|
|
@@ -1372,14 +1494,17 @@ export async function AILakeDatabasesApiAxiosParamCreator_GetAiLakeDatabaseInsta
|
|
|
1372
1494
|
}
|
|
1373
1495
|
// AILakeDatabasesApi FP - AILakeDatabasesApiAxiosParamCreator
|
|
1374
1496
|
/**
|
|
1375
|
-
* (BETA) Returns
|
|
1497
|
+
* (BETA) Returns data source associations for the specified AI Lake database instance.
|
|
1376
1498
|
* @summary (BETA) List data sources of an AILake Database instance
|
|
1377
1499
|
* @param {string} instanceId Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
1500
|
+
* @param {string} [page] Zero-based page number.
|
|
1501
|
+
* @param {string} [size] Number of items per page.
|
|
1502
|
+
* @param {Array<string>} [metaInclude]
|
|
1378
1503
|
* @param {*} [options] Override http request option.
|
|
1379
1504
|
* @param {Configuration} [configuration] Optional configuration.
|
|
1380
1505
|
* @throws {RequiredError}
|
|
1381
1506
|
*/
|
|
1382
|
-
export async function AILakeDatabasesApiAxiosParamCreator_ListAiLakeDatabaseDataSources(instanceId, options = {}, configuration) {
|
|
1507
|
+
export async function AILakeDatabasesApiAxiosParamCreator_ListAiLakeDatabaseDataSources(instanceId, page, size, metaInclude, options = {}, configuration) {
|
|
1383
1508
|
// verify required parameter 'instanceId' is not null or undefined
|
|
1384
1509
|
assertParamExists('listAiLakeDatabaseDataSources', 'instanceId', instanceId);
|
|
1385
1510
|
const localVarPath = `/api/v1/ailake/database/instances/{instanceId}/dataSources`
|
|
@@ -1393,6 +1518,15 @@ export async function AILakeDatabasesApiAxiosParamCreator_ListAiLakeDatabaseData
|
|
|
1393
1518
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
1394
1519
|
const localVarHeaderParameter = {};
|
|
1395
1520
|
const localVarQueryParameter = {};
|
|
1521
|
+
if (page !== undefined) {
|
|
1522
|
+
localVarQueryParameter['page'] = page;
|
|
1523
|
+
}
|
|
1524
|
+
if (size !== undefined) {
|
|
1525
|
+
localVarQueryParameter['size'] = size;
|
|
1526
|
+
}
|
|
1527
|
+
if (metaInclude) {
|
|
1528
|
+
localVarQueryParameter['metaInclude'] = Array.from(metaInclude);
|
|
1529
|
+
}
|
|
1396
1530
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1397
1531
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
1398
1532
|
localVarRequestOptions.headers = {
|
|
@@ -1407,16 +1541,16 @@ export async function AILakeDatabasesApiAxiosParamCreator_ListAiLakeDatabaseData
|
|
|
1407
1541
|
}
|
|
1408
1542
|
// AILakeDatabasesApi FP - AILakeDatabasesApiAxiosParamCreator
|
|
1409
1543
|
/**
|
|
1410
|
-
* (BETA) Lists database instances in the organization\'s AI Lake.
|
|
1544
|
+
* (BETA) Lists database instances in the organization\'s AI Lake.
|
|
1411
1545
|
* @summary (BETA) List AI Lake Database instances
|
|
1412
|
-
* @param {
|
|
1413
|
-
* @param {
|
|
1546
|
+
* @param {string} [page] Zero-based page number.
|
|
1547
|
+
* @param {string} [size] Number of items per page.
|
|
1414
1548
|
* @param {Array<string>} [metaInclude]
|
|
1415
1549
|
* @param {*} [options] Override http request option.
|
|
1416
1550
|
* @param {Configuration} [configuration] Optional configuration.
|
|
1417
1551
|
* @throws {RequiredError}
|
|
1418
1552
|
*/
|
|
1419
|
-
export async function AILakeDatabasesApiAxiosParamCreator_ListAiLakeDatabaseInstances(
|
|
1553
|
+
export async function AILakeDatabasesApiAxiosParamCreator_ListAiLakeDatabaseInstances(page, size, metaInclude, options = {}, configuration) {
|
|
1420
1554
|
const localVarPath = `/api/v1/ailake/database/instances`;
|
|
1421
1555
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1422
1556
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1427,12 +1561,12 @@ export async function AILakeDatabasesApiAxiosParamCreator_ListAiLakeDatabaseInst
|
|
|
1427
1561
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
1428
1562
|
const localVarHeaderParameter = {};
|
|
1429
1563
|
const localVarQueryParameter = {};
|
|
1564
|
+
if (page !== undefined) {
|
|
1565
|
+
localVarQueryParameter['page'] = page;
|
|
1566
|
+
}
|
|
1430
1567
|
if (size !== undefined) {
|
|
1431
1568
|
localVarQueryParameter['size'] = size;
|
|
1432
1569
|
}
|
|
1433
|
-
if (offset !== undefined) {
|
|
1434
|
-
localVarQueryParameter['offset'] = offset;
|
|
1435
|
-
}
|
|
1436
1570
|
if (metaInclude) {
|
|
1437
1571
|
localVarQueryParameter['metaInclude'] = Array.from(metaInclude);
|
|
1438
1572
|
}
|
|
@@ -1452,11 +1586,14 @@ export async function AILakeDatabasesApiAxiosParamCreator_ListAiLakeDatabaseInst
|
|
|
1452
1586
|
/**
|
|
1453
1587
|
* (BETA) Lists ObjectStorages registered for the organization. Use the returned `name` as `sourceStorageName` in CreatePipeTable, or pass `storageId` to the ProvisionDatabase `storageIds` list. Provider credentials are stripped — only safe descriptors (id, name, type, bucket, region, endpoint, …) are returned.
|
|
1454
1588
|
* @summary (BETA) List registered AI Lake ObjectStorages
|
|
1589
|
+
* @param {string} [page] Zero-based page number.
|
|
1590
|
+
* @param {string} [size] Number of items per page.
|
|
1591
|
+
* @param {Array<string>} [metaInclude]
|
|
1455
1592
|
* @param {*} [options] Override http request option.
|
|
1456
1593
|
* @param {Configuration} [configuration] Optional configuration.
|
|
1457
1594
|
* @throws {RequiredError}
|
|
1458
1595
|
*/
|
|
1459
|
-
export async function AILakeDatabasesApiAxiosParamCreator_ListAiLakeObjectStorages(options = {}, configuration) {
|
|
1596
|
+
export async function AILakeDatabasesApiAxiosParamCreator_ListAiLakeObjectStorages(page, size, metaInclude, options = {}, configuration) {
|
|
1460
1597
|
const localVarPath = `/api/v1/ailake/objectStorages`;
|
|
1461
1598
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1462
1599
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1467,6 +1604,15 @@ export async function AILakeDatabasesApiAxiosParamCreator_ListAiLakeObjectStorag
|
|
|
1467
1604
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
1468
1605
|
const localVarHeaderParameter = {};
|
|
1469
1606
|
const localVarQueryParameter = {};
|
|
1607
|
+
if (page !== undefined) {
|
|
1608
|
+
localVarQueryParameter['page'] = page;
|
|
1609
|
+
}
|
|
1610
|
+
if (size !== undefined) {
|
|
1611
|
+
localVarQueryParameter['size'] = size;
|
|
1612
|
+
}
|
|
1613
|
+
if (metaInclude) {
|
|
1614
|
+
localVarQueryParameter['metaInclude'] = Array.from(metaInclude);
|
|
1615
|
+
}
|
|
1470
1616
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1471
1617
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
1472
1618
|
localVarRequestOptions.headers = {
|
|
@@ -1665,7 +1811,7 @@ export async function AILakeDatabasesApi_GetAiLakeDatabaseInstance(axios, basePa
|
|
|
1665
1811
|
}
|
|
1666
1812
|
// AILakeDatabasesApi Api FP
|
|
1667
1813
|
/**
|
|
1668
|
-
* (BETA) Returns
|
|
1814
|
+
* (BETA) Returns data source associations for the specified AI Lake database instance.
|
|
1669
1815
|
* @summary (BETA) List data sources of an AILake Database instance
|
|
1670
1816
|
* @param {AxiosInstance} axios Axios instance.
|
|
1671
1817
|
* @param {string} basePath Base path.
|
|
@@ -1675,12 +1821,12 @@ export async function AILakeDatabasesApi_GetAiLakeDatabaseInstance(axios, basePa
|
|
|
1675
1821
|
* @throws {RequiredError}
|
|
1676
1822
|
*/
|
|
1677
1823
|
export async function AILakeDatabasesApi_ListAiLakeDatabaseDataSources(axios, basePath, requestParameters, options, configuration) {
|
|
1678
|
-
const localVarAxiosArgs = await AILakeDatabasesApiAxiosParamCreator_ListAiLakeDatabaseDataSources(requestParameters.instanceId, options || {}, configuration);
|
|
1824
|
+
const localVarAxiosArgs = await AILakeDatabasesApiAxiosParamCreator_ListAiLakeDatabaseDataSources(requestParameters.instanceId, requestParameters.page, requestParameters.size, requestParameters.metaInclude, options || {}, configuration);
|
|
1679
1825
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
1680
1826
|
}
|
|
1681
1827
|
// AILakeDatabasesApi Api FP
|
|
1682
1828
|
/**
|
|
1683
|
-
* (BETA) Lists database instances in the organization\'s AI Lake.
|
|
1829
|
+
* (BETA) Lists database instances in the organization\'s AI Lake.
|
|
1684
1830
|
* @summary (BETA) List AI Lake Database instances
|
|
1685
1831
|
* @param {AxiosInstance} axios Axios instance.
|
|
1686
1832
|
* @param {string} basePath Base path.
|
|
@@ -1690,7 +1836,7 @@ export async function AILakeDatabasesApi_ListAiLakeDatabaseDataSources(axios, ba
|
|
|
1690
1836
|
* @throws {RequiredError}
|
|
1691
1837
|
*/
|
|
1692
1838
|
export async function AILakeDatabasesApi_ListAiLakeDatabaseInstances(axios, basePath, requestParameters, options, configuration) {
|
|
1693
|
-
const localVarAxiosArgs = await AILakeDatabasesApiAxiosParamCreator_ListAiLakeDatabaseInstances(requestParameters.
|
|
1839
|
+
const localVarAxiosArgs = await AILakeDatabasesApiAxiosParamCreator_ListAiLakeDatabaseInstances(requestParameters.page, requestParameters.size, requestParameters.metaInclude, options || {}, configuration);
|
|
1694
1840
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
1695
1841
|
}
|
|
1696
1842
|
// AILakeDatabasesApi Api FP
|
|
@@ -1699,12 +1845,13 @@ export async function AILakeDatabasesApi_ListAiLakeDatabaseInstances(axios, base
|
|
|
1699
1845
|
* @summary (BETA) List registered AI Lake ObjectStorages
|
|
1700
1846
|
* @param {AxiosInstance} axios Axios instance.
|
|
1701
1847
|
* @param {string} basePath Base path.
|
|
1848
|
+
* @param {AILakeDatabasesApiListAiLakeObjectStoragesRequest} requestParameters Request parameters.
|
|
1702
1849
|
* @param {*} [options] Override http request option.
|
|
1703
1850
|
* @param {Configuration} [configuration] Optional configuration.
|
|
1704
1851
|
* @throws {RequiredError}
|
|
1705
1852
|
*/
|
|
1706
|
-
export async function AILakeDatabasesApi_ListAiLakeObjectStorages(axios, basePath, options, configuration) {
|
|
1707
|
-
const localVarAxiosArgs = await AILakeDatabasesApiAxiosParamCreator_ListAiLakeObjectStorages(options || {}, configuration);
|
|
1853
|
+
export async function AILakeDatabasesApi_ListAiLakeObjectStorages(axios, basePath, requestParameters, options, configuration) {
|
|
1854
|
+
const localVarAxiosArgs = await AILakeDatabasesApiAxiosParamCreator_ListAiLakeObjectStorages(requestParameters.page, requestParameters.size, requestParameters.metaInclude, options || {}, configuration);
|
|
1708
1855
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
1709
1856
|
}
|
|
1710
1857
|
// AILakeDatabasesApi Api FP
|
|
@@ -1793,7 +1940,7 @@ export class AILakeDatabasesApi extends BaseAPI {
|
|
|
1793
1940
|
return AILakeDatabasesApi_GetAiLakeDatabaseInstance(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
1794
1941
|
}
|
|
1795
1942
|
/**
|
|
1796
|
-
* (BETA) Returns
|
|
1943
|
+
* (BETA) Returns data source associations for the specified AI Lake database instance.
|
|
1797
1944
|
* @summary (BETA) List data sources of an AILake Database instance
|
|
1798
1945
|
* @param {AILakeDatabasesApiListAiLakeDatabaseDataSourcesRequest} requestParameters Request parameters.
|
|
1799
1946
|
* @param {*} [options] Override http request option.
|
|
@@ -1804,7 +1951,7 @@ export class AILakeDatabasesApi extends BaseAPI {
|
|
|
1804
1951
|
return AILakeDatabasesApi_ListAiLakeDatabaseDataSources(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
1805
1952
|
}
|
|
1806
1953
|
/**
|
|
1807
|
-
* (BETA) Lists database instances in the organization\'s AI Lake.
|
|
1954
|
+
* (BETA) Lists database instances in the organization\'s AI Lake.
|
|
1808
1955
|
* @summary (BETA) List AI Lake Database instances
|
|
1809
1956
|
* @param {AILakeDatabasesApiListAiLakeDatabaseInstancesRequest} requestParameters Request parameters.
|
|
1810
1957
|
* @param {*} [options] Override http request option.
|
|
@@ -1817,12 +1964,13 @@ export class AILakeDatabasesApi extends BaseAPI {
|
|
|
1817
1964
|
/**
|
|
1818
1965
|
* (BETA) Lists ObjectStorages registered for the organization. Use the returned `name` as `sourceStorageName` in CreatePipeTable, or pass `storageId` to the ProvisionDatabase `storageIds` list. Provider credentials are stripped — only safe descriptors (id, name, type, bucket, region, endpoint, …) are returned.
|
|
1819
1966
|
* @summary (BETA) List registered AI Lake ObjectStorages
|
|
1967
|
+
* @param {AILakeDatabasesApiListAiLakeObjectStoragesRequest} requestParameters Request parameters.
|
|
1820
1968
|
* @param {*} [options] Override http request option.
|
|
1821
1969
|
* @throws {RequiredError}
|
|
1822
1970
|
* @memberof AILakeDatabasesApi
|
|
1823
1971
|
*/
|
|
1824
|
-
listAiLakeObjectStorages(options) {
|
|
1825
|
-
return AILakeDatabasesApi_ListAiLakeObjectStorages(this.axios, this.basePath, options, this.configuration);
|
|
1972
|
+
listAiLakeObjectStorages(requestParameters = {}, options) {
|
|
1973
|
+
return AILakeDatabasesApi_ListAiLakeObjectStorages(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
1826
1974
|
}
|
|
1827
1975
|
/**
|
|
1828
1976
|
* (BETA) Creates a new database in the organization\'s AI Lake. Returns an operation-id in the operation-id header the client can use to poll for the progress.
|
|
@@ -2050,14 +2198,17 @@ export async function AILakePipeTablesApiAxiosParamCreator_GetAiLakePipeTable(in
|
|
|
2050
2198
|
}
|
|
2051
2199
|
// AILakePipeTablesApi FP - AILakePipeTablesApiAxiosParamCreator
|
|
2052
2200
|
/**
|
|
2053
|
-
* (BETA) Lists
|
|
2201
|
+
* (BETA) Lists active pipe tables in the given AI Lake database instance.
|
|
2054
2202
|
* @summary (BETA) List AI Lake pipe tables
|
|
2055
2203
|
* @param {string} instanceId Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
2204
|
+
* @param {string} [page] Zero-based page number.
|
|
2205
|
+
* @param {string} [size] Number of items per page.
|
|
2206
|
+
* @param {Array<string>} [metaInclude]
|
|
2056
2207
|
* @param {*} [options] Override http request option.
|
|
2057
2208
|
* @param {Configuration} [configuration] Optional configuration.
|
|
2058
2209
|
* @throws {RequiredError}
|
|
2059
2210
|
*/
|
|
2060
|
-
export async function AILakePipeTablesApiAxiosParamCreator_ListAiLakePipeTables(instanceId, options = {}, configuration) {
|
|
2211
|
+
export async function AILakePipeTablesApiAxiosParamCreator_ListAiLakePipeTables(instanceId, page, size, metaInclude, options = {}, configuration) {
|
|
2061
2212
|
// verify required parameter 'instanceId' is not null or undefined
|
|
2062
2213
|
assertParamExists('listAiLakePipeTables', 'instanceId', instanceId);
|
|
2063
2214
|
const localVarPath = `/api/v1/ailake/database/instances/{instanceId}/pipeTables`
|
|
@@ -2071,6 +2222,15 @@ export async function AILakePipeTablesApiAxiosParamCreator_ListAiLakePipeTables(
|
|
|
2071
2222
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
2072
2223
|
const localVarHeaderParameter = {};
|
|
2073
2224
|
const localVarQueryParameter = {};
|
|
2225
|
+
if (page !== undefined) {
|
|
2226
|
+
localVarQueryParameter['page'] = page;
|
|
2227
|
+
}
|
|
2228
|
+
if (size !== undefined) {
|
|
2229
|
+
localVarQueryParameter['size'] = size;
|
|
2230
|
+
}
|
|
2231
|
+
if (metaInclude) {
|
|
2232
|
+
localVarQueryParameter['metaInclude'] = Array.from(metaInclude);
|
|
2233
|
+
}
|
|
2074
2234
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2075
2235
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
2076
2236
|
localVarRequestOptions.headers = {
|
|
@@ -2083,6 +2243,64 @@ export async function AILakePipeTablesApiAxiosParamCreator_ListAiLakePipeTables(
|
|
|
2083
2243
|
options: localVarRequestOptions,
|
|
2084
2244
|
};
|
|
2085
2245
|
}
|
|
2246
|
+
// AILakePipeTablesApi FP - AILakePipeTablesApiAxiosParamCreator
|
|
2247
|
+
/**
|
|
2248
|
+
* (BETA) Deletes all rows for the specified Hive partition and re-loads them from S3. Use after overwriting a partition file in object storage with corrected data. Returns an operation-id header the client can use to poll for progress.
|
|
2249
|
+
* @summary (BETA) Refresh a pipe table partition
|
|
2250
|
+
* @param {string} instanceId Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
2251
|
+
* @param {string} tableName Pipe table name.
|
|
2252
|
+
* @param {RefreshPartitionRequest} refreshPartitionRequest
|
|
2253
|
+
* @param {string} [operationId]
|
|
2254
|
+
* @param {*} [options] Override http request option.
|
|
2255
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
2256
|
+
* @throws {RequiredError}
|
|
2257
|
+
*/
|
|
2258
|
+
export async function AILakePipeTablesApiAxiosParamCreator_RefreshAiLakePipeTablePartition(instanceId, tableName, refreshPartitionRequest, operationId, options = {}, configuration) {
|
|
2259
|
+
// verify required parameter 'instanceId' is not null or undefined
|
|
2260
|
+
assertParamExists('refreshAiLakePipeTablePartition', 'instanceId', instanceId);
|
|
2261
|
+
// verify required parameter 'tableName' is not null or undefined
|
|
2262
|
+
assertParamExists('refreshAiLakePipeTablePartition', 'tableName', tableName);
|
|
2263
|
+
// verify required parameter 'refreshPartitionRequest' is not null or undefined
|
|
2264
|
+
assertParamExists('refreshAiLakePipeTablePartition', 'refreshPartitionRequest', refreshPartitionRequest);
|
|
2265
|
+
const localVarPath = `/api/v1/ailake/database/instances/{instanceId}/pipeTables/{tableName}/refresh`
|
|
2266
|
+
.replace(`{${"instanceId"}}`, encodeURIComponent(String(instanceId)))
|
|
2267
|
+
.replace(`{${"tableName"}}`, encodeURIComponent(String(tableName)));
|
|
2268
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2269
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2270
|
+
let baseOptions;
|
|
2271
|
+
if (configuration) {
|
|
2272
|
+
baseOptions = configuration.baseOptions;
|
|
2273
|
+
}
|
|
2274
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
2275
|
+
const localVarHeaderParameter = {};
|
|
2276
|
+
const localVarQueryParameter = {};
|
|
2277
|
+
if (operationId !== undefined && operationId !== null) {
|
|
2278
|
+
localVarHeaderParameter['operation-id'] = String(operationId);
|
|
2279
|
+
}
|
|
2280
|
+
const consumes = [
|
|
2281
|
+
'application/json'
|
|
2282
|
+
];
|
|
2283
|
+
// use application/json if present, otherwise fallback to the first one
|
|
2284
|
+
localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
|
|
2285
|
+
? 'application/json'
|
|
2286
|
+
: consumes[0];
|
|
2287
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2288
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
2289
|
+
localVarRequestOptions.headers = {
|
|
2290
|
+
...localVarHeaderParameter,
|
|
2291
|
+
...headersFromBaseOptions,
|
|
2292
|
+
...options.headers,
|
|
2293
|
+
};
|
|
2294
|
+
const needsSerialization = typeof refreshPartitionRequest !== "string" ||
|
|
2295
|
+
localVarRequestOptions.headers["Content-Type"] === "application/json";
|
|
2296
|
+
localVarRequestOptions.data = needsSerialization
|
|
2297
|
+
? JSON.stringify(refreshPartitionRequest !== undefined ? refreshPartitionRequest : {})
|
|
2298
|
+
: refreshPartitionRequest || "";
|
|
2299
|
+
return {
|
|
2300
|
+
url: toPathString(localVarUrlObj),
|
|
2301
|
+
options: localVarRequestOptions,
|
|
2302
|
+
};
|
|
2303
|
+
}
|
|
2086
2304
|
// AILakePipeTablesApi Api FP
|
|
2087
2305
|
/**
|
|
2088
2306
|
* (BETA) Collects CBO statistics for tables in a StarRocks database. Works for both internal (native/PIPE) and external (Iceberg) catalogs. If tableNames is empty, all tables are analyzed.
|
|
@@ -2145,7 +2363,7 @@ export async function AILakePipeTablesApi_GetAiLakePipeTable(axios, basePath, re
|
|
|
2145
2363
|
}
|
|
2146
2364
|
// AILakePipeTablesApi Api FP
|
|
2147
2365
|
/**
|
|
2148
|
-
* (BETA) Lists
|
|
2366
|
+
* (BETA) Lists active pipe tables in the given AI Lake database instance.
|
|
2149
2367
|
* @summary (BETA) List AI Lake pipe tables
|
|
2150
2368
|
* @param {AxiosInstance} axios Axios instance.
|
|
2151
2369
|
* @param {string} basePath Base path.
|
|
@@ -2155,7 +2373,22 @@ export async function AILakePipeTablesApi_GetAiLakePipeTable(axios, basePath, re
|
|
|
2155
2373
|
* @throws {RequiredError}
|
|
2156
2374
|
*/
|
|
2157
2375
|
export async function AILakePipeTablesApi_ListAiLakePipeTables(axios, basePath, requestParameters, options, configuration) {
|
|
2158
|
-
const localVarAxiosArgs = await AILakePipeTablesApiAxiosParamCreator_ListAiLakePipeTables(requestParameters.instanceId, options || {}, configuration);
|
|
2376
|
+
const localVarAxiosArgs = await AILakePipeTablesApiAxiosParamCreator_ListAiLakePipeTables(requestParameters.instanceId, requestParameters.page, requestParameters.size, requestParameters.metaInclude, options || {}, configuration);
|
|
2377
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
2378
|
+
}
|
|
2379
|
+
// AILakePipeTablesApi Api FP
|
|
2380
|
+
/**
|
|
2381
|
+
* (BETA) Deletes all rows for the specified Hive partition and re-loads them from S3. Use after overwriting a partition file in object storage with corrected data. Returns an operation-id header the client can use to poll for progress.
|
|
2382
|
+
* @summary (BETA) Refresh a pipe table partition
|
|
2383
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
2384
|
+
* @param {string} basePath Base path.
|
|
2385
|
+
* @param {AILakePipeTablesApiRefreshAiLakePipeTablePartitionRequest} requestParameters Request parameters.
|
|
2386
|
+
* @param {*} [options] Override http request option.
|
|
2387
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
2388
|
+
* @throws {RequiredError}
|
|
2389
|
+
*/
|
|
2390
|
+
export async function AILakePipeTablesApi_RefreshAiLakePipeTablePartition(axios, basePath, requestParameters, options, configuration) {
|
|
2391
|
+
const localVarAxiosArgs = await AILakePipeTablesApiAxiosParamCreator_RefreshAiLakePipeTablePartition(requestParameters.instanceId, requestParameters.tableName, requestParameters.refreshPartitionRequest, requestParameters.operationId, options || {}, configuration);
|
|
2159
2392
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
2160
2393
|
}
|
|
2161
2394
|
/**
|
|
@@ -2210,7 +2443,7 @@ export class AILakePipeTablesApi extends BaseAPI {
|
|
|
2210
2443
|
return AILakePipeTablesApi_GetAiLakePipeTable(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
2211
2444
|
}
|
|
2212
2445
|
/**
|
|
2213
|
-
* (BETA) Lists
|
|
2446
|
+
* (BETA) Lists active pipe tables in the given AI Lake database instance.
|
|
2214
2447
|
* @summary (BETA) List AI Lake pipe tables
|
|
2215
2448
|
* @param {AILakePipeTablesApiListAiLakePipeTablesRequest} requestParameters Request parameters.
|
|
2216
2449
|
* @param {*} [options] Override http request option.
|
|
@@ -2220,6 +2453,17 @@ export class AILakePipeTablesApi extends BaseAPI {
|
|
|
2220
2453
|
listAiLakePipeTables(requestParameters, options) {
|
|
2221
2454
|
return AILakePipeTablesApi_ListAiLakePipeTables(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
2222
2455
|
}
|
|
2456
|
+
/**
|
|
2457
|
+
* (BETA) Deletes all rows for the specified Hive partition and re-loads them from S3. Use after overwriting a partition file in object storage with corrected data. Returns an operation-id header the client can use to poll for progress.
|
|
2458
|
+
* @summary (BETA) Refresh a pipe table partition
|
|
2459
|
+
* @param {AILakePipeTablesApiRefreshAiLakePipeTablePartitionRequest} requestParameters Request parameters.
|
|
2460
|
+
* @param {*} [options] Override http request option.
|
|
2461
|
+
* @throws {RequiredError}
|
|
2462
|
+
* @memberof AILakePipeTablesApi
|
|
2463
|
+
*/
|
|
2464
|
+
refreshAiLakePipeTablePartition(requestParameters, options) {
|
|
2465
|
+
return AILakePipeTablesApi_RefreshAiLakePipeTablePartition(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
2466
|
+
}
|
|
2223
2467
|
}
|
|
2224
2468
|
// AILakeServicesOperationsApi FP - AILakeServicesOperationsApiAxiosParamCreator
|
|
2225
2469
|
/**
|
|
@@ -2293,16 +2537,16 @@ export async function AILakeServicesOperationsApiAxiosParamCreator_GetAiLakeServ
|
|
|
2293
2537
|
}
|
|
2294
2538
|
// AILakeServicesOperationsApi FP - AILakeServicesOperationsApiAxiosParamCreator
|
|
2295
2539
|
/**
|
|
2296
|
-
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name).
|
|
2540
|
+
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name).
|
|
2297
2541
|
* @summary (BETA) List AI Lake services
|
|
2298
|
-
* @param {
|
|
2299
|
-
* @param {
|
|
2542
|
+
* @param {string} [page] Zero-based page number.
|
|
2543
|
+
* @param {string} [size] Number of items per page.
|
|
2300
2544
|
* @param {Array<string>} [metaInclude]
|
|
2301
2545
|
* @param {*} [options] Override http request option.
|
|
2302
2546
|
* @param {Configuration} [configuration] Optional configuration.
|
|
2303
2547
|
* @throws {RequiredError}
|
|
2304
2548
|
*/
|
|
2305
|
-
export async function AILakeServicesOperationsApiAxiosParamCreator_ListAiLakeServices(
|
|
2549
|
+
export async function AILakeServicesOperationsApiAxiosParamCreator_ListAiLakeServices(page, size, metaInclude, options = {}, configuration) {
|
|
2306
2550
|
const localVarPath = `/api/v1/ailake/services`;
|
|
2307
2551
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2308
2552
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -2313,12 +2557,12 @@ export async function AILakeServicesOperationsApiAxiosParamCreator_ListAiLakeSer
|
|
|
2313
2557
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
2314
2558
|
const localVarHeaderParameter = {};
|
|
2315
2559
|
const localVarQueryParameter = {};
|
|
2560
|
+
if (page !== undefined) {
|
|
2561
|
+
localVarQueryParameter['page'] = page;
|
|
2562
|
+
}
|
|
2316
2563
|
if (size !== undefined) {
|
|
2317
2564
|
localVarQueryParameter['size'] = size;
|
|
2318
2565
|
}
|
|
2319
|
-
if (offset !== undefined) {
|
|
2320
|
-
localVarQueryParameter['offset'] = offset;
|
|
2321
|
-
}
|
|
2322
2566
|
if (metaInclude) {
|
|
2323
2567
|
localVarQueryParameter['metaInclude'] = Array.from(metaInclude);
|
|
2324
2568
|
}
|
|
@@ -2424,7 +2668,7 @@ export async function AILakeServicesOperationsApi_GetAiLakeServiceStatus(axios,
|
|
|
2424
2668
|
}
|
|
2425
2669
|
// AILakeServicesOperationsApi Api FP
|
|
2426
2670
|
/**
|
|
2427
|
-
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name).
|
|
2671
|
+
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name).
|
|
2428
2672
|
* @summary (BETA) List AI Lake services
|
|
2429
2673
|
* @param {AxiosInstance} axios Axios instance.
|
|
2430
2674
|
* @param {string} basePath Base path.
|
|
@@ -2434,7 +2678,7 @@ export async function AILakeServicesOperationsApi_GetAiLakeServiceStatus(axios,
|
|
|
2434
2678
|
* @throws {RequiredError}
|
|
2435
2679
|
*/
|
|
2436
2680
|
export async function AILakeServicesOperationsApi_ListAiLakeServices(axios, basePath, requestParameters, options, configuration) {
|
|
2437
|
-
const localVarAxiosArgs = await AILakeServicesOperationsApiAxiosParamCreator_ListAiLakeServices(requestParameters.
|
|
2681
|
+
const localVarAxiosArgs = await AILakeServicesOperationsApiAxiosParamCreator_ListAiLakeServices(requestParameters.page, requestParameters.size, requestParameters.metaInclude, options || {}, configuration);
|
|
2438
2682
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
2439
2683
|
}
|
|
2440
2684
|
// AILakeServicesOperationsApi Api FP
|
|
@@ -2482,7 +2726,7 @@ export class AILakeServicesOperationsApi extends BaseAPI {
|
|
|
2482
2726
|
return AILakeServicesOperationsApi_GetAiLakeServiceStatus(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
2483
2727
|
}
|
|
2484
2728
|
/**
|
|
2485
|
-
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name).
|
|
2729
|
+
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name).
|
|
2486
2730
|
* @summary (BETA) List AI Lake services
|
|
2487
2731
|
* @param {AILakeServicesOperationsApiListAiLakeServicesRequest} requestParameters Request parameters.
|
|
2488
2732
|
* @param {*} [options] Override http request option.
|
|
@@ -2933,6 +3177,44 @@ export async function ActionsApiAxiosParamCreator_CancelWorkflow(workspaceId, ru
|
|
|
2933
3177
|
};
|
|
2934
3178
|
}
|
|
2935
3179
|
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
3180
|
+
/**
|
|
3181
|
+
*
|
|
3182
|
+
* @param {string} workspaceId Workspace identifier
|
|
3183
|
+
* @param {string} runId
|
|
3184
|
+
* @param {*} [options] Override http request option.
|
|
3185
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3186
|
+
* @throws {RequiredError}
|
|
3187
|
+
*/
|
|
3188
|
+
export async function ActionsApiAxiosParamCreator_CancelWorkflow1(workspaceId, runId, options = {}, configuration) {
|
|
3189
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
3190
|
+
assertParamExists('cancelWorkflow1', 'workspaceId', workspaceId);
|
|
3191
|
+
// verify required parameter 'runId' is not null or undefined
|
|
3192
|
+
assertParamExists('cancelWorkflow1', 'runId', runId);
|
|
3193
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/{runId}/cancel`
|
|
3194
|
+
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)))
|
|
3195
|
+
.replace(`{${"runId"}}`, encodeURIComponent(String(runId)));
|
|
3196
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3197
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3198
|
+
let baseOptions;
|
|
3199
|
+
if (configuration) {
|
|
3200
|
+
baseOptions = configuration.baseOptions;
|
|
3201
|
+
}
|
|
3202
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
3203
|
+
const localVarHeaderParameter = {};
|
|
3204
|
+
const localVarQueryParameter = {};
|
|
3205
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3206
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
3207
|
+
localVarRequestOptions.headers = {
|
|
3208
|
+
...localVarHeaderParameter,
|
|
3209
|
+
...headersFromBaseOptions,
|
|
3210
|
+
...options.headers,
|
|
3211
|
+
};
|
|
3212
|
+
return {
|
|
3213
|
+
url: toPathString(localVarUrlObj),
|
|
3214
|
+
options: localVarRequestOptions,
|
|
3215
|
+
};
|
|
3216
|
+
}
|
|
3217
|
+
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
2936
3218
|
/**
|
|
2937
3219
|
* Computes change analysis for the provided execution definition.
|
|
2938
3220
|
* @summary Compute change analysis
|
|
@@ -3646,6 +3928,55 @@ export async function ActionsApiAxiosParamCreator_GenerateDashboardSummary(works
|
|
|
3646
3928
|
};
|
|
3647
3929
|
}
|
|
3648
3930
|
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
3931
|
+
/**
|
|
3932
|
+
*
|
|
3933
|
+
* @param {string} workspaceId Workspace identifier
|
|
3934
|
+
* @param {DashboardSummaryRequestDto} dashboardSummaryRequestDto
|
|
3935
|
+
* @param {*} [options] Override http request option.
|
|
3936
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3937
|
+
* @throws {RequiredError}
|
|
3938
|
+
*/
|
|
3939
|
+
export async function ActionsApiAxiosParamCreator_GenerateDashboardSummary1(workspaceId, dashboardSummaryRequestDto, options = {}, configuration) {
|
|
3940
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
3941
|
+
assertParamExists('generateDashboardSummary1', 'workspaceId', workspaceId);
|
|
3942
|
+
// verify required parameter 'dashboardSummaryRequestDto' is not null or undefined
|
|
3943
|
+
assertParamExists('generateDashboardSummary1', 'dashboardSummaryRequestDto', dashboardSummaryRequestDto);
|
|
3944
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/dashboardSummary`
|
|
3945
|
+
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)));
|
|
3946
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3947
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3948
|
+
let baseOptions;
|
|
3949
|
+
if (configuration) {
|
|
3950
|
+
baseOptions = configuration.baseOptions;
|
|
3951
|
+
}
|
|
3952
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
3953
|
+
const localVarHeaderParameter = {};
|
|
3954
|
+
const localVarQueryParameter = {};
|
|
3955
|
+
const consumes = [
|
|
3956
|
+
'application/json'
|
|
3957
|
+
];
|
|
3958
|
+
// use application/json if present, otherwise fallback to the first one
|
|
3959
|
+
localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
|
|
3960
|
+
? 'application/json'
|
|
3961
|
+
: consumes[0];
|
|
3962
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3963
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
3964
|
+
localVarRequestOptions.headers = {
|
|
3965
|
+
...localVarHeaderParameter,
|
|
3966
|
+
...headersFromBaseOptions,
|
|
3967
|
+
...options.headers,
|
|
3968
|
+
};
|
|
3969
|
+
const needsSerialization = typeof dashboardSummaryRequestDto !== "string" ||
|
|
3970
|
+
localVarRequestOptions.headers["Content-Type"] === "application/json";
|
|
3971
|
+
localVarRequestOptions.data = needsSerialization
|
|
3972
|
+
? JSON.stringify(dashboardSummaryRequestDto !== undefined ? dashboardSummaryRequestDto : {})
|
|
3973
|
+
: dashboardSummaryRequestDto || "";
|
|
3974
|
+
return {
|
|
3975
|
+
url: toPathString(localVarUrlObj),
|
|
3976
|
+
options: localVarRequestOptions,
|
|
3977
|
+
};
|
|
3978
|
+
}
|
|
3979
|
+
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
3649
3980
|
/**
|
|
3650
3981
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
3651
3982
|
* @summary Generate Description for Analytics Object
|
|
@@ -3696,6 +4027,55 @@ export async function ActionsApiAxiosParamCreator_GenerateDescription(workspaceI
|
|
|
3696
4027
|
};
|
|
3697
4028
|
}
|
|
3698
4029
|
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
4030
|
+
/**
|
|
4031
|
+
*
|
|
4032
|
+
* @param {string} workspaceId Workspace identifier
|
|
4033
|
+
* @param {KnowledgeRecommendationsRequestDto} knowledgeRecommendationsRequestDto
|
|
4034
|
+
* @param {*} [options] Override http request option.
|
|
4035
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4036
|
+
* @throws {RequiredError}
|
|
4037
|
+
*/
|
|
4038
|
+
export async function ActionsApiAxiosParamCreator_GenerateKnowledgeRecommendations(workspaceId, knowledgeRecommendationsRequestDto, options = {}, configuration) {
|
|
4039
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
4040
|
+
assertParamExists('generateKnowledgeRecommendations', 'workspaceId', workspaceId);
|
|
4041
|
+
// verify required parameter 'knowledgeRecommendationsRequestDto' is not null or undefined
|
|
4042
|
+
assertParamExists('generateKnowledgeRecommendations', 'knowledgeRecommendationsRequestDto', knowledgeRecommendationsRequestDto);
|
|
4043
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/knowledgeRecommendations`
|
|
4044
|
+
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)));
|
|
4045
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4046
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4047
|
+
let baseOptions;
|
|
4048
|
+
if (configuration) {
|
|
4049
|
+
baseOptions = configuration.baseOptions;
|
|
4050
|
+
}
|
|
4051
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
4052
|
+
const localVarHeaderParameter = {};
|
|
4053
|
+
const localVarQueryParameter = {};
|
|
4054
|
+
const consumes = [
|
|
4055
|
+
'application/json'
|
|
4056
|
+
];
|
|
4057
|
+
// use application/json if present, otherwise fallback to the first one
|
|
4058
|
+
localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
|
|
4059
|
+
? 'application/json'
|
|
4060
|
+
: consumes[0];
|
|
4061
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4062
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
4063
|
+
localVarRequestOptions.headers = {
|
|
4064
|
+
...localVarHeaderParameter,
|
|
4065
|
+
...headersFromBaseOptions,
|
|
4066
|
+
...options.headers,
|
|
4067
|
+
};
|
|
4068
|
+
const needsSerialization = typeof knowledgeRecommendationsRequestDto !== "string" ||
|
|
4069
|
+
localVarRequestOptions.headers["Content-Type"] === "application/json";
|
|
4070
|
+
localVarRequestOptions.data = needsSerialization
|
|
4071
|
+
? JSON.stringify(knowledgeRecommendationsRequestDto !== undefined ? knowledgeRecommendationsRequestDto : {})
|
|
4072
|
+
: knowledgeRecommendationsRequestDto || "";
|
|
4073
|
+
return {
|
|
4074
|
+
url: toPathString(localVarUrlObj),
|
|
4075
|
+
options: localVarRequestOptions,
|
|
4076
|
+
};
|
|
4077
|
+
}
|
|
4078
|
+
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
3699
4079
|
/**
|
|
3700
4080
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
3701
4081
|
* @summary Generate Title for Analytics Object
|
|
@@ -3858,6 +4238,44 @@ export async function ActionsApiAxiosParamCreator_GetWorkflowStatus(workspaceId,
|
|
|
3858
4238
|
};
|
|
3859
4239
|
}
|
|
3860
4240
|
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
4241
|
+
/**
|
|
4242
|
+
*
|
|
4243
|
+
* @param {string} workspaceId Workspace identifier
|
|
4244
|
+
* @param {string} runId
|
|
4245
|
+
* @param {*} [options] Override http request option.
|
|
4246
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4247
|
+
* @throws {RequiredError}
|
|
4248
|
+
*/
|
|
4249
|
+
export async function ActionsApiAxiosParamCreator_GetWorkflowStatus1(workspaceId, runId, options = {}, configuration) {
|
|
4250
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
4251
|
+
assertParamExists('getWorkflowStatus1', 'workspaceId', workspaceId);
|
|
4252
|
+
// verify required parameter 'runId' is not null or undefined
|
|
4253
|
+
assertParamExists('getWorkflowStatus1', 'runId', runId);
|
|
4254
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/{runId}/status`
|
|
4255
|
+
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)))
|
|
4256
|
+
.replace(`{${"runId"}}`, encodeURIComponent(String(runId)));
|
|
4257
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4258
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4259
|
+
let baseOptions;
|
|
4260
|
+
if (configuration) {
|
|
4261
|
+
baseOptions = configuration.baseOptions;
|
|
4262
|
+
}
|
|
4263
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
4264
|
+
const localVarHeaderParameter = {};
|
|
4265
|
+
const localVarQueryParameter = {};
|
|
4266
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4267
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
4268
|
+
localVarRequestOptions.headers = {
|
|
4269
|
+
...localVarHeaderParameter,
|
|
4270
|
+
...headersFromBaseOptions,
|
|
4271
|
+
...options.headers,
|
|
4272
|
+
};
|
|
4273
|
+
return {
|
|
4274
|
+
url: toPathString(localVarUrlObj),
|
|
4275
|
+
options: localVarRequestOptions,
|
|
4276
|
+
};
|
|
4277
|
+
}
|
|
4278
|
+
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
3861
4279
|
/**
|
|
3862
4280
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
3863
4281
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -4582,6 +5000,59 @@ export async function ActionsApiAxiosParamCreator_TriggerQualityIssuesCalculatio
|
|
|
4582
5000
|
};
|
|
4583
5001
|
}
|
|
4584
5002
|
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
5003
|
+
/**
|
|
5004
|
+
*
|
|
5005
|
+
* @param {string} workspaceId Workspace identifier
|
|
5006
|
+
* @param {string} runId
|
|
5007
|
+
* @param {FeedbackRequestDto} feedbackRequestDto
|
|
5008
|
+
* @param {*} [options] Override http request option.
|
|
5009
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
5010
|
+
* @throws {RequiredError}
|
|
5011
|
+
*/
|
|
5012
|
+
export async function ActionsApiAxiosParamCreator_UserFeedback(workspaceId, runId, feedbackRequestDto, options = {}, configuration) {
|
|
5013
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
5014
|
+
assertParamExists('userFeedback', 'workspaceId', workspaceId);
|
|
5015
|
+
// verify required parameter 'runId' is not null or undefined
|
|
5016
|
+
assertParamExists('userFeedback', 'runId', runId);
|
|
5017
|
+
// verify required parameter 'feedbackRequestDto' is not null or undefined
|
|
5018
|
+
assertParamExists('userFeedback', 'feedbackRequestDto', feedbackRequestDto);
|
|
5019
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/{runId}/feedback`
|
|
5020
|
+
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)))
|
|
5021
|
+
.replace(`{${"runId"}}`, encodeURIComponent(String(runId)));
|
|
5022
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5023
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
5024
|
+
let baseOptions;
|
|
5025
|
+
if (configuration) {
|
|
5026
|
+
baseOptions = configuration.baseOptions;
|
|
5027
|
+
}
|
|
5028
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
5029
|
+
const localVarHeaderParameter = {};
|
|
5030
|
+
const localVarQueryParameter = {};
|
|
5031
|
+
const consumes = [
|
|
5032
|
+
'application/json'
|
|
5033
|
+
];
|
|
5034
|
+
// use application/json if present, otherwise fallback to the first one
|
|
5035
|
+
localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
|
|
5036
|
+
? 'application/json'
|
|
5037
|
+
: consumes[0];
|
|
5038
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5039
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
5040
|
+
localVarRequestOptions.headers = {
|
|
5041
|
+
...localVarHeaderParameter,
|
|
5042
|
+
...headersFromBaseOptions,
|
|
5043
|
+
...options.headers,
|
|
5044
|
+
};
|
|
5045
|
+
const needsSerialization = typeof feedbackRequestDto !== "string" ||
|
|
5046
|
+
localVarRequestOptions.headers["Content-Type"] === "application/json";
|
|
5047
|
+
localVarRequestOptions.data = needsSerialization
|
|
5048
|
+
? JSON.stringify(feedbackRequestDto !== undefined ? feedbackRequestDto : {})
|
|
5049
|
+
: feedbackRequestDto || "";
|
|
5050
|
+
return {
|
|
5051
|
+
url: toPathString(localVarUrlObj),
|
|
5052
|
+
options: localVarRequestOptions,
|
|
5053
|
+
};
|
|
5054
|
+
}
|
|
5055
|
+
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
4585
5056
|
/**
|
|
4586
5057
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
4587
5058
|
* @summary Validate LLM Endpoint (Removed)
|
|
@@ -4782,6 +5253,20 @@ export async function ActionsApi_CancelWorkflow(axios, basePath, requestParamete
|
|
|
4782
5253
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
4783
5254
|
}
|
|
4784
5255
|
// ActionsApi Api FP
|
|
5256
|
+
/**
|
|
5257
|
+
*
|
|
5258
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
5259
|
+
* @param {string} basePath Base path.
|
|
5260
|
+
* @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
|
|
5261
|
+
* @param {*} [options] Override http request option.
|
|
5262
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
5263
|
+
* @throws {RequiredError}
|
|
5264
|
+
*/
|
|
5265
|
+
export async function ActionsApi_CancelWorkflow1(axios, basePath, requestParameters, options, configuration) {
|
|
5266
|
+
const localVarAxiosArgs = await ActionsApiAxiosParamCreator_CancelWorkflow1(requestParameters.workspaceId, requestParameters.runId, options || {}, configuration);
|
|
5267
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5268
|
+
}
|
|
5269
|
+
// ActionsApi Api FP
|
|
4785
5270
|
/**
|
|
4786
5271
|
* Computes change analysis for the provided execution definition.
|
|
4787
5272
|
* @summary Compute change analysis
|
|
@@ -4991,6 +5476,20 @@ export async function ActionsApi_GenerateDashboardSummary(axios, basePath, reque
|
|
|
4991
5476
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
4992
5477
|
}
|
|
4993
5478
|
// ActionsApi Api FP
|
|
5479
|
+
/**
|
|
5480
|
+
*
|
|
5481
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
5482
|
+
* @param {string} basePath Base path.
|
|
5483
|
+
* @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
|
|
5484
|
+
* @param {*} [options] Override http request option.
|
|
5485
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
5486
|
+
* @throws {RequiredError}
|
|
5487
|
+
*/
|
|
5488
|
+
export async function ActionsApi_GenerateDashboardSummary1(axios, basePath, requestParameters, options, configuration) {
|
|
5489
|
+
const localVarAxiosArgs = await ActionsApiAxiosParamCreator_GenerateDashboardSummary1(requestParameters.workspaceId, requestParameters.dashboardSummaryRequestDto, options || {}, configuration);
|
|
5490
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5491
|
+
}
|
|
5492
|
+
// ActionsApi Api FP
|
|
4994
5493
|
/**
|
|
4995
5494
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
4996
5495
|
* @summary Generate Description for Analytics Object
|
|
@@ -5006,6 +5505,20 @@ export async function ActionsApi_GenerateDescription(axios, basePath, requestPar
|
|
|
5006
5505
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5007
5506
|
}
|
|
5008
5507
|
// ActionsApi Api FP
|
|
5508
|
+
/**
|
|
5509
|
+
*
|
|
5510
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
5511
|
+
* @param {string} basePath Base path.
|
|
5512
|
+
* @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
|
|
5513
|
+
* @param {*} [options] Override http request option.
|
|
5514
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
5515
|
+
* @throws {RequiredError}
|
|
5516
|
+
*/
|
|
5517
|
+
export async function ActionsApi_GenerateKnowledgeRecommendations(axios, basePath, requestParameters, options, configuration) {
|
|
5518
|
+
const localVarAxiosArgs = await ActionsApiAxiosParamCreator_GenerateKnowledgeRecommendations(requestParameters.workspaceId, requestParameters.knowledgeRecommendationsRequestDto, options || {}, configuration);
|
|
5519
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5520
|
+
}
|
|
5521
|
+
// ActionsApi Api FP
|
|
5009
5522
|
/**
|
|
5010
5523
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
5011
5524
|
* @summary Generate Title for Analytics Object
|
|
@@ -5065,6 +5578,20 @@ export async function ActionsApi_GetWorkflowStatus(axios, basePath, requestParam
|
|
|
5065
5578
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5066
5579
|
}
|
|
5067
5580
|
// ActionsApi Api FP
|
|
5581
|
+
/**
|
|
5582
|
+
*
|
|
5583
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
5584
|
+
* @param {string} basePath Base path.
|
|
5585
|
+
* @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
|
|
5586
|
+
* @param {*} [options] Override http request option.
|
|
5587
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
5588
|
+
* @throws {RequiredError}
|
|
5589
|
+
*/
|
|
5590
|
+
export async function ActionsApi_GetWorkflowStatus1(axios, basePath, requestParameters, options, configuration) {
|
|
5591
|
+
const localVarAxiosArgs = await ActionsApiAxiosParamCreator_GetWorkflowStatus1(requestParameters.workspaceId, requestParameters.runId, options || {}, configuration);
|
|
5592
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5593
|
+
}
|
|
5594
|
+
// ActionsApi Api FP
|
|
5068
5595
|
/**
|
|
5069
5596
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
5070
5597
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -5320,6 +5847,20 @@ export async function ActionsApi_TriggerQualityIssuesCalculation(axios, basePath
|
|
|
5320
5847
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5321
5848
|
}
|
|
5322
5849
|
// ActionsApi Api FP
|
|
5850
|
+
/**
|
|
5851
|
+
*
|
|
5852
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
5853
|
+
* @param {string} basePath Base path.
|
|
5854
|
+
* @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
|
|
5855
|
+
* @param {*} [options] Override http request option.
|
|
5856
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
5857
|
+
* @throws {RequiredError}
|
|
5858
|
+
*/
|
|
5859
|
+
export async function ActionsApi_UserFeedback(axios, basePath, requestParameters, options, configuration) {
|
|
5860
|
+
const localVarAxiosArgs = await ActionsApiAxiosParamCreator_UserFeedback(requestParameters.workspaceId, requestParameters.runId, requestParameters.feedbackRequestDto, options || {}, configuration);
|
|
5861
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5862
|
+
}
|
|
5863
|
+
// ActionsApi Api FP
|
|
5323
5864
|
/**
|
|
5324
5865
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
5325
5866
|
* @summary Validate LLM Endpoint (Removed)
|
|
@@ -5455,6 +5996,16 @@ export class ActionsApi extends BaseAPI {
|
|
|
5455
5996
|
cancelWorkflow(requestParameters, options) {
|
|
5456
5997
|
return ActionsApi_CancelWorkflow(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
5457
5998
|
}
|
|
5999
|
+
/**
|
|
6000
|
+
*
|
|
6001
|
+
* @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
|
|
6002
|
+
* @param {*} [options] Override http request option.
|
|
6003
|
+
* @throws {RequiredError}
|
|
6004
|
+
* @memberof ActionsApi
|
|
6005
|
+
*/
|
|
6006
|
+
cancelWorkflow1(requestParameters, options) {
|
|
6007
|
+
return ActionsApi_CancelWorkflow1(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
6008
|
+
}
|
|
5458
6009
|
/**
|
|
5459
6010
|
* Computes change analysis for the provided execution definition.
|
|
5460
6011
|
* @summary Compute change analysis
|
|
@@ -5608,6 +6159,16 @@ export class ActionsApi extends BaseAPI {
|
|
|
5608
6159
|
generateDashboardSummary(requestParameters, options) {
|
|
5609
6160
|
return ActionsApi_GenerateDashboardSummary(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
5610
6161
|
}
|
|
6162
|
+
/**
|
|
6163
|
+
*
|
|
6164
|
+
* @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
|
|
6165
|
+
* @param {*} [options] Override http request option.
|
|
6166
|
+
* @throws {RequiredError}
|
|
6167
|
+
* @memberof ActionsApi
|
|
6168
|
+
*/
|
|
6169
|
+
generateDashboardSummary1(requestParameters, options) {
|
|
6170
|
+
return ActionsApi_GenerateDashboardSummary1(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
6171
|
+
}
|
|
5611
6172
|
/**
|
|
5612
6173
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
5613
6174
|
* @summary Generate Description for Analytics Object
|
|
@@ -5619,6 +6180,16 @@ export class ActionsApi extends BaseAPI {
|
|
|
5619
6180
|
generateDescription(requestParameters, options) {
|
|
5620
6181
|
return ActionsApi_GenerateDescription(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
5621
6182
|
}
|
|
6183
|
+
/**
|
|
6184
|
+
*
|
|
6185
|
+
* @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
|
|
6186
|
+
* @param {*} [options] Override http request option.
|
|
6187
|
+
* @throws {RequiredError}
|
|
6188
|
+
* @memberof ActionsApi
|
|
6189
|
+
*/
|
|
6190
|
+
generateKnowledgeRecommendations(requestParameters, options) {
|
|
6191
|
+
return ActionsApi_GenerateKnowledgeRecommendations(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
6192
|
+
}
|
|
5622
6193
|
/**
|
|
5623
6194
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
5624
6195
|
* @summary Generate Title for Analytics Object
|
|
@@ -5662,6 +6233,16 @@ export class ActionsApi extends BaseAPI {
|
|
|
5662
6233
|
getWorkflowStatus(requestParameters, options) {
|
|
5663
6234
|
return ActionsApi_GetWorkflowStatus(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
5664
6235
|
}
|
|
6236
|
+
/**
|
|
6237
|
+
*
|
|
6238
|
+
* @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
|
|
6239
|
+
* @param {*} [options] Override http request option.
|
|
6240
|
+
* @throws {RequiredError}
|
|
6241
|
+
* @memberof ActionsApi
|
|
6242
|
+
*/
|
|
6243
|
+
getWorkflowStatus1(requestParameters, options) {
|
|
6244
|
+
return ActionsApi_GetWorkflowStatus1(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
6245
|
+
}
|
|
5665
6246
|
/**
|
|
5666
6247
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
5667
6248
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -5850,6 +6431,16 @@ export class ActionsApi extends BaseAPI {
|
|
|
5850
6431
|
triggerQualityIssuesCalculation(requestParameters, options) {
|
|
5851
6432
|
return ActionsApi_TriggerQualityIssuesCalculation(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
5852
6433
|
}
|
|
6434
|
+
/**
|
|
6435
|
+
*
|
|
6436
|
+
* @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
|
|
6437
|
+
* @param {*} [options] Override http request option.
|
|
6438
|
+
* @throws {RequiredError}
|
|
6439
|
+
* @memberof ActionsApi
|
|
6440
|
+
*/
|
|
6441
|
+
userFeedback(requestParameters, options) {
|
|
6442
|
+
return ActionsApi_UserFeedback(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
6443
|
+
}
|
|
5853
6444
|
/**
|
|
5854
6445
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
5855
6446
|
* @summary Validate LLM Endpoint (Removed)
|