@gooddata/api-client-tiger 11.30.0-alpha.3 → 11.30.0-alpha.5
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 +1470 -304
- package/esm/generated/afm-rest-api/api.d.ts +172 -2
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +160 -0
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/ai-json-api/api.d.ts +37 -4
- package/esm/generated/ai-json-api/api.d.ts.map +1 -1
- package/esm/generated/ai-json-api/api.js.map +1 -1
- package/esm/generated/automation-json-api/api.d.ts +26 -1
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/export-json-api/api.d.ts +26 -1
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/api.d.ts +1175 -281
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +1034 -126
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/scan-json-api/api.d.ts +181 -2
- package/esm/generated/scan-json-api/api.d.ts.map +1 -1
- package/esm/generated/scan-json-api/api.js +160 -0
- package/esm/generated/scan-json-api/api.js.map +1 -1
- package/package.json +4 -4
|
@@ -3455,6 +3455,26 @@ export declare interface ActionsApiScanSqlRequest {
|
|
|
3455
3455
|
readonly scanSqlRequest: ScanSqlRequest;
|
|
3456
3456
|
}
|
|
3457
3457
|
|
|
3458
|
+
/**
|
|
3459
|
+
* Request parameters for scanStatistics operation in ActionsApi.
|
|
3460
|
+
* @export
|
|
3461
|
+
* @interface ActionsApiScanStatisticsRequest
|
|
3462
|
+
*/
|
|
3463
|
+
declare interface ActionsApiScanStatisticsRequest {
|
|
3464
|
+
/**
|
|
3465
|
+
*
|
|
3466
|
+
* @type {string}
|
|
3467
|
+
* @memberof ActionsApiScanStatistics
|
|
3468
|
+
*/
|
|
3469
|
+
readonly dataSourceId: string;
|
|
3470
|
+
/**
|
|
3471
|
+
*
|
|
3472
|
+
* @type {TableStatisticsRequest}
|
|
3473
|
+
* @memberof ActionsApiScanStatistics
|
|
3474
|
+
*/
|
|
3475
|
+
readonly tableStatisticsRequest: TableStatisticsRequest;
|
|
3476
|
+
}
|
|
3477
|
+
|
|
3458
3478
|
/**
|
|
3459
3479
|
* Request parameters for setCertification operation in ActionsApi.
|
|
3460
3480
|
* @export
|
|
@@ -5007,6 +5027,10 @@ export declare interface AFM {
|
|
|
5007
5027
|
* Metrics to be referenced from other AFM objects (e.g. filters) but not included in the result.
|
|
5008
5028
|
*/
|
|
5009
5029
|
'auxMeasures'?: Array<MeasureItem>;
|
|
5030
|
+
/**
|
|
5031
|
+
* (EXPERIMENTAL) Parameter values to use for this execution.
|
|
5032
|
+
*/
|
|
5033
|
+
'parameters'?: Array<ParameterItem>;
|
|
5010
5034
|
/**
|
|
5011
5035
|
* (EXPERIMENTAL) Override definitions of catalog metrics for this request. Allows substituting a catalog metric\'s MAQL definition without modifying the stored definition.
|
|
5012
5036
|
*/
|
|
@@ -6321,6 +6345,10 @@ export declare interface AfmModel {
|
|
|
6321
6345
|
* Metrics to be referenced from other AFM objects (e.g. filters) but not included in the result.
|
|
6322
6346
|
*/
|
|
6323
6347
|
'auxMeasures'?: Array<AfmMeasureItem>;
|
|
6348
|
+
/**
|
|
6349
|
+
* (EXPERIMENTAL) Parameter values to use for this execution.
|
|
6350
|
+
*/
|
|
6351
|
+
'parameters'?: Array<ParameterItem_2>;
|
|
6324
6352
|
/**
|
|
6325
6353
|
* (EXPERIMENTAL) Override definitions of catalog metrics for this request. Allows substituting a catalog metric\'s MAQL definition without modifying the stored definition.
|
|
6326
6354
|
*/
|
|
@@ -6489,6 +6517,34 @@ export declare interface AfmObjectIdentifierLabelIdentifier {
|
|
|
6489
6517
|
|
|
6490
6518
|
export declare type AfmObjectIdentifierLabelIdentifierTypeEnum = 'label';
|
|
6491
6519
|
|
|
6520
|
+
/**
|
|
6521
|
+
* Reference to the parameter.
|
|
6522
|
+
*/
|
|
6523
|
+
export declare interface AfmObjectIdentifierParameter {
|
|
6524
|
+
'identifier': AfmObjectIdentifierParameterIdentifier;
|
|
6525
|
+
}
|
|
6526
|
+
|
|
6527
|
+
/**
|
|
6528
|
+
* Reference to the parameter.
|
|
6529
|
+
*/
|
|
6530
|
+
declare interface AfmObjectIdentifierParameter_2 {
|
|
6531
|
+
'identifier': AfmObjectIdentifierParameterIdentifier_2;
|
|
6532
|
+
}
|
|
6533
|
+
|
|
6534
|
+
export declare interface AfmObjectIdentifierParameterIdentifier {
|
|
6535
|
+
'id': string;
|
|
6536
|
+
'type': AfmObjectIdentifierParameterIdentifierTypeEnum;
|
|
6537
|
+
}
|
|
6538
|
+
|
|
6539
|
+
declare interface AfmObjectIdentifierParameterIdentifier_2 {
|
|
6540
|
+
'id': string;
|
|
6541
|
+
'type': AfmObjectIdentifierParameterIdentifierTypeEnum_2;
|
|
6542
|
+
}
|
|
6543
|
+
|
|
6544
|
+
export declare type AfmObjectIdentifierParameterIdentifierTypeEnum = 'parameter';
|
|
6545
|
+
|
|
6546
|
+
declare type AfmObjectIdentifierParameterIdentifierTypeEnum_2 = 'parameter';
|
|
6547
|
+
|
|
6492
6548
|
/**
|
|
6493
6549
|
* Combination of the date data set to use and how many periods ago to calculate the previous period for.
|
|
6494
6550
|
*/
|
|
@@ -9296,6 +9352,19 @@ export declare interface AiAttributeFilterState {
|
|
|
9296
9352
|
|
|
9297
9353
|
export declare type AiAttributeFilterTypeEnum = 'attribute_filter';
|
|
9298
9354
|
|
|
9355
|
+
export declare interface AiAttributeSortItem {
|
|
9356
|
+
'type': AiAttributeSortItemTypeEnum;
|
|
9357
|
+
'by': string;
|
|
9358
|
+
'direction': AiAttributeSortItemDirectionEnum;
|
|
9359
|
+
'aggregation'?: AiAttributeSortItemAggregationEnum;
|
|
9360
|
+
}
|
|
9361
|
+
|
|
9362
|
+
export declare type AiAttributeSortItemAggregationEnum = 'SUM';
|
|
9363
|
+
|
|
9364
|
+
export declare type AiAttributeSortItemDirectionEnum = 'ASC' | 'DESC';
|
|
9365
|
+
|
|
9366
|
+
export declare type AiAttributeSortItemTypeEnum = 'attribute_sort';
|
|
9367
|
+
|
|
9299
9368
|
export declare interface AiBucketRefObject {
|
|
9300
9369
|
'field': string;
|
|
9301
9370
|
}
|
|
@@ -9634,6 +9703,28 @@ export declare interface AiListDocumentsResponse {
|
|
|
9634
9703
|
'nextPageToken'?: string | null;
|
|
9635
9704
|
}
|
|
9636
9705
|
|
|
9706
|
+
export declare interface AiMetricSortItem {
|
|
9707
|
+
'type': AiMetricSortItemTypeEnum;
|
|
9708
|
+
'direction': AiMetricSortItemDirectionEnum;
|
|
9709
|
+
'metrics': Array<AiMetricSortItemMetricsInner>;
|
|
9710
|
+
}
|
|
9711
|
+
|
|
9712
|
+
export declare type AiMetricSortItemDirectionEnum = 'ASC' | 'DESC';
|
|
9713
|
+
|
|
9714
|
+
export declare interface AiMetricSortItemMetricsInner {
|
|
9715
|
+
'by': string;
|
|
9716
|
+
'element'?: string;
|
|
9717
|
+
'function'?: string;
|
|
9718
|
+
}
|
|
9719
|
+
|
|
9720
|
+
export declare type AiMetricSortItemTypeEnum = 'metric_sort';
|
|
9721
|
+
|
|
9722
|
+
export declare interface AiMetricSortLocatorItem {
|
|
9723
|
+
'by': string;
|
|
9724
|
+
'element'?: string;
|
|
9725
|
+
'function'?: string;
|
|
9726
|
+
}
|
|
9727
|
+
|
|
9637
9728
|
export declare const AiMetricValueFilterConditionComparison: {
|
|
9638
9729
|
readonly GREATER_THAN: "GREATER_THAN";
|
|
9639
9730
|
readonly GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO";
|
|
@@ -9715,6 +9806,7 @@ export declare interface AiQuery {
|
|
|
9715
9806
|
'filter_by'?: {
|
|
9716
9807
|
[key: string]: AiFilterByValue;
|
|
9717
9808
|
};
|
|
9809
|
+
'sort_by'?: Array<AiQuerySortByInner>;
|
|
9718
9810
|
}
|
|
9719
9811
|
|
|
9720
9812
|
export declare interface AiQueryFieldAttribute {
|
|
@@ -9734,6 +9826,20 @@ export declare interface AiQueryFieldMeasure {
|
|
|
9734
9826
|
|
|
9735
9827
|
export declare type AiQueryFieldMeasureAggregationEnum = 'SUM' | 'AVG' | 'MIN' | 'MAX' | 'MEDIAN' | 'COUNT';
|
|
9736
9828
|
|
|
9829
|
+
export declare interface AiQuerySortByInner {
|
|
9830
|
+
'type': AiQuerySortByInnerTypeEnum;
|
|
9831
|
+
'by': string;
|
|
9832
|
+
'direction': AiQuerySortByInnerDirectionEnum;
|
|
9833
|
+
'aggregation'?: AiQuerySortByInnerAggregationEnum;
|
|
9834
|
+
'metrics': Array<AiMetricSortItemMetricsInner>;
|
|
9835
|
+
}
|
|
9836
|
+
|
|
9837
|
+
export declare type AiQuerySortByInnerAggregationEnum = 'SUM';
|
|
9838
|
+
|
|
9839
|
+
export declare type AiQuerySortByInnerDirectionEnum = 'ASC' | 'DESC';
|
|
9840
|
+
|
|
9841
|
+
export declare type AiQuerySortByInnerTypeEnum = 'attribute_sort' | 'metric_sort';
|
|
9842
|
+
|
|
9737
9843
|
export declare interface AiRankingFilter {
|
|
9738
9844
|
'type': AiRankingFilterTypeEnum;
|
|
9739
9845
|
'using': string;
|
|
@@ -10079,13 +10185,9 @@ export declare interface AiVisualization {
|
|
|
10079
10185
|
'id': string;
|
|
10080
10186
|
'query': AiQuery;
|
|
10081
10187
|
'title'?: string;
|
|
10082
|
-
'description'?: string;
|
|
10083
|
-
'tags'?: Array<string>;
|
|
10084
10188
|
'metrics'?: Array<AiVisualizationMetricsInner>;
|
|
10085
10189
|
'view_by'?: Array<AiVisualizationMetricsInner>;
|
|
10086
10190
|
'segment_by'?: Array<AiVisualizationMetricsInner>;
|
|
10087
|
-
'rows'?: Array<AiVisualizationMetricsInner>;
|
|
10088
|
-
'columns'?: Array<AiVisualizationMetricsInner>;
|
|
10089
10191
|
'config'?: AiVisualizationConfig;
|
|
10090
10192
|
}
|
|
10091
10193
|
|
|
@@ -14855,6 +14957,10 @@ export declare interface AutomationAFM {
|
|
|
14855
14957
|
* Metrics to be referenced from other AFM objects (e.g. filters) but not included in the result.
|
|
14856
14958
|
*/
|
|
14857
14959
|
'auxMeasures'?: Array<AutomationMeasureItem>;
|
|
14960
|
+
/**
|
|
14961
|
+
* (EXPERIMENTAL) Parameter values to use for this execution.
|
|
14962
|
+
*/
|
|
14963
|
+
'parameters'?: Array<AutomationParameterItem>;
|
|
14858
14964
|
/**
|
|
14859
14965
|
* (EXPERIMENTAL) Override definitions of catalog metrics for this request. Allows substituting a catalog metric\'s MAQL definition without modifying the stored definition.
|
|
14860
14966
|
*/
|
|
@@ -14943,6 +15049,20 @@ export declare interface AutomationAfmObjectIdentifierLabelIdentifier {
|
|
|
14943
15049
|
|
|
14944
15050
|
export declare type AutomationAfmObjectIdentifierLabelIdentifierTypeEnum = 'label';
|
|
14945
15051
|
|
|
15052
|
+
/**
|
|
15053
|
+
* Reference to the parameter.
|
|
15054
|
+
*/
|
|
15055
|
+
declare interface AutomationAfmObjectIdentifierParameter {
|
|
15056
|
+
'identifier': AutomationAfmObjectIdentifierParameterIdentifier;
|
|
15057
|
+
}
|
|
15058
|
+
|
|
15059
|
+
declare interface AutomationAfmObjectIdentifierParameterIdentifier {
|
|
15060
|
+
'id': string;
|
|
15061
|
+
'type': AutomationAfmObjectIdentifierParameterIdentifierTypeEnum;
|
|
15062
|
+
}
|
|
15063
|
+
|
|
15064
|
+
declare type AutomationAfmObjectIdentifierParameterIdentifierTypeEnum = 'parameter';
|
|
15065
|
+
|
|
14946
15066
|
export declare interface AutomationAlert {
|
|
14947
15067
|
'execution': AlertAfm;
|
|
14948
15068
|
'condition': AutomationAlertCondition_2;
|
|
@@ -16316,7 +16436,7 @@ export declare interface AutomationIdentifierRefIdentifier {
|
|
|
16316
16436
|
'type': AutomationIdentifierRefIdentifierTypeEnum;
|
|
16317
16437
|
}
|
|
16318
16438
|
|
|
16319
|
-
export declare type AutomationIdentifierRefIdentifierTypeEnum = 'analyticalDashboard' | 'attribute' | 'attributeHierarchy' | 'dashboardPlugin' | 'dataset' | 'fact' | 'aggregatedFact' | 'label' | 'metric' | 'userDataFilter' | 'exportDefinition' | 'automation' | 'automationResult' | 'memoryItem' | 'knowledgeRecommendation' | 'prompt' | '
|
|
16439
|
+
export declare type AutomationIdentifierRefIdentifierTypeEnum = 'analyticalDashboard' | 'attribute' | 'attributeHierarchy' | 'dashboardPlugin' | 'dataset' | 'fact' | 'aggregatedFact' | 'label' | 'metric' | 'userDataFilter' | 'parameter' | 'exportDefinition' | 'automation' | 'automationResult' | 'memoryItem' | 'knowledgeRecommendation' | 'prompt' | 'visualizationObject' | 'filterContext' | 'workspaceSettings' | 'customApplicationSetting' | 'workspaceDataFilter' | 'workspaceDataFilterSetting' | 'filterView';
|
|
16320
16440
|
|
|
16321
16441
|
export declare interface AutomationImageExport {
|
|
16322
16442
|
'requestPayload': ImageExportRequest;
|
|
@@ -16664,6 +16784,17 @@ export declare interface AutomationOver {
|
|
|
16664
16784
|
'attributes': Array<AutomationIdentifierRef>;
|
|
16665
16785
|
}
|
|
16666
16786
|
|
|
16787
|
+
/**
|
|
16788
|
+
* (EXPERIMENTAL) Parameter value for this execution.
|
|
16789
|
+
*/
|
|
16790
|
+
declare interface AutomationParameterItem {
|
|
16791
|
+
'parameter': AutomationAfmObjectIdentifierParameter;
|
|
16792
|
+
/**
|
|
16793
|
+
* Value to use for this parameter instead of its default.
|
|
16794
|
+
*/
|
|
16795
|
+
'value': string;
|
|
16796
|
+
}
|
|
16797
|
+
|
|
16667
16798
|
/**
|
|
16668
16799
|
* Custom CSS styles for the table. (PDF, HTML)
|
|
16669
16800
|
*/
|
|
@@ -20084,6 +20215,54 @@ export declare interface ColumnStatistic {
|
|
|
20084
20215
|
'value'?: string;
|
|
20085
20216
|
}
|
|
20086
20217
|
|
|
20218
|
+
export declare interface ColumnStatisticsEntry {
|
|
20219
|
+
'columnName': string;
|
|
20220
|
+
/**
|
|
20221
|
+
* NDV (Number of Distinct Values) — approximate cardinality of the column.
|
|
20222
|
+
*/
|
|
20223
|
+
'ndv'?: number;
|
|
20224
|
+
/**
|
|
20225
|
+
* Number of NULL values in the column.
|
|
20226
|
+
*/
|
|
20227
|
+
'nullCount'?: number;
|
|
20228
|
+
/**
|
|
20229
|
+
* Minimum value in the column (string-encoded).
|
|
20230
|
+
*/
|
|
20231
|
+
'min'?: string;
|
|
20232
|
+
/**
|
|
20233
|
+
* Maximum value in the column (string-encoded).
|
|
20234
|
+
*/
|
|
20235
|
+
'max'?: string;
|
|
20236
|
+
/**
|
|
20237
|
+
* Total data size of the column in bytes.
|
|
20238
|
+
*/
|
|
20239
|
+
'dataSize'?: number;
|
|
20240
|
+
}
|
|
20241
|
+
|
|
20242
|
+
declare interface ColumnStatisticsEntry_2 {
|
|
20243
|
+
'columnName': string;
|
|
20244
|
+
/**
|
|
20245
|
+
* NDV (Number of Distinct Values) — approximate cardinality of the column.
|
|
20246
|
+
*/
|
|
20247
|
+
'ndv'?: number;
|
|
20248
|
+
/**
|
|
20249
|
+
* Number of NULL values in the column.
|
|
20250
|
+
*/
|
|
20251
|
+
'nullCount'?: number;
|
|
20252
|
+
/**
|
|
20253
|
+
* Minimum value in the column (string-encoded).
|
|
20254
|
+
*/
|
|
20255
|
+
'min'?: string;
|
|
20256
|
+
/**
|
|
20257
|
+
* Maximum value in the column (string-encoded).
|
|
20258
|
+
*/
|
|
20259
|
+
'max'?: string;
|
|
20260
|
+
/**
|
|
20261
|
+
* Total data size of the column in bytes.
|
|
20262
|
+
*/
|
|
20263
|
+
'dataSize'?: number;
|
|
20264
|
+
}
|
|
20265
|
+
|
|
20087
20266
|
/**
|
|
20088
20267
|
* A request to retrieve statistics for a column.
|
|
20089
20268
|
*/
|
|
@@ -25060,13 +25239,13 @@ export declare function DataFiltersApi_UpdateEntityWorkspaceDataFilterSettings(a
|
|
|
25060
25239
|
* @summary Post User Data Filters
|
|
25061
25240
|
* @param {string} workspaceId
|
|
25062
25241
|
* @param {JsonApiUserDataFilterPostOptionalIdDocument} jsonApiUserDataFilterPostOptionalIdDocument
|
|
25063
|
-
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
25242
|
+
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
25064
25243
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
25065
25244
|
* @param {*} [options] Override http request option.
|
|
25066
25245
|
* @param {Configuration} [configuration] Optional configuration.
|
|
25067
25246
|
* @throws {RequiredError}
|
|
25068
25247
|
*/
|
|
25069
|
-
export declare function DataFiltersApiAxiosParamCreator_CreateEntityUserDataFilters(workspaceId: string, jsonApiUserDataFilterPostOptionalIdDocument: JsonApiUserDataFilterPostOptionalIdDocument, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
25248
|
+
export declare function DataFiltersApiAxiosParamCreator_CreateEntityUserDataFilters(workspaceId: string, jsonApiUserDataFilterPostOptionalIdDocument: JsonApiUserDataFilterPostOptionalIdDocument, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
25070
25249
|
|
|
25071
25250
|
/**
|
|
25072
25251
|
*
|
|
@@ -25133,7 +25312,7 @@ export declare function DataFiltersApiAxiosParamCreator_DeleteEntityWorkspaceDat
|
|
|
25133
25312
|
* @param {string} workspaceId
|
|
25134
25313
|
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
25135
25314
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
25136
|
-
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
25315
|
+
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
25137
25316
|
* @param {number} [page] Zero-based page index (0..N)
|
|
25138
25317
|
* @param {number} [size] The size of the page to be returned
|
|
25139
25318
|
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
@@ -25143,7 +25322,7 @@ export declare function DataFiltersApiAxiosParamCreator_DeleteEntityWorkspaceDat
|
|
|
25143
25322
|
* @param {Configuration} [configuration] Optional configuration.
|
|
25144
25323
|
* @throws {RequiredError}
|
|
25145
25324
|
*/
|
|
25146
|
-
export declare function DataFiltersApiAxiosParamCreator_GetAllEntitiesUserDataFilters(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
25325
|
+
export declare function DataFiltersApiAxiosParamCreator_GetAllEntitiesUserDataFilters(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
25147
25326
|
|
|
25148
25327
|
/**
|
|
25149
25328
|
*
|
|
@@ -25187,14 +25366,14 @@ export declare function DataFiltersApiAxiosParamCreator_GetAllEntitiesWorkspaceD
|
|
|
25187
25366
|
* @param {string} workspaceId
|
|
25188
25367
|
* @param {string} objectId
|
|
25189
25368
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
25190
|
-
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
25369
|
+
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
25191
25370
|
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
25192
25371
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
25193
25372
|
* @param {*} [options] Override http request option.
|
|
25194
25373
|
* @param {Configuration} [configuration] Optional configuration.
|
|
25195
25374
|
* @throws {RequiredError}
|
|
25196
25375
|
*/
|
|
25197
|
-
export declare function DataFiltersApiAxiosParamCreator_GetEntityUserDataFilters(workspaceId: string, objectId: string, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
25376
|
+
export declare function DataFiltersApiAxiosParamCreator_GetEntityUserDataFilters(workspaceId: string, objectId: string, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
25198
25377
|
|
|
25199
25378
|
/**
|
|
25200
25379
|
*
|
|
@@ -25242,12 +25421,12 @@ export declare function DataFiltersApiAxiosParamCreator_GetWorkspaceDataFiltersL
|
|
|
25242
25421
|
* @param {string} objectId
|
|
25243
25422
|
* @param {JsonApiUserDataFilterPatchDocument} jsonApiUserDataFilterPatchDocument
|
|
25244
25423
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
25245
|
-
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
25424
|
+
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
25246
25425
|
* @param {*} [options] Override http request option.
|
|
25247
25426
|
* @param {Configuration} [configuration] Optional configuration.
|
|
25248
25427
|
* @throws {RequiredError}
|
|
25249
25428
|
*/
|
|
25250
|
-
export declare function DataFiltersApiAxiosParamCreator_PatchEntityUserDataFilters(workspaceId: string, objectId: string, jsonApiUserDataFilterPatchDocument: JsonApiUserDataFilterPatchDocument, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
25429
|
+
export declare function DataFiltersApiAxiosParamCreator_PatchEntityUserDataFilters(workspaceId: string, objectId: string, jsonApiUserDataFilterPatchDocument: JsonApiUserDataFilterPatchDocument, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
25251
25430
|
|
|
25252
25431
|
/**
|
|
25253
25432
|
*
|
|
@@ -25333,12 +25512,12 @@ export declare function DataFiltersApiAxiosParamCreator_SetWorkspaceDataFiltersL
|
|
|
25333
25512
|
* @param {string} objectId
|
|
25334
25513
|
* @param {JsonApiUserDataFilterInDocument} jsonApiUserDataFilterInDocument
|
|
25335
25514
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
25336
|
-
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
25515
|
+
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
25337
25516
|
* @param {*} [options] Override http request option.
|
|
25338
25517
|
* @param {Configuration} [configuration] Optional configuration.
|
|
25339
25518
|
* @throws {RequiredError}
|
|
25340
25519
|
*/
|
|
25341
|
-
export declare function DataFiltersApiAxiosParamCreator_UpdateEntityUserDataFilters(workspaceId: string, objectId: string, jsonApiUserDataFilterInDocument: JsonApiUserDataFilterInDocument, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
25520
|
+
export declare function DataFiltersApiAxiosParamCreator_UpdateEntityUserDataFilters(workspaceId: string, objectId: string, jsonApiUserDataFilterInDocument: JsonApiUserDataFilterInDocument, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
25342
25521
|
|
|
25343
25522
|
/**
|
|
25344
25523
|
*
|
|
@@ -25388,10 +25567,10 @@ export declare interface DataFiltersApiCreateEntityUserDataFiltersRequest {
|
|
|
25388
25567
|
readonly jsonApiUserDataFilterPostOptionalIdDocument: JsonApiUserDataFilterPostOptionalIdDocument;
|
|
25389
25568
|
/**
|
|
25390
25569
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
25391
|
-
* @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>}
|
|
25570
|
+
* @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
|
|
25392
25571
|
* @memberof DataFiltersApiCreateEntityUserDataFilters
|
|
25393
25572
|
*/
|
|
25394
|
-
readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>;
|
|
25573
|
+
readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
|
|
25395
25574
|
/**
|
|
25396
25575
|
* Include Meta objects.
|
|
25397
25576
|
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
@@ -25550,10 +25729,10 @@ export declare interface DataFiltersApiGetAllEntitiesUserDataFiltersRequest {
|
|
|
25550
25729
|
readonly filter?: string;
|
|
25551
25730
|
/**
|
|
25552
25731
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
25553
|
-
* @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>}
|
|
25732
|
+
* @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
|
|
25554
25733
|
* @memberof DataFiltersApiGetAllEntitiesUserDataFilters
|
|
25555
25734
|
*/
|
|
25556
|
-
readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>;
|
|
25735
|
+
readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
|
|
25557
25736
|
/**
|
|
25558
25737
|
* Zero-based page index (0..N)
|
|
25559
25738
|
* @type {number}
|
|
@@ -25736,10 +25915,10 @@ export declare interface DataFiltersApiGetEntityUserDataFiltersRequest {
|
|
|
25736
25915
|
readonly filter?: string;
|
|
25737
25916
|
/**
|
|
25738
25917
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
25739
|
-
* @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>}
|
|
25918
|
+
* @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
|
|
25740
25919
|
* @memberof DataFiltersApiGetEntityUserDataFilters
|
|
25741
25920
|
*/
|
|
25742
|
-
readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>;
|
|
25921
|
+
readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
|
|
25743
25922
|
/**
|
|
25744
25923
|
*
|
|
25745
25924
|
* @type {boolean}
|
|
@@ -26088,10 +26267,10 @@ export declare interface DataFiltersApiPatchEntityUserDataFiltersRequest {
|
|
|
26088
26267
|
readonly filter?: string;
|
|
26089
26268
|
/**
|
|
26090
26269
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
26091
|
-
* @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>}
|
|
26270
|
+
* @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
|
|
26092
26271
|
* @memberof DataFiltersApiPatchEntityUserDataFilters
|
|
26093
26272
|
*/
|
|
26094
|
-
readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>;
|
|
26273
|
+
readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
|
|
26095
26274
|
}
|
|
26096
26275
|
|
|
26097
26276
|
/**
|
|
@@ -26312,10 +26491,10 @@ export declare interface DataFiltersApiUpdateEntityUserDataFiltersRequest {
|
|
|
26312
26491
|
readonly filter?: string;
|
|
26313
26492
|
/**
|
|
26314
26493
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
26315
|
-
* @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>}
|
|
26494
|
+
* @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
|
|
26316
26495
|
* @memberof DataFiltersApiUpdateEntityUserDataFilters
|
|
26317
26496
|
*/
|
|
26318
|
-
readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>;
|
|
26497
|
+
readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
|
|
26319
26498
|
}
|
|
26320
26499
|
|
|
26321
26500
|
/**
|
|
@@ -28461,6 +28640,214 @@ export declare interface DataSourceSchemata {
|
|
|
28461
28640
|
'schemaNames': Array<string>;
|
|
28462
28641
|
}
|
|
28463
28642
|
|
|
28643
|
+
/**
|
|
28644
|
+
* DataSourceStatisticsApi - object-oriented interface
|
|
28645
|
+
* @export
|
|
28646
|
+
* @class DataSourceStatisticsApi
|
|
28647
|
+
* @extends {BaseAPI}
|
|
28648
|
+
*/
|
|
28649
|
+
export declare class DataSourceStatisticsApi extends MetadataBaseApi implements DataSourceStatisticsApiInterface {
|
|
28650
|
+
/**
|
|
28651
|
+
* (BETA) Removes all stored physical statistics for the specified data source.
|
|
28652
|
+
* @summary (BETA) Delete stored physical statistics for a data source
|
|
28653
|
+
* @param {DataSourceStatisticsApiDeleteDataSourceStatisticsRequest} requestParameters Request parameters.
|
|
28654
|
+
* @param {*} [options] Override http request option.
|
|
28655
|
+
* @throws {RequiredError}
|
|
28656
|
+
* @memberof DataSourceStatisticsApi
|
|
28657
|
+
*/
|
|
28658
|
+
deleteDataSourceStatistics(requestParameters: DataSourceStatisticsApiDeleteDataSourceStatisticsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
28659
|
+
/**
|
|
28660
|
+
* (BETA) Returns previously stored physical table and column statistics. Supports optional filtering by schema and table name.
|
|
28661
|
+
* @summary (BETA) Retrieve stored physical statistics for a data source
|
|
28662
|
+
* @param {DataSourceStatisticsApiGetDataSourceStatisticsRequest} requestParameters Request parameters.
|
|
28663
|
+
* @param {*} [options] Override http request option.
|
|
28664
|
+
* @throws {RequiredError}
|
|
28665
|
+
* @memberof DataSourceStatisticsApi
|
|
28666
|
+
*/
|
|
28667
|
+
getDataSourceStatistics(requestParameters: DataSourceStatisticsApiGetDataSourceStatisticsRequest, options?: AxiosRequestConfig): AxiosPromise<DataSourceStatisticsResponse>;
|
|
28668
|
+
/**
|
|
28669
|
+
* (BETA) Stores or replaces physical statistics (row counts, NDV, null counts, min/max) for tables and columns of a data source.
|
|
28670
|
+
* @summary (BETA) Store physical table and column statistics for a data source
|
|
28671
|
+
* @param {DataSourceStatisticsApiPutDataSourceStatisticsRequest} requestParameters Request parameters.
|
|
28672
|
+
* @param {*} [options] Override http request option.
|
|
28673
|
+
* @throws {RequiredError}
|
|
28674
|
+
* @memberof DataSourceStatisticsApi
|
|
28675
|
+
*/
|
|
28676
|
+
putDataSourceStatistics(requestParameters: DataSourceStatisticsApiPutDataSourceStatisticsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
28677
|
+
}
|
|
28678
|
+
|
|
28679
|
+
/**
|
|
28680
|
+
* (BETA) Removes all stored physical statistics for the specified data source.
|
|
28681
|
+
* @summary (BETA) Delete stored physical statistics for a data source
|
|
28682
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
28683
|
+
* @param {string} basePath Base path.
|
|
28684
|
+
* @param {DataSourceStatisticsApiDeleteDataSourceStatisticsRequest} requestParameters Request parameters.
|
|
28685
|
+
* @param {*} [options] Override http request option.
|
|
28686
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
28687
|
+
* @throws {RequiredError}
|
|
28688
|
+
*/
|
|
28689
|
+
export declare function DataSourceStatisticsApi_DeleteDataSourceStatistics(axios: AxiosInstance, basePath: string, requestParameters: DataSourceStatisticsApiDeleteDataSourceStatisticsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<void>;
|
|
28690
|
+
|
|
28691
|
+
/**
|
|
28692
|
+
* (BETA) Returns previously stored physical table and column statistics. Supports optional filtering by schema and table name.
|
|
28693
|
+
* @summary (BETA) Retrieve stored physical statistics for a data source
|
|
28694
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
28695
|
+
* @param {string} basePath Base path.
|
|
28696
|
+
* @param {DataSourceStatisticsApiGetDataSourceStatisticsRequest} requestParameters Request parameters.
|
|
28697
|
+
* @param {*} [options] Override http request option.
|
|
28698
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
28699
|
+
* @throws {RequiredError}
|
|
28700
|
+
*/
|
|
28701
|
+
export declare function DataSourceStatisticsApi_GetDataSourceStatistics(axios: AxiosInstance, basePath: string, requestParameters: DataSourceStatisticsApiGetDataSourceStatisticsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<DataSourceStatisticsResponse>;
|
|
28702
|
+
|
|
28703
|
+
/**
|
|
28704
|
+
* (BETA) Stores or replaces physical statistics (row counts, NDV, null counts, min/max) for tables and columns of a data source.
|
|
28705
|
+
* @summary (BETA) Store physical table and column statistics for a data source
|
|
28706
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
28707
|
+
* @param {string} basePath Base path.
|
|
28708
|
+
* @param {DataSourceStatisticsApiPutDataSourceStatisticsRequest} requestParameters Request parameters.
|
|
28709
|
+
* @param {*} [options] Override http request option.
|
|
28710
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
28711
|
+
* @throws {RequiredError}
|
|
28712
|
+
*/
|
|
28713
|
+
export declare function DataSourceStatisticsApi_PutDataSourceStatistics(axios: AxiosInstance, basePath: string, requestParameters: DataSourceStatisticsApiPutDataSourceStatisticsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<void>;
|
|
28714
|
+
|
|
28715
|
+
/**
|
|
28716
|
+
* (BETA) Removes all stored physical statistics for the specified data source.
|
|
28717
|
+
* @summary (BETA) Delete stored physical statistics for a data source
|
|
28718
|
+
* @param {string} dataSourceId
|
|
28719
|
+
* @param {*} [options] Override http request option.
|
|
28720
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
28721
|
+
* @throws {RequiredError}
|
|
28722
|
+
*/
|
|
28723
|
+
export declare function DataSourceStatisticsApiAxiosParamCreator_DeleteDataSourceStatistics(dataSourceId: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
28724
|
+
|
|
28725
|
+
/**
|
|
28726
|
+
* (BETA) Returns previously stored physical table and column statistics. Supports optional filtering by schema and table name.
|
|
28727
|
+
* @summary (BETA) Retrieve stored physical statistics for a data source
|
|
28728
|
+
* @param {string} dataSourceId
|
|
28729
|
+
* @param {string} [schemaName]
|
|
28730
|
+
* @param {string} [tableName]
|
|
28731
|
+
* @param {*} [options] Override http request option.
|
|
28732
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
28733
|
+
* @throws {RequiredError}
|
|
28734
|
+
*/
|
|
28735
|
+
export declare function DataSourceStatisticsApiAxiosParamCreator_GetDataSourceStatistics(dataSourceId: string, schemaName?: string, tableName?: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
28736
|
+
|
|
28737
|
+
/**
|
|
28738
|
+
* (BETA) Stores or replaces physical statistics (row counts, NDV, null counts, min/max) for tables and columns of a data source.
|
|
28739
|
+
* @summary (BETA) Store physical table and column statistics for a data source
|
|
28740
|
+
* @param {string} dataSourceId
|
|
28741
|
+
* @param {DataSourceStatisticsRequest} dataSourceStatisticsRequest
|
|
28742
|
+
* @param {*} [options] Override http request option.
|
|
28743
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
28744
|
+
* @throws {RequiredError}
|
|
28745
|
+
*/
|
|
28746
|
+
export declare function DataSourceStatisticsApiAxiosParamCreator_PutDataSourceStatistics(dataSourceId: string, dataSourceStatisticsRequest: DataSourceStatisticsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
28747
|
+
|
|
28748
|
+
/**
|
|
28749
|
+
* Request parameters for deleteDataSourceStatistics operation in DataSourceStatisticsApi.
|
|
28750
|
+
* @export
|
|
28751
|
+
* @interface DataSourceStatisticsApiDeleteDataSourceStatisticsRequest
|
|
28752
|
+
*/
|
|
28753
|
+
export declare interface DataSourceStatisticsApiDeleteDataSourceStatisticsRequest {
|
|
28754
|
+
/**
|
|
28755
|
+
*
|
|
28756
|
+
* @type {string}
|
|
28757
|
+
* @memberof DataSourceStatisticsApiDeleteDataSourceStatistics
|
|
28758
|
+
*/
|
|
28759
|
+
readonly dataSourceId: string;
|
|
28760
|
+
}
|
|
28761
|
+
|
|
28762
|
+
/**
|
|
28763
|
+
* Request parameters for getDataSourceStatistics operation in DataSourceStatisticsApi.
|
|
28764
|
+
* @export
|
|
28765
|
+
* @interface DataSourceStatisticsApiGetDataSourceStatisticsRequest
|
|
28766
|
+
*/
|
|
28767
|
+
export declare interface DataSourceStatisticsApiGetDataSourceStatisticsRequest {
|
|
28768
|
+
/**
|
|
28769
|
+
*
|
|
28770
|
+
* @type {string}
|
|
28771
|
+
* @memberof DataSourceStatisticsApiGetDataSourceStatistics
|
|
28772
|
+
*/
|
|
28773
|
+
readonly dataSourceId: string;
|
|
28774
|
+
/**
|
|
28775
|
+
*
|
|
28776
|
+
* @type {string}
|
|
28777
|
+
* @memberof DataSourceStatisticsApiGetDataSourceStatistics
|
|
28778
|
+
*/
|
|
28779
|
+
readonly schemaName?: string;
|
|
28780
|
+
/**
|
|
28781
|
+
*
|
|
28782
|
+
* @type {string}
|
|
28783
|
+
* @memberof DataSourceStatisticsApiGetDataSourceStatistics
|
|
28784
|
+
*/
|
|
28785
|
+
readonly tableName?: string;
|
|
28786
|
+
}
|
|
28787
|
+
|
|
28788
|
+
/**
|
|
28789
|
+
* DataSourceStatisticsApi - interface
|
|
28790
|
+
* @export
|
|
28791
|
+
* @interface DataSourceStatisticsApi
|
|
28792
|
+
*/
|
|
28793
|
+
export declare interface DataSourceStatisticsApiInterface {
|
|
28794
|
+
/**
|
|
28795
|
+
* (BETA) Removes all stored physical statistics for the specified data source.
|
|
28796
|
+
* @summary (BETA) Delete stored physical statistics for a data source
|
|
28797
|
+
* @param {DataSourceStatisticsApiDeleteDataSourceStatisticsRequest} requestParameters Request parameters.
|
|
28798
|
+
* @param {*} [options] Override http request option.
|
|
28799
|
+
* @throws {RequiredError}
|
|
28800
|
+
* @memberof DataSourceStatisticsApiInterface
|
|
28801
|
+
*/
|
|
28802
|
+
deleteDataSourceStatistics(requestParameters: DataSourceStatisticsApiDeleteDataSourceStatisticsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
28803
|
+
/**
|
|
28804
|
+
* (BETA) Returns previously stored physical table and column statistics. Supports optional filtering by schema and table name.
|
|
28805
|
+
* @summary (BETA) Retrieve stored physical statistics for a data source
|
|
28806
|
+
* @param {DataSourceStatisticsApiGetDataSourceStatisticsRequest} requestParameters Request parameters.
|
|
28807
|
+
* @param {*} [options] Override http request option.
|
|
28808
|
+
* @throws {RequiredError}
|
|
28809
|
+
* @memberof DataSourceStatisticsApiInterface
|
|
28810
|
+
*/
|
|
28811
|
+
getDataSourceStatistics(requestParameters: DataSourceStatisticsApiGetDataSourceStatisticsRequest, options?: AxiosRequestConfig): AxiosPromise<DataSourceStatisticsResponse>;
|
|
28812
|
+
/**
|
|
28813
|
+
* (BETA) Stores or replaces physical statistics (row counts, NDV, null counts, min/max) for tables and columns of a data source.
|
|
28814
|
+
* @summary (BETA) Store physical table and column statistics for a data source
|
|
28815
|
+
* @param {DataSourceStatisticsApiPutDataSourceStatisticsRequest} requestParameters Request parameters.
|
|
28816
|
+
* @param {*} [options] Override http request option.
|
|
28817
|
+
* @throws {RequiredError}
|
|
28818
|
+
* @memberof DataSourceStatisticsApiInterface
|
|
28819
|
+
*/
|
|
28820
|
+
putDataSourceStatistics(requestParameters: DataSourceStatisticsApiPutDataSourceStatisticsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
28821
|
+
}
|
|
28822
|
+
|
|
28823
|
+
/**
|
|
28824
|
+
* Request parameters for putDataSourceStatistics operation in DataSourceStatisticsApi.
|
|
28825
|
+
* @export
|
|
28826
|
+
* @interface DataSourceStatisticsApiPutDataSourceStatisticsRequest
|
|
28827
|
+
*/
|
|
28828
|
+
export declare interface DataSourceStatisticsApiPutDataSourceStatisticsRequest {
|
|
28829
|
+
/**
|
|
28830
|
+
*
|
|
28831
|
+
* @type {string}
|
|
28832
|
+
* @memberof DataSourceStatisticsApiPutDataSourceStatistics
|
|
28833
|
+
*/
|
|
28834
|
+
readonly dataSourceId: string;
|
|
28835
|
+
/**
|
|
28836
|
+
*
|
|
28837
|
+
* @type {DataSourceStatisticsRequest}
|
|
28838
|
+
* @memberof DataSourceStatisticsApiPutDataSourceStatistics
|
|
28839
|
+
*/
|
|
28840
|
+
readonly dataSourceStatisticsRequest: DataSourceStatisticsRequest;
|
|
28841
|
+
}
|
|
28842
|
+
|
|
28843
|
+
export declare interface DataSourceStatisticsRequest {
|
|
28844
|
+
'tables': Array<TableStatisticsEntry>;
|
|
28845
|
+
}
|
|
28846
|
+
|
|
28847
|
+
export declare interface DataSourceStatisticsResponse {
|
|
28848
|
+
'tables': Array<TableStatisticsEntry>;
|
|
28849
|
+
}
|
|
28850
|
+
|
|
28464
28851
|
/**
|
|
28465
28852
|
* An id of the table. Including ID of data source.
|
|
28466
28853
|
*/
|
|
@@ -28510,6 +28897,73 @@ export declare interface DateValue {
|
|
|
28510
28897
|
'value': string;
|
|
28511
28898
|
}
|
|
28512
28899
|
|
|
28900
|
+
/**
|
|
28901
|
+
* A declarative form of an AI agent configuration.
|
|
28902
|
+
*/
|
|
28903
|
+
export declare interface DeclarativeAgent {
|
|
28904
|
+
/**
|
|
28905
|
+
* Identifier of an agent.
|
|
28906
|
+
*/
|
|
28907
|
+
'id': string;
|
|
28908
|
+
/**
|
|
28909
|
+
* Whether the agent is enabled.
|
|
28910
|
+
*/
|
|
28911
|
+
'enabled'?: boolean;
|
|
28912
|
+
/**
|
|
28913
|
+
* Name of the agent.
|
|
28914
|
+
*/
|
|
28915
|
+
'name'?: string;
|
|
28916
|
+
/**
|
|
28917
|
+
* Description of the agent.
|
|
28918
|
+
*/
|
|
28919
|
+
'description'?: string;
|
|
28920
|
+
/**
|
|
28921
|
+
* Personality instructions for the agent.
|
|
28922
|
+
*/
|
|
28923
|
+
'personality'?: string;
|
|
28924
|
+
/**
|
|
28925
|
+
* Skills mode: ALL or CUSTOM.
|
|
28926
|
+
*/
|
|
28927
|
+
'skillsMode'?: DeclarativeAgentSkillsModeEnum;
|
|
28928
|
+
/**
|
|
28929
|
+
* List of custom skills when skillsMode is CUSTOM.
|
|
28930
|
+
*/
|
|
28931
|
+
'customSkills'?: Array<DeclarativeAgentCustomSkillsEnum | null> | null;
|
|
28932
|
+
/**
|
|
28933
|
+
* Whether AI knowledge is enabled.
|
|
28934
|
+
*/
|
|
28935
|
+
'aiKnowledge'?: boolean;
|
|
28936
|
+
/**
|
|
28937
|
+
* Whether the agent is available to all users.
|
|
28938
|
+
*/
|
|
28939
|
+
'availableToAll'?: boolean;
|
|
28940
|
+
/**
|
|
28941
|
+
* User groups this agent is assigned to.
|
|
28942
|
+
*/
|
|
28943
|
+
'userGroups'?: Array<DeclarativeUserGroupIdentifier>;
|
|
28944
|
+
/**
|
|
28945
|
+
* Time of the entity creation.
|
|
28946
|
+
*/
|
|
28947
|
+
'createdAt'?: string | null;
|
|
28948
|
+
'createdBy'?: DeclarativeUserIdentifier;
|
|
28949
|
+
/**
|
|
28950
|
+
* Time of the last entity modification.
|
|
28951
|
+
*/
|
|
28952
|
+
'modifiedAt'?: string | null;
|
|
28953
|
+
'modifiedBy'?: DeclarativeUserIdentifier;
|
|
28954
|
+
}
|
|
28955
|
+
|
|
28956
|
+
export declare type DeclarativeAgentCustomSkillsEnum = 'alert' | 'anomaly_detection' | 'clustering' | 'forecasting' | 'key_driver_analysis' | 'metric' | 'schedule_export' | 'visualization' | 'visualization_summary' | 'what_if_analysis' | 'knowledge';
|
|
28957
|
+
|
|
28958
|
+
/**
|
|
28959
|
+
* AI agent configurations.
|
|
28960
|
+
*/
|
|
28961
|
+
export declare interface DeclarativeAgents {
|
|
28962
|
+
'agents': Array<DeclarativeAgent>;
|
|
28963
|
+
}
|
|
28964
|
+
|
|
28965
|
+
export declare type DeclarativeAgentSkillsModeEnum = 'all' | 'custom';
|
|
28966
|
+
|
|
28513
28967
|
/**
|
|
28514
28968
|
* A dataset fact.
|
|
28515
28969
|
*/
|
|
@@ -28545,7 +28999,7 @@ export declare interface DeclarativeAggregatedFact {
|
|
|
28545
28999
|
'nullValue'?: string;
|
|
28546
29000
|
}
|
|
28547
29001
|
|
|
28548
|
-
export declare type DeclarativeAggregatedFactSourceColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN';
|
|
29002
|
+
export declare type DeclarativeAggregatedFactSourceColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN' | 'HLL';
|
|
28549
29003
|
|
|
28550
29004
|
export declare interface DeclarativeAnalyticalDashboard {
|
|
28551
29005
|
/**
|
|
@@ -28817,7 +29271,7 @@ export declare interface DeclarativeAttributeHierarchy {
|
|
|
28817
29271
|
|
|
28818
29272
|
export declare type DeclarativeAttributeSortDirectionEnum = 'ASC' | 'DESC';
|
|
28819
29273
|
|
|
28820
|
-
export declare type DeclarativeAttributeSourceColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN';
|
|
29274
|
+
export declare type DeclarativeAttributeSourceColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN' | 'HLL';
|
|
28821
29275
|
|
|
28822
29276
|
export declare interface DeclarativeAutomation {
|
|
28823
29277
|
'id': string;
|
|
@@ -28917,7 +29371,7 @@ export declare interface DeclarativeColumn {
|
|
|
28917
29371
|
'isNullable'?: boolean;
|
|
28918
29372
|
}
|
|
28919
29373
|
|
|
28920
|
-
export declare type DeclarativeColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN';
|
|
29374
|
+
export declare type DeclarativeColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN' | 'HLL';
|
|
28921
29375
|
|
|
28922
29376
|
export declare interface DeclarativeCspDirective {
|
|
28923
29377
|
'directive': string;
|
|
@@ -29054,6 +29508,10 @@ export declare interface DeclarativeDataset {
|
|
|
29054
29508
|
* Precedence used in aggregate awareness.
|
|
29055
29509
|
*/
|
|
29056
29510
|
'precedence'?: number;
|
|
29511
|
+
/**
|
|
29512
|
+
* Dataset type
|
|
29513
|
+
*/
|
|
29514
|
+
'type'?: DeclarativeDatasetTypeEnum;
|
|
29057
29515
|
}
|
|
29058
29516
|
|
|
29059
29517
|
/**
|
|
@@ -29084,6 +29542,8 @@ export declare interface DeclarativeDatasetSql {
|
|
|
29084
29542
|
'dataSourceId': string;
|
|
29085
29543
|
}
|
|
29086
29544
|
|
|
29545
|
+
export declare type DeclarativeDatasetTypeEnum = 'NORMAL' | 'AUXILIARY';
|
|
29546
|
+
|
|
29087
29547
|
/**
|
|
29088
29548
|
* A data source and its properties.
|
|
29089
29549
|
*/
|
|
@@ -29328,7 +29788,7 @@ export declare interface DeclarativeFact {
|
|
|
29328
29788
|
'nullValue'?: string;
|
|
29329
29789
|
}
|
|
29330
29790
|
|
|
29331
|
-
export declare type DeclarativeFactSourceColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN';
|
|
29791
|
+
export declare type DeclarativeFactSourceColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN' | 'HLL';
|
|
29332
29792
|
|
|
29333
29793
|
export declare interface DeclarativeFilterContext {
|
|
29334
29794
|
/**
|
|
@@ -29515,7 +29975,7 @@ export declare interface DeclarativeLabel {
|
|
|
29515
29975
|
'nullValue'?: string;
|
|
29516
29976
|
}
|
|
29517
29977
|
|
|
29518
|
-
export declare type DeclarativeLabelSourceColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN';
|
|
29978
|
+
export declare type DeclarativeLabelSourceColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN' | 'HLL';
|
|
29519
29979
|
|
|
29520
29980
|
/**
|
|
29521
29981
|
* A label translation.
|
|
@@ -29752,6 +30212,7 @@ export declare interface DeclarativeOrganization {
|
|
|
29752
30212
|
'notificationChannels'?: Array<DeclarativeNotificationChannel>;
|
|
29753
30213
|
'exportTemplates'?: Array<DeclarativeExportTemplate>;
|
|
29754
30214
|
'customGeoCollections'?: Array<DeclarativeCustomGeoCollection>;
|
|
30215
|
+
'agents'?: Array<DeclarativeAgent>;
|
|
29755
30216
|
}
|
|
29756
30217
|
|
|
29757
30218
|
/**
|
|
@@ -29891,9 +30352,9 @@ export declare interface DeclarativeReferenceSource {
|
|
|
29891
30352
|
'nullValue'?: string;
|
|
29892
30353
|
}
|
|
29893
30354
|
|
|
29894
|
-
export declare type DeclarativeReferenceSourceColumnDataTypesEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN';
|
|
30355
|
+
export declare type DeclarativeReferenceSourceColumnDataTypesEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN' | 'HLL';
|
|
29895
30356
|
|
|
29896
|
-
export declare type DeclarativeReferenceSourceDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN';
|
|
30357
|
+
export declare type DeclarativeReferenceSourceDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN' | 'HLL';
|
|
29897
30358
|
|
|
29898
30359
|
/**
|
|
29899
30360
|
* Declarative specification of the cryptographic key.
|
|
@@ -30341,7 +30802,7 @@ export declare interface DeclarativeWorkspaceDataFilterColumn {
|
|
|
30341
30802
|
'dataType': DeclarativeWorkspaceDataFilterColumnDataTypeEnum;
|
|
30342
30803
|
}
|
|
30343
30804
|
|
|
30344
|
-
export declare type DeclarativeWorkspaceDataFilterColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN';
|
|
30805
|
+
export declare type DeclarativeWorkspaceDataFilterColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN' | 'HLL';
|
|
30345
30806
|
|
|
30346
30807
|
export declare interface DeclarativeWorkspaceDataFilterReferences {
|
|
30347
30808
|
'filterId': DatasetWorkspaceDataFilterIdentifier;
|
|
@@ -30355,7 +30816,7 @@ export declare interface DeclarativeWorkspaceDataFilterReferences {
|
|
|
30355
30816
|
'filterColumnDataType': DeclarativeWorkspaceDataFilterReferencesFilterColumnDataTypeEnum;
|
|
30356
30817
|
}
|
|
30357
30818
|
|
|
30358
|
-
export declare type DeclarativeWorkspaceDataFilterReferencesFilterColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN';
|
|
30819
|
+
export declare type DeclarativeWorkspaceDataFilterReferencesFilterColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN' | 'HLL';
|
|
30359
30820
|
|
|
30360
30821
|
/**
|
|
30361
30822
|
* Declarative form of data filters.
|
|
@@ -30598,7 +31059,7 @@ export declare interface DependentEntitiesNode {
|
|
|
30598
31059
|
'title'?: string;
|
|
30599
31060
|
}
|
|
30600
31061
|
|
|
30601
|
-
export declare type DependentEntitiesNodeTypeEnum = 'analyticalDashboard' | 'attribute' | 'attributeHierarchy' | 'dashboardPlugin' | 'dataset' | 'fact' | 'label' | 'metric' | 'userDataFilter' | 'automation' | 'memoryItem' | 'knowledgeRecommendation' | 'visualizationObject' | 'filterContext' | 'filterView';
|
|
31062
|
+
export declare type DependentEntitiesNodeTypeEnum = 'analyticalDashboard' | 'attribute' | 'attributeHierarchy' | 'dashboardPlugin' | 'dataset' | 'fact' | 'label' | 'metric' | 'userDataFilter' | 'parameter' | 'automation' | 'memoryItem' | 'knowledgeRecommendation' | 'visualizationObject' | 'filterContext' | 'filterView';
|
|
30602
31063
|
|
|
30603
31064
|
export declare interface DependentEntitiesRequest {
|
|
30604
31065
|
'identifiers': Array<EntityIdentifier>;
|
|
@@ -32623,6 +33084,15 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
32623
33084
|
* @memberof EntitiesApi
|
|
32624
33085
|
*/
|
|
32625
33086
|
patchEntityWorkspaces(requestParameters: EntitiesApiPatchEntityWorkspacesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceOutDocument>;
|
|
33087
|
+
/**
|
|
33088
|
+
* Notification sets up all reports to be computed again with new data.
|
|
33089
|
+
* @summary Register an upload notification
|
|
33090
|
+
* @param {EntitiesApiRegisterUploadNotificationWorkspacesRequest} requestParameters Request parameters.
|
|
33091
|
+
* @param {*} [options] Override http request option.
|
|
33092
|
+
* @throws {RequiredError}
|
|
33093
|
+
* @memberof EntitiesApi
|
|
33094
|
+
*/
|
|
33095
|
+
registerUploadNotificationWorkspaces(requestParameters: EntitiesApiRegisterUploadNotificationWorkspacesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceOutDocument>;
|
|
32626
33096
|
/**
|
|
32627
33097
|
*
|
|
32628
33098
|
* @summary The search endpoint (beta)
|
|
@@ -35593,6 +36063,18 @@ export declare function EntitiesApi_PatchEntityWorkspaces(axios: AxiosInstance,
|
|
|
35593
36063
|
*/
|
|
35594
36064
|
export declare function EntitiesApi_PatchEntityWorkspaceSettings(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiPatchEntityWorkspaceSettingsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiWorkspaceSettingOutDocument>;
|
|
35595
36065
|
|
|
36066
|
+
/**
|
|
36067
|
+
* Notification sets up all reports to be computed again with new data.
|
|
36068
|
+
* @summary Register an upload notification
|
|
36069
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
36070
|
+
* @param {string} basePath Base path.
|
|
36071
|
+
* @param {EntitiesApiRegisterUploadNotificationWorkspacesRequest} requestParameters Request parameters.
|
|
36072
|
+
* @param {*} [options] Override http request option.
|
|
36073
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
36074
|
+
* @throws {RequiredError}
|
|
36075
|
+
*/
|
|
36076
|
+
export declare function EntitiesApi_RegisterUploadNotificationWorkspaces(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiRegisterUploadNotificationWorkspacesRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiWorkspaceOutDocument>;
|
|
36077
|
+
|
|
35596
36078
|
/**
|
|
35597
36079
|
*
|
|
35598
36080
|
* @summary The search endpoint (beta)
|
|
@@ -36547,13 +37029,13 @@ export declare function EntitiesApiAxiosParamCreator_CreateEntityMemoryItems(wor
|
|
|
36547
37029
|
* @summary Post Metrics
|
|
36548
37030
|
* @param {string} workspaceId
|
|
36549
37031
|
* @param {JsonApiMetricPostOptionalIdDocument} jsonApiMetricPostOptionalIdDocument
|
|
36550
|
-
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
37032
|
+
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
36551
37033
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
36552
37034
|
* @param {*} [options] Override http request option.
|
|
36553
37035
|
* @param {Configuration} [configuration] Optional configuration.
|
|
36554
37036
|
* @throws {RequiredError}
|
|
36555
37037
|
*/
|
|
36556
|
-
export declare function EntitiesApiAxiosParamCreator_CreateEntityMetrics(workspaceId: string, jsonApiMetricPostOptionalIdDocument: JsonApiMetricPostOptionalIdDocument, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
37038
|
+
export declare function EntitiesApiAxiosParamCreator_CreateEntityMetrics(workspaceId: string, jsonApiMetricPostOptionalIdDocument: JsonApiMetricPostOptionalIdDocument, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
36557
37039
|
|
|
36558
37040
|
/**
|
|
36559
37041
|
*
|
|
@@ -36603,13 +37085,13 @@ export declare function EntitiesApiAxiosParamCreator_CreateEntityThemes(jsonApiT
|
|
|
36603
37085
|
* @summary Post User Data Filters
|
|
36604
37086
|
* @param {string} workspaceId
|
|
36605
37087
|
* @param {JsonApiUserDataFilterPostOptionalIdDocument} jsonApiUserDataFilterPostOptionalIdDocument
|
|
36606
|
-
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
37088
|
+
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
36607
37089
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
36608
37090
|
* @param {*} [options] Override http request option.
|
|
36609
37091
|
* @param {Configuration} [configuration] Optional configuration.
|
|
36610
37092
|
* @throws {RequiredError}
|
|
36611
37093
|
*/
|
|
36612
|
-
export declare function EntitiesApiAxiosParamCreator_CreateEntityUserDataFilters(workspaceId: string, jsonApiUserDataFilterPostOptionalIdDocument: JsonApiUserDataFilterPostOptionalIdDocument, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
37094
|
+
export declare function EntitiesApiAxiosParamCreator_CreateEntityUserDataFilters(workspaceId: string, jsonApiUserDataFilterPostOptionalIdDocument: JsonApiUserDataFilterPostOptionalIdDocument, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
36613
37095
|
|
|
36614
37096
|
/**
|
|
36615
37097
|
* User Group - creates tree-like structure for categorizing users
|
|
@@ -37550,7 +38032,7 @@ export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesMemoryItems(w
|
|
|
37550
38032
|
* @param {string} workspaceId
|
|
37551
38033
|
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
37552
38034
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
37553
|
-
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
38035
|
+
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
37554
38036
|
* @param {number} [page] Zero-based page index (0..N)
|
|
37555
38037
|
* @param {number} [size] The size of the page to be returned
|
|
37556
38038
|
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
@@ -37560,7 +38042,7 @@ export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesMemoryItems(w
|
|
|
37560
38042
|
* @param {Configuration} [configuration] Optional configuration.
|
|
37561
38043
|
* @throws {RequiredError}
|
|
37562
38044
|
*/
|
|
37563
|
-
export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesMetrics(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
38045
|
+
export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesMetrics(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
37564
38046
|
|
|
37565
38047
|
/**
|
|
37566
38048
|
*
|
|
@@ -37642,7 +38124,7 @@ export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesThemes(filter
|
|
|
37642
38124
|
* @param {string} workspaceId
|
|
37643
38125
|
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
37644
38126
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
37645
|
-
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
38127
|
+
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
37646
38128
|
* @param {number} [page] Zero-based page index (0..N)
|
|
37647
38129
|
* @param {number} [size] The size of the page to be returned
|
|
37648
38130
|
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
@@ -37652,7 +38134,7 @@ export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesThemes(filter
|
|
|
37652
38134
|
* @param {Configuration} [configuration] Optional configuration.
|
|
37653
38135
|
* @throws {RequiredError}
|
|
37654
38136
|
*/
|
|
37655
|
-
export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesUserDataFilters(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
38137
|
+
export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesUserDataFilters(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
37656
38138
|
|
|
37657
38139
|
/**
|
|
37658
38140
|
* User Group - creates tree-like structure for categorizing users
|
|
@@ -38204,14 +38686,14 @@ export declare function EntitiesApiAxiosParamCreator_GetEntityMemoryItems(worksp
|
|
|
38204
38686
|
* @param {string} workspaceId
|
|
38205
38687
|
* @param {string} objectId
|
|
38206
38688
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
38207
|
-
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
38689
|
+
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
38208
38690
|
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
38209
38691
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
38210
38692
|
* @param {*} [options] Override http request option.
|
|
38211
38693
|
* @param {Configuration} [configuration] Optional configuration.
|
|
38212
38694
|
* @throws {RequiredError}
|
|
38213
38695
|
*/
|
|
38214
|
-
export declare function EntitiesApiAxiosParamCreator_GetEntityMetrics(workspaceId: string, objectId: string, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
38696
|
+
export declare function EntitiesApiAxiosParamCreator_GetEntityMetrics(workspaceId: string, objectId: string, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
38215
38697
|
|
|
38216
38698
|
/**
|
|
38217
38699
|
*
|
|
@@ -38291,14 +38773,14 @@ export declare function EntitiesApiAxiosParamCreator_GetEntityThemes(id: string,
|
|
|
38291
38773
|
* @param {string} workspaceId
|
|
38292
38774
|
* @param {string} objectId
|
|
38293
38775
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
38294
|
-
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
38776
|
+
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
38295
38777
|
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
38296
38778
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
38297
38779
|
* @param {*} [options] Override http request option.
|
|
38298
38780
|
* @param {Configuration} [configuration] Optional configuration.
|
|
38299
38781
|
* @throws {RequiredError}
|
|
38300
38782
|
*/
|
|
38301
|
-
export declare function EntitiesApiAxiosParamCreator_GetEntityUserDataFilters(workspaceId: string, objectId: string, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
38783
|
+
export declare function EntitiesApiAxiosParamCreator_GetEntityUserDataFilters(workspaceId: string, objectId: string, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
38302
38784
|
|
|
38303
38785
|
/**
|
|
38304
38786
|
* User Group - creates tree-like structure for categorizing users
|
|
@@ -38764,12 +39246,12 @@ export declare function EntitiesApiAxiosParamCreator_PatchEntityMemoryItems(work
|
|
|
38764
39246
|
* @param {string} objectId
|
|
38765
39247
|
* @param {JsonApiMetricPatchDocument} jsonApiMetricPatchDocument
|
|
38766
39248
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
38767
|
-
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
39249
|
+
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
38768
39250
|
* @param {*} [options] Override http request option.
|
|
38769
39251
|
* @param {Configuration} [configuration] Optional configuration.
|
|
38770
39252
|
* @throws {RequiredError}
|
|
38771
39253
|
*/
|
|
38772
|
-
export declare function EntitiesApiAxiosParamCreator_PatchEntityMetrics(workspaceId: string, objectId: string, jsonApiMetricPatchDocument: JsonApiMetricPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
39254
|
+
export declare function EntitiesApiAxiosParamCreator_PatchEntityMetrics(workspaceId: string, objectId: string, jsonApiMetricPatchDocument: JsonApiMetricPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
38773
39255
|
|
|
38774
39256
|
/**
|
|
38775
39257
|
*
|
|
@@ -38841,12 +39323,12 @@ export declare function EntitiesApiAxiosParamCreator_PatchEntityThemes(id: strin
|
|
|
38841
39323
|
* @param {string} objectId
|
|
38842
39324
|
* @param {JsonApiUserDataFilterPatchDocument} jsonApiUserDataFilterPatchDocument
|
|
38843
39325
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
38844
|
-
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
39326
|
+
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
38845
39327
|
* @param {*} [options] Override http request option.
|
|
38846
39328
|
* @param {Configuration} [configuration] Optional configuration.
|
|
38847
39329
|
* @throws {RequiredError}
|
|
38848
39330
|
*/
|
|
38849
|
-
export declare function EntitiesApiAxiosParamCreator_PatchEntityUserDataFilters(workspaceId: string, objectId: string, jsonApiUserDataFilterPatchDocument: JsonApiUserDataFilterPatchDocument, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
39331
|
+
export declare function EntitiesApiAxiosParamCreator_PatchEntityUserDataFilters(workspaceId: string, objectId: string, jsonApiUserDataFilterPatchDocument: JsonApiUserDataFilterPatchDocument, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
38850
39332
|
|
|
38851
39333
|
/**
|
|
38852
39334
|
* User Group - creates tree-like structure for categorizing users
|
|
@@ -38942,6 +39424,18 @@ export declare function EntitiesApiAxiosParamCreator_PatchEntityWorkspaces(id: s
|
|
|
38942
39424
|
*/
|
|
38943
39425
|
export declare function EntitiesApiAxiosParamCreator_PatchEntityWorkspaceSettings(workspaceId: string, objectId: string, jsonApiWorkspaceSettingPatchDocument: JsonApiWorkspaceSettingPatchDocument, filter?: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
38944
39426
|
|
|
39427
|
+
/**
|
|
39428
|
+
* Notification sets up all reports to be computed again with new data.
|
|
39429
|
+
* @summary Register an upload notification
|
|
39430
|
+
* @param {string} workspaceId
|
|
39431
|
+
* @param {Array<'config' | 'permissions' | 'hierarchy' | 'dataModelDatasets' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
39432
|
+
* @param {object} [body] Request body
|
|
39433
|
+
* @param {*} [options] Override http request option.
|
|
39434
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
39435
|
+
* @throws {RequiredError}
|
|
39436
|
+
*/
|
|
39437
|
+
export declare function EntitiesApiAxiosParamCreator_RegisterUploadNotificationWorkspaces(workspaceId: string, metaInclude?: Array<'config' | 'permissions' | 'hierarchy' | 'dataModelDatasets' | 'all' | 'ALL'>, body?: object, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
39438
|
+
|
|
38945
39439
|
/**
|
|
38946
39440
|
*
|
|
38947
39441
|
* @summary The search endpoint (beta)
|
|
@@ -39520,12 +40014,12 @@ export declare function EntitiesApiAxiosParamCreator_UpdateEntityMemoryItems(wor
|
|
|
39520
40014
|
* @param {string} objectId
|
|
39521
40015
|
* @param {JsonApiMetricInDocument} jsonApiMetricInDocument
|
|
39522
40016
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
39523
|
-
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
40017
|
+
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
39524
40018
|
* @param {*} [options] Override http request option.
|
|
39525
40019
|
* @param {Configuration} [configuration] Optional configuration.
|
|
39526
40020
|
* @throws {RequiredError}
|
|
39527
40021
|
*/
|
|
39528
|
-
export declare function EntitiesApiAxiosParamCreator_UpdateEntityMetrics(workspaceId: string, objectId: string, jsonApiMetricInDocument: JsonApiMetricInDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
40022
|
+
export declare function EntitiesApiAxiosParamCreator_UpdateEntityMetrics(workspaceId: string, objectId: string, jsonApiMetricInDocument: JsonApiMetricInDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
39529
40023
|
|
|
39530
40024
|
/**
|
|
39531
40025
|
*
|
|
@@ -39597,12 +40091,12 @@ export declare function EntitiesApiAxiosParamCreator_UpdateEntityThemes(id: stri
|
|
|
39597
40091
|
* @param {string} objectId
|
|
39598
40092
|
* @param {JsonApiUserDataFilterInDocument} jsonApiUserDataFilterInDocument
|
|
39599
40093
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
39600
|
-
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
40094
|
+
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
39601
40095
|
* @param {*} [options] Override http request option.
|
|
39602
40096
|
* @param {Configuration} [configuration] Optional configuration.
|
|
39603
40097
|
* @throws {RequiredError}
|
|
39604
40098
|
*/
|
|
39605
|
-
export declare function EntitiesApiAxiosParamCreator_UpdateEntityUserDataFilters(workspaceId: string, objectId: string, jsonApiUserDataFilterInDocument: JsonApiUserDataFilterInDocument, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
40099
|
+
export declare function EntitiesApiAxiosParamCreator_UpdateEntityUserDataFilters(workspaceId: string, objectId: string, jsonApiUserDataFilterInDocument: JsonApiUserDataFilterInDocument, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
39606
40100
|
|
|
39607
40101
|
/**
|
|
39608
40102
|
* User Group - creates tree-like structure for categorizing users
|
|
@@ -40211,10 +40705,10 @@ export declare interface EntitiesApiCreateEntityMetricsRequest {
|
|
|
40211
40705
|
readonly jsonApiMetricPostOptionalIdDocument: JsonApiMetricPostOptionalIdDocument;
|
|
40212
40706
|
/**
|
|
40213
40707
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
40214
|
-
* @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
|
|
40708
|
+
* @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
|
|
40215
40709
|
* @memberof EntitiesApiCreateEntityMetrics
|
|
40216
40710
|
*/
|
|
40217
|
-
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
40711
|
+
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
40218
40712
|
/**
|
|
40219
40713
|
* Include Meta objects.
|
|
40220
40714
|
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
@@ -40317,10 +40811,10 @@ export declare interface EntitiesApiCreateEntityUserDataFiltersRequest {
|
|
|
40317
40811
|
readonly jsonApiUserDataFilterPostOptionalIdDocument: JsonApiUserDataFilterPostOptionalIdDocument;
|
|
40318
40812
|
/**
|
|
40319
40813
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
40320
|
-
* @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>}
|
|
40814
|
+
* @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
|
|
40321
40815
|
* @memberof EntitiesApiCreateEntityUserDataFilters
|
|
40322
40816
|
*/
|
|
40323
|
-
readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>;
|
|
40817
|
+
readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
|
|
40324
40818
|
/**
|
|
40325
40819
|
* Include Meta objects.
|
|
40326
40820
|
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
@@ -42641,10 +43135,10 @@ export declare interface EntitiesApiGetAllEntitiesMetricsRequest {
|
|
|
42641
43135
|
readonly filter?: string;
|
|
42642
43136
|
/**
|
|
42643
43137
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
42644
|
-
* @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
|
|
43138
|
+
* @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
|
|
42645
43139
|
* @memberof EntitiesApiGetAllEntitiesMetrics
|
|
42646
43140
|
*/
|
|
42647
|
-
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
43141
|
+
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
42648
43142
|
/**
|
|
42649
43143
|
* Zero-based page index (0..N)
|
|
42650
43144
|
* @type {number}
|
|
@@ -42917,10 +43411,10 @@ export declare interface EntitiesApiGetAllEntitiesUserDataFiltersRequest {
|
|
|
42917
43411
|
readonly filter?: string;
|
|
42918
43412
|
/**
|
|
42919
43413
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
42920
|
-
* @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>}
|
|
43414
|
+
* @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
|
|
42921
43415
|
* @memberof EntitiesApiGetAllEntitiesUserDataFilters
|
|
42922
43416
|
*/
|
|
42923
|
-
readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>;
|
|
43417
|
+
readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
|
|
42924
43418
|
/**
|
|
42925
43419
|
* Zero-based page index (0..N)
|
|
42926
43420
|
* @type {number}
|
|
@@ -44387,10 +44881,10 @@ export declare interface EntitiesApiGetEntityMetricsRequest {
|
|
|
44387
44881
|
readonly filter?: string;
|
|
44388
44882
|
/**
|
|
44389
44883
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
44390
|
-
* @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
|
|
44884
|
+
* @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
|
|
44391
44885
|
* @memberof EntitiesApiGetEntityMetrics
|
|
44392
44886
|
*/
|
|
44393
|
-
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
44887
|
+
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
44394
44888
|
/**
|
|
44395
44889
|
*
|
|
44396
44890
|
* @type {boolean}
|
|
@@ -44587,10 +45081,10 @@ export declare interface EntitiesApiGetEntityUserDataFiltersRequest {
|
|
|
44587
45081
|
readonly filter?: string;
|
|
44588
45082
|
/**
|
|
44589
45083
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
44590
|
-
* @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>}
|
|
45084
|
+
* @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
|
|
44591
45085
|
* @memberof EntitiesApiGetEntityUserDataFilters
|
|
44592
45086
|
*/
|
|
44593
|
-
readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>;
|
|
45087
|
+
readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
|
|
44594
45088
|
/**
|
|
44595
45089
|
*
|
|
44596
45090
|
* @type {boolean}
|
|
@@ -46757,6 +47251,15 @@ export declare interface EntitiesApiInterface {
|
|
|
46757
47251
|
* @memberof EntitiesApiInterface
|
|
46758
47252
|
*/
|
|
46759
47253
|
patchEntityWorkspaces(requestParameters: EntitiesApiPatchEntityWorkspacesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceOutDocument>;
|
|
47254
|
+
/**
|
|
47255
|
+
* Notification sets up all reports to be computed again with new data.
|
|
47256
|
+
* @summary Register an upload notification
|
|
47257
|
+
* @param {EntitiesApiRegisterUploadNotificationWorkspacesRequest} requestParameters Request parameters.
|
|
47258
|
+
* @param {*} [options] Override http request option.
|
|
47259
|
+
* @throws {RequiredError}
|
|
47260
|
+
* @memberof EntitiesApiInterface
|
|
47261
|
+
*/
|
|
47262
|
+
registerUploadNotificationWorkspaces(requestParameters: EntitiesApiRegisterUploadNotificationWorkspacesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceOutDocument>;
|
|
46760
47263
|
/**
|
|
46761
47264
|
*
|
|
46762
47265
|
* @summary The search endpoint (beta)
|
|
@@ -48141,10 +48644,10 @@ export declare interface EntitiesApiPatchEntityMetricsRequest {
|
|
|
48141
48644
|
readonly filter?: string;
|
|
48142
48645
|
/**
|
|
48143
48646
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
48144
|
-
* @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
|
|
48647
|
+
* @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
|
|
48145
48648
|
* @memberof EntitiesApiPatchEntityMetrics
|
|
48146
48649
|
*/
|
|
48147
|
-
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
48650
|
+
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
48148
48651
|
}
|
|
48149
48652
|
|
|
48150
48653
|
/**
|
|
@@ -48327,10 +48830,10 @@ export declare interface EntitiesApiPatchEntityUserDataFiltersRequest {
|
|
|
48327
48830
|
readonly filter?: string;
|
|
48328
48831
|
/**
|
|
48329
48832
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
48330
|
-
* @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>}
|
|
48833
|
+
* @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
|
|
48331
48834
|
* @memberof EntitiesApiPatchEntityUserDataFilters
|
|
48332
48835
|
*/
|
|
48333
|
-
readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>;
|
|
48836
|
+
readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
|
|
48334
48837
|
}
|
|
48335
48838
|
|
|
48336
48839
|
/**
|
|
@@ -48575,6 +49078,32 @@ export declare interface EntitiesApiPatchEntityWorkspacesRequest {
|
|
|
48575
49078
|
readonly include?: Array<'workspaces' | 'parent' | 'ALL'>;
|
|
48576
49079
|
}
|
|
48577
49080
|
|
|
49081
|
+
/**
|
|
49082
|
+
* Request parameters for registerUploadNotificationWorkspaces operation in EntitiesApi.
|
|
49083
|
+
* @export
|
|
49084
|
+
* @interface EntitiesApiRegisterUploadNotificationWorkspacesRequest
|
|
49085
|
+
*/
|
|
49086
|
+
export declare interface EntitiesApiRegisterUploadNotificationWorkspacesRequest {
|
|
49087
|
+
/**
|
|
49088
|
+
*
|
|
49089
|
+
* @type {string}
|
|
49090
|
+
* @memberof EntitiesApiRegisterUploadNotificationWorkspaces
|
|
49091
|
+
*/
|
|
49092
|
+
readonly workspaceId: string;
|
|
49093
|
+
/**
|
|
49094
|
+
* Include Meta objects.
|
|
49095
|
+
* @type {Array<'config' | 'permissions' | 'hierarchy' | 'dataModelDatasets' | 'all' | 'ALL'>}
|
|
49096
|
+
* @memberof EntitiesApiRegisterUploadNotificationWorkspaces
|
|
49097
|
+
*/
|
|
49098
|
+
readonly metaInclude?: Array<'config' | 'permissions' | 'hierarchy' | 'dataModelDatasets' | 'all' | 'ALL'>;
|
|
49099
|
+
/**
|
|
49100
|
+
* Request body
|
|
49101
|
+
* @type {object}
|
|
49102
|
+
* @memberof EntitiesApiRegisterUploadNotificationWorkspaces
|
|
49103
|
+
*/
|
|
49104
|
+
readonly body?: object;
|
|
49105
|
+
}
|
|
49106
|
+
|
|
48578
49107
|
/**
|
|
48579
49108
|
* Request parameters for searchEntitiesAggregatedFacts operation in EntitiesApi.
|
|
48580
49109
|
* @export
|
|
@@ -50009,10 +50538,10 @@ export declare interface EntitiesApiUpdateEntityMetricsRequest {
|
|
|
50009
50538
|
readonly filter?: string;
|
|
50010
50539
|
/**
|
|
50011
50540
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
50012
|
-
* @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
|
|
50541
|
+
* @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
|
|
50013
50542
|
* @memberof EntitiesApiUpdateEntityMetrics
|
|
50014
50543
|
*/
|
|
50015
|
-
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
50544
|
+
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
50016
50545
|
}
|
|
50017
50546
|
|
|
50018
50547
|
/**
|
|
@@ -50195,10 +50724,10 @@ export declare interface EntitiesApiUpdateEntityUserDataFiltersRequest {
|
|
|
50195
50724
|
readonly filter?: string;
|
|
50196
50725
|
/**
|
|
50197
50726
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
50198
|
-
* @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>}
|
|
50727
|
+
* @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
|
|
50199
50728
|
* @memberof EntitiesApiUpdateEntityUserDataFilters
|
|
50200
50729
|
*/
|
|
50201
|
-
readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>;
|
|
50730
|
+
readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
|
|
50202
50731
|
}
|
|
50203
50732
|
|
|
50204
50733
|
/**
|
|
@@ -51126,6 +51655,10 @@ export declare interface ExportAFM {
|
|
|
51126
51655
|
* Metrics to be referenced from other AFM objects (e.g. filters) but not included in the result.
|
|
51127
51656
|
*/
|
|
51128
51657
|
'auxMeasures'?: Array<ExportMeasureItem>;
|
|
51658
|
+
/**
|
|
51659
|
+
* (EXPERIMENTAL) Parameter values to use for this execution.
|
|
51660
|
+
*/
|
|
51661
|
+
'parameters'?: Array<ExportParameterItem>;
|
|
51129
51662
|
/**
|
|
51130
51663
|
* (EXPERIMENTAL) Override definitions of catalog metrics for this request. Allows substituting a catalog metric\'s MAQL definition without modifying the stored definition.
|
|
51131
51664
|
*/
|
|
@@ -51209,6 +51742,20 @@ export declare interface ExportAfmObjectIdentifierLabelIdentifier {
|
|
|
51209
51742
|
|
|
51210
51743
|
export declare type ExportAfmObjectIdentifierLabelIdentifierTypeEnum = 'label';
|
|
51211
51744
|
|
|
51745
|
+
/**
|
|
51746
|
+
* Reference to the parameter.
|
|
51747
|
+
*/
|
|
51748
|
+
export declare interface ExportAfmObjectIdentifierParameter {
|
|
51749
|
+
'identifier': ExportAfmObjectIdentifierParameterIdentifier;
|
|
51750
|
+
}
|
|
51751
|
+
|
|
51752
|
+
export declare interface ExportAfmObjectIdentifierParameterIdentifier {
|
|
51753
|
+
'id': string;
|
|
51754
|
+
'type': ExportAfmObjectIdentifierParameterIdentifierTypeEnum;
|
|
51755
|
+
}
|
|
51756
|
+
|
|
51757
|
+
export declare type ExportAfmObjectIdentifierParameterIdentifierTypeEnum = 'parameter';
|
|
51758
|
+
|
|
51212
51759
|
/**
|
|
51213
51760
|
* An all-time date filter that does not restrict by date range. Controls how rows with empty (null/missing) date values are handled.
|
|
51214
51761
|
*/
|
|
@@ -52900,7 +53447,7 @@ export declare interface ExportIdentifierRefIdentifier {
|
|
|
52900
53447
|
'type': ExportIdentifierRefIdentifierTypeEnum;
|
|
52901
53448
|
}
|
|
52902
53449
|
|
|
52903
|
-
export declare type ExportIdentifierRefIdentifierTypeEnum = 'analyticalDashboard' | 'attribute' | 'attributeHierarchy' | 'dashboardPlugin' | 'dataset' | 'fact' | 'aggregatedFact' | 'label' | 'metric' | 'userDataFilter' | 'exportDefinition' | 'automation' | 'automationResult' | 'memoryItem' | 'knowledgeRecommendation' | 'prompt' | '
|
|
53450
|
+
export declare type ExportIdentifierRefIdentifierTypeEnum = 'analyticalDashboard' | 'attribute' | 'attributeHierarchy' | 'dashboardPlugin' | 'dataset' | 'fact' | 'aggregatedFact' | 'label' | 'metric' | 'userDataFilter' | 'parameter' | 'exportDefinition' | 'automation' | 'automationResult' | 'memoryItem' | 'knowledgeRecommendation' | 'prompt' | 'visualizationObject' | 'filterContext' | 'workspaceSettings' | 'customApplicationSetting' | 'workspaceDataFilter' | 'workspaceDataFilterSetting' | 'filterView';
|
|
52904
53451
|
|
|
52905
53452
|
/**
|
|
52906
53453
|
* Export request object describing the export properties and metadata for image exports.
|
|
@@ -53050,6 +53597,17 @@ export declare interface ExportOver {
|
|
|
53050
53597
|
'attributes': Array<ExportIdentifierRef>;
|
|
53051
53598
|
}
|
|
53052
53599
|
|
|
53600
|
+
/**
|
|
53601
|
+
* (EXPERIMENTAL) Parameter value for this execution.
|
|
53602
|
+
*/
|
|
53603
|
+
export declare interface ExportParameterItem {
|
|
53604
|
+
'parameter': ExportAfmObjectIdentifierParameter;
|
|
53605
|
+
/**
|
|
53606
|
+
* Value to use for this parameter instead of its default.
|
|
53607
|
+
*/
|
|
53608
|
+
'value': string;
|
|
53609
|
+
}
|
|
53610
|
+
|
|
53053
53611
|
/**
|
|
53054
53612
|
* Custom CSS styles for the table. (PDF, HTML)
|
|
53055
53613
|
*/
|
|
@@ -59344,7 +59902,7 @@ export declare interface IdentifierRefIdentifier {
|
|
|
59344
59902
|
'type': IdentifierRefIdentifierTypeEnum;
|
|
59345
59903
|
}
|
|
59346
59904
|
|
|
59347
|
-
export declare type IdentifierRefIdentifierTypeEnum = 'analyticalDashboard' | 'attribute' | 'attributeHierarchy' | 'dashboardPlugin' | 'dataset' | 'fact' | 'aggregatedFact' | 'label' | 'metric' | 'userDataFilter' | 'exportDefinition' | 'automation' | 'automationResult' | 'memoryItem' | 'knowledgeRecommendation' | 'prompt' | '
|
|
59905
|
+
export declare type IdentifierRefIdentifierTypeEnum = 'analyticalDashboard' | 'attribute' | 'attributeHierarchy' | 'dashboardPlugin' | 'dataset' | 'fact' | 'aggregatedFact' | 'label' | 'metric' | 'userDataFilter' | 'parameter' | 'exportDefinition' | 'automation' | 'automationResult' | 'memoryItem' | 'knowledgeRecommendation' | 'prompt' | 'visualizationObject' | 'filterContext' | 'workspaceSettings' | 'customApplicationSetting' | 'workspaceDataFilter' | 'workspaceDataFilterSetting' | 'filterView';
|
|
59348
59906
|
|
|
59349
59907
|
/**
|
|
59350
59908
|
* IdentityProviderControllerApi - object-oriented interface
|
|
@@ -60769,6 +61327,15 @@ export declare class InvalidateCacheApi extends MetadataBaseApi implements Inval
|
|
|
60769
61327
|
* @memberof InvalidateCacheApi
|
|
60770
61328
|
*/
|
|
60771
61329
|
registerUploadNotification(requestParameters: InvalidateCacheApiRegisterUploadNotificationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
61330
|
+
/**
|
|
61331
|
+
* Notification sets up all reports to be computed again with new data.
|
|
61332
|
+
* @summary Register an upload notification
|
|
61333
|
+
* @param {InvalidateCacheApiRegisterUploadNotificationWorkspacesRequest} requestParameters Request parameters.
|
|
61334
|
+
* @param {*} [options] Override http request option.
|
|
61335
|
+
* @throws {RequiredError}
|
|
61336
|
+
* @memberof InvalidateCacheApi
|
|
61337
|
+
*/
|
|
61338
|
+
registerUploadNotificationWorkspaces(requestParameters: InvalidateCacheApiRegisterUploadNotificationWorkspacesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceOutDocument>;
|
|
60772
61339
|
}
|
|
60773
61340
|
|
|
60774
61341
|
/**
|
|
@@ -60783,6 +61350,18 @@ export declare class InvalidateCacheApi extends MetadataBaseApi implements Inval
|
|
|
60783
61350
|
*/
|
|
60784
61351
|
export declare function InvalidateCacheApi_RegisterUploadNotification(axios: AxiosInstance, basePath: string, requestParameters: InvalidateCacheApiRegisterUploadNotificationRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<void>;
|
|
60785
61352
|
|
|
61353
|
+
/**
|
|
61354
|
+
* Notification sets up all reports to be computed again with new data.
|
|
61355
|
+
* @summary Register an upload notification
|
|
61356
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
61357
|
+
* @param {string} basePath Base path.
|
|
61358
|
+
* @param {InvalidateCacheApiRegisterUploadNotificationWorkspacesRequest} requestParameters Request parameters.
|
|
61359
|
+
* @param {*} [options] Override http request option.
|
|
61360
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
61361
|
+
* @throws {RequiredError}
|
|
61362
|
+
*/
|
|
61363
|
+
export declare function InvalidateCacheApi_RegisterUploadNotificationWorkspaces(axios: AxiosInstance, basePath: string, requestParameters: InvalidateCacheApiRegisterUploadNotificationWorkspacesRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiWorkspaceOutDocument>;
|
|
61364
|
+
|
|
60786
61365
|
/**
|
|
60787
61366
|
* Notification sets up all reports to be computed again with new data.
|
|
60788
61367
|
* @summary Register an upload notification
|
|
@@ -60793,6 +61372,18 @@ export declare function InvalidateCacheApi_RegisterUploadNotification(axios: Axi
|
|
|
60793
61372
|
*/
|
|
60794
61373
|
export declare function InvalidateCacheApiAxiosParamCreator_RegisterUploadNotification(dataSourceId: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
60795
61374
|
|
|
61375
|
+
/**
|
|
61376
|
+
* Notification sets up all reports to be computed again with new data.
|
|
61377
|
+
* @summary Register an upload notification
|
|
61378
|
+
* @param {string} workspaceId
|
|
61379
|
+
* @param {Array<'config' | 'permissions' | 'hierarchy' | 'dataModelDatasets' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
61380
|
+
* @param {object} [body] Request body
|
|
61381
|
+
* @param {*} [options] Override http request option.
|
|
61382
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
61383
|
+
* @throws {RequiredError}
|
|
61384
|
+
*/
|
|
61385
|
+
export declare function InvalidateCacheApiAxiosParamCreator_RegisterUploadNotificationWorkspaces(workspaceId: string, metaInclude?: Array<'config' | 'permissions' | 'hierarchy' | 'dataModelDatasets' | 'all' | 'ALL'>, body?: object, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
61386
|
+
|
|
60796
61387
|
/**
|
|
60797
61388
|
* InvalidateCacheApi - interface
|
|
60798
61389
|
* @export
|
|
@@ -60808,6 +61399,15 @@ export declare interface InvalidateCacheApiInterface {
|
|
|
60808
61399
|
* @memberof InvalidateCacheApiInterface
|
|
60809
61400
|
*/
|
|
60810
61401
|
registerUploadNotification(requestParameters: InvalidateCacheApiRegisterUploadNotificationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
61402
|
+
/**
|
|
61403
|
+
* Notification sets up all reports to be computed again with new data.
|
|
61404
|
+
* @summary Register an upload notification
|
|
61405
|
+
* @param {InvalidateCacheApiRegisterUploadNotificationWorkspacesRequest} requestParameters Request parameters.
|
|
61406
|
+
* @param {*} [options] Override http request option.
|
|
61407
|
+
* @throws {RequiredError}
|
|
61408
|
+
* @memberof InvalidateCacheApiInterface
|
|
61409
|
+
*/
|
|
61410
|
+
registerUploadNotificationWorkspaces(requestParameters: InvalidateCacheApiRegisterUploadNotificationWorkspacesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceOutDocument>;
|
|
60811
61411
|
}
|
|
60812
61412
|
|
|
60813
61413
|
/**
|
|
@@ -60824,6 +61424,32 @@ export declare interface InvalidateCacheApiRegisterUploadNotificationRequest {
|
|
|
60824
61424
|
readonly dataSourceId: string;
|
|
60825
61425
|
}
|
|
60826
61426
|
|
|
61427
|
+
/**
|
|
61428
|
+
* Request parameters for registerUploadNotificationWorkspaces operation in InvalidateCacheApi.
|
|
61429
|
+
* @export
|
|
61430
|
+
* @interface InvalidateCacheApiRegisterUploadNotificationWorkspacesRequest
|
|
61431
|
+
*/
|
|
61432
|
+
export declare interface InvalidateCacheApiRegisterUploadNotificationWorkspacesRequest {
|
|
61433
|
+
/**
|
|
61434
|
+
*
|
|
61435
|
+
* @type {string}
|
|
61436
|
+
* @memberof InvalidateCacheApiRegisterUploadNotificationWorkspaces
|
|
61437
|
+
*/
|
|
61438
|
+
readonly workspaceId: string;
|
|
61439
|
+
/**
|
|
61440
|
+
* Include Meta objects.
|
|
61441
|
+
* @type {Array<'config' | 'permissions' | 'hierarchy' | 'dataModelDatasets' | 'all' | 'ALL'>}
|
|
61442
|
+
* @memberof InvalidateCacheApiRegisterUploadNotificationWorkspaces
|
|
61443
|
+
*/
|
|
61444
|
+
readonly metaInclude?: Array<'config' | 'permissions' | 'hierarchy' | 'dataModelDatasets' | 'all' | 'ALL'>;
|
|
61445
|
+
/**
|
|
61446
|
+
* Request body
|
|
61447
|
+
* @type {object}
|
|
61448
|
+
* @memberof InvalidateCacheApiRegisterUploadNotificationWorkspaces
|
|
61449
|
+
*/
|
|
61450
|
+
readonly body?: object;
|
|
61451
|
+
}
|
|
61452
|
+
|
|
60827
61453
|
export declare interface Invitation {
|
|
60828
61454
|
'email': string;
|
|
60829
61455
|
'userId': string;
|
|
@@ -61906,9 +62532,9 @@ export declare interface JsonApiAgentIn {
|
|
|
61906
62532
|
|
|
61907
62533
|
export declare interface JsonApiAgentInAttributes {
|
|
61908
62534
|
'enabled'?: boolean;
|
|
61909
|
-
'name'?: string;
|
|
61910
|
-
'description'?: string;
|
|
61911
|
-
'personality'?: string;
|
|
62535
|
+
'name'?: string | null;
|
|
62536
|
+
'description'?: string | null;
|
|
62537
|
+
'personality'?: string | null;
|
|
61912
62538
|
'skillsMode'?: JsonApiAgentInAttributesSkillsModeEnum;
|
|
61913
62539
|
'customSkills'?: Array<JsonApiAgentInAttributesCustomSkillsEnum> | null;
|
|
61914
62540
|
'aiKnowledge'?: boolean;
|
|
@@ -61943,9 +62569,9 @@ export declare interface JsonApiAgentOut {
|
|
|
61943
62569
|
|
|
61944
62570
|
export declare interface JsonApiAgentOutAttributes {
|
|
61945
62571
|
'enabled'?: boolean;
|
|
61946
|
-
'name'?: string;
|
|
61947
|
-
'description'?: string;
|
|
61948
|
-
'personality'?: string;
|
|
62572
|
+
'name'?: string | null;
|
|
62573
|
+
'description'?: string | null;
|
|
62574
|
+
'personality'?: string | null;
|
|
61949
62575
|
'skillsMode'?: JsonApiAgentOutAttributesSkillsModeEnum;
|
|
61950
62576
|
'customSkills'?: Array<JsonApiAgentOutAttributesCustomSkillsEnum> | null;
|
|
61951
62577
|
'aiKnowledge'?: boolean;
|
|
@@ -62079,7 +62705,7 @@ export declare interface JsonApiAggregatedFactOutAttributes {
|
|
|
62079
62705
|
|
|
62080
62706
|
export declare type JsonApiAggregatedFactOutAttributesOperationEnum = 'SUM' | 'MIN' | 'MAX' | 'APPROXIMATE_COUNT';
|
|
62081
62707
|
|
|
62082
|
-
export declare type JsonApiAggregatedFactOutAttributesSourceColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN';
|
|
62708
|
+
export declare type JsonApiAggregatedFactOutAttributesSourceColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN' | 'HLL';
|
|
62083
62709
|
|
|
62084
62710
|
export declare interface JsonApiAggregatedFactOutDocument {
|
|
62085
62711
|
'data': JsonApiAggregatedFactOut;
|
|
@@ -62708,7 +63334,7 @@ export declare type JsonApiAttributeOutAttributesGranularityEnum = 'MINUTE' | 'H
|
|
|
62708
63334
|
|
|
62709
63335
|
export declare type JsonApiAttributeOutAttributesSortDirectionEnum = 'ASC' | 'DESC';
|
|
62710
63336
|
|
|
62711
|
-
export declare type JsonApiAttributeOutAttributesSourceColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN';
|
|
63337
|
+
export declare type JsonApiAttributeOutAttributesSourceColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN' | 'HLL';
|
|
62712
63338
|
|
|
62713
63339
|
export declare interface JsonApiAttributeOutDocument {
|
|
62714
63340
|
'data': JsonApiAttributeOut;
|
|
@@ -63292,7 +63918,11 @@ export declare interface JsonApiCspDirectiveIn {
|
|
|
63292
63918
|
* API identifier of an object
|
|
63293
63919
|
*/
|
|
63294
63920
|
'id': string;
|
|
63295
|
-
'attributes':
|
|
63921
|
+
'attributes': JsonApiCspDirectiveInAttributes;
|
|
63922
|
+
}
|
|
63923
|
+
|
|
63924
|
+
export declare interface JsonApiCspDirectiveInAttributes {
|
|
63925
|
+
'sources': Array<string>;
|
|
63296
63926
|
}
|
|
63297
63927
|
|
|
63298
63928
|
export declare interface JsonApiCspDirectiveInDocument {
|
|
@@ -63313,11 +63943,7 @@ export declare interface JsonApiCspDirectiveOut {
|
|
|
63313
63943
|
* API identifier of an object
|
|
63314
63944
|
*/
|
|
63315
63945
|
'id': string;
|
|
63316
|
-
'attributes':
|
|
63317
|
-
}
|
|
63318
|
-
|
|
63319
|
-
export declare interface JsonApiCspDirectiveOutAttributes {
|
|
63320
|
-
'sources': Array<string>;
|
|
63946
|
+
'attributes': JsonApiCspDirectiveInAttributes;
|
|
63321
63947
|
}
|
|
63322
63948
|
|
|
63323
63949
|
export declare interface JsonApiCspDirectiveOutDocument {
|
|
@@ -63345,7 +63971,7 @@ export declare interface JsonApiCspDirectiveOutWithLinks {
|
|
|
63345
63971
|
* API identifier of an object
|
|
63346
63972
|
*/
|
|
63347
63973
|
'id': string;
|
|
63348
|
-
'attributes':
|
|
63974
|
+
'attributes': JsonApiCspDirectiveInAttributes;
|
|
63349
63975
|
'links'?: ObjectLinks;
|
|
63350
63976
|
}
|
|
63351
63977
|
|
|
@@ -63388,7 +64014,7 @@ export declare interface JsonApiCustomApplicationSettingIn {
|
|
|
63388
64014
|
* API identifier of an object
|
|
63389
64015
|
*/
|
|
63390
64016
|
'id': string;
|
|
63391
|
-
'attributes':
|
|
64017
|
+
'attributes': JsonApiCustomApplicationSettingOutAttributes;
|
|
63392
64018
|
}
|
|
63393
64019
|
|
|
63394
64020
|
export declare interface JsonApiCustomApplicationSettingInDocument {
|
|
@@ -63410,7 +64036,15 @@ export declare interface JsonApiCustomApplicationSettingOut {
|
|
|
63410
64036
|
*/
|
|
63411
64037
|
'id': string;
|
|
63412
64038
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
63413
|
-
'attributes':
|
|
64039
|
+
'attributes': JsonApiCustomApplicationSettingOutAttributes;
|
|
64040
|
+
}
|
|
64041
|
+
|
|
64042
|
+
export declare interface JsonApiCustomApplicationSettingOutAttributes {
|
|
64043
|
+
'applicationName': string;
|
|
64044
|
+
/**
|
|
64045
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
64046
|
+
*/
|
|
64047
|
+
'content': object;
|
|
63414
64048
|
}
|
|
63415
64049
|
|
|
63416
64050
|
export declare interface JsonApiCustomApplicationSettingOutDocument {
|
|
@@ -63439,7 +64073,7 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
63439
64073
|
*/
|
|
63440
64074
|
'id': string;
|
|
63441
64075
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
63442
|
-
'attributes':
|
|
64076
|
+
'attributes': JsonApiCustomApplicationSettingOutAttributes;
|
|
63443
64077
|
'links'?: ObjectLinks;
|
|
63444
64078
|
}
|
|
63445
64079
|
|
|
@@ -63486,15 +64120,7 @@ export declare interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
63486
64120
|
* API identifier of an object
|
|
63487
64121
|
*/
|
|
63488
64122
|
'id'?: string;
|
|
63489
|
-
'attributes':
|
|
63490
|
-
}
|
|
63491
|
-
|
|
63492
|
-
export declare interface JsonApiCustomApplicationSettingPostOptionalIdAttributes {
|
|
63493
|
-
'applicationName': string;
|
|
63494
|
-
/**
|
|
63495
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
63496
|
-
*/
|
|
63497
|
-
'content': object;
|
|
64123
|
+
'attributes': JsonApiCustomApplicationSettingOutAttributes;
|
|
63498
64124
|
}
|
|
63499
64125
|
|
|
63500
64126
|
export declare interface JsonApiCustomApplicationSettingPostOptionalIdDocument {
|
|
@@ -63515,12 +64141,7 @@ export declare interface JsonApiCustomGeoCollectionIn {
|
|
|
63515
64141
|
* API identifier of an object
|
|
63516
64142
|
*/
|
|
63517
64143
|
'id': string;
|
|
63518
|
-
'attributes'?:
|
|
63519
|
-
}
|
|
63520
|
-
|
|
63521
|
-
export declare interface JsonApiCustomGeoCollectionInAttributes {
|
|
63522
|
-
'name'?: string | null;
|
|
63523
|
-
'description'?: string | null;
|
|
64144
|
+
'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
|
|
63524
64145
|
}
|
|
63525
64146
|
|
|
63526
64147
|
export declare interface JsonApiCustomGeoCollectionInDocument {
|
|
@@ -63541,7 +64162,12 @@ export declare interface JsonApiCustomGeoCollectionOut {
|
|
|
63541
64162
|
* API identifier of an object
|
|
63542
64163
|
*/
|
|
63543
64164
|
'id': string;
|
|
63544
|
-
'attributes'?:
|
|
64165
|
+
'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
|
|
64166
|
+
}
|
|
64167
|
+
|
|
64168
|
+
export declare interface JsonApiCustomGeoCollectionOutAttributes {
|
|
64169
|
+
'name'?: string | null;
|
|
64170
|
+
'description'?: string | null;
|
|
63545
64171
|
}
|
|
63546
64172
|
|
|
63547
64173
|
export declare interface JsonApiCustomGeoCollectionOutDocument {
|
|
@@ -63569,7 +64195,7 @@ export declare interface JsonApiCustomGeoCollectionOutWithLinks {
|
|
|
63569
64195
|
* API identifier of an object
|
|
63570
64196
|
*/
|
|
63571
64197
|
'id': string;
|
|
63572
|
-
'attributes'?:
|
|
64198
|
+
'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
|
|
63573
64199
|
'links'?: ObjectLinks;
|
|
63574
64200
|
}
|
|
63575
64201
|
|
|
@@ -63587,7 +64213,7 @@ export declare interface JsonApiCustomGeoCollectionPatch {
|
|
|
63587
64213
|
* API identifier of an object
|
|
63588
64214
|
*/
|
|
63589
64215
|
'id': string;
|
|
63590
|
-
'attributes'?:
|
|
64216
|
+
'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
|
|
63591
64217
|
}
|
|
63592
64218
|
|
|
63593
64219
|
export declare interface JsonApiCustomGeoCollectionPatchDocument {
|
|
@@ -63823,21 +64449,21 @@ export declare interface JsonApiDatasetOutAttributesReferencePropertiesInner {
|
|
|
63823
64449
|
'sourceColumnDataTypes'?: Array<JsonApiDatasetOutAttributesReferencePropertiesInnerSourceColumnDataTypesEnum>;
|
|
63824
64450
|
}
|
|
63825
64451
|
|
|
63826
|
-
export declare type JsonApiDatasetOutAttributesReferencePropertiesInnerSourceColumnDataTypesEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN';
|
|
64452
|
+
export declare type JsonApiDatasetOutAttributesReferencePropertiesInnerSourceColumnDataTypesEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN' | 'HLL';
|
|
63827
64453
|
|
|
63828
64454
|
export declare interface JsonApiDatasetOutAttributesSql {
|
|
63829
64455
|
'statement': string;
|
|
63830
64456
|
'dataSourceId': string;
|
|
63831
64457
|
}
|
|
63832
64458
|
|
|
63833
|
-
export declare type JsonApiDatasetOutAttributesTypeEnum = 'NORMAL' | 'DATE';
|
|
64459
|
+
export declare type JsonApiDatasetOutAttributesTypeEnum = 'NORMAL' | 'DATE' | 'AUXILIARY';
|
|
63834
64460
|
|
|
63835
64461
|
export declare interface JsonApiDatasetOutAttributesWorkspaceDataFilterColumnsInner {
|
|
63836
64462
|
'name': string;
|
|
63837
64463
|
'dataType': JsonApiDatasetOutAttributesWorkspaceDataFilterColumnsInnerDataTypeEnum;
|
|
63838
64464
|
}
|
|
63839
64465
|
|
|
63840
|
-
export declare type JsonApiDatasetOutAttributesWorkspaceDataFilterColumnsInnerDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN';
|
|
64466
|
+
export declare type JsonApiDatasetOutAttributesWorkspaceDataFilterColumnsInnerDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN' | 'HLL';
|
|
63841
64467
|
|
|
63842
64468
|
/**
|
|
63843
64469
|
* Workspace data filter reference.
|
|
@@ -63848,7 +64474,7 @@ export declare interface JsonApiDatasetOutAttributesWorkspaceDataFilterReference
|
|
|
63848
64474
|
'filterColumnDataType': JsonApiDatasetOutAttributesWorkspaceDataFilterReferencesInnerFilterColumnDataTypeEnum;
|
|
63849
64475
|
}
|
|
63850
64476
|
|
|
63851
|
-
export declare type JsonApiDatasetOutAttributesWorkspaceDataFilterReferencesInnerFilterColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN';
|
|
64477
|
+
export declare type JsonApiDatasetOutAttributesWorkspaceDataFilterReferencesInnerFilterColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN' | 'HLL';
|
|
63852
64478
|
|
|
63853
64479
|
export declare interface JsonApiDatasetOutDocument {
|
|
63854
64480
|
'data': JsonApiDatasetOut;
|
|
@@ -64081,7 +64707,7 @@ export declare interface JsonApiDataSourceInAttributes {
|
|
|
64081
64707
|
/**
|
|
64082
64708
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
64083
64709
|
*/
|
|
64084
|
-
'parameters'?: Array<
|
|
64710
|
+
'parameters'?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
|
|
64085
64711
|
/**
|
|
64086
64712
|
* Determines how the results coming from a particular datasource should be cached.
|
|
64087
64713
|
*/
|
|
@@ -64094,6 +64720,11 @@ export declare interface JsonApiDataSourceInAttributes {
|
|
|
64094
64720
|
|
|
64095
64721
|
export declare type JsonApiDataSourceInAttributesCacheStrategyEnum = 'ALWAYS' | 'NEVER';
|
|
64096
64722
|
|
|
64723
|
+
export declare interface JsonApiDataSourceInAttributesParametersInner {
|
|
64724
|
+
'name': string;
|
|
64725
|
+
'value': string;
|
|
64726
|
+
}
|
|
64727
|
+
|
|
64097
64728
|
export declare type JsonApiDataSourceInAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'GREENPLUM' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE';
|
|
64098
64729
|
|
|
64099
64730
|
export declare interface JsonApiDataSourceInDocument {
|
|
@@ -64146,11 +64777,11 @@ export declare interface JsonApiDataSourceOutAttributes {
|
|
|
64146
64777
|
/**
|
|
64147
64778
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
64148
64779
|
*/
|
|
64149
|
-
'parameters'?: Array<
|
|
64780
|
+
'parameters'?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
|
|
64150
64781
|
/**
|
|
64151
64782
|
* Decoded parameters to be used when connecting to the database providing the data for the data source.
|
|
64152
64783
|
*/
|
|
64153
|
-
'decodedParameters'?: Array<
|
|
64784
|
+
'decodedParameters'?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
|
|
64154
64785
|
/**
|
|
64155
64786
|
* Determines how the results coming from a particular datasource should be cached.
|
|
64156
64787
|
*/
|
|
@@ -64169,11 +64800,6 @@ export declare type JsonApiDataSourceOutAttributesAuthenticationTypeEnum = 'USER
|
|
|
64169
64800
|
|
|
64170
64801
|
export declare type JsonApiDataSourceOutAttributesCacheStrategyEnum = 'ALWAYS' | 'NEVER';
|
|
64171
64802
|
|
|
64172
|
-
export declare interface JsonApiDataSourceOutAttributesParametersInner {
|
|
64173
|
-
'name': string;
|
|
64174
|
-
'value': string;
|
|
64175
|
-
}
|
|
64176
|
-
|
|
64177
64803
|
export declare type JsonApiDataSourceOutAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'GREENPLUM' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE';
|
|
64178
64804
|
|
|
64179
64805
|
export declare interface JsonApiDataSourceOutDocument {
|
|
@@ -64271,7 +64897,7 @@ export declare interface JsonApiDataSourcePatchAttributes {
|
|
|
64271
64897
|
/**
|
|
64272
64898
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
64273
64899
|
*/
|
|
64274
|
-
'parameters'?: Array<
|
|
64900
|
+
'parameters'?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
|
|
64275
64901
|
/**
|
|
64276
64902
|
* Determines how the results coming from a particular datasource should be cached.
|
|
64277
64903
|
*/
|
|
@@ -64549,7 +65175,7 @@ export declare interface JsonApiExportTemplateIn {
|
|
|
64549
65175
|
* API identifier of an object
|
|
64550
65176
|
*/
|
|
64551
65177
|
'id': string;
|
|
64552
|
-
'attributes':
|
|
65178
|
+
'attributes': JsonApiExportTemplateOutAttributes;
|
|
64553
65179
|
}
|
|
64554
65180
|
|
|
64555
65181
|
export declare interface JsonApiExportTemplateInDocument {
|
|
@@ -64570,9 +65196,47 @@ export declare interface JsonApiExportTemplateOut {
|
|
|
64570
65196
|
* API identifier of an object
|
|
64571
65197
|
*/
|
|
64572
65198
|
'id': string;
|
|
64573
|
-
'attributes':
|
|
65199
|
+
'attributes': JsonApiExportTemplateOutAttributes;
|
|
65200
|
+
}
|
|
65201
|
+
|
|
65202
|
+
export declare interface JsonApiExportTemplateOutAttributes {
|
|
65203
|
+
/**
|
|
65204
|
+
* User-facing name of the Slides template.
|
|
65205
|
+
*/
|
|
65206
|
+
'name': string;
|
|
65207
|
+
'dashboardSlidesTemplate'?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
|
|
65208
|
+
'widgetSlidesTemplate'?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
|
|
65209
|
+
}
|
|
65210
|
+
|
|
65211
|
+
/**
|
|
65212
|
+
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
65213
|
+
*/
|
|
65214
|
+
export declare interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
|
|
65215
|
+
/**
|
|
65216
|
+
* Export types this template applies to.
|
|
65217
|
+
*/
|
|
65218
|
+
'appliedOn': Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
65219
|
+
'coverSlide'?: CoverSlideTemplate | null;
|
|
65220
|
+
'introSlide'?: IntroSlideTemplate | null;
|
|
65221
|
+
'sectionSlide'?: SectionSlideTemplate | null;
|
|
65222
|
+
'contentSlide'?: ContentSlideTemplate | null;
|
|
64574
65223
|
}
|
|
64575
65224
|
|
|
65225
|
+
export declare type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
65226
|
+
|
|
65227
|
+
/**
|
|
65228
|
+
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
65229
|
+
*/
|
|
65230
|
+
export declare interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
|
|
65231
|
+
/**
|
|
65232
|
+
* Export types this template applies to.
|
|
65233
|
+
*/
|
|
65234
|
+
'appliedOn': Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
65235
|
+
'contentSlide'?: ContentSlideTemplate | null;
|
|
65236
|
+
}
|
|
65237
|
+
|
|
65238
|
+
export declare type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
65239
|
+
|
|
64576
65240
|
export declare interface JsonApiExportTemplateOutDocument {
|
|
64577
65241
|
'data': JsonApiExportTemplateOut;
|
|
64578
65242
|
'links'?: ObjectLinks;
|
|
@@ -64598,7 +65262,7 @@ export declare interface JsonApiExportTemplateOutWithLinks {
|
|
|
64598
65262
|
* API identifier of an object
|
|
64599
65263
|
*/
|
|
64600
65264
|
'id': string;
|
|
64601
|
-
'attributes':
|
|
65265
|
+
'attributes': JsonApiExportTemplateOutAttributes;
|
|
64602
65266
|
'links'?: ObjectLinks;
|
|
64603
65267
|
}
|
|
64604
65268
|
|
|
@@ -64624,8 +65288,8 @@ export declare interface JsonApiExportTemplatePatchAttributes {
|
|
|
64624
65288
|
* User-facing name of the Slides template.
|
|
64625
65289
|
*/
|
|
64626
65290
|
'name'?: string;
|
|
64627
|
-
'dashboardSlidesTemplate'?:
|
|
64628
|
-
'widgetSlidesTemplate'?:
|
|
65291
|
+
'dashboardSlidesTemplate'?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
|
|
65292
|
+
'widgetSlidesTemplate'?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
|
|
64629
65293
|
}
|
|
64630
65294
|
|
|
64631
65295
|
export declare interface JsonApiExportTemplatePatchDocument {
|
|
@@ -64646,47 +65310,9 @@ export declare interface JsonApiExportTemplatePostOptionalId {
|
|
|
64646
65310
|
* API identifier of an object
|
|
64647
65311
|
*/
|
|
64648
65312
|
'id'?: string;
|
|
64649
|
-
'attributes':
|
|
64650
|
-
}
|
|
64651
|
-
|
|
64652
|
-
export declare interface JsonApiExportTemplatePostOptionalIdAttributes {
|
|
64653
|
-
/**
|
|
64654
|
-
* User-facing name of the Slides template.
|
|
64655
|
-
*/
|
|
64656
|
-
'name': string;
|
|
64657
|
-
'dashboardSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
|
|
64658
|
-
'widgetSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
|
|
64659
|
-
}
|
|
64660
|
-
|
|
64661
|
-
/**
|
|
64662
|
-
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
64663
|
-
*/
|
|
64664
|
-
export declare interface JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate {
|
|
64665
|
-
/**
|
|
64666
|
-
* Export types this template applies to.
|
|
64667
|
-
*/
|
|
64668
|
-
'appliedOn': Array<JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
64669
|
-
'coverSlide'?: CoverSlideTemplate | null;
|
|
64670
|
-
'introSlide'?: IntroSlideTemplate | null;
|
|
64671
|
-
'sectionSlide'?: SectionSlideTemplate | null;
|
|
64672
|
-
'contentSlide'?: ContentSlideTemplate | null;
|
|
65313
|
+
'attributes': JsonApiExportTemplateOutAttributes;
|
|
64673
65314
|
}
|
|
64674
65315
|
|
|
64675
|
-
export declare type JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
64676
|
-
|
|
64677
|
-
/**
|
|
64678
|
-
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
64679
|
-
*/
|
|
64680
|
-
export declare interface JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate {
|
|
64681
|
-
/**
|
|
64682
|
-
* Export types this template applies to.
|
|
64683
|
-
*/
|
|
64684
|
-
'appliedOn': Array<JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
64685
|
-
'contentSlide'?: ContentSlideTemplate | null;
|
|
64686
|
-
}
|
|
64687
|
-
|
|
64688
|
-
export declare type JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
64689
|
-
|
|
64690
65316
|
export declare interface JsonApiExportTemplatePostOptionalIdDocument {
|
|
64691
65317
|
'data': JsonApiExportTemplatePostOptionalId;
|
|
64692
65318
|
}
|
|
@@ -64732,7 +65358,7 @@ export declare interface JsonApiFactOutAttributes {
|
|
|
64732
65358
|
'nullValue'?: string;
|
|
64733
65359
|
}
|
|
64734
65360
|
|
|
64735
|
-
export declare type JsonApiFactOutAttributesSourceColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN';
|
|
65361
|
+
export declare type JsonApiFactOutAttributesSourceColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN' | 'HLL';
|
|
64736
65362
|
|
|
64737
65363
|
export declare interface JsonApiFactOutDocument {
|
|
64738
65364
|
'data': JsonApiFactOut;
|
|
@@ -65803,7 +66429,7 @@ export declare interface JsonApiLabelOutAttributesGeoAreaConfig {
|
|
|
65803
66429
|
'collection': GeoCollectionIdentifier;
|
|
65804
66430
|
}
|
|
65805
66431
|
|
|
65806
|
-
export declare type JsonApiLabelOutAttributesSourceColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN';
|
|
66432
|
+
export declare type JsonApiLabelOutAttributesSourceColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN' | 'HLL';
|
|
65807
66433
|
|
|
65808
66434
|
export declare interface JsonApiLabelOutAttributesTranslationsInner {
|
|
65809
66435
|
'sourceColumn': string;
|
|
@@ -66073,10 +66699,31 @@ export declare interface JsonApiLlmProviderIn {
|
|
|
66073
66699
|
* API identifier of an object
|
|
66074
66700
|
*/
|
|
66075
66701
|
'id': string;
|
|
66076
|
-
'attributes'?:
|
|
66702
|
+
'attributes'?: JsonApiLlmProviderOutAttributes;
|
|
66703
|
+
}
|
|
66704
|
+
|
|
66705
|
+
export declare interface JsonApiLlmProviderInDocument {
|
|
66706
|
+
'data': JsonApiLlmProviderIn;
|
|
66707
|
+
}
|
|
66708
|
+
|
|
66709
|
+
export declare type JsonApiLlmProviderInTypeEnum = 'llmProvider';
|
|
66710
|
+
|
|
66711
|
+
/**
|
|
66712
|
+
* LLM Provider configuration for connecting to LLM services.
|
|
66713
|
+
*/
|
|
66714
|
+
export declare interface JsonApiLlmProviderOut {
|
|
66715
|
+
/**
|
|
66716
|
+
* Object type
|
|
66717
|
+
*/
|
|
66718
|
+
'type': JsonApiLlmProviderOutTypeEnum;
|
|
66719
|
+
/**
|
|
66720
|
+
* API identifier of an object
|
|
66721
|
+
*/
|
|
66722
|
+
'id': string;
|
|
66723
|
+
'attributes'?: JsonApiLlmProviderOutAttributes;
|
|
66077
66724
|
}
|
|
66078
66725
|
|
|
66079
|
-
export declare interface
|
|
66726
|
+
export declare interface JsonApiLlmProviderOutAttributes {
|
|
66080
66727
|
'name'?: string | null;
|
|
66081
66728
|
/**
|
|
66082
66729
|
* Description of the LLM Provider.
|
|
@@ -66086,17 +66733,17 @@ export declare interface JsonApiLlmProviderInAttributes {
|
|
|
66086
66733
|
* Required ID of the default model to use from the models list.
|
|
66087
66734
|
*/
|
|
66088
66735
|
'defaultModelId'?: string | null;
|
|
66089
|
-
'providerConfig'?:
|
|
66736
|
+
'providerConfig'?: JsonApiLlmProviderOutAttributesProviderConfig | null;
|
|
66090
66737
|
/**
|
|
66091
66738
|
* List of LLM models available for this provider.
|
|
66092
66739
|
*/
|
|
66093
|
-
'models'?: Array<
|
|
66740
|
+
'models'?: Array<JsonApiLlmProviderOutAttributesModelsInner> | null;
|
|
66094
66741
|
}
|
|
66095
66742
|
|
|
66096
66743
|
/**
|
|
66097
66744
|
* LLM Model configuration (id, family) within a provider.
|
|
66098
66745
|
*/
|
|
66099
|
-
export declare interface
|
|
66746
|
+
export declare interface JsonApiLlmProviderOutAttributesModelsInner {
|
|
66100
66747
|
/**
|
|
66101
66748
|
* Unique identifier of the model (e.g., gpt-5.3, claude-4.6).
|
|
66102
66749
|
*/
|
|
@@ -66104,37 +66751,16 @@ export declare interface JsonApiLlmProviderInAttributesModelsInner {
|
|
|
66104
66751
|
/**
|
|
66105
66752
|
* Family of LLM models.
|
|
66106
66753
|
*/
|
|
66107
|
-
'family':
|
|
66754
|
+
'family': JsonApiLlmProviderOutAttributesModelsInnerFamilyEnum;
|
|
66108
66755
|
}
|
|
66109
66756
|
|
|
66110
|
-
export declare type
|
|
66757
|
+
export declare type JsonApiLlmProviderOutAttributesModelsInnerFamilyEnum = 'OPENAI' | 'ANTHROPIC' | 'META' | 'MISTRAL' | 'AMAZON' | 'GOOGLE' | 'COHERE' | 'UNKNOWN';
|
|
66111
66758
|
|
|
66112
66759
|
/**
|
|
66113
|
-
* @type
|
|
66760
|
+
* @type JsonApiLlmProviderOutAttributesProviderConfig
|
|
66114
66761
|
* Provider-specific configuration including authentication.
|
|
66115
66762
|
*/
|
|
66116
|
-
export declare type
|
|
66117
|
-
|
|
66118
|
-
export declare interface JsonApiLlmProviderInDocument {
|
|
66119
|
-
'data': JsonApiLlmProviderIn;
|
|
66120
|
-
}
|
|
66121
|
-
|
|
66122
|
-
export declare type JsonApiLlmProviderInTypeEnum = 'llmProvider';
|
|
66123
|
-
|
|
66124
|
-
/**
|
|
66125
|
-
* LLM Provider configuration for connecting to LLM services.
|
|
66126
|
-
*/
|
|
66127
|
-
export declare interface JsonApiLlmProviderOut {
|
|
66128
|
-
/**
|
|
66129
|
-
* Object type
|
|
66130
|
-
*/
|
|
66131
|
-
'type': JsonApiLlmProviderOutTypeEnum;
|
|
66132
|
-
/**
|
|
66133
|
-
* API identifier of an object
|
|
66134
|
-
*/
|
|
66135
|
-
'id': string;
|
|
66136
|
-
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
66137
|
-
}
|
|
66763
|
+
export declare type JsonApiLlmProviderOutAttributesProviderConfig = AwsBedrockProviderConfig | AzureFoundryProviderConfig | OpenAIProviderConfig;
|
|
66138
66764
|
|
|
66139
66765
|
export declare interface JsonApiLlmProviderOutDocument {
|
|
66140
66766
|
'data': JsonApiLlmProviderOut;
|
|
@@ -66161,7 +66787,7 @@ export declare interface JsonApiLlmProviderOutWithLinks {
|
|
|
66161
66787
|
* API identifier of an object
|
|
66162
66788
|
*/
|
|
66163
66789
|
'id': string;
|
|
66164
|
-
'attributes'?:
|
|
66790
|
+
'attributes'?: JsonApiLlmProviderOutAttributes;
|
|
66165
66791
|
'links'?: ObjectLinks;
|
|
66166
66792
|
}
|
|
66167
66793
|
|
|
@@ -66179,7 +66805,7 @@ export declare interface JsonApiLlmProviderPatch {
|
|
|
66179
66805
|
* API identifier of an object
|
|
66180
66806
|
*/
|
|
66181
66807
|
'id': string;
|
|
66182
|
-
'attributes'?:
|
|
66808
|
+
'attributes'?: JsonApiLlmProviderOutAttributes;
|
|
66183
66809
|
}
|
|
66184
66810
|
|
|
66185
66811
|
export declare interface JsonApiLlmProviderPatchDocument {
|
|
@@ -66498,7 +67124,7 @@ export declare interface JsonApiMetricOutDocument {
|
|
|
66498
67124
|
/**
|
|
66499
67125
|
* @type JsonApiMetricOutIncludes
|
|
66500
67126
|
*/
|
|
66501
|
-
export declare type JsonApiMetricOutIncludes = JsonApiAttributeOutWithLinks | JsonApiDatasetOutWithLinks | JsonApiFactOutWithLinks | JsonApiLabelOutWithLinks | JsonApiMetricOutWithLinks | JsonApiUserIdentifierOutWithLinks;
|
|
67127
|
+
export declare type JsonApiMetricOutIncludes = JsonApiAttributeOutWithLinks | JsonApiDatasetOutWithLinks | JsonApiFactOutWithLinks | JsonApiLabelOutWithLinks | JsonApiMetricOutWithLinks | JsonApiParameterOutWithLinks | JsonApiUserIdentifierOutWithLinks;
|
|
66502
67128
|
|
|
66503
67129
|
/**
|
|
66504
67130
|
* A JSON:API document with a list of resources
|
|
@@ -66522,6 +67148,14 @@ export declare interface JsonApiMetricOutRelationships {
|
|
|
66522
67148
|
'labels'?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
|
|
66523
67149
|
'metrics'?: JsonApiAnalyticalDashboardOutRelationshipsMetrics;
|
|
66524
67150
|
'datasets'?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
|
|
67151
|
+
'parameters'?: JsonApiMetricOutRelationshipsParameters;
|
|
67152
|
+
}
|
|
67153
|
+
|
|
67154
|
+
export declare interface JsonApiMetricOutRelationshipsParameters {
|
|
67155
|
+
/**
|
|
67156
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
67157
|
+
*/
|
|
67158
|
+
'data': Array<JsonApiParameterLinkage>;
|
|
66525
67159
|
}
|
|
66526
67160
|
|
|
66527
67161
|
export declare type JsonApiMetricOutTypeEnum = 'metric';
|
|
@@ -66714,7 +67348,7 @@ export declare interface JsonApiNotificationChannelOut {
|
|
|
66714
67348
|
export declare interface JsonApiNotificationChannelOutAttributes {
|
|
66715
67349
|
'name'?: string | null;
|
|
66716
67350
|
'description'?: string | null;
|
|
66717
|
-
'destination'?:
|
|
67351
|
+
'destination'?: JsonApiNotificationChannelPostOptionalIdAttributesDestination;
|
|
66718
67352
|
'destinationType'?: JsonApiNotificationChannelOutAttributesDestinationTypeEnum | null;
|
|
66719
67353
|
/**
|
|
66720
67354
|
* Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
|
|
@@ -66742,12 +67376,6 @@ export declare type JsonApiNotificationChannelOutAttributesAllowedRecipientsEnum
|
|
|
66742
67376
|
|
|
66743
67377
|
export declare type JsonApiNotificationChannelOutAttributesDashboardLinkVisibilityEnum = 'HIDDEN' | 'INTERNAL_ONLY' | 'ALL';
|
|
66744
67378
|
|
|
66745
|
-
/**
|
|
66746
|
-
* @type JsonApiNotificationChannelOutAttributesDestination
|
|
66747
|
-
* The destination where the notifications are to be sent.
|
|
66748
|
-
*/
|
|
66749
|
-
export declare type JsonApiNotificationChannelOutAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
66750
|
-
|
|
66751
67379
|
export declare type JsonApiNotificationChannelOutAttributesDestinationTypeEnum = 'WEBHOOK' | 'SMTP' | 'DEFAULT_SMTP' | 'IN_PLATFORM';
|
|
66752
67380
|
|
|
66753
67381
|
export declare type JsonApiNotificationChannelOutAttributesInPlatformNotificationEnum = 'DISABLED' | 'ENABLED';
|
|
@@ -66822,7 +67450,7 @@ export declare interface JsonApiNotificationChannelPostOptionalId {
|
|
|
66822
67450
|
export declare interface JsonApiNotificationChannelPostOptionalIdAttributes {
|
|
66823
67451
|
'name'?: string | null;
|
|
66824
67452
|
'description'?: string | null;
|
|
66825
|
-
'destination'?:
|
|
67453
|
+
'destination'?: JsonApiNotificationChannelPostOptionalIdAttributesDestination;
|
|
66826
67454
|
/**
|
|
66827
67455
|
* Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
|
|
66828
67456
|
*/
|
|
@@ -66849,6 +67477,12 @@ export declare type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRec
|
|
|
66849
67477
|
|
|
66850
67478
|
export declare type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = 'HIDDEN' | 'INTERNAL_ONLY' | 'ALL';
|
|
66851
67479
|
|
|
67480
|
+
/**
|
|
67481
|
+
* @type JsonApiNotificationChannelPostOptionalIdAttributesDestination
|
|
67482
|
+
* The destination where the notifications are to be sent.
|
|
67483
|
+
*/
|
|
67484
|
+
export declare type JsonApiNotificationChannelPostOptionalIdAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
67485
|
+
|
|
66852
67486
|
export declare type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = 'DISABLED' | 'ENABLED';
|
|
66853
67487
|
|
|
66854
67488
|
export declare interface JsonApiNotificationChannelPostOptionalIdDocument {
|
|
@@ -67023,9 +67657,19 @@ export declare interface JsonApiOrganizationSettingIn {
|
|
|
67023
67657
|
* API identifier of an object
|
|
67024
67658
|
*/
|
|
67025
67659
|
'id': string;
|
|
67026
|
-
'attributes'?:
|
|
67660
|
+
'attributes'?: JsonApiOrganizationSettingInAttributes;
|
|
67027
67661
|
}
|
|
67028
67662
|
|
|
67663
|
+
export declare interface JsonApiOrganizationSettingInAttributes {
|
|
67664
|
+
/**
|
|
67665
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
67666
|
+
*/
|
|
67667
|
+
'content'?: object;
|
|
67668
|
+
'type'?: JsonApiOrganizationSettingInAttributesTypeEnum;
|
|
67669
|
+
}
|
|
67670
|
+
|
|
67671
|
+
export declare type JsonApiOrganizationSettingInAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_ENDPOINT' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS';
|
|
67672
|
+
|
|
67029
67673
|
export declare interface JsonApiOrganizationSettingInDocument {
|
|
67030
67674
|
'data': JsonApiOrganizationSettingIn;
|
|
67031
67675
|
}
|
|
@@ -67044,19 +67688,9 @@ export declare interface JsonApiOrganizationSettingOut {
|
|
|
67044
67688
|
* API identifier of an object
|
|
67045
67689
|
*/
|
|
67046
67690
|
'id': string;
|
|
67047
|
-
'attributes'?:
|
|
67691
|
+
'attributes'?: JsonApiOrganizationSettingInAttributes;
|
|
67048
67692
|
}
|
|
67049
67693
|
|
|
67050
|
-
export declare interface JsonApiOrganizationSettingOutAttributes {
|
|
67051
|
-
/**
|
|
67052
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
67053
|
-
*/
|
|
67054
|
-
'content'?: object;
|
|
67055
|
-
'type'?: JsonApiOrganizationSettingOutAttributesTypeEnum;
|
|
67056
|
-
}
|
|
67057
|
-
|
|
67058
|
-
export declare type JsonApiOrganizationSettingOutAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_ENDPOINT' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS';
|
|
67059
|
-
|
|
67060
67694
|
export declare interface JsonApiOrganizationSettingOutDocument {
|
|
67061
67695
|
'data': JsonApiOrganizationSettingOut;
|
|
67062
67696
|
'links'?: ObjectLinks;
|
|
@@ -67082,7 +67716,7 @@ export declare interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
67082
67716
|
* API identifier of an object
|
|
67083
67717
|
*/
|
|
67084
67718
|
'id': string;
|
|
67085
|
-
'attributes'?:
|
|
67719
|
+
'attributes'?: JsonApiOrganizationSettingInAttributes;
|
|
67086
67720
|
'links'?: ObjectLinks;
|
|
67087
67721
|
}
|
|
67088
67722
|
|
|
@@ -67100,7 +67734,7 @@ export declare interface JsonApiOrganizationSettingPatch {
|
|
|
67100
67734
|
* API identifier of an object
|
|
67101
67735
|
*/
|
|
67102
67736
|
'id': string;
|
|
67103
|
-
'attributes'?:
|
|
67737
|
+
'attributes'?: JsonApiOrganizationSettingInAttributes;
|
|
67104
67738
|
}
|
|
67105
67739
|
|
|
67106
67740
|
export declare interface JsonApiOrganizationSettingPatchDocument {
|
|
@@ -67130,6 +67764,16 @@ export declare interface JsonApiParameterInDocument {
|
|
|
67130
67764
|
|
|
67131
67765
|
export declare type JsonApiParameterInTypeEnum = 'parameter';
|
|
67132
67766
|
|
|
67767
|
+
/**
|
|
67768
|
+
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
67769
|
+
*/
|
|
67770
|
+
export declare interface JsonApiParameterLinkage {
|
|
67771
|
+
'id': string;
|
|
67772
|
+
'type': JsonApiParameterLinkageTypeEnum;
|
|
67773
|
+
}
|
|
67774
|
+
|
|
67775
|
+
export declare type JsonApiParameterLinkageTypeEnum = 'parameter';
|
|
67776
|
+
|
|
67133
67777
|
/**
|
|
67134
67778
|
* JSON:API representation of parameter entity.
|
|
67135
67779
|
*/
|
|
@@ -67409,7 +68053,7 @@ export declare interface JsonApiUserDataFilterOutDocument {
|
|
|
67409
68053
|
/**
|
|
67410
68054
|
* @type JsonApiUserDataFilterOutIncludes
|
|
67411
68055
|
*/
|
|
67412
|
-
export declare type JsonApiUserDataFilterOutIncludes = JsonApiAttributeOutWithLinks | JsonApiDatasetOutWithLinks | JsonApiFactOutWithLinks | JsonApiLabelOutWithLinks | JsonApiMetricOutWithLinks | JsonApiUserGroupOutWithLinks | JsonApiUserOutWithLinks;
|
|
68056
|
+
export declare type JsonApiUserDataFilterOutIncludes = JsonApiAttributeOutWithLinks | JsonApiDatasetOutWithLinks | JsonApiFactOutWithLinks | JsonApiLabelOutWithLinks | JsonApiMetricOutWithLinks | JsonApiParameterOutWithLinks | JsonApiUserGroupOutWithLinks | JsonApiUserOutWithLinks;
|
|
67413
68057
|
|
|
67414
68058
|
/**
|
|
67415
68059
|
* A JSON:API document with a list of resources
|
|
@@ -67432,6 +68076,7 @@ export declare interface JsonApiUserDataFilterOutRelationships {
|
|
|
67432
68076
|
'labels'?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
|
|
67433
68077
|
'metrics'?: JsonApiAnalyticalDashboardOutRelationshipsMetrics;
|
|
67434
68078
|
'datasets'?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
|
|
68079
|
+
'parameters'?: JsonApiMetricOutRelationshipsParameters;
|
|
67435
68080
|
}
|
|
67436
68081
|
|
|
67437
68082
|
export declare type JsonApiUserDataFilterOutTypeEnum = 'userDataFilter';
|
|
@@ -67830,7 +68475,7 @@ export declare interface JsonApiUserSettingIn {
|
|
|
67830
68475
|
* API identifier of an object
|
|
67831
68476
|
*/
|
|
67832
68477
|
'id': string;
|
|
67833
|
-
'attributes'?:
|
|
68478
|
+
'attributes'?: JsonApiOrganizationSettingInAttributes;
|
|
67834
68479
|
}
|
|
67835
68480
|
|
|
67836
68481
|
export declare interface JsonApiUserSettingInDocument {
|
|
@@ -67851,7 +68496,7 @@ export declare interface JsonApiUserSettingOut {
|
|
|
67851
68496
|
* API identifier of an object
|
|
67852
68497
|
*/
|
|
67853
68498
|
'id': string;
|
|
67854
|
-
'attributes'?:
|
|
68499
|
+
'attributes'?: JsonApiOrganizationSettingInAttributes;
|
|
67855
68500
|
}
|
|
67856
68501
|
|
|
67857
68502
|
export declare interface JsonApiUserSettingOutDocument {
|
|
@@ -67879,7 +68524,7 @@ export declare interface JsonApiUserSettingOutWithLinks {
|
|
|
67879
68524
|
* API identifier of an object
|
|
67880
68525
|
*/
|
|
67881
68526
|
'id': string;
|
|
67882
|
-
'attributes'?:
|
|
68527
|
+
'attributes'?: JsonApiOrganizationSettingInAttributes;
|
|
67883
68528
|
'links'?: ObjectLinks;
|
|
67884
68529
|
}
|
|
67885
68530
|
|
|
@@ -67930,7 +68575,7 @@ export declare interface JsonApiVisualizationObjectOut {
|
|
|
67930
68575
|
'id': string;
|
|
67931
68576
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
67932
68577
|
'attributes': JsonApiVisualizationObjectOutAttributes;
|
|
67933
|
-
'relationships'?:
|
|
68578
|
+
'relationships'?: JsonApiVisualizationObjectOutRelationships;
|
|
67934
68579
|
}
|
|
67935
68580
|
|
|
67936
68581
|
export declare interface JsonApiVisualizationObjectOutAttributes {
|
|
@@ -67973,9 +68618,14 @@ export declare interface JsonApiVisualizationObjectOutDocument {
|
|
|
67973
68618
|
/**
|
|
67974
68619
|
* Included resources
|
|
67975
68620
|
*/
|
|
67976
|
-
'included'?: Array<
|
|
68621
|
+
'included'?: Array<JsonApiVisualizationObjectOutIncludes>;
|
|
67977
68622
|
}
|
|
67978
68623
|
|
|
68624
|
+
/**
|
|
68625
|
+
* @type JsonApiVisualizationObjectOutIncludes
|
|
68626
|
+
*/
|
|
68627
|
+
export declare type JsonApiVisualizationObjectOutIncludes = JsonApiAttributeOutWithLinks | JsonApiDatasetOutWithLinks | JsonApiFactOutWithLinks | JsonApiLabelOutWithLinks | JsonApiMetricOutWithLinks | JsonApiUserIdentifierOutWithLinks;
|
|
68628
|
+
|
|
67979
68629
|
/**
|
|
67980
68630
|
* A JSON:API document with a list of resources
|
|
67981
68631
|
*/
|
|
@@ -67986,7 +68636,18 @@ export declare interface JsonApiVisualizationObjectOutList {
|
|
|
67986
68636
|
/**
|
|
67987
68637
|
* Included resources
|
|
67988
68638
|
*/
|
|
67989
|
-
'included'?: Array<
|
|
68639
|
+
'included'?: Array<JsonApiVisualizationObjectOutIncludes>;
|
|
68640
|
+
}
|
|
68641
|
+
|
|
68642
|
+
export declare interface JsonApiVisualizationObjectOutRelationships {
|
|
68643
|
+
'createdBy'?: JsonApiAgentOutRelationshipsCreatedBy;
|
|
68644
|
+
'modifiedBy'?: JsonApiAgentOutRelationshipsCreatedBy;
|
|
68645
|
+
'certifiedBy'?: JsonApiAgentOutRelationshipsCreatedBy;
|
|
68646
|
+
'facts'?: JsonApiDatasetOutRelationshipsFacts;
|
|
68647
|
+
'attributes'?: JsonApiDatasetOutRelationshipsAttributes;
|
|
68648
|
+
'labels'?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
|
|
68649
|
+
'metrics'?: JsonApiAnalyticalDashboardOutRelationshipsMetrics;
|
|
68650
|
+
'datasets'?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
|
|
67990
68651
|
}
|
|
67991
68652
|
|
|
67992
68653
|
export declare type JsonApiVisualizationObjectOutTypeEnum = 'visualizationObject';
|
|
@@ -68002,7 +68663,7 @@ export declare interface JsonApiVisualizationObjectOutWithLinks {
|
|
|
68002
68663
|
'id': string;
|
|
68003
68664
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
68004
68665
|
'attributes': JsonApiVisualizationObjectOutAttributes;
|
|
68005
|
-
'relationships'?:
|
|
68666
|
+
'relationships'?: JsonApiVisualizationObjectOutRelationships;
|
|
68006
68667
|
'links'?: ObjectLinks;
|
|
68007
68668
|
}
|
|
68008
68669
|
|
|
@@ -68738,7 +69399,7 @@ export declare interface JsonApiWorkspaceSettingIn {
|
|
|
68738
69399
|
* API identifier of an object
|
|
68739
69400
|
*/
|
|
68740
69401
|
'id': string;
|
|
68741
|
-
'attributes'?:
|
|
69402
|
+
'attributes'?: JsonApiOrganizationSettingInAttributes;
|
|
68742
69403
|
}
|
|
68743
69404
|
|
|
68744
69405
|
export declare interface JsonApiWorkspaceSettingInDocument {
|
|
@@ -68760,7 +69421,7 @@ export declare interface JsonApiWorkspaceSettingOut {
|
|
|
68760
69421
|
*/
|
|
68761
69422
|
'id': string;
|
|
68762
69423
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
68763
|
-
'attributes'?:
|
|
69424
|
+
'attributes'?: JsonApiOrganizationSettingInAttributes;
|
|
68764
69425
|
}
|
|
68765
69426
|
|
|
68766
69427
|
export declare interface JsonApiWorkspaceSettingOutDocument {
|
|
@@ -68789,7 +69450,7 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
68789
69450
|
*/
|
|
68790
69451
|
'id': string;
|
|
68791
69452
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
68792
|
-
'attributes'?:
|
|
69453
|
+
'attributes'?: JsonApiOrganizationSettingInAttributes;
|
|
68793
69454
|
'links'?: ObjectLinks;
|
|
68794
69455
|
}
|
|
68795
69456
|
|
|
@@ -68807,7 +69468,7 @@ export declare interface JsonApiWorkspaceSettingPatch {
|
|
|
68807
69468
|
* API identifier of an object
|
|
68808
69469
|
*/
|
|
68809
69470
|
'id': string;
|
|
68810
|
-
'attributes'?:
|
|
69471
|
+
'attributes'?: JsonApiOrganizationSettingInAttributes;
|
|
68811
69472
|
}
|
|
68812
69473
|
|
|
68813
69474
|
export declare interface JsonApiWorkspaceSettingPatchDocument {
|
|
@@ -68828,7 +69489,7 @@ export declare interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
68828
69489
|
* API identifier of an object
|
|
68829
69490
|
*/
|
|
68830
69491
|
'id'?: string;
|
|
68831
|
-
'attributes'?:
|
|
69492
|
+
'attributes'?: JsonApiOrganizationSettingInAttributes;
|
|
68832
69493
|
}
|
|
68833
69494
|
|
|
68834
69495
|
export declare interface JsonApiWorkspaceSettingPostOptionalIdDocument {
|
|
@@ -71754,6 +72415,23 @@ export declare interface LabelsApiSearchEntitiesLabelsRequest {
|
|
|
71754
72415
|
* @extends {BaseAPI}
|
|
71755
72416
|
*/
|
|
71756
72417
|
export declare class LayoutApi extends MetadataBaseApi implements LayoutApiInterface {
|
|
72418
|
+
/**
|
|
72419
|
+
* (BETA) Removes all stored physical statistics for the specified data source.
|
|
72420
|
+
* @summary (BETA) Delete stored physical statistics for a data source
|
|
72421
|
+
* @param {LayoutApiDeleteDataSourceStatisticsRequest} requestParameters Request parameters.
|
|
72422
|
+
* @param {*} [options] Override http request option.
|
|
72423
|
+
* @throws {RequiredError}
|
|
72424
|
+
* @memberof LayoutApi
|
|
72425
|
+
*/
|
|
72426
|
+
deleteDataSourceStatistics(requestParameters: LayoutApiDeleteDataSourceStatisticsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
72427
|
+
/**
|
|
72428
|
+
* Gets complete layout of AI agent configurations.
|
|
72429
|
+
* @summary Get all AI agent configurations layout
|
|
72430
|
+
* @param {*} [options] Override http request option.
|
|
72431
|
+
* @throws {RequiredError}
|
|
72432
|
+
* @memberof LayoutApi
|
|
72433
|
+
*/
|
|
72434
|
+
getAgentsLayout(options?: AxiosRequestConfig): AxiosPromise<DeclarativeAgents>;
|
|
71757
72435
|
/**
|
|
71758
72436
|
* Retrieve current analytics model of the workspace.
|
|
71759
72437
|
* @summary Get analytics model
|
|
@@ -71789,6 +72467,15 @@ export declare class LayoutApi extends MetadataBaseApi implements LayoutApiInter
|
|
|
71789
72467
|
* @memberof LayoutApi
|
|
71790
72468
|
*/
|
|
71791
72469
|
getDataSourcePermissions(requestParameters: LayoutApiGetDataSourcePermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<DeclarativeDataSourcePermissions>;
|
|
72470
|
+
/**
|
|
72471
|
+
* (BETA) Returns previously stored physical table and column statistics. Supports optional filtering by schema and table name.
|
|
72472
|
+
* @summary (BETA) Retrieve stored physical statistics for a data source
|
|
72473
|
+
* @param {LayoutApiGetDataSourceStatisticsRequest} requestParameters Request parameters.
|
|
72474
|
+
* @param {*} [options] Override http request option.
|
|
72475
|
+
* @throws {RequiredError}
|
|
72476
|
+
* @memberof LayoutApi
|
|
72477
|
+
*/
|
|
72478
|
+
getDataSourceStatistics(requestParameters: LayoutApiGetDataSourceStatisticsRequest, options?: AxiosRequestConfig): AxiosPromise<DataSourceStatisticsResponse>;
|
|
71792
72479
|
/**
|
|
71793
72480
|
* Retrieve all data sources including related physical model.
|
|
71794
72481
|
* @summary Get all data sources
|
|
@@ -71942,6 +72629,15 @@ export declare class LayoutApi extends MetadataBaseApi implements LayoutApiInter
|
|
|
71942
72629
|
* @memberof LayoutApi
|
|
71943
72630
|
*/
|
|
71944
72631
|
getWorkspacesLayout(requestParameters?: LayoutApiGetWorkspacesLayoutRequest, options?: AxiosRequestConfig): AxiosPromise<DeclarativeWorkspaces>;
|
|
72632
|
+
/**
|
|
72633
|
+
* (BETA) Stores or replaces physical statistics (row counts, NDV, null counts, min/max) for tables and columns of a data source.
|
|
72634
|
+
* @summary (BETA) Store physical table and column statistics for a data source
|
|
72635
|
+
* @param {LayoutApiPutDataSourceStatisticsRequest} requestParameters Request parameters.
|
|
72636
|
+
* @param {*} [options] Override http request option.
|
|
72637
|
+
* @throws {RequiredError}
|
|
72638
|
+
* @memberof LayoutApi
|
|
72639
|
+
*/
|
|
72640
|
+
putDataSourceStatistics(requestParameters: LayoutApiPutDataSourceStatisticsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
71945
72641
|
/**
|
|
71946
72642
|
* Set all data sources including related physical model.
|
|
71947
72643
|
* @summary Put all data sources
|
|
@@ -71987,6 +72683,15 @@ export declare class LayoutApi extends MetadataBaseApi implements LayoutApiInter
|
|
|
71987
72683
|
* @memberof LayoutApi
|
|
71988
72684
|
*/
|
|
71989
72685
|
putWorkspaceLayout(requestParameters: LayoutApiPutWorkspaceLayoutRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
72686
|
+
/**
|
|
72687
|
+
* Sets AI agent configurations in organization.
|
|
72688
|
+
* @summary Set all AI agent configurations
|
|
72689
|
+
* @param {LayoutApiSetAgentsLayoutRequest} requestParameters Request parameters.
|
|
72690
|
+
* @param {*} [options] Override http request option.
|
|
72691
|
+
* @throws {RequiredError}
|
|
72692
|
+
* @memberof LayoutApi
|
|
72693
|
+
*/
|
|
72694
|
+
setAgentsLayout(requestParameters: LayoutApiSetAgentsLayoutRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
71990
72695
|
/**
|
|
71991
72696
|
* Set effective analytics model of the workspace.
|
|
71992
72697
|
* @summary Set analytics model
|
|
@@ -72142,6 +72847,29 @@ export declare class LayoutApi extends MetadataBaseApi implements LayoutApiInter
|
|
|
72142
72847
|
setWorkspacesLayout(requestParameters: LayoutApiSetWorkspacesLayoutRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
72143
72848
|
}
|
|
72144
72849
|
|
|
72850
|
+
/**
|
|
72851
|
+
* (BETA) Removes all stored physical statistics for the specified data source.
|
|
72852
|
+
* @summary (BETA) Delete stored physical statistics for a data source
|
|
72853
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
72854
|
+
* @param {string} basePath Base path.
|
|
72855
|
+
* @param {LayoutApiDeleteDataSourceStatisticsRequest} requestParameters Request parameters.
|
|
72856
|
+
* @param {*} [options] Override http request option.
|
|
72857
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
72858
|
+
* @throws {RequiredError}
|
|
72859
|
+
*/
|
|
72860
|
+
export declare function LayoutApi_DeleteDataSourceStatistics(axios: AxiosInstance, basePath: string, requestParameters: LayoutApiDeleteDataSourceStatisticsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<void>;
|
|
72861
|
+
|
|
72862
|
+
/**
|
|
72863
|
+
* Gets complete layout of AI agent configurations.
|
|
72864
|
+
* @summary Get all AI agent configurations layout
|
|
72865
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
72866
|
+
* @param {string} basePath Base path.
|
|
72867
|
+
* @param {*} [options] Override http request option.
|
|
72868
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
72869
|
+
* @throws {RequiredError}
|
|
72870
|
+
*/
|
|
72871
|
+
export declare function LayoutApi_GetAgentsLayout(axios: AxiosInstance, basePath: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<DeclarativeAgents>;
|
|
72872
|
+
|
|
72145
72873
|
/**
|
|
72146
72874
|
* Retrieve current analytics model of the workspace.
|
|
72147
72875
|
* @summary Get analytics model
|
|
@@ -72200,6 +72928,18 @@ export declare function LayoutApi_GetDataSourcePermissions(axios: AxiosInstance,
|
|
|
72200
72928
|
*/
|
|
72201
72929
|
export declare function LayoutApi_GetDataSourcesLayout(axios: AxiosInstance, basePath: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<DeclarativeDataSources>;
|
|
72202
72930
|
|
|
72931
|
+
/**
|
|
72932
|
+
* (BETA) Returns previously stored physical table and column statistics. Supports optional filtering by schema and table name.
|
|
72933
|
+
* @summary (BETA) Retrieve stored physical statistics for a data source
|
|
72934
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
72935
|
+
* @param {string} basePath Base path.
|
|
72936
|
+
* @param {LayoutApiGetDataSourceStatisticsRequest} requestParameters Request parameters.
|
|
72937
|
+
* @param {*} [options] Override http request option.
|
|
72938
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
72939
|
+
* @throws {RequiredError}
|
|
72940
|
+
*/
|
|
72941
|
+
export declare function LayoutApi_GetDataSourceStatistics(axios: AxiosInstance, basePath: string, requestParameters: LayoutApiGetDataSourceStatisticsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<DataSourceStatisticsResponse>;
|
|
72942
|
+
|
|
72203
72943
|
/**
|
|
72204
72944
|
* Gets complete layout of export templates.
|
|
72205
72945
|
* @summary Get all export templates layout
|
|
@@ -72408,6 +73148,18 @@ export declare function LayoutApi_GetWorkspacesLayout(axios: AxiosInstance, base
|
|
|
72408
73148
|
*/
|
|
72409
73149
|
export declare function LayoutApi_PutDataSourcesLayout(axios: AxiosInstance, basePath: string, requestParameters: LayoutApiPutDataSourcesLayoutRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<void>;
|
|
72410
73150
|
|
|
73151
|
+
/**
|
|
73152
|
+
* (BETA) Stores or replaces physical statistics (row counts, NDV, null counts, min/max) for tables and columns of a data source.
|
|
73153
|
+
* @summary (BETA) Store physical table and column statistics for a data source
|
|
73154
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
73155
|
+
* @param {string} basePath Base path.
|
|
73156
|
+
* @param {LayoutApiPutDataSourceStatisticsRequest} requestParameters Request parameters.
|
|
73157
|
+
* @param {*} [options] Override http request option.
|
|
73158
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
73159
|
+
* @throws {RequiredError}
|
|
73160
|
+
*/
|
|
73161
|
+
export declare function LayoutApi_PutDataSourceStatistics(axios: AxiosInstance, basePath: string, requestParameters: LayoutApiPutDataSourceStatisticsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<void>;
|
|
73162
|
+
|
|
72411
73163
|
/**
|
|
72412
73164
|
* Define all user groups with their parents eventually.
|
|
72413
73165
|
* @summary Put all user groups
|
|
@@ -72456,6 +73208,18 @@ export declare function LayoutApi_PutUsersUserGroupsLayout(axios: AxiosInstance,
|
|
|
72456
73208
|
*/
|
|
72457
73209
|
export declare function LayoutApi_PutWorkspaceLayout(axios: AxiosInstance, basePath: string, requestParameters: LayoutApiPutWorkspaceLayoutRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<void>;
|
|
72458
73210
|
|
|
73211
|
+
/**
|
|
73212
|
+
* Sets AI agent configurations in organization.
|
|
73213
|
+
* @summary Set all AI agent configurations
|
|
73214
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
73215
|
+
* @param {string} basePath Base path.
|
|
73216
|
+
* @param {LayoutApiSetAgentsLayoutRequest} requestParameters Request parameters.
|
|
73217
|
+
* @param {*} [options] Override http request option.
|
|
73218
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
73219
|
+
* @throws {RequiredError}
|
|
73220
|
+
*/
|
|
73221
|
+
export declare function LayoutApi_SetAgentsLayout(axios: AxiosInstance, basePath: string, requestParameters: LayoutApiSetAgentsLayoutRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<void>;
|
|
73222
|
+
|
|
72459
73223
|
/**
|
|
72460
73224
|
* Set effective analytics model of the workspace.
|
|
72461
73225
|
* @summary Set analytics model
|
|
@@ -72660,6 +73424,25 @@ export declare function LayoutApi_SetWorkspacePermissions(axios: AxiosInstance,
|
|
|
72660
73424
|
*/
|
|
72661
73425
|
export declare function LayoutApi_SetWorkspacesLayout(axios: AxiosInstance, basePath: string, requestParameters: LayoutApiSetWorkspacesLayoutRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<void>;
|
|
72662
73426
|
|
|
73427
|
+
/**
|
|
73428
|
+
* (BETA) Removes all stored physical statistics for the specified data source.
|
|
73429
|
+
* @summary (BETA) Delete stored physical statistics for a data source
|
|
73430
|
+
* @param {string} dataSourceId
|
|
73431
|
+
* @param {*} [options] Override http request option.
|
|
73432
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
73433
|
+
* @throws {RequiredError}
|
|
73434
|
+
*/
|
|
73435
|
+
export declare function LayoutApiAxiosParamCreator_DeleteDataSourceStatistics(dataSourceId: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
73436
|
+
|
|
73437
|
+
/**
|
|
73438
|
+
* Gets complete layout of AI agent configurations.
|
|
73439
|
+
* @summary Get all AI agent configurations layout
|
|
73440
|
+
* @param {*} [options] Override http request option.
|
|
73441
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
73442
|
+
* @throws {RequiredError}
|
|
73443
|
+
*/
|
|
73444
|
+
export declare function LayoutApiAxiosParamCreator_GetAgentsLayout(options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
73445
|
+
|
|
72663
73446
|
/**
|
|
72664
73447
|
* Retrieve current analytics model of the workspace.
|
|
72665
73448
|
* @summary Get analytics model
|
|
@@ -72710,6 +73493,18 @@ export declare function LayoutApiAxiosParamCreator_GetDataSourcePermissions(data
|
|
|
72710
73493
|
*/
|
|
72711
73494
|
export declare function LayoutApiAxiosParamCreator_GetDataSourcesLayout(options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
72712
73495
|
|
|
73496
|
+
/**
|
|
73497
|
+
* (BETA) Returns previously stored physical table and column statistics. Supports optional filtering by schema and table name.
|
|
73498
|
+
* @summary (BETA) Retrieve stored physical statistics for a data source
|
|
73499
|
+
* @param {string} dataSourceId
|
|
73500
|
+
* @param {string} [schemaName]
|
|
73501
|
+
* @param {string} [tableName]
|
|
73502
|
+
* @param {*} [options] Override http request option.
|
|
73503
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
73504
|
+
* @throws {RequiredError}
|
|
73505
|
+
*/
|
|
73506
|
+
export declare function LayoutApiAxiosParamCreator_GetDataSourceStatistics(dataSourceId: string, schemaName?: string, tableName?: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
73507
|
+
|
|
72713
73508
|
/**
|
|
72714
73509
|
* Gets complete layout of export templates.
|
|
72715
73510
|
* @summary Get all export templates layout
|
|
@@ -72885,6 +73680,17 @@ export declare function LayoutApiAxiosParamCreator_GetWorkspacesLayout(exclude?:
|
|
|
72885
73680
|
*/
|
|
72886
73681
|
export declare function LayoutApiAxiosParamCreator_PutDataSourcesLayout(declarativeDataSources: DeclarativeDataSources, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
72887
73682
|
|
|
73683
|
+
/**
|
|
73684
|
+
* (BETA) Stores or replaces physical statistics (row counts, NDV, null counts, min/max) for tables and columns of a data source.
|
|
73685
|
+
* @summary (BETA) Store physical table and column statistics for a data source
|
|
73686
|
+
* @param {string} dataSourceId
|
|
73687
|
+
* @param {DataSourceStatisticsRequest} dataSourceStatisticsRequest
|
|
73688
|
+
* @param {*} [options] Override http request option.
|
|
73689
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
73690
|
+
* @throws {RequiredError}
|
|
73691
|
+
*/
|
|
73692
|
+
export declare function LayoutApiAxiosParamCreator_PutDataSourceStatistics(dataSourceId: string, dataSourceStatisticsRequest: DataSourceStatisticsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
73693
|
+
|
|
72888
73694
|
/**
|
|
72889
73695
|
* Define all user groups with their parents eventually.
|
|
72890
73696
|
* @summary Put all user groups
|
|
@@ -72926,6 +73732,16 @@ export declare function LayoutApiAxiosParamCreator_PutUsersUserGroupsLayout(decl
|
|
|
72926
73732
|
*/
|
|
72927
73733
|
export declare function LayoutApiAxiosParamCreator_PutWorkspaceLayout(workspaceId: string, declarativeWorkspaceModel: DeclarativeWorkspaceModel, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
72928
73734
|
|
|
73735
|
+
/**
|
|
73736
|
+
* Sets AI agent configurations in organization.
|
|
73737
|
+
* @summary Set all AI agent configurations
|
|
73738
|
+
* @param {DeclarativeAgents} declarativeAgents
|
|
73739
|
+
* @param {*} [options] Override http request option.
|
|
73740
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
73741
|
+
* @throws {RequiredError}
|
|
73742
|
+
*/
|
|
73743
|
+
export declare function LayoutApiAxiosParamCreator_SetAgentsLayout(declarativeAgents: DeclarativeAgents, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
73744
|
+
|
|
72929
73745
|
/**
|
|
72930
73746
|
* Set effective analytics model of the workspace.
|
|
72931
73747
|
* @summary Set analytics model
|
|
@@ -73105,6 +73921,20 @@ export declare function LayoutApiAxiosParamCreator_SetWorkspacePermissions(works
|
|
|
73105
73921
|
*/
|
|
73106
73922
|
export declare function LayoutApiAxiosParamCreator_SetWorkspacesLayout(declarativeWorkspaces: DeclarativeWorkspaces, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
73107
73923
|
|
|
73924
|
+
/**
|
|
73925
|
+
* Request parameters for deleteDataSourceStatistics operation in LayoutApi.
|
|
73926
|
+
* @export
|
|
73927
|
+
* @interface LayoutApiDeleteDataSourceStatisticsRequest
|
|
73928
|
+
*/
|
|
73929
|
+
export declare interface LayoutApiDeleteDataSourceStatisticsRequest {
|
|
73930
|
+
/**
|
|
73931
|
+
*
|
|
73932
|
+
* @type {string}
|
|
73933
|
+
* @memberof LayoutApiDeleteDataSourceStatistics
|
|
73934
|
+
*/
|
|
73935
|
+
readonly dataSourceId: string;
|
|
73936
|
+
}
|
|
73937
|
+
|
|
73108
73938
|
/**
|
|
73109
73939
|
* Request parameters for getAnalyticsModel operation in LayoutApi.
|
|
73110
73940
|
* @export
|
|
@@ -73159,6 +73989,32 @@ export declare interface LayoutApiGetDataSourcePermissionsRequest {
|
|
|
73159
73989
|
readonly dataSourceId: string;
|
|
73160
73990
|
}
|
|
73161
73991
|
|
|
73992
|
+
/**
|
|
73993
|
+
* Request parameters for getDataSourceStatistics operation in LayoutApi.
|
|
73994
|
+
* @export
|
|
73995
|
+
* @interface LayoutApiGetDataSourceStatisticsRequest
|
|
73996
|
+
*/
|
|
73997
|
+
export declare interface LayoutApiGetDataSourceStatisticsRequest {
|
|
73998
|
+
/**
|
|
73999
|
+
*
|
|
74000
|
+
* @type {string}
|
|
74001
|
+
* @memberof LayoutApiGetDataSourceStatistics
|
|
74002
|
+
*/
|
|
74003
|
+
readonly dataSourceId: string;
|
|
74004
|
+
/**
|
|
74005
|
+
*
|
|
74006
|
+
* @type {string}
|
|
74007
|
+
* @memberof LayoutApiGetDataSourceStatistics
|
|
74008
|
+
*/
|
|
74009
|
+
readonly schemaName?: string;
|
|
74010
|
+
/**
|
|
74011
|
+
*
|
|
74012
|
+
* @type {string}
|
|
74013
|
+
* @memberof LayoutApiGetDataSourceStatistics
|
|
74014
|
+
*/
|
|
74015
|
+
readonly tableName?: string;
|
|
74016
|
+
}
|
|
74017
|
+
|
|
73162
74018
|
/**
|
|
73163
74019
|
* Request parameters for getFilterViews operation in LayoutApi.
|
|
73164
74020
|
* @export
|
|
@@ -73309,6 +74165,23 @@ export declare interface LayoutApiGetWorkspacesLayoutRequest {
|
|
|
73309
74165
|
* @interface LayoutApi
|
|
73310
74166
|
*/
|
|
73311
74167
|
export declare interface LayoutApiInterface {
|
|
74168
|
+
/**
|
|
74169
|
+
* (BETA) Removes all stored physical statistics for the specified data source.
|
|
74170
|
+
* @summary (BETA) Delete stored physical statistics for a data source
|
|
74171
|
+
* @param {LayoutApiDeleteDataSourceStatisticsRequest} requestParameters Request parameters.
|
|
74172
|
+
* @param {*} [options] Override http request option.
|
|
74173
|
+
* @throws {RequiredError}
|
|
74174
|
+
* @memberof LayoutApiInterface
|
|
74175
|
+
*/
|
|
74176
|
+
deleteDataSourceStatistics(requestParameters: LayoutApiDeleteDataSourceStatisticsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
74177
|
+
/**
|
|
74178
|
+
* Gets complete layout of AI agent configurations.
|
|
74179
|
+
* @summary Get all AI agent configurations layout
|
|
74180
|
+
* @param {*} [options] Override http request option.
|
|
74181
|
+
* @throws {RequiredError}
|
|
74182
|
+
* @memberof LayoutApiInterface
|
|
74183
|
+
*/
|
|
74184
|
+
getAgentsLayout(options?: AxiosRequestConfig): AxiosPromise<DeclarativeAgents>;
|
|
73312
74185
|
/**
|
|
73313
74186
|
* Retrieve current analytics model of the workspace.
|
|
73314
74187
|
* @summary Get analytics model
|
|
@@ -73344,6 +74217,15 @@ export declare interface LayoutApiInterface {
|
|
|
73344
74217
|
* @memberof LayoutApiInterface
|
|
73345
74218
|
*/
|
|
73346
74219
|
getDataSourcePermissions(requestParameters: LayoutApiGetDataSourcePermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<DeclarativeDataSourcePermissions>;
|
|
74220
|
+
/**
|
|
74221
|
+
* (BETA) Returns previously stored physical table and column statistics. Supports optional filtering by schema and table name.
|
|
74222
|
+
* @summary (BETA) Retrieve stored physical statistics for a data source
|
|
74223
|
+
* @param {LayoutApiGetDataSourceStatisticsRequest} requestParameters Request parameters.
|
|
74224
|
+
* @param {*} [options] Override http request option.
|
|
74225
|
+
* @throws {RequiredError}
|
|
74226
|
+
* @memberof LayoutApiInterface
|
|
74227
|
+
*/
|
|
74228
|
+
getDataSourceStatistics(requestParameters: LayoutApiGetDataSourceStatisticsRequest, options?: AxiosRequestConfig): AxiosPromise<DataSourceStatisticsResponse>;
|
|
73347
74229
|
/**
|
|
73348
74230
|
* Retrieve all data sources including related physical model.
|
|
73349
74231
|
* @summary Get all data sources
|
|
@@ -73497,6 +74379,15 @@ export declare interface LayoutApiInterface {
|
|
|
73497
74379
|
* @memberof LayoutApiInterface
|
|
73498
74380
|
*/
|
|
73499
74381
|
getWorkspacesLayout(requestParameters: LayoutApiGetWorkspacesLayoutRequest, options?: AxiosRequestConfig): AxiosPromise<DeclarativeWorkspaces>;
|
|
74382
|
+
/**
|
|
74383
|
+
* (BETA) Stores or replaces physical statistics (row counts, NDV, null counts, min/max) for tables and columns of a data source.
|
|
74384
|
+
* @summary (BETA) Store physical table and column statistics for a data source
|
|
74385
|
+
* @param {LayoutApiPutDataSourceStatisticsRequest} requestParameters Request parameters.
|
|
74386
|
+
* @param {*} [options] Override http request option.
|
|
74387
|
+
* @throws {RequiredError}
|
|
74388
|
+
* @memberof LayoutApiInterface
|
|
74389
|
+
*/
|
|
74390
|
+
putDataSourceStatistics(requestParameters: LayoutApiPutDataSourceStatisticsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
73500
74391
|
/**
|
|
73501
74392
|
* Set all data sources including related physical model.
|
|
73502
74393
|
* @summary Put all data sources
|
|
@@ -73542,6 +74433,15 @@ export declare interface LayoutApiInterface {
|
|
|
73542
74433
|
* @memberof LayoutApiInterface
|
|
73543
74434
|
*/
|
|
73544
74435
|
putWorkspaceLayout(requestParameters: LayoutApiPutWorkspaceLayoutRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
74436
|
+
/**
|
|
74437
|
+
* Sets AI agent configurations in organization.
|
|
74438
|
+
* @summary Set all AI agent configurations
|
|
74439
|
+
* @param {LayoutApiSetAgentsLayoutRequest} requestParameters Request parameters.
|
|
74440
|
+
* @param {*} [options] Override http request option.
|
|
74441
|
+
* @throws {RequiredError}
|
|
74442
|
+
* @memberof LayoutApiInterface
|
|
74443
|
+
*/
|
|
74444
|
+
setAgentsLayout(requestParameters: LayoutApiSetAgentsLayoutRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
73545
74445
|
/**
|
|
73546
74446
|
* Set effective analytics model of the workspace.
|
|
73547
74447
|
* @summary Set analytics model
|
|
@@ -73711,6 +74611,26 @@ export declare interface LayoutApiPutDataSourcesLayoutRequest {
|
|
|
73711
74611
|
readonly declarativeDataSources: DeclarativeDataSources;
|
|
73712
74612
|
}
|
|
73713
74613
|
|
|
74614
|
+
/**
|
|
74615
|
+
* Request parameters for putDataSourceStatistics operation in LayoutApi.
|
|
74616
|
+
* @export
|
|
74617
|
+
* @interface LayoutApiPutDataSourceStatisticsRequest
|
|
74618
|
+
*/
|
|
74619
|
+
export declare interface LayoutApiPutDataSourceStatisticsRequest {
|
|
74620
|
+
/**
|
|
74621
|
+
*
|
|
74622
|
+
* @type {string}
|
|
74623
|
+
* @memberof LayoutApiPutDataSourceStatistics
|
|
74624
|
+
*/
|
|
74625
|
+
readonly dataSourceId: string;
|
|
74626
|
+
/**
|
|
74627
|
+
*
|
|
74628
|
+
* @type {DataSourceStatisticsRequest}
|
|
74629
|
+
* @memberof LayoutApiPutDataSourceStatistics
|
|
74630
|
+
*/
|
|
74631
|
+
readonly dataSourceStatisticsRequest: DataSourceStatisticsRequest;
|
|
74632
|
+
}
|
|
74633
|
+
|
|
73714
74634
|
/**
|
|
73715
74635
|
* Request parameters for putUserGroupsLayout operation in LayoutApi.
|
|
73716
74636
|
* @export
|
|
@@ -73773,6 +74693,20 @@ export declare interface LayoutApiPutWorkspaceLayoutRequest {
|
|
|
73773
74693
|
readonly declarativeWorkspaceModel: DeclarativeWorkspaceModel;
|
|
73774
74694
|
}
|
|
73775
74695
|
|
|
74696
|
+
/**
|
|
74697
|
+
* Request parameters for setAgentsLayout operation in LayoutApi.
|
|
74698
|
+
* @export
|
|
74699
|
+
* @interface LayoutApiSetAgentsLayoutRequest
|
|
74700
|
+
*/
|
|
74701
|
+
export declare interface LayoutApiSetAgentsLayoutRequest {
|
|
74702
|
+
/**
|
|
74703
|
+
*
|
|
74704
|
+
* @type {DeclarativeAgents}
|
|
74705
|
+
* @memberof LayoutApiSetAgentsLayout
|
|
74706
|
+
*/
|
|
74707
|
+
readonly declarativeAgents: DeclarativeAgents;
|
|
74708
|
+
}
|
|
74709
|
+
|
|
73776
74710
|
/**
|
|
73777
74711
|
* Request parameters for setAnalyticsModel operation in LayoutApi.
|
|
73778
74712
|
* @export
|
|
@@ -77490,13 +78424,13 @@ export declare function MetricControllerApi_UpdateEntityMetrics(axios: AxiosInst
|
|
|
77490
78424
|
* @summary Post Metrics
|
|
77491
78425
|
* @param {string} workspaceId
|
|
77492
78426
|
* @param {JsonApiMetricPostOptionalIdDocument} jsonApiMetricPostOptionalIdDocument
|
|
77493
|
-
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
78427
|
+
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
77494
78428
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
77495
78429
|
* @param {*} [options] Override http request option.
|
|
77496
78430
|
* @param {Configuration} [configuration] Optional configuration.
|
|
77497
78431
|
* @throws {RequiredError}
|
|
77498
78432
|
*/
|
|
77499
|
-
export declare function MetricControllerApiAxiosParamCreator_CreateEntityMetrics(workspaceId: string, jsonApiMetricPostOptionalIdDocument: JsonApiMetricPostOptionalIdDocument, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
78433
|
+
export declare function MetricControllerApiAxiosParamCreator_CreateEntityMetrics(workspaceId: string, jsonApiMetricPostOptionalIdDocument: JsonApiMetricPostOptionalIdDocument, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
77500
78434
|
|
|
77501
78435
|
/**
|
|
77502
78436
|
*
|
|
@@ -77515,7 +78449,7 @@ export declare function MetricControllerApiAxiosParamCreator_DeleteEntityMetrics
|
|
|
77515
78449
|
* @param {string} workspaceId
|
|
77516
78450
|
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
77517
78451
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
77518
|
-
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
78452
|
+
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
77519
78453
|
* @param {number} [page] Zero-based page index (0..N)
|
|
77520
78454
|
* @param {number} [size] The size of the page to be returned
|
|
77521
78455
|
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
@@ -77525,7 +78459,7 @@ export declare function MetricControllerApiAxiosParamCreator_DeleteEntityMetrics
|
|
|
77525
78459
|
* @param {Configuration} [configuration] Optional configuration.
|
|
77526
78460
|
* @throws {RequiredError}
|
|
77527
78461
|
*/
|
|
77528
|
-
export declare function MetricControllerApiAxiosParamCreator_GetAllEntitiesMetrics(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
78462
|
+
export declare function MetricControllerApiAxiosParamCreator_GetAllEntitiesMetrics(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
77529
78463
|
|
|
77530
78464
|
/**
|
|
77531
78465
|
*
|
|
@@ -77533,14 +78467,14 @@ export declare function MetricControllerApiAxiosParamCreator_GetAllEntitiesMetri
|
|
|
77533
78467
|
* @param {string} workspaceId
|
|
77534
78468
|
* @param {string} objectId
|
|
77535
78469
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
77536
|
-
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
78470
|
+
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
77537
78471
|
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
77538
78472
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
77539
78473
|
* @param {*} [options] Override http request option.
|
|
77540
78474
|
* @param {Configuration} [configuration] Optional configuration.
|
|
77541
78475
|
* @throws {RequiredError}
|
|
77542
78476
|
*/
|
|
77543
|
-
export declare function MetricControllerApiAxiosParamCreator_GetEntityMetrics(workspaceId: string, objectId: string, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
78477
|
+
export declare function MetricControllerApiAxiosParamCreator_GetEntityMetrics(workspaceId: string, objectId: string, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
77544
78478
|
|
|
77545
78479
|
/**
|
|
77546
78480
|
*
|
|
@@ -77549,12 +78483,12 @@ export declare function MetricControllerApiAxiosParamCreator_GetEntityMetrics(wo
|
|
|
77549
78483
|
* @param {string} objectId
|
|
77550
78484
|
* @param {JsonApiMetricPatchDocument} jsonApiMetricPatchDocument
|
|
77551
78485
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
77552
|
-
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
78486
|
+
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
77553
78487
|
* @param {*} [options] Override http request option.
|
|
77554
78488
|
* @param {Configuration} [configuration] Optional configuration.
|
|
77555
78489
|
* @throws {RequiredError}
|
|
77556
78490
|
*/
|
|
77557
|
-
export declare function MetricControllerApiAxiosParamCreator_PatchEntityMetrics(workspaceId: string, objectId: string, jsonApiMetricPatchDocument: JsonApiMetricPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
78491
|
+
export declare function MetricControllerApiAxiosParamCreator_PatchEntityMetrics(workspaceId: string, objectId: string, jsonApiMetricPatchDocument: JsonApiMetricPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
77558
78492
|
|
|
77559
78493
|
/**
|
|
77560
78494
|
*
|
|
@@ -77576,12 +78510,12 @@ export declare function MetricControllerApiAxiosParamCreator_SearchEntitiesMetri
|
|
|
77576
78510
|
* @param {string} objectId
|
|
77577
78511
|
* @param {JsonApiMetricInDocument} jsonApiMetricInDocument
|
|
77578
78512
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
77579
|
-
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
78513
|
+
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
77580
78514
|
* @param {*} [options] Override http request option.
|
|
77581
78515
|
* @param {Configuration} [configuration] Optional configuration.
|
|
77582
78516
|
* @throws {RequiredError}
|
|
77583
78517
|
*/
|
|
77584
|
-
export declare function MetricControllerApiAxiosParamCreator_UpdateEntityMetrics(workspaceId: string, objectId: string, jsonApiMetricInDocument: JsonApiMetricInDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
78518
|
+
export declare function MetricControllerApiAxiosParamCreator_UpdateEntityMetrics(workspaceId: string, objectId: string, jsonApiMetricInDocument: JsonApiMetricInDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
77585
78519
|
|
|
77586
78520
|
/**
|
|
77587
78521
|
* Request parameters for createEntityMetrics operation in MetricControllerApi.
|
|
@@ -77603,10 +78537,10 @@ export declare interface MetricControllerApiCreateEntityMetricsRequest {
|
|
|
77603
78537
|
readonly jsonApiMetricPostOptionalIdDocument: JsonApiMetricPostOptionalIdDocument;
|
|
77604
78538
|
/**
|
|
77605
78539
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
77606
|
-
* @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
|
|
78540
|
+
* @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
|
|
77607
78541
|
* @memberof MetricControllerApiCreateEntityMetrics
|
|
77608
78542
|
*/
|
|
77609
|
-
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
78543
|
+
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
77610
78544
|
/**
|
|
77611
78545
|
* Include Meta objects.
|
|
77612
78546
|
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
@@ -77661,10 +78595,10 @@ export declare interface MetricControllerApiGetAllEntitiesMetricsRequest {
|
|
|
77661
78595
|
readonly filter?: string;
|
|
77662
78596
|
/**
|
|
77663
78597
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
77664
|
-
* @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
|
|
78598
|
+
* @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
|
|
77665
78599
|
* @memberof MetricControllerApiGetAllEntitiesMetrics
|
|
77666
78600
|
*/
|
|
77667
|
-
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
78601
|
+
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
77668
78602
|
/**
|
|
77669
78603
|
* Zero-based page index (0..N)
|
|
77670
78604
|
* @type {number}
|
|
@@ -77723,10 +78657,10 @@ export declare interface MetricControllerApiGetEntityMetricsRequest {
|
|
|
77723
78657
|
readonly filter?: string;
|
|
77724
78658
|
/**
|
|
77725
78659
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
77726
|
-
* @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
|
|
78660
|
+
* @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
|
|
77727
78661
|
* @memberof MetricControllerApiGetEntityMetrics
|
|
77728
78662
|
*/
|
|
77729
|
-
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
78663
|
+
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
77730
78664
|
/**
|
|
77731
78665
|
*
|
|
77732
78666
|
* @type {boolean}
|
|
@@ -77844,10 +78778,10 @@ export declare interface MetricControllerApiPatchEntityMetricsRequest {
|
|
|
77844
78778
|
readonly filter?: string;
|
|
77845
78779
|
/**
|
|
77846
78780
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
77847
|
-
* @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
|
|
78781
|
+
* @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
|
|
77848
78782
|
* @memberof MetricControllerApiPatchEntityMetrics
|
|
77849
78783
|
*/
|
|
77850
|
-
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
78784
|
+
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
77851
78785
|
}
|
|
77852
78786
|
|
|
77853
78787
|
/**
|
|
@@ -77914,10 +78848,10 @@ export declare interface MetricControllerApiUpdateEntityMetricsRequest {
|
|
|
77914
78848
|
readonly filter?: string;
|
|
77915
78849
|
/**
|
|
77916
78850
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
77917
|
-
* @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
|
|
78851
|
+
* @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
|
|
77918
78852
|
* @memberof MetricControllerApiUpdateEntityMetrics
|
|
77919
78853
|
*/
|
|
77920
|
-
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
78854
|
+
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
77921
78855
|
}
|
|
77922
78856
|
|
|
77923
78857
|
/**
|
|
@@ -78089,13 +79023,13 @@ export declare function MetricsApi_UpdateEntityMetrics(axios: AxiosInstance, bas
|
|
|
78089
79023
|
* @summary Post Metrics
|
|
78090
79024
|
* @param {string} workspaceId
|
|
78091
79025
|
* @param {JsonApiMetricPostOptionalIdDocument} jsonApiMetricPostOptionalIdDocument
|
|
78092
|
-
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
79026
|
+
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
78093
79027
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
78094
79028
|
* @param {*} [options] Override http request option.
|
|
78095
79029
|
* @param {Configuration} [configuration] Optional configuration.
|
|
78096
79030
|
* @throws {RequiredError}
|
|
78097
79031
|
*/
|
|
78098
|
-
export declare function MetricsApiAxiosParamCreator_CreateEntityMetrics(workspaceId: string, jsonApiMetricPostOptionalIdDocument: JsonApiMetricPostOptionalIdDocument, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
79032
|
+
export declare function MetricsApiAxiosParamCreator_CreateEntityMetrics(workspaceId: string, jsonApiMetricPostOptionalIdDocument: JsonApiMetricPostOptionalIdDocument, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
78099
79033
|
|
|
78100
79034
|
/**
|
|
78101
79035
|
*
|
|
@@ -78114,7 +79048,7 @@ export declare function MetricsApiAxiosParamCreator_DeleteEntityMetrics(workspac
|
|
|
78114
79048
|
* @param {string} workspaceId
|
|
78115
79049
|
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
78116
79050
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
78117
|
-
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
79051
|
+
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
78118
79052
|
* @param {number} [page] Zero-based page index (0..N)
|
|
78119
79053
|
* @param {number} [size] The size of the page to be returned
|
|
78120
79054
|
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
@@ -78124,7 +79058,7 @@ export declare function MetricsApiAxiosParamCreator_DeleteEntityMetrics(workspac
|
|
|
78124
79058
|
* @param {Configuration} [configuration] Optional configuration.
|
|
78125
79059
|
* @throws {RequiredError}
|
|
78126
79060
|
*/
|
|
78127
|
-
export declare function MetricsApiAxiosParamCreator_GetAllEntitiesMetrics(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
79061
|
+
export declare function MetricsApiAxiosParamCreator_GetAllEntitiesMetrics(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
78128
79062
|
|
|
78129
79063
|
/**
|
|
78130
79064
|
*
|
|
@@ -78132,14 +79066,14 @@ export declare function MetricsApiAxiosParamCreator_GetAllEntitiesMetrics(worksp
|
|
|
78132
79066
|
* @param {string} workspaceId
|
|
78133
79067
|
* @param {string} objectId
|
|
78134
79068
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
78135
|
-
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
79069
|
+
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
78136
79070
|
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
78137
79071
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
78138
79072
|
* @param {*} [options] Override http request option.
|
|
78139
79073
|
* @param {Configuration} [configuration] Optional configuration.
|
|
78140
79074
|
* @throws {RequiredError}
|
|
78141
79075
|
*/
|
|
78142
|
-
export declare function MetricsApiAxiosParamCreator_GetEntityMetrics(workspaceId: string, objectId: string, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
79076
|
+
export declare function MetricsApiAxiosParamCreator_GetEntityMetrics(workspaceId: string, objectId: string, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
78143
79077
|
|
|
78144
79078
|
/**
|
|
78145
79079
|
*
|
|
@@ -78148,12 +79082,12 @@ export declare function MetricsApiAxiosParamCreator_GetEntityMetrics(workspaceId
|
|
|
78148
79082
|
* @param {string} objectId
|
|
78149
79083
|
* @param {JsonApiMetricPatchDocument} jsonApiMetricPatchDocument
|
|
78150
79084
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
78151
|
-
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
79085
|
+
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
78152
79086
|
* @param {*} [options] Override http request option.
|
|
78153
79087
|
* @param {Configuration} [configuration] Optional configuration.
|
|
78154
79088
|
* @throws {RequiredError}
|
|
78155
79089
|
*/
|
|
78156
|
-
export declare function MetricsApiAxiosParamCreator_PatchEntityMetrics(workspaceId: string, objectId: string, jsonApiMetricPatchDocument: JsonApiMetricPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
79090
|
+
export declare function MetricsApiAxiosParamCreator_PatchEntityMetrics(workspaceId: string, objectId: string, jsonApiMetricPatchDocument: JsonApiMetricPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
78157
79091
|
|
|
78158
79092
|
/**
|
|
78159
79093
|
*
|
|
@@ -78175,12 +79109,12 @@ export declare function MetricsApiAxiosParamCreator_SearchEntitiesMetrics(worksp
|
|
|
78175
79109
|
* @param {string} objectId
|
|
78176
79110
|
* @param {JsonApiMetricInDocument} jsonApiMetricInDocument
|
|
78177
79111
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
78178
|
-
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
79112
|
+
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
78179
79113
|
* @param {*} [options] Override http request option.
|
|
78180
79114
|
* @param {Configuration} [configuration] Optional configuration.
|
|
78181
79115
|
* @throws {RequiredError}
|
|
78182
79116
|
*/
|
|
78183
|
-
export declare function MetricsApiAxiosParamCreator_UpdateEntityMetrics(workspaceId: string, objectId: string, jsonApiMetricInDocument: JsonApiMetricInDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
79117
|
+
export declare function MetricsApiAxiosParamCreator_UpdateEntityMetrics(workspaceId: string, objectId: string, jsonApiMetricInDocument: JsonApiMetricInDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
78184
79118
|
|
|
78185
79119
|
/**
|
|
78186
79120
|
* Request parameters for createEntityMetrics operation in MetricsApi.
|
|
@@ -78202,10 +79136,10 @@ export declare interface MetricsApiCreateEntityMetricsRequest {
|
|
|
78202
79136
|
readonly jsonApiMetricPostOptionalIdDocument: JsonApiMetricPostOptionalIdDocument;
|
|
78203
79137
|
/**
|
|
78204
79138
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
78205
|
-
* @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
|
|
79139
|
+
* @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
|
|
78206
79140
|
* @memberof MetricsApiCreateEntityMetrics
|
|
78207
79141
|
*/
|
|
78208
|
-
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
79142
|
+
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
78209
79143
|
/**
|
|
78210
79144
|
* Include Meta objects.
|
|
78211
79145
|
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
@@ -78260,10 +79194,10 @@ export declare interface MetricsApiGetAllEntitiesMetricsRequest {
|
|
|
78260
79194
|
readonly filter?: string;
|
|
78261
79195
|
/**
|
|
78262
79196
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
78263
|
-
* @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
|
|
79197
|
+
* @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
|
|
78264
79198
|
* @memberof MetricsApiGetAllEntitiesMetrics
|
|
78265
79199
|
*/
|
|
78266
|
-
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
79200
|
+
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
78267
79201
|
/**
|
|
78268
79202
|
* Zero-based page index (0..N)
|
|
78269
79203
|
* @type {number}
|
|
@@ -78322,10 +79256,10 @@ export declare interface MetricsApiGetEntityMetricsRequest {
|
|
|
78322
79256
|
readonly filter?: string;
|
|
78323
79257
|
/**
|
|
78324
79258
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
78325
|
-
* @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
|
|
79259
|
+
* @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
|
|
78326
79260
|
* @memberof MetricsApiGetEntityMetrics
|
|
78327
79261
|
*/
|
|
78328
|
-
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
79262
|
+
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
78329
79263
|
/**
|
|
78330
79264
|
*
|
|
78331
79265
|
* @type {boolean}
|
|
@@ -78443,10 +79377,10 @@ export declare interface MetricsApiPatchEntityMetricsRequest {
|
|
|
78443
79377
|
readonly filter?: string;
|
|
78444
79378
|
/**
|
|
78445
79379
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
78446
|
-
* @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
|
|
79380
|
+
* @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
|
|
78447
79381
|
* @memberof MetricsApiPatchEntityMetrics
|
|
78448
79382
|
*/
|
|
78449
|
-
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
79383
|
+
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
78450
79384
|
}
|
|
78451
79385
|
|
|
78452
79386
|
/**
|
|
@@ -78513,10 +79447,10 @@ export declare interface MetricsApiUpdateEntityMetricsRequest {
|
|
|
78513
79447
|
readonly filter?: string;
|
|
78514
79448
|
/**
|
|
78515
79449
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
78516
|
-
* @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
|
|
79450
|
+
* @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
|
|
78517
79451
|
* @memberof MetricsApiUpdateEntityMetrics
|
|
78518
79452
|
*/
|
|
78519
|
-
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
79453
|
+
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
78520
79454
|
}
|
|
78521
79455
|
|
|
78522
79456
|
export declare type MetricTypeEnum = 'metric' | 'fact' | 'attribute';
|
|
@@ -80429,6 +81363,14 @@ export declare interface OrganizationCurrentCacheUsage {
|
|
|
80429
81363
|
* @extends {BaseAPI}
|
|
80430
81364
|
*/
|
|
80431
81365
|
export declare class OrganizationDeclarativeAPIsApi extends MetadataBaseApi implements OrganizationDeclarativeAPIsApiInterface {
|
|
81366
|
+
/**
|
|
81367
|
+
* Gets complete layout of AI agent configurations.
|
|
81368
|
+
* @summary Get all AI agent configurations layout
|
|
81369
|
+
* @param {*} [options] Override http request option.
|
|
81370
|
+
* @throws {RequiredError}
|
|
81371
|
+
* @memberof OrganizationDeclarativeAPIsApi
|
|
81372
|
+
*/
|
|
81373
|
+
getAgentsLayout(options?: AxiosRequestConfig): AxiosPromise<DeclarativeAgents>;
|
|
80432
81374
|
/**
|
|
80433
81375
|
* Gets complete layout of custom geo collections.
|
|
80434
81376
|
* @summary Get all custom geo collections layout
|
|
@@ -80446,6 +81388,15 @@ export declare class OrganizationDeclarativeAPIsApi extends MetadataBaseApi impl
|
|
|
80446
81388
|
* @memberof OrganizationDeclarativeAPIsApi
|
|
80447
81389
|
*/
|
|
80448
81390
|
getOrganizationLayout(requestParameters?: OrganizationDeclarativeAPIsApiGetOrganizationLayoutRequest, options?: AxiosRequestConfig): AxiosPromise<DeclarativeOrganization>;
|
|
81391
|
+
/**
|
|
81392
|
+
* Sets AI agent configurations in organization.
|
|
81393
|
+
* @summary Set all AI agent configurations
|
|
81394
|
+
* @param {OrganizationDeclarativeAPIsApiSetAgentsLayoutRequest} requestParameters Request parameters.
|
|
81395
|
+
* @param {*} [options] Override http request option.
|
|
81396
|
+
* @throws {RequiredError}
|
|
81397
|
+
* @memberof OrganizationDeclarativeAPIsApi
|
|
81398
|
+
*/
|
|
81399
|
+
setAgentsLayout(requestParameters: OrganizationDeclarativeAPIsApiSetAgentsLayoutRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
80449
81400
|
/**
|
|
80450
81401
|
* Sets custom geo collections in organization.
|
|
80451
81402
|
* @summary Set all custom geo collections
|
|
@@ -80466,6 +81417,17 @@ export declare class OrganizationDeclarativeAPIsApi extends MetadataBaseApi impl
|
|
|
80466
81417
|
setOrganizationLayout(requestParameters: OrganizationDeclarativeAPIsApiSetOrganizationLayoutRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
80467
81418
|
}
|
|
80468
81419
|
|
|
81420
|
+
/**
|
|
81421
|
+
* Gets complete layout of AI agent configurations.
|
|
81422
|
+
* @summary Get all AI agent configurations layout
|
|
81423
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
81424
|
+
* @param {string} basePath Base path.
|
|
81425
|
+
* @param {*} [options] Override http request option.
|
|
81426
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
81427
|
+
* @throws {RequiredError}
|
|
81428
|
+
*/
|
|
81429
|
+
export declare function OrganizationDeclarativeAPIsApi_GetAgentsLayout(axios: AxiosInstance, basePath: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<DeclarativeAgents>;
|
|
81430
|
+
|
|
80469
81431
|
/**
|
|
80470
81432
|
* Gets complete layout of custom geo collections.
|
|
80471
81433
|
* @summary Get all custom geo collections layout
|
|
@@ -80489,6 +81451,18 @@ export declare function OrganizationDeclarativeAPIsApi_GetCustomGeoCollectionsLa
|
|
|
80489
81451
|
*/
|
|
80490
81452
|
export declare function OrganizationDeclarativeAPIsApi_GetOrganizationLayout(axios: AxiosInstance, basePath: string, requestParameters: OrganizationDeclarativeAPIsApiGetOrganizationLayoutRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<DeclarativeOrganization>;
|
|
80491
81453
|
|
|
81454
|
+
/**
|
|
81455
|
+
* Sets AI agent configurations in organization.
|
|
81456
|
+
* @summary Set all AI agent configurations
|
|
81457
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
81458
|
+
* @param {string} basePath Base path.
|
|
81459
|
+
* @param {OrganizationDeclarativeAPIsApiSetAgentsLayoutRequest} requestParameters Request parameters.
|
|
81460
|
+
* @param {*} [options] Override http request option.
|
|
81461
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
81462
|
+
* @throws {RequiredError}
|
|
81463
|
+
*/
|
|
81464
|
+
export declare function OrganizationDeclarativeAPIsApi_SetAgentsLayout(axios: AxiosInstance, basePath: string, requestParameters: OrganizationDeclarativeAPIsApiSetAgentsLayoutRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<void>;
|
|
81465
|
+
|
|
80492
81466
|
/**
|
|
80493
81467
|
* Sets custom geo collections in organization.
|
|
80494
81468
|
* @summary Set all custom geo collections
|
|
@@ -80513,6 +81487,15 @@ export declare function OrganizationDeclarativeAPIsApi_SetCustomGeoCollections(a
|
|
|
80513
81487
|
*/
|
|
80514
81488
|
export declare function OrganizationDeclarativeAPIsApi_SetOrganizationLayout(axios: AxiosInstance, basePath: string, requestParameters: OrganizationDeclarativeAPIsApiSetOrganizationLayoutRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<void>;
|
|
80515
81489
|
|
|
81490
|
+
/**
|
|
81491
|
+
* Gets complete layout of AI agent configurations.
|
|
81492
|
+
* @summary Get all AI agent configurations layout
|
|
81493
|
+
* @param {*} [options] Override http request option.
|
|
81494
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
81495
|
+
* @throws {RequiredError}
|
|
81496
|
+
*/
|
|
81497
|
+
export declare function OrganizationDeclarativeAPIsApiAxiosParamCreator_GetAgentsLayout(options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
81498
|
+
|
|
80516
81499
|
/**
|
|
80517
81500
|
* Gets complete layout of custom geo collections.
|
|
80518
81501
|
* @summary Get all custom geo collections layout
|
|
@@ -80532,6 +81515,16 @@ export declare function OrganizationDeclarativeAPIsApiAxiosParamCreator_GetCusto
|
|
|
80532
81515
|
*/
|
|
80533
81516
|
export declare function OrganizationDeclarativeAPIsApiAxiosParamCreator_GetOrganizationLayout(exclude?: Array<'ACTIVITY_INFO'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
80534
81517
|
|
|
81518
|
+
/**
|
|
81519
|
+
* Sets AI agent configurations in organization.
|
|
81520
|
+
* @summary Set all AI agent configurations
|
|
81521
|
+
* @param {DeclarativeAgents} declarativeAgents
|
|
81522
|
+
* @param {*} [options] Override http request option.
|
|
81523
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
81524
|
+
* @throws {RequiredError}
|
|
81525
|
+
*/
|
|
81526
|
+
export declare function OrganizationDeclarativeAPIsApiAxiosParamCreator_SetAgentsLayout(declarativeAgents: DeclarativeAgents, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
81527
|
+
|
|
80535
81528
|
/**
|
|
80536
81529
|
* Sets custom geo collections in organization.
|
|
80537
81530
|
* @summary Set all custom geo collections
|
|
@@ -80572,6 +81565,14 @@ export declare interface OrganizationDeclarativeAPIsApiGetOrganizationLayoutRequ
|
|
|
80572
81565
|
* @interface OrganizationDeclarativeAPIsApi
|
|
80573
81566
|
*/
|
|
80574
81567
|
export declare interface OrganizationDeclarativeAPIsApiInterface {
|
|
81568
|
+
/**
|
|
81569
|
+
* Gets complete layout of AI agent configurations.
|
|
81570
|
+
* @summary Get all AI agent configurations layout
|
|
81571
|
+
* @param {*} [options] Override http request option.
|
|
81572
|
+
* @throws {RequiredError}
|
|
81573
|
+
* @memberof OrganizationDeclarativeAPIsApiInterface
|
|
81574
|
+
*/
|
|
81575
|
+
getAgentsLayout(options?: AxiosRequestConfig): AxiosPromise<DeclarativeAgents>;
|
|
80575
81576
|
/**
|
|
80576
81577
|
* Gets complete layout of custom geo collections.
|
|
80577
81578
|
* @summary Get all custom geo collections layout
|
|
@@ -80589,6 +81590,15 @@ export declare interface OrganizationDeclarativeAPIsApiInterface {
|
|
|
80589
81590
|
* @memberof OrganizationDeclarativeAPIsApiInterface
|
|
80590
81591
|
*/
|
|
80591
81592
|
getOrganizationLayout(requestParameters: OrganizationDeclarativeAPIsApiGetOrganizationLayoutRequest, options?: AxiosRequestConfig): AxiosPromise<DeclarativeOrganization>;
|
|
81593
|
+
/**
|
|
81594
|
+
* Sets AI agent configurations in organization.
|
|
81595
|
+
* @summary Set all AI agent configurations
|
|
81596
|
+
* @param {OrganizationDeclarativeAPIsApiSetAgentsLayoutRequest} requestParameters Request parameters.
|
|
81597
|
+
* @param {*} [options] Override http request option.
|
|
81598
|
+
* @throws {RequiredError}
|
|
81599
|
+
* @memberof OrganizationDeclarativeAPIsApiInterface
|
|
81600
|
+
*/
|
|
81601
|
+
setAgentsLayout(requestParameters: OrganizationDeclarativeAPIsApiSetAgentsLayoutRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
80592
81602
|
/**
|
|
80593
81603
|
* Sets custom geo collections in organization.
|
|
80594
81604
|
* @summary Set all custom geo collections
|
|
@@ -80609,6 +81619,20 @@ export declare interface OrganizationDeclarativeAPIsApiInterface {
|
|
|
80609
81619
|
setOrganizationLayout(requestParameters: OrganizationDeclarativeAPIsApiSetOrganizationLayoutRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
80610
81620
|
}
|
|
80611
81621
|
|
|
81622
|
+
/**
|
|
81623
|
+
* Request parameters for setAgentsLayout operation in OrganizationDeclarativeAPIsApi.
|
|
81624
|
+
* @export
|
|
81625
|
+
* @interface OrganizationDeclarativeAPIsApiSetAgentsLayoutRequest
|
|
81626
|
+
*/
|
|
81627
|
+
export declare interface OrganizationDeclarativeAPIsApiSetAgentsLayoutRequest {
|
|
81628
|
+
/**
|
|
81629
|
+
*
|
|
81630
|
+
* @type {DeclarativeAgents}
|
|
81631
|
+
* @memberof OrganizationDeclarativeAPIsApiSetAgentsLayout
|
|
81632
|
+
*/
|
|
81633
|
+
readonly declarativeAgents: DeclarativeAgents;
|
|
81634
|
+
}
|
|
81635
|
+
|
|
80612
81636
|
/**
|
|
80613
81637
|
* Request parameters for setCustomGeoCollections operation in OrganizationDeclarativeAPIsApi.
|
|
80614
81638
|
* @export
|
|
@@ -82727,6 +83751,28 @@ export declare interface ParameterControllerApiUpdateEntityParametersRequest {
|
|
|
82727
83751
|
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
82728
83752
|
}
|
|
82729
83753
|
|
|
83754
|
+
/**
|
|
83755
|
+
* (EXPERIMENTAL) Parameter value for this execution.
|
|
83756
|
+
*/
|
|
83757
|
+
export declare interface ParameterItem {
|
|
83758
|
+
'parameter': AfmObjectIdentifierParameter;
|
|
83759
|
+
/**
|
|
83760
|
+
* Value to use for this parameter instead of its default.
|
|
83761
|
+
*/
|
|
83762
|
+
'value': string;
|
|
83763
|
+
}
|
|
83764
|
+
|
|
83765
|
+
/**
|
|
83766
|
+
* (EXPERIMENTAL) Parameter value for this execution.
|
|
83767
|
+
*/
|
|
83768
|
+
declare interface ParameterItem_2 {
|
|
83769
|
+
'parameter': AfmObjectIdentifierParameter_2;
|
|
83770
|
+
/**
|
|
83771
|
+
* Value to use for this parameter instead of its default.
|
|
83772
|
+
*/
|
|
83773
|
+
'value': string;
|
|
83774
|
+
}
|
|
83775
|
+
|
|
82730
83776
|
/**
|
|
82731
83777
|
* ParametersApi - object-oriented interface
|
|
82732
83778
|
* @export
|
|
@@ -85307,7 +86353,7 @@ export declare interface ReferenceSourceColumn {
|
|
|
85307
86353
|
'nullValue'?: string;
|
|
85308
86354
|
}
|
|
85309
86355
|
|
|
85310
|
-
export declare type ReferenceSourceColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN';
|
|
86356
|
+
export declare type ReferenceSourceColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN' | 'HLL';
|
|
85311
86357
|
|
|
85312
86358
|
export declare interface Relative {
|
|
85313
86359
|
/**
|
|
@@ -85966,7 +87012,7 @@ export declare interface ScanApiSqlColumn {
|
|
|
85966
87012
|
'description'?: string;
|
|
85967
87013
|
}
|
|
85968
87014
|
|
|
85969
|
-
export declare type ScanApiSqlColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN';
|
|
87015
|
+
export declare type ScanApiSqlColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN' | 'HLL';
|
|
85970
87016
|
|
|
85971
87017
|
/**
|
|
85972
87018
|
* ActionsApi - interface
|
|
@@ -86010,6 +87056,15 @@ export declare interface ScanModelActionsApiInterface {
|
|
|
86010
87056
|
* @memberof ActionsApiInterface
|
|
86011
87057
|
*/
|
|
86012
87058
|
scanSql(requestParameters: ActionsApiScanSqlRequest, options?: AxiosRequestConfig): AxiosPromise<ScanSqlResponse>;
|
|
87059
|
+
/**
|
|
87060
|
+
* (BETA) Reads pre-computed CBO statistics from StarRocks. Supports both internal catalog (native/PIPE tables) and external catalog (Iceberg tables). Statistics include row counts, data sizes, NDV (number of distinct values), null counts, and min/max values.
|
|
87061
|
+
* @summary (BETA) Collect physical table and column statistics from a StarRocks data source
|
|
87062
|
+
* @param {ActionsApiScanStatisticsRequest} requestParameters Request parameters.
|
|
87063
|
+
* @param {*} [options] Override http request option.
|
|
87064
|
+
* @throws {RequiredError}
|
|
87065
|
+
* @memberof ActionsApiInterface
|
|
87066
|
+
*/
|
|
87067
|
+
scanStatistics(requestParameters: ActionsApiScanStatisticsRequest, options?: AxiosRequestConfig): AxiosPromise<TableStatisticsResponse>;
|
|
86013
87068
|
/**
|
|
86014
87069
|
* Test if it is possible to connect to a database using an existing data source definition.
|
|
86015
87070
|
* @summary Test data source connection by data source id
|
|
@@ -86147,7 +87202,7 @@ export declare interface ScanModelDeclarativeColumn {
|
|
|
86147
87202
|
'isNullable'?: boolean;
|
|
86148
87203
|
}
|
|
86149
87204
|
|
|
86150
|
-
export declare type ScanModelDeclarativeColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN';
|
|
87205
|
+
export declare type ScanModelDeclarativeColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN' | 'HLL';
|
|
86151
87206
|
|
|
86152
87207
|
/**
|
|
86153
87208
|
* A database table.
|
|
@@ -86946,7 +88001,7 @@ export declare interface SqlColumn {
|
|
|
86946
88001
|
'dataType': SqlColumnDataTypeEnum;
|
|
86947
88002
|
}
|
|
86948
88003
|
|
|
86949
|
-
export declare type SqlColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN';
|
|
88004
|
+
export declare type SqlColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN' | 'HLL';
|
|
86950
88005
|
|
|
86951
88006
|
export declare interface SqlQuery {
|
|
86952
88007
|
'sql': string;
|
|
@@ -86977,6 +88032,49 @@ export declare interface TableOverride {
|
|
|
86977
88032
|
'path': Array<string>;
|
|
86978
88033
|
}
|
|
86979
88034
|
|
|
88035
|
+
export declare interface TableStatisticsEntry {
|
|
88036
|
+
'schemaName': string;
|
|
88037
|
+
'tableName': string;
|
|
88038
|
+
/**
|
|
88039
|
+
* Total number of rows in the table.
|
|
88040
|
+
*/
|
|
88041
|
+
'rowCount'?: number;
|
|
88042
|
+
/**
|
|
88043
|
+
* Total data size of the table in bytes.
|
|
88044
|
+
*/
|
|
88045
|
+
'dataSize'?: number;
|
|
88046
|
+
'columns': Array<ColumnStatisticsEntry>;
|
|
88047
|
+
}
|
|
88048
|
+
|
|
88049
|
+
declare interface TableStatisticsEntry_2 {
|
|
88050
|
+
'schemaName': string;
|
|
88051
|
+
'tableName': string;
|
|
88052
|
+
/**
|
|
88053
|
+
* Total number of rows in the table.
|
|
88054
|
+
*/
|
|
88055
|
+
'rowCount'?: number;
|
|
88056
|
+
/**
|
|
88057
|
+
* Total data size of the table in bytes.
|
|
88058
|
+
*/
|
|
88059
|
+
'dataSize'?: number;
|
|
88060
|
+
'columns': Array<ColumnStatisticsEntry_2>;
|
|
88061
|
+
}
|
|
88062
|
+
|
|
88063
|
+
declare interface TableStatisticsRequest {
|
|
88064
|
+
'schemata': Array<string>;
|
|
88065
|
+
'tableNames'?: Array<string>;
|
|
88066
|
+
}
|
|
88067
|
+
|
|
88068
|
+
declare interface TableStatisticsResponse {
|
|
88069
|
+
'tables': Array<TableStatisticsEntry_2>;
|
|
88070
|
+
'warnings': Array<TableStatisticsWarning>;
|
|
88071
|
+
}
|
|
88072
|
+
|
|
88073
|
+
declare interface TableStatisticsWarning {
|
|
88074
|
+
'tableName'?: string;
|
|
88075
|
+
'message': string;
|
|
88076
|
+
}
|
|
88077
|
+
|
|
86980
88078
|
/**
|
|
86981
88079
|
* Warnings related to single table.
|
|
86982
88080
|
*/
|
|
@@ -89048,13 +90146,13 @@ export declare function UserDataFilterControllerApi_UpdateEntityUserDataFilters(
|
|
|
89048
90146
|
* @summary Post User Data Filters
|
|
89049
90147
|
* @param {string} workspaceId
|
|
89050
90148
|
* @param {JsonApiUserDataFilterPostOptionalIdDocument} jsonApiUserDataFilterPostOptionalIdDocument
|
|
89051
|
-
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
90149
|
+
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
89052
90150
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
89053
90151
|
* @param {*} [options] Override http request option.
|
|
89054
90152
|
* @param {Configuration} [configuration] Optional configuration.
|
|
89055
90153
|
* @throws {RequiredError}
|
|
89056
90154
|
*/
|
|
89057
|
-
export declare function UserDataFilterControllerApiAxiosParamCreator_CreateEntityUserDataFilters(workspaceId: string, jsonApiUserDataFilterPostOptionalIdDocument: JsonApiUserDataFilterPostOptionalIdDocument, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
90155
|
+
export declare function UserDataFilterControllerApiAxiosParamCreator_CreateEntityUserDataFilters(workspaceId: string, jsonApiUserDataFilterPostOptionalIdDocument: JsonApiUserDataFilterPostOptionalIdDocument, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
89058
90156
|
|
|
89059
90157
|
/**
|
|
89060
90158
|
*
|
|
@@ -89073,7 +90171,7 @@ export declare function UserDataFilterControllerApiAxiosParamCreator_DeleteEntit
|
|
|
89073
90171
|
* @param {string} workspaceId
|
|
89074
90172
|
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
89075
90173
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
89076
|
-
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
90174
|
+
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
89077
90175
|
* @param {number} [page] Zero-based page index (0..N)
|
|
89078
90176
|
* @param {number} [size] The size of the page to be returned
|
|
89079
90177
|
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
@@ -89083,7 +90181,7 @@ export declare function UserDataFilterControllerApiAxiosParamCreator_DeleteEntit
|
|
|
89083
90181
|
* @param {Configuration} [configuration] Optional configuration.
|
|
89084
90182
|
* @throws {RequiredError}
|
|
89085
90183
|
*/
|
|
89086
|
-
export declare function UserDataFilterControllerApiAxiosParamCreator_GetAllEntitiesUserDataFilters(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
90184
|
+
export declare function UserDataFilterControllerApiAxiosParamCreator_GetAllEntitiesUserDataFilters(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
89087
90185
|
|
|
89088
90186
|
/**
|
|
89089
90187
|
*
|
|
@@ -89091,14 +90189,14 @@ export declare function UserDataFilterControllerApiAxiosParamCreator_GetAllEntit
|
|
|
89091
90189
|
* @param {string} workspaceId
|
|
89092
90190
|
* @param {string} objectId
|
|
89093
90191
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
89094
|
-
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
90192
|
+
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
89095
90193
|
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
89096
90194
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
89097
90195
|
* @param {*} [options] Override http request option.
|
|
89098
90196
|
* @param {Configuration} [configuration] Optional configuration.
|
|
89099
90197
|
* @throws {RequiredError}
|
|
89100
90198
|
*/
|
|
89101
|
-
export declare function UserDataFilterControllerApiAxiosParamCreator_GetEntityUserDataFilters(workspaceId: string, objectId: string, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
90199
|
+
export declare function UserDataFilterControllerApiAxiosParamCreator_GetEntityUserDataFilters(workspaceId: string, objectId: string, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
89102
90200
|
|
|
89103
90201
|
/**
|
|
89104
90202
|
*
|
|
@@ -89107,12 +90205,12 @@ export declare function UserDataFilterControllerApiAxiosParamCreator_GetEntityUs
|
|
|
89107
90205
|
* @param {string} objectId
|
|
89108
90206
|
* @param {JsonApiUserDataFilterPatchDocument} jsonApiUserDataFilterPatchDocument
|
|
89109
90207
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
89110
|
-
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
90208
|
+
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
89111
90209
|
* @param {*} [options] Override http request option.
|
|
89112
90210
|
* @param {Configuration} [configuration] Optional configuration.
|
|
89113
90211
|
* @throws {RequiredError}
|
|
89114
90212
|
*/
|
|
89115
|
-
export declare function UserDataFilterControllerApiAxiosParamCreator_PatchEntityUserDataFilters(workspaceId: string, objectId: string, jsonApiUserDataFilterPatchDocument: JsonApiUserDataFilterPatchDocument, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
90213
|
+
export declare function UserDataFilterControllerApiAxiosParamCreator_PatchEntityUserDataFilters(workspaceId: string, objectId: string, jsonApiUserDataFilterPatchDocument: JsonApiUserDataFilterPatchDocument, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
89116
90214
|
|
|
89117
90215
|
/**
|
|
89118
90216
|
*
|
|
@@ -89134,12 +90232,12 @@ export declare function UserDataFilterControllerApiAxiosParamCreator_SearchEntit
|
|
|
89134
90232
|
* @param {string} objectId
|
|
89135
90233
|
* @param {JsonApiUserDataFilterInDocument} jsonApiUserDataFilterInDocument
|
|
89136
90234
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
89137
|
-
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
90235
|
+
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
89138
90236
|
* @param {*} [options] Override http request option.
|
|
89139
90237
|
* @param {Configuration} [configuration] Optional configuration.
|
|
89140
90238
|
* @throws {RequiredError}
|
|
89141
90239
|
*/
|
|
89142
|
-
export declare function UserDataFilterControllerApiAxiosParamCreator_UpdateEntityUserDataFilters(workspaceId: string, objectId: string, jsonApiUserDataFilterInDocument: JsonApiUserDataFilterInDocument, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
90240
|
+
export declare function UserDataFilterControllerApiAxiosParamCreator_UpdateEntityUserDataFilters(workspaceId: string, objectId: string, jsonApiUserDataFilterInDocument: JsonApiUserDataFilterInDocument, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
89143
90241
|
|
|
89144
90242
|
/**
|
|
89145
90243
|
* Request parameters for createEntityUserDataFilters operation in UserDataFilterControllerApi.
|
|
@@ -89161,10 +90259,10 @@ export declare interface UserDataFilterControllerApiCreateEntityUserDataFiltersR
|
|
|
89161
90259
|
readonly jsonApiUserDataFilterPostOptionalIdDocument: JsonApiUserDataFilterPostOptionalIdDocument;
|
|
89162
90260
|
/**
|
|
89163
90261
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
89164
|
-
* @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>}
|
|
90262
|
+
* @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
|
|
89165
90263
|
* @memberof UserDataFilterControllerApiCreateEntityUserDataFilters
|
|
89166
90264
|
*/
|
|
89167
|
-
readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>;
|
|
90265
|
+
readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
|
|
89168
90266
|
/**
|
|
89169
90267
|
* Include Meta objects.
|
|
89170
90268
|
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
@@ -89219,10 +90317,10 @@ export declare interface UserDataFilterControllerApiGetAllEntitiesUserDataFilter
|
|
|
89219
90317
|
readonly filter?: string;
|
|
89220
90318
|
/**
|
|
89221
90319
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
89222
|
-
* @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>}
|
|
90320
|
+
* @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
|
|
89223
90321
|
* @memberof UserDataFilterControllerApiGetAllEntitiesUserDataFilters
|
|
89224
90322
|
*/
|
|
89225
|
-
readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>;
|
|
90323
|
+
readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
|
|
89226
90324
|
/**
|
|
89227
90325
|
* Zero-based page index (0..N)
|
|
89228
90326
|
* @type {number}
|
|
@@ -89281,10 +90379,10 @@ export declare interface UserDataFilterControllerApiGetEntityUserDataFiltersRequ
|
|
|
89281
90379
|
readonly filter?: string;
|
|
89282
90380
|
/**
|
|
89283
90381
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
89284
|
-
* @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>}
|
|
90382
|
+
* @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
|
|
89285
90383
|
* @memberof UserDataFilterControllerApiGetEntityUserDataFilters
|
|
89286
90384
|
*/
|
|
89287
|
-
readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>;
|
|
90385
|
+
readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
|
|
89288
90386
|
/**
|
|
89289
90387
|
*
|
|
89290
90388
|
* @type {boolean}
|
|
@@ -89402,10 +90500,10 @@ export declare interface UserDataFilterControllerApiPatchEntityUserDataFiltersRe
|
|
|
89402
90500
|
readonly filter?: string;
|
|
89403
90501
|
/**
|
|
89404
90502
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
89405
|
-
* @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>}
|
|
90503
|
+
* @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
|
|
89406
90504
|
* @memberof UserDataFilterControllerApiPatchEntityUserDataFilters
|
|
89407
90505
|
*/
|
|
89408
|
-
readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>;
|
|
90506
|
+
readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
|
|
89409
90507
|
}
|
|
89410
90508
|
|
|
89411
90509
|
/**
|
|
@@ -89472,10 +90570,10 @@ export declare interface UserDataFilterControllerApiUpdateEntityUserDataFiltersR
|
|
|
89472
90570
|
readonly filter?: string;
|
|
89473
90571
|
/**
|
|
89474
90572
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
89475
|
-
* @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>}
|
|
90573
|
+
* @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
|
|
89476
90574
|
* @memberof UserDataFilterControllerApiUpdateEntityUserDataFilters
|
|
89477
90575
|
*/
|
|
89478
|
-
readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'user' | 'userGroup' | 'ALL'>;
|
|
90576
|
+
readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
|
|
89479
90577
|
}
|
|
89480
90578
|
|
|
89481
90579
|
/**
|
|
@@ -95139,6 +96237,15 @@ export declare class WorkspaceControllerApi extends MetadataBaseApi implements W
|
|
|
95139
96237
|
* @memberof WorkspaceControllerApi
|
|
95140
96238
|
*/
|
|
95141
96239
|
patchEntityWorkspaces(requestParameters: WorkspaceControllerApiPatchEntityWorkspacesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceOutDocument>;
|
|
96240
|
+
/**
|
|
96241
|
+
* Notification sets up all reports to be computed again with new data.
|
|
96242
|
+
* @summary Register an upload notification
|
|
96243
|
+
* @param {WorkspaceControllerApiRegisterUploadNotificationWorkspacesRequest} requestParameters Request parameters.
|
|
96244
|
+
* @param {*} [options] Override http request option.
|
|
96245
|
+
* @throws {RequiredError}
|
|
96246
|
+
* @memberof WorkspaceControllerApi
|
|
96247
|
+
*/
|
|
96248
|
+
registerUploadNotificationWorkspaces(requestParameters: WorkspaceControllerApiRegisterUploadNotificationWorkspacesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceOutDocument>;
|
|
95142
96249
|
/**
|
|
95143
96250
|
* Space of the shared interest
|
|
95144
96251
|
* @summary Put Workspace entity
|
|
@@ -95210,6 +96317,18 @@ export declare function WorkspaceControllerApi_GetEntityWorkspaces(axios: AxiosI
|
|
|
95210
96317
|
*/
|
|
95211
96318
|
export declare function WorkspaceControllerApi_PatchEntityWorkspaces(axios: AxiosInstance, basePath: string, requestParameters: WorkspaceControllerApiPatchEntityWorkspacesRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiWorkspaceOutDocument>;
|
|
95212
96319
|
|
|
96320
|
+
/**
|
|
96321
|
+
* Notification sets up all reports to be computed again with new data.
|
|
96322
|
+
* @summary Register an upload notification
|
|
96323
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
96324
|
+
* @param {string} basePath Base path.
|
|
96325
|
+
* @param {WorkspaceControllerApiRegisterUploadNotificationWorkspacesRequest} requestParameters Request parameters.
|
|
96326
|
+
* @param {*} [options] Override http request option.
|
|
96327
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
96328
|
+
* @throws {RequiredError}
|
|
96329
|
+
*/
|
|
96330
|
+
export declare function WorkspaceControllerApi_RegisterUploadNotificationWorkspaces(axios: AxiosInstance, basePath: string, requestParameters: WorkspaceControllerApiRegisterUploadNotificationWorkspacesRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiWorkspaceOutDocument>;
|
|
96331
|
+
|
|
95213
96332
|
/**
|
|
95214
96333
|
* Space of the shared interest
|
|
95215
96334
|
* @summary Put Workspace entity
|
|
@@ -95285,6 +96404,18 @@ export declare function WorkspaceControllerApiAxiosParamCreator_GetEntityWorkspa
|
|
|
95285
96404
|
*/
|
|
95286
96405
|
export declare function WorkspaceControllerApiAxiosParamCreator_PatchEntityWorkspaces(id: string, jsonApiWorkspacePatchDocument: JsonApiWorkspacePatchDocument, filter?: string, include?: Array<'workspaces' | 'parent' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
95287
96406
|
|
|
96407
|
+
/**
|
|
96408
|
+
* Notification sets up all reports to be computed again with new data.
|
|
96409
|
+
* @summary Register an upload notification
|
|
96410
|
+
* @param {string} workspaceId
|
|
96411
|
+
* @param {Array<'config' | 'permissions' | 'hierarchy' | 'dataModelDatasets' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
96412
|
+
* @param {object} [body] Request body
|
|
96413
|
+
* @param {*} [options] Override http request option.
|
|
96414
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
96415
|
+
* @throws {RequiredError}
|
|
96416
|
+
*/
|
|
96417
|
+
export declare function WorkspaceControllerApiAxiosParamCreator_RegisterUploadNotificationWorkspaces(workspaceId: string, metaInclude?: Array<'config' | 'permissions' | 'hierarchy' | 'dataModelDatasets' | 'all' | 'ALL'>, body?: object, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
96418
|
+
|
|
95288
96419
|
/**
|
|
95289
96420
|
* Space of the shared interest
|
|
95290
96421
|
* @summary Put Workspace entity
|
|
@@ -95465,6 +96596,15 @@ export declare interface WorkspaceControllerApiInterface {
|
|
|
95465
96596
|
* @memberof WorkspaceControllerApiInterface
|
|
95466
96597
|
*/
|
|
95467
96598
|
patchEntityWorkspaces(requestParameters: WorkspaceControllerApiPatchEntityWorkspacesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceOutDocument>;
|
|
96599
|
+
/**
|
|
96600
|
+
* Notification sets up all reports to be computed again with new data.
|
|
96601
|
+
* @summary Register an upload notification
|
|
96602
|
+
* @param {WorkspaceControllerApiRegisterUploadNotificationWorkspacesRequest} requestParameters Request parameters.
|
|
96603
|
+
* @param {*} [options] Override http request option.
|
|
96604
|
+
* @throws {RequiredError}
|
|
96605
|
+
* @memberof WorkspaceControllerApiInterface
|
|
96606
|
+
*/
|
|
96607
|
+
registerUploadNotificationWorkspaces(requestParameters: WorkspaceControllerApiRegisterUploadNotificationWorkspacesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceOutDocument>;
|
|
95468
96608
|
/**
|
|
95469
96609
|
* Space of the shared interest
|
|
95470
96610
|
* @summary Put Workspace entity
|
|
@@ -95508,6 +96648,32 @@ export declare interface WorkspaceControllerApiPatchEntityWorkspacesRequest {
|
|
|
95508
96648
|
readonly include?: Array<'workspaces' | 'parent' | 'ALL'>;
|
|
95509
96649
|
}
|
|
95510
96650
|
|
|
96651
|
+
/**
|
|
96652
|
+
* Request parameters for registerUploadNotificationWorkspaces operation in WorkspaceControllerApi.
|
|
96653
|
+
* @export
|
|
96654
|
+
* @interface WorkspaceControllerApiRegisterUploadNotificationWorkspacesRequest
|
|
96655
|
+
*/
|
|
96656
|
+
export declare interface WorkspaceControllerApiRegisterUploadNotificationWorkspacesRequest {
|
|
96657
|
+
/**
|
|
96658
|
+
*
|
|
96659
|
+
* @type {string}
|
|
96660
|
+
* @memberof WorkspaceControllerApiRegisterUploadNotificationWorkspaces
|
|
96661
|
+
*/
|
|
96662
|
+
readonly workspaceId: string;
|
|
96663
|
+
/**
|
|
96664
|
+
* Include Meta objects.
|
|
96665
|
+
* @type {Array<'config' | 'permissions' | 'hierarchy' | 'dataModelDatasets' | 'all' | 'ALL'>}
|
|
96666
|
+
* @memberof WorkspaceControllerApiRegisterUploadNotificationWorkspaces
|
|
96667
|
+
*/
|
|
96668
|
+
readonly metaInclude?: Array<'config' | 'permissions' | 'hierarchy' | 'dataModelDatasets' | 'all' | 'ALL'>;
|
|
96669
|
+
/**
|
|
96670
|
+
* Request body
|
|
96671
|
+
* @type {object}
|
|
96672
|
+
* @memberof WorkspaceControllerApiRegisterUploadNotificationWorkspaces
|
|
96673
|
+
*/
|
|
96674
|
+
readonly body?: object;
|
|
96675
|
+
}
|
|
96676
|
+
|
|
95511
96677
|
/**
|
|
95512
96678
|
* Request parameters for updateEntityWorkspaces operation in WorkspaceControllerApi.
|
|
95513
96679
|
* @export
|