@aws-sdk/client-quicksight 3.1031.0 → 3.1032.0
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/dist-cjs/index.js +7 -0
- package/dist-cjs/schemas/schemas_0.js +90 -56
- package/dist-es/models/enums.js +6 -0
- package/dist-es/schemas/schemas_0.js +58 -24
- package/dist-types/commands/CreateAnalysisCommand.d.ts +136 -71
- package/dist-types/commands/CreateCustomPermissionsCommand.d.ts +1 -0
- package/dist-types/commands/CreateDashboardCommand.d.ts +136 -71
- package/dist-types/commands/CreateDataSourceCommand.d.ts +9 -1
- package/dist-types/commands/CreateTemplateCommand.d.ts +136 -71
- package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +136 -71
- package/dist-types/commands/DescribeAssetBundleImportJobCommand.d.ts +4 -0
- package/dist-types/commands/DescribeCustomPermissionsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +136 -71
- package/dist-types/commands/DescribeDataSourceCommand.d.ts +9 -1
- package/dist-types/commands/DescribeRoleCustomPermissionCommand.d.ts +2 -1
- package/dist-types/commands/DescribeSelfUpgradeConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +136 -71
- package/dist-types/commands/GenerateEmbedUrlForRegisteredUserCommand.d.ts +6 -0
- package/dist-types/commands/GenerateEmbedUrlForRegisteredUserWithIdentityCommand.d.ts +6 -0
- package/dist-types/commands/ListCustomPermissionsCommand.d.ts +1 -0
- package/dist-types/commands/ListDataSourcesCommand.d.ts +9 -1
- package/dist-types/commands/SearchDataSourcesCommand.d.ts +1 -1
- package/dist-types/commands/StartAssetBundleImportJobCommand.d.ts +4 -0
- package/dist-types/commands/UpdateAnalysisCommand.d.ts +136 -71
- package/dist-types/commands/UpdateCustomPermissionsCommand.d.ts +1 -0
- package/dist-types/commands/UpdateDashboardCommand.d.ts +136 -71
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +8 -0
- package/dist-types/commands/UpdateTemplateCommand.d.ts +136 -71
- package/dist-types/commands/UpdateTopicRefreshScheduleCommand.d.ts +2 -1
- package/dist-types/commands/UpdateUserCommand.d.ts +1 -1
- package/dist-types/commands/UpdateUserCustomPermissionCommand.d.ts +1 -2
- package/dist-types/models/enums.d.ts +14 -0
- package/dist-types/models/models_0.d.ts +72 -43
- package/dist-types/models/models_1.d.ts +43 -109
- package/dist-types/models/models_2.d.ts +207 -60
- package/dist-types/models/models_3.d.ts +69 -78
- package/dist-types/models/models_4.d.ts +87 -210
- package/dist-types/models/models_5.d.ts +211 -1
- package/dist-types/schemas/schemas_0.d.ts +4 -0
- package/dist-types/ts3.4/commands/DescribeRoleCustomPermissionCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeSelfUpgradeConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateTopicRefreshScheduleCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateUserCustomPermissionCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/enums.d.ts +8 -0
- package/dist-types/ts3.4/models/models_0.d.ts +14 -10
- package/dist-types/ts3.4/models/models_1.d.ts +11 -25
- package/dist-types/ts3.4/models/models_2.d.ts +107 -15
- package/dist-types/ts3.4/models/models_3.d.ts +19 -21
- package/dist-types/ts3.4/models/models_4.d.ts +24 -30
- package/dist-types/ts3.4/models/models_5.d.ts +32 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +4 -0
- package/package.json +5 -5
package/dist-es/models/enums.js
CHANGED
|
@@ -326,6 +326,11 @@ export const SheetControlDateTimePickerType = {
|
|
|
326
326
|
DATE_RANGE: "DATE_RANGE",
|
|
327
327
|
SINGLE_VALUED: "SINGLE_VALUED",
|
|
328
328
|
};
|
|
329
|
+
export const ControlSortDirection = {
|
|
330
|
+
ASC: "ASC",
|
|
331
|
+
DESC: "DESC",
|
|
332
|
+
USER_DEFINED_ORDER: "USER_DEFINED_ORDER",
|
|
333
|
+
};
|
|
329
334
|
export const SheetControlListType = {
|
|
330
335
|
MULTI_SELECT: "MULTI_SELECT",
|
|
331
336
|
SINGLE_SELECT: "SINGLE_SELECT",
|
|
@@ -1253,6 +1258,7 @@ export const DataSourceType = {
|
|
|
1253
1258
|
REDSHIFT: "REDSHIFT",
|
|
1254
1259
|
S3: "S3",
|
|
1255
1260
|
S3_KNOWLEDGE_BASE: "S3_KNOWLEDGE_BASE",
|
|
1261
|
+
S3_TABLES: "S3_TABLES",
|
|
1256
1262
|
SALESFORCE: "SALESFORCE",
|
|
1257
1263
|
SERVICENOW: "SERVICENOW",
|
|
1258
1264
|
SHAREPOINT: "SHAREPOINT",
|
|
@@ -392,6 +392,7 @@ const _CALOa = "CategoryAxisLabelOptions";
|
|
|
392
392
|
const _CANO = "CustomActionNavigationOperation";
|
|
393
393
|
const _CAP = "ContextualAccentPalette";
|
|
394
394
|
const _CAR = "CreateAnalysisRequest";
|
|
395
|
+
const _CARA = "ConsumerAccountRoleArn";
|
|
395
396
|
const _CARr = "CreateAnalysisResponse";
|
|
396
397
|
const _CAS = "CreateAccountSubscription";
|
|
397
398
|
const _CASPO = "CustomActionSetParametersOperation";
|
|
@@ -485,6 +486,7 @@ const _CCSC = "ComboChartSortConfiguration";
|
|
|
485
486
|
const _CCSL = "CascadingControlSourceList";
|
|
486
487
|
const _CCSS = "ComboChartSeriesSettings";
|
|
487
488
|
const _CCSl = "ClientCredentialsSource";
|
|
489
|
+
const _CCSo = "ControlColumnSort";
|
|
488
490
|
const _CCSr = "CreateColumnsStep";
|
|
489
491
|
const _CCTO = "CastColumnTypeOperation";
|
|
490
492
|
const _CCTOL = "CastColumnTypeOperationList";
|
|
@@ -663,8 +665,11 @@ const _CRSRr = "CreateRefreshScheduleResponse";
|
|
|
663
665
|
const _CRi = "CircleRadius";
|
|
664
666
|
const _CS = "ClientSecret";
|
|
665
667
|
const _CSA = "CopySourceArn";
|
|
668
|
+
const _CSC = "ControlSortConfiguration";
|
|
666
669
|
const _CSCIB = "ConsumedSpiceCapacityInBytes";
|
|
667
670
|
const _CSCL = "ColorScaleColorList";
|
|
671
|
+
const _CSCLo = "ControlSortConfigurationList";
|
|
672
|
+
const _CSCo = "ControlSortConfigurations";
|
|
668
673
|
const _CSF = "CreateSharedFolders";
|
|
669
674
|
const _CSI = "ComboSeriesItem";
|
|
670
675
|
const _CSIL = "ComboSeriesItemList";
|
|
@@ -849,6 +854,8 @@ const _DCPRes = "DescribeCustomPermissionsRequest";
|
|
|
849
854
|
const _DCPResc = "DescribeCustomPermissionsResponse";
|
|
850
855
|
const _DCPe = "DeleteCustomPermissions";
|
|
851
856
|
const _DCPes = "DescribeCustomPermissions";
|
|
857
|
+
const _DCS = "DashboardCustomizationSummary";
|
|
858
|
+
const _DCSC = "DashboardCustomizationSummaryConfigurations";
|
|
852
859
|
const _DCVO = "DashboardCustomizationVisualOptions";
|
|
853
860
|
const _DCW = "DefaultCellWidth";
|
|
854
861
|
const _DCa = "DataColor";
|
|
@@ -1524,7 +1531,8 @@ const _G = "Gradient";
|
|
|
1524
1531
|
const _GA = "GenerativeAuthoring";
|
|
1525
1532
|
const _GAC = "GenerativeAuthoringConfigurations";
|
|
1526
1533
|
const _GAR = "GeneratedAnswerResult";
|
|
1527
|
-
const _GAe = "
|
|
1534
|
+
const _GAe = "GenerateAnalyses";
|
|
1535
|
+
const _GAen = "GeneratedAnswer";
|
|
1528
1536
|
const _GAi = "GithubAction";
|
|
1529
1537
|
const _GB = "GroupBy";
|
|
1530
1538
|
const _GBCN = "GroupByColumnNames";
|
|
@@ -2962,6 +2970,7 @@ const _STLe = "SessionTagList";
|
|
|
2962
2970
|
const _STM = "SourceTableMap";
|
|
2963
2971
|
const _STMe = "SemanticTableMap";
|
|
2964
2972
|
const _STN = "SubTypeName";
|
|
2973
|
+
const _STP = "S3TablesParameters";
|
|
2965
2974
|
const _STR = "SearchTopicsRequest";
|
|
2966
2975
|
const _STRA = "SucceededTopicReviewedAnswer";
|
|
2967
2976
|
const _STRAu = "SucceededTopicReviewedAnswers";
|
|
@@ -2995,6 +3004,7 @@ const _SV = "SharedView";
|
|
|
2995
3004
|
const _SVC = "SharedViewConfigurations";
|
|
2996
3005
|
const _SVFC = "SecondaryValueFontConfiguration";
|
|
2997
3006
|
const _SVO = "SecondaryValueOptions";
|
|
3007
|
+
const _SVS = "SelectableValuesSort";
|
|
2998
3008
|
const _SVSC = "SheetVisualScopingConfigurations";
|
|
2999
3009
|
const _SVSCh = "SheetVisualScopingConfiguration";
|
|
3000
3010
|
const _SVWUC = "StringValueWhenUnsetConfiguration";
|
|
@@ -3074,6 +3084,7 @@ const _TAo = "TopicArn";
|
|
|
3074
3084
|
const _TAot = "TotalAggregation";
|
|
3075
3085
|
const _TAr = "TrendArrows";
|
|
3076
3086
|
const _TB = "TextBoxes";
|
|
3087
|
+
const _TBA = "TableBucketArn";
|
|
3077
3088
|
const _TBC = "TotalBarColor";
|
|
3078
3089
|
const _TBF = "TopBottomFilter";
|
|
3079
3090
|
const _TBFP = "TimeBasedForecastProperties";
|
|
@@ -4392,8 +4403,8 @@ export var AssetOptions$ = [3, n0, _AOs,
|
|
|
4392
4403
|
];
|
|
4393
4404
|
export var AthenaParameters$ = [3, n0, _APt,
|
|
4394
4405
|
0,
|
|
4395
|
-
[_WG, _RA, _ICC],
|
|
4396
|
-
[0, 0, () => IdentityCenterConfiguration$]
|
|
4406
|
+
[_WG, _RA, _CARA, _ICC],
|
|
4407
|
+
[0, 0, 0, () => IdentityCenterConfiguration$]
|
|
4397
4408
|
];
|
|
4398
4409
|
export var AttributeAggregationFunction$ = [3, n0, _AAF,
|
|
4399
4410
|
0,
|
|
@@ -4707,8 +4718,8 @@ export var CancelIngestionResponse$ = [3, n0, _CIRa,
|
|
|
4707
4718
|
];
|
|
4708
4719
|
export var Capabilities$ = [3, n0, _Cap,
|
|
4709
4720
|
0,
|
|
4710
|
-
[_ETC, _ETE, _ETP, _PR, _CAUT, _AORADFA, _SAh, _CAUD, _SDh, _SDER, _CAUDER, _SDha, _CAUTA, _RSF, _CSF, _CAUDS, _SDS, _VASPICEC, _CSPICED, _ETPISR, _ETCISR, _ETEISR, _ICISRE, _Da, _An, _Au, _Fl, _PWA, _UBM, _PFUT, _AFSR, _UAWS, _KB, _Act, _GHTTPA, _CAUGHTTPA, _SGHTTPA, _UGHTTPA, _AAs, _CAUAA, _SAAh, _UAA, _SAl, _CAUSA, _SSA, _USA, _SNA, _CAUSNA, _SSNA, _USNA, _SAa, _CAUSAr, _SSAh, _USAs, _MSEA, _CAUMSEA, _SMSEA, _UMSEA, _PDA, _CAUPDA, _SPDA, _UPDA, _JA, _CAUJA, _SJA, _UJA, _CAo, _CAUCA, _SCA, _UCA, _ODA, _CAUODA, _SODA, _UODA, _SPA, _CAUSPA, _SSPA, _USPA, _MSTA, _CAUMSTA, _SMSTA, _UMSTA, _GCA, _CAUGCA, _SGCA, _UGCA, _ZA, _CAUZA, _SZA, _UZA, _SAm, _CAUSAre, _SSAha, _USAse, _SAPBPA, _CAUSAPBPA, _SSAPBPA, _USAPBPA, _SAPPMDA, _CAUSAPPMDA, _SSAPPMDA, _USAPPMDA, _SAPPIA, _CAUSAPPIA, _SSAPPIA, _USAPPIA, _SAPBOMA, _CAUSAPBOMA, _SSAPBOMA, _USAPBOMA, _SAPMSA, _CAUSAPMSA, _SSAPMSA, _USAPMSA, _FSA, _CAUFSA, _SFSA, _UFSA, _ASTA, _CAUASTA, _SASTA, _UASTA, _TAe, _CAUTAr, _STA, _UTA, _CAom, _CAUCAr, _SCAh, _UCAs, _CMA, _CAUCMA, _SCMA, _UCMA, _ABARSA, _CAUABARSA, _SABARSA, _UABARSA, _ABFSA, _CAUABFSA, _SABFSA, _UABFSA, _ABKRSA, _CAUABKRSA, _SABKRSA, _UABKRSA, _MCPA, _CAUMCPA, _SMCPA, _UMCPA, _OAPIA, _CAUOAPIA, _SOAPIA, _UOAPIA, _SPGMIA, _CAUSPGMIA, _SSPGMIA, _USPGMIA, _SPGEA, _CAUSPGEA, _SSPGEA, _USPGEA, _BHRA, _CAUBHRA, _SBHRA, _UBHRA, _BAA, _CAUBAA, _SBAA, _UBAA, _CAA, _CAUCAA, _SCAA, _UCAA, _GAi, _CAUGA, _SGA, _UGA, _NA, _CAUNA, _SNAh, _UNA, _LA, _CAULA, _SLA, _ULA, _HFA, _CAUHFA, _SHFA, _UHFA, _MA, _CAUMA, _SMA, _UMA, _HA, _CAUHA, _SHA, _UHA, _IAn, _CAUIA, _SIA, _UIA, _NRA, _CAUNRA, _SNRA, _UNRA, _Top, _EVWQ, _BCFWQ, _CDESWQ, _Sp, _CSr, _SSh, _CAh, _CCA, _SCAha, _Re, _SUUR, _Ext, _MSF],
|
|
4711
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
|
|
4721
|
+
[_ETC, _ETE, _ETP, _PR, _CAUT, _AORADFA, _SAh, _CAUD, _SDh, _SDER, _CAUDER, _SDha, _CAUTA, _RSF, _CSF, _CAUDS, _SDS, _VASPICEC, _CSPICED, _ETPISR, _ETCISR, _ETEISR, _ICISRE, _Da, _An, _Au, _Fl, _PWA, _UBM, _PFUT, _AFSR, _UAWS, _KB, _Act, _GHTTPA, _CAUGHTTPA, _SGHTTPA, _UGHTTPA, _AAs, _CAUAA, _SAAh, _UAA, _SAl, _CAUSA, _SSA, _USA, _SNA, _CAUSNA, _SSNA, _USNA, _SAa, _CAUSAr, _SSAh, _USAs, _MSEA, _CAUMSEA, _SMSEA, _UMSEA, _PDA, _CAUPDA, _SPDA, _UPDA, _JA, _CAUJA, _SJA, _UJA, _CAo, _CAUCA, _SCA, _UCA, _ODA, _CAUODA, _SODA, _UODA, _SPA, _CAUSPA, _SSPA, _USPA, _MSTA, _CAUMSTA, _SMSTA, _UMSTA, _GCA, _CAUGCA, _SGCA, _UGCA, _ZA, _CAUZA, _SZA, _UZA, _SAm, _CAUSAre, _SSAha, _USAse, _SAPBPA, _CAUSAPBPA, _SSAPBPA, _USAPBPA, _SAPPMDA, _CAUSAPPMDA, _SSAPPMDA, _USAPPMDA, _SAPPIA, _CAUSAPPIA, _SSAPPIA, _USAPPIA, _SAPBOMA, _CAUSAPBOMA, _SSAPBOMA, _USAPBOMA, _SAPMSA, _CAUSAPMSA, _SSAPMSA, _USAPMSA, _FSA, _CAUFSA, _SFSA, _UFSA, _ASTA, _CAUASTA, _SASTA, _UASTA, _TAe, _CAUTAr, _STA, _UTA, _CAom, _CAUCAr, _SCAh, _UCAs, _CMA, _CAUCMA, _SCMA, _UCMA, _ABARSA, _CAUABARSA, _SABARSA, _UABARSA, _ABFSA, _CAUABFSA, _SABFSA, _UABFSA, _ABKRSA, _CAUABKRSA, _SABKRSA, _UABKRSA, _MCPA, _CAUMCPA, _SMCPA, _UMCPA, _OAPIA, _CAUOAPIA, _SOAPIA, _UOAPIA, _SPGMIA, _CAUSPGMIA, _SSPGMIA, _USPGMIA, _SPGEA, _CAUSPGEA, _SSPGEA, _USPGEA, _BHRA, _CAUBHRA, _SBHRA, _UBHRA, _BAA, _CAUBAA, _SBAA, _UBAA, _CAA, _CAUCAA, _SCAA, _UCAA, _GAi, _CAUGA, _SGA, _UGA, _NA, _CAUNA, _SNAh, _UNA, _LA, _CAULA, _SLA, _ULA, _HFA, _CAUHFA, _SHFA, _UHFA, _MA, _CAUMA, _SMA, _UMA, _HA, _CAUHA, _SHA, _UHA, _IAn, _CAUIA, _SIA, _UIA, _NRA, _CAUNRA, _SNRA, _UNRA, _Top, _EVWQ, _BCFWQ, _CDESWQ, _Sp, _CSr, _SSh, _CAh, _CCA, _SCAha, _Re, _SUUR, _Ext, _MSF, _GAe],
|
|
4722
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
|
|
4712
4723
|
];
|
|
4713
4724
|
export var CascadingControlConfiguration$ = [3, n0, _CCC,
|
|
4714
4725
|
0,
|
|
@@ -5005,6 +5016,11 @@ export var ContributionAnalysisTimeRanges$ = [3, n0, _CATR,
|
|
|
5005
5016
|
[_SR, _ER],
|
|
5006
5017
|
[() => TopicIRFilterOption$, () => TopicIRFilterOption$]
|
|
5007
5018
|
];
|
|
5019
|
+
export var ControlSortConfiguration$ = [3, n0, _CSC,
|
|
5020
|
+
0,
|
|
5021
|
+
[_SVS, _CCSo],
|
|
5022
|
+
[() => SelectableValuesSort$, () => AggregationSortConfiguration$]
|
|
5023
|
+
];
|
|
5008
5024
|
export var Coordinate$ = [3, n0, _Coo,
|
|
5009
5025
|
0,
|
|
5010
5026
|
[_Lat, _Lon],
|
|
@@ -5365,6 +5381,11 @@ export var Dashboard$ = [3, n0, _Da,
|
|
|
5365
5381
|
[_DI, _A, _N, _Ve, _CT, _LPT, _LUT, _LE],
|
|
5366
5382
|
[0, 0, 0, () => DashboardVersion$, 4, 4, 4, 64 | 0]
|
|
5367
5383
|
];
|
|
5384
|
+
export var DashboardCustomizationSummaryConfigurations$ = [3, n0, _DCSC,
|
|
5385
|
+
0,
|
|
5386
|
+
[_En],
|
|
5387
|
+
[2], 1
|
|
5388
|
+
];
|
|
5368
5389
|
export var DashboardCustomizationVisualOptions$ = [3, n0, _DCVO,
|
|
5369
5390
|
0,
|
|
5370
5391
|
[_FCi],
|
|
@@ -5832,13 +5853,13 @@ export var DefaultFilterControlOptions$ = [3, n0, _DFCO,
|
|
|
5832
5853
|
];
|
|
5833
5854
|
export var DefaultFilterDropDownControlOptions$ = [3, n0, _DFDDCO,
|
|
5834
5855
|
0,
|
|
5835
|
-
[_DOi, _T, _SVe, _CMom],
|
|
5836
|
-
[() => DropDownControlDisplayOptions$, 0, () => FilterSelectableValues$, 0]
|
|
5856
|
+
[_DOi, _T, _SVe, _CMom, _CSCo],
|
|
5857
|
+
[() => DropDownControlDisplayOptions$, 0, () => FilterSelectableValues$, 0, () => ControlSortConfigurationList]
|
|
5837
5858
|
];
|
|
5838
5859
|
export var DefaultFilterListControlOptions$ = [3, n0, _DFLCO,
|
|
5839
5860
|
0,
|
|
5840
|
-
[_DOi, _T, _SVe],
|
|
5841
|
-
[() => ListControlDisplayOptions$, 0, () => FilterSelectableValues
|
|
5861
|
+
[_DOi, _T, _SVe, _CSCo],
|
|
5862
|
+
[() => ListControlDisplayOptions$, 0, () => FilterSelectableValues$, () => ControlSortConfigurationList]
|
|
5842
5863
|
];
|
|
5843
5864
|
export var DefaultFormatting$ = [3, n0, _DFe,
|
|
5844
5865
|
0,
|
|
@@ -7007,8 +7028,8 @@ export var FilterDateTimePickerControl$ = [3, n0, _FDTPC,
|
|
|
7007
7028
|
];
|
|
7008
7029
|
export var FilterDropDownControl$ = [3, n0, _FDDC,
|
|
7009
7030
|
0,
|
|
7010
|
-
[_FCI, _Tit, _SFI, _DOi, _T, _SVe, _CCC, _CMom],
|
|
7011
|
-
[0, 0, 0, () => DropDownControlDisplayOptions$, 0, () => FilterSelectableValues$, () => CascadingControlConfiguration$, 0], 3
|
|
7031
|
+
[_FCI, _Tit, _SFI, _DOi, _T, _SVe, _CCC, _CMom, _CSCo],
|
|
7032
|
+
[0, 0, 0, () => DropDownControlDisplayOptions$, 0, () => FilterSelectableValues$, () => CascadingControlConfiguration$, 0, () => ControlSortConfigurationList], 3
|
|
7012
7033
|
];
|
|
7013
7034
|
export var FilterGroup$ = [3, n0, _FGil,
|
|
7014
7035
|
0,
|
|
@@ -7022,8 +7043,8 @@ export var FilterListConfiguration$ = [3, n0, _FLC,
|
|
|
7022
7043
|
];
|
|
7023
7044
|
export var FilterListControl$ = [3, n0, _FLCi,
|
|
7024
7045
|
0,
|
|
7025
|
-
[_FCI, _Tit, _SFI, _DOi, _T, _SVe, _CCC],
|
|
7026
|
-
[0, 0, 0, () => ListControlDisplayOptions$, 0, () => FilterSelectableValues$, () => CascadingControlConfiguration
|
|
7046
|
+
[_FCI, _Tit, _SFI, _DOi, _T, _SVe, _CCC, _CSCo],
|
|
7047
|
+
[0, 0, 0, () => ListControlDisplayOptions$, 0, () => FilterSelectableValues$, () => CascadingControlConfiguration$, () => ControlSortConfigurationList], 3
|
|
7027
7048
|
];
|
|
7028
7049
|
export var FilterOperation$ = [3, n0, _FO,
|
|
7029
7050
|
0,
|
|
@@ -8707,13 +8728,13 @@ export var ParameterDeclaration$ = [3, n0, _PDa,
|
|
|
8707
8728
|
];
|
|
8708
8729
|
export var ParameterDropDownControl$ = [3, n0, _PDDC,
|
|
8709
8730
|
0,
|
|
8710
|
-
[_PCI, _Tit, _SPN, _DOi, _T, _SVe, _CCC, _CMom],
|
|
8711
|
-
[0, 0, 0, () => DropDownControlDisplayOptions$, 0, () => ParameterSelectableValues$, () => CascadingControlConfiguration$, 0], 3
|
|
8731
|
+
[_PCI, _Tit, _SPN, _DOi, _T, _SVe, _CCC, _CMom, _CSCo],
|
|
8732
|
+
[0, 0, 0, () => DropDownControlDisplayOptions$, 0, () => ParameterSelectableValues$, () => CascadingControlConfiguration$, 0, () => ControlSortConfigurationList], 3
|
|
8712
8733
|
];
|
|
8713
8734
|
export var ParameterListControl$ = [3, n0, _PLCa,
|
|
8714
8735
|
0,
|
|
8715
|
-
[_PCI, _Tit, _SPN, _DOi, _T, _SVe, _CCC],
|
|
8716
|
-
[0, 0, 0, () => ListControlDisplayOptions$, 0, () => ParameterSelectableValues$, () => CascadingControlConfiguration
|
|
8736
|
+
[_PCI, _Tit, _SPN, _DOi, _T, _SVe, _CCC, _CSCo],
|
|
8737
|
+
[0, 0, 0, () => ListControlDisplayOptions$, 0, () => ParameterSelectableValues$, () => CascadingControlConfiguration$, () => ControlSortConfigurationList], 3
|
|
8717
8738
|
];
|
|
8718
8739
|
export var _Parameters$ = [3, n0, _Par,
|
|
8719
8740
|
0,
|
|
@@ -9017,7 +9038,7 @@ export var PutDataSetRefreshPropertiesResponse$ = [3, n0, _PDSRPRu,
|
|
|
9017
9038
|
];
|
|
9018
9039
|
export var QAResult$ = [3, n0, _QAR,
|
|
9019
9040
|
0,
|
|
9020
|
-
[_RTes, _DV,
|
|
9041
|
+
[_RTes, _DV, _GAen],
|
|
9021
9042
|
[0, () => DashboardVisualResult$, [() => GeneratedAnswerResult$, 0]]
|
|
9022
9043
|
];
|
|
9023
9044
|
export var QBusinessParameters$ = [3, n0, _QBP,
|
|
@@ -9227,8 +9248,8 @@ export var RegisteredCustomerManagedKey$ = [3, n0, _RCMK,
|
|
|
9227
9248
|
];
|
|
9228
9249
|
export var RegisteredUserConsoleFeatureConfigurations$ = [3, n0, _RUCFC,
|
|
9229
9250
|
0,
|
|
9230
|
-
[_SPta, _SV, _AQIQS, _Sch, _RSec, _TAhr],
|
|
9231
|
-
[() => StatePersistenceConfigurations$, () => SharedViewConfigurations$, () => AmazonQInQuickSightConsoleConfigurations$, () => SchedulesConfigurations$, () => RecentSnapshotsConfigurations$, () => ThresholdAlertsConfigurations$]
|
|
9251
|
+
[_SPta, _SV, _AQIQS, _Sch, _RSec, _TAhr, _DCS],
|
|
9252
|
+
[() => StatePersistenceConfigurations$, () => SharedViewConfigurations$, () => AmazonQInQuickSightConsoleConfigurations$, () => SchedulesConfigurations$, () => RecentSnapshotsConfigurations$, () => ThresholdAlertsConfigurations$, () => DashboardCustomizationSummaryConfigurations$]
|
|
9232
9253
|
];
|
|
9233
9254
|
export var RegisteredUserDashboardEmbeddingConfiguration$ = [3, n0, _RUDEC,
|
|
9234
9255
|
0,
|
|
@@ -9237,8 +9258,8 @@ export var RegisteredUserDashboardEmbeddingConfiguration$ = [3, n0, _RUDEC,
|
|
|
9237
9258
|
];
|
|
9238
9259
|
export var RegisteredUserDashboardFeatureConfigurations$ = [3, n0, _RUDFC,
|
|
9239
9260
|
0,
|
|
9240
|
-
[_SPta, _Boo, _SV, _AQIQS, _Sch, _RSec, _TAhr],
|
|
9241
|
-
[() => StatePersistenceConfigurations$, () => BookmarksConfigurations$, () => SharedViewConfigurations$, () => AmazonQInQuickSightDashboardConfigurations$, () => SchedulesConfigurations$, () => RecentSnapshotsConfigurations$, () => ThresholdAlertsConfigurations$]
|
|
9261
|
+
[_SPta, _Boo, _SV, _AQIQS, _Sch, _RSec, _TAhr, _DCS],
|
|
9262
|
+
[() => StatePersistenceConfigurations$, () => BookmarksConfigurations$, () => SharedViewConfigurations$, () => AmazonQInQuickSightDashboardConfigurations$, () => SchedulesConfigurations$, () => RecentSnapshotsConfigurations$, () => ThresholdAlertsConfigurations$, () => DashboardCustomizationSummaryConfigurations$]
|
|
9242
9263
|
];
|
|
9243
9264
|
export var RegisteredUserDashboardVisualEmbeddingConfiguration$ = [3, n0, _RUDVEC,
|
|
9244
9265
|
0,
|
|
@@ -9380,6 +9401,11 @@ export var S3Source$ = [3, n0, _SSo,
|
|
|
9380
9401
|
[_DSAa, _ICnp, _USp],
|
|
9381
9402
|
[0, () => InputColumnList, () => UploadSettings$], 2
|
|
9382
9403
|
];
|
|
9404
|
+
export var S3TablesParameters$ = [3, n0, _STP,
|
|
9405
|
+
0,
|
|
9406
|
+
[_TBA],
|
|
9407
|
+
[0]
|
|
9408
|
+
];
|
|
9383
9409
|
export var SaaSTable$ = [3, n0, _SST,
|
|
9384
9410
|
0,
|
|
9385
9411
|
[_DSAa, _TP, _ICnp],
|
|
@@ -9595,6 +9621,11 @@ export var SectionStyle$ = [3, n0, _SSec,
|
|
|
9595
9621
|
[_He, _Pad],
|
|
9596
9622
|
[0, () => Spacing$]
|
|
9597
9623
|
];
|
|
9624
|
+
export var SelectableValuesSort$ = [3, n0, _SVS,
|
|
9625
|
+
0,
|
|
9626
|
+
[_Dir],
|
|
9627
|
+
[0], 1
|
|
9628
|
+
];
|
|
9598
9629
|
export var SelectedSheetsFilterScopeConfiguration$ = [3, n0, _SSFSC,
|
|
9599
9630
|
0,
|
|
9600
9631
|
[_SVSC],
|
|
@@ -11659,6 +11690,9 @@ var ContributionAnalysisFactorsList = [1, n0, _CAFL,
|
|
|
11659
11690
|
var ContributorDimensionList = [1, n0, _CDL,
|
|
11660
11691
|
0, () => ColumnIdentifier$
|
|
11661
11692
|
];
|
|
11693
|
+
var ControlSortConfigurationList = [1, n0, _CSCLo,
|
|
11694
|
+
0, () => ControlSortConfiguration$
|
|
11695
|
+
];
|
|
11662
11696
|
var CreateTopicReviewedAnswers = [1, n0, _CTRAr,
|
|
11663
11697
|
0, [() => CreateTopicReviewedAnswer$,
|
|
11664
11698
|
0]
|
|
@@ -12411,8 +12445,8 @@ export var ClientCredentialsDetails$ = [4, n0, _CCD,
|
|
|
12411
12445
|
];
|
|
12412
12446
|
export var DataSourceParameters$ = [4, n0, _DSP,
|
|
12413
12447
|
0,
|
|
12414
|
-
[_AEP, _APt, _APu, _APSP, _AIAP, _JP, _MDP, _MSP, _OPr, _PSP, _PP, _RP, _RPe, _SPa, _SKBP, _SNP, _SPn, _SPp, _SSP, _TPe, _TPw, _AOSP, _EP, _DPa, _SPtar, _TPr, _BQP, _IPm, _CCP, _WCP, _CPo, _QBP],
|
|
12415
|
-
[() => AmazonElasticsearchParameters$, () => AthenaParameters$, () => AuroraParameters$, () => AuroraPostgreSqlParameters$, () => AwsIotAnalyticsParameters$, () => JiraParameters$, () => MariaDbParameters$, () => MySqlParameters$, () => OracleParameters$, () => PostgreSqlParameters$, () => PrestoParameters$, () => RdsParameters$, () => RedshiftParameters$, () => S3Parameters$, () => S3KnowledgeBaseParameters$, () => ServiceNowParameters$, () => SnowflakeParameters$, () => SparkParameters$, () => SqlServerParameters$, () => TeradataParameters$, () => TwitterParameters$, () => AmazonOpenSearchParameters$, () => ExasolParameters$, () => DatabricksParameters$, () => StarburstParameters$, () => TrinoParameters$, () => BigQueryParameters$, () => ImpalaParameters$, () => CustomConnectionParameters$, () => WebCrawlerParameters$, () => ConfluenceParameters$, () => QBusinessParameters$]
|
|
12448
|
+
[_AEP, _APt, _APu, _APSP, _AIAP, _JP, _MDP, _MSP, _OPr, _PSP, _PP, _RP, _RPe, _SPa, _STP, _SKBP, _SNP, _SPn, _SPp, _SSP, _TPe, _TPw, _AOSP, _EP, _DPa, _SPtar, _TPr, _BQP, _IPm, _CCP, _WCP, _CPo, _QBP],
|
|
12449
|
+
[() => AmazonElasticsearchParameters$, () => AthenaParameters$, () => AuroraParameters$, () => AuroraPostgreSqlParameters$, () => AwsIotAnalyticsParameters$, () => JiraParameters$, () => MariaDbParameters$, () => MySqlParameters$, () => OracleParameters$, () => PostgreSqlParameters$, () => PrestoParameters$, () => RdsParameters$, () => RedshiftParameters$, () => S3Parameters$, () => S3TablesParameters$, () => S3KnowledgeBaseParameters$, () => ServiceNowParameters$, () => SnowflakeParameters$, () => SparkParameters$, () => SqlServerParameters$, () => TeradataParameters$, () => TwitterParameters$, () => AmazonOpenSearchParameters$, () => ExasolParameters$, () => DatabricksParameters$, () => StarburstParameters$, () => TrinoParameters$, () => BigQueryParameters$, () => ImpalaParameters$, () => CustomConnectionParameters$, () => WebCrawlerParameters$, () => ConfluenceParameters$, () => QBusinessParameters$]
|
|
12416
12450
|
];
|
|
12417
12451
|
export var GeocodePreferenceValue$ = [4, n0, _GPV,
|
|
12418
12452
|
0,
|
|
@@ -200,6 +200,34 @@ declare const CreateAnalysisCommand_base: {
|
|
|
200
200
|
* },
|
|
201
201
|
* ],
|
|
202
202
|
* },
|
|
203
|
+
* ControlSortConfigurations: [ // ControlSortConfigurationList
|
|
204
|
+
* { // ControlSortConfiguration
|
|
205
|
+
* SelectableValuesSort: { // SelectableValuesSort
|
|
206
|
+
* Direction: "ASC" || "DESC" || "USER_DEFINED_ORDER", // required
|
|
207
|
+
* },
|
|
208
|
+
* ControlColumnSort: { // AggregationSortConfiguration
|
|
209
|
+
* Column: {
|
|
210
|
+
* DataSetIdentifier: "STRING_VALUE", // required
|
|
211
|
+
* ColumnName: "STRING_VALUE", // required
|
|
212
|
+
* },
|
|
213
|
+
* SortDirection: "ASC" || "DESC", // required
|
|
214
|
+
* AggregationFunction: { // AggregationFunction
|
|
215
|
+
* NumericalAggregationFunction: { // NumericalAggregationFunction
|
|
216
|
+
* SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
|
|
217
|
+
* PercentileAggregation: { // PercentileAggregation
|
|
218
|
+
* PercentileValue: Number("double"),
|
|
219
|
+
* },
|
|
220
|
+
* },
|
|
221
|
+
* CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
|
|
222
|
+
* DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
|
|
223
|
+
* AttributeAggregationFunction: { // AttributeAggregationFunction
|
|
224
|
+
* SimpleAttributeAggregation: "UNIQUE_VALUE",
|
|
225
|
+
* ValueForMultipleValues: "STRING_VALUE",
|
|
226
|
+
* },
|
|
227
|
+
* },
|
|
228
|
+
* },
|
|
229
|
+
* },
|
|
230
|
+
* ],
|
|
203
231
|
* },
|
|
204
232
|
* Dropdown: { // ParameterDropDownControl
|
|
205
233
|
* ParameterControlId: "STRING_VALUE", // required
|
|
@@ -253,6 +281,31 @@ declare const CreateAnalysisCommand_base: {
|
|
|
253
281
|
* ],
|
|
254
282
|
* },
|
|
255
283
|
* CommitMode: "AUTO" || "MANUAL",
|
|
284
|
+
* ControlSortConfigurations: [
|
|
285
|
+
* {
|
|
286
|
+
* SelectableValuesSort: {
|
|
287
|
+
* Direction: "ASC" || "DESC" || "USER_DEFINED_ORDER", // required
|
|
288
|
+
* },
|
|
289
|
+
* ControlColumnSort: {
|
|
290
|
+
* Column: "<ColumnIdentifier>", // required
|
|
291
|
+
* SortDirection: "ASC" || "DESC", // required
|
|
292
|
+
* AggregationFunction: {
|
|
293
|
+
* NumericalAggregationFunction: {
|
|
294
|
+
* SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
|
|
295
|
+
* PercentileAggregation: {
|
|
296
|
+
* PercentileValue: Number("double"),
|
|
297
|
+
* },
|
|
298
|
+
* },
|
|
299
|
+
* CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
|
|
300
|
+
* DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
|
|
301
|
+
* AttributeAggregationFunction: {
|
|
302
|
+
* SimpleAttributeAggregation: "UNIQUE_VALUE",
|
|
303
|
+
* ValueForMultipleValues: "STRING_VALUE",
|
|
304
|
+
* },
|
|
305
|
+
* },
|
|
306
|
+
* },
|
|
307
|
+
* },
|
|
308
|
+
* ],
|
|
256
309
|
* },
|
|
257
310
|
* TextField: { // ParameterTextFieldControl
|
|
258
311
|
* ParameterControlId: "STRING_VALUE", // required
|
|
@@ -371,13 +424,35 @@ declare const CreateAnalysisCommand_base: {
|
|
|
371
424
|
* SourceControls: [
|
|
372
425
|
* {
|
|
373
426
|
* SourceSheetControlId: "STRING_VALUE",
|
|
374
|
-
* ColumnToMatch:
|
|
375
|
-
* DataSetIdentifier: "STRING_VALUE", // required
|
|
376
|
-
* ColumnName: "STRING_VALUE", // required
|
|
377
|
-
* },
|
|
427
|
+
* ColumnToMatch: "<ColumnIdentifier>",
|
|
378
428
|
* },
|
|
379
429
|
* ],
|
|
380
430
|
* },
|
|
431
|
+
* ControlSortConfigurations: [
|
|
432
|
+
* {
|
|
433
|
+
* SelectableValuesSort: {
|
|
434
|
+
* Direction: "ASC" || "DESC" || "USER_DEFINED_ORDER", // required
|
|
435
|
+
* },
|
|
436
|
+
* ControlColumnSort: {
|
|
437
|
+
* Column: "<ColumnIdentifier>", // required
|
|
438
|
+
* SortDirection: "ASC" || "DESC", // required
|
|
439
|
+
* AggregationFunction: {
|
|
440
|
+
* NumericalAggregationFunction: {
|
|
441
|
+
* SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
|
|
442
|
+
* PercentileAggregation: {
|
|
443
|
+
* PercentileValue: Number("double"),
|
|
444
|
+
* },
|
|
445
|
+
* },
|
|
446
|
+
* CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
|
|
447
|
+
* DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
|
|
448
|
+
* AttributeAggregationFunction: {
|
|
449
|
+
* SimpleAttributeAggregation: "UNIQUE_VALUE",
|
|
450
|
+
* ValueForMultipleValues: "STRING_VALUE",
|
|
451
|
+
* },
|
|
452
|
+
* },
|
|
453
|
+
* },
|
|
454
|
+
* },
|
|
455
|
+
* ],
|
|
381
456
|
* },
|
|
382
457
|
* Dropdown: { // FilterDropDownControl
|
|
383
458
|
* FilterControlId: "STRING_VALUE", // required
|
|
@@ -405,6 +480,31 @@ declare const CreateAnalysisCommand_base: {
|
|
|
405
480
|
* ],
|
|
406
481
|
* },
|
|
407
482
|
* CommitMode: "AUTO" || "MANUAL",
|
|
483
|
+
* ControlSortConfigurations: [
|
|
484
|
+
* {
|
|
485
|
+
* SelectableValuesSort: {
|
|
486
|
+
* Direction: "ASC" || "DESC" || "USER_DEFINED_ORDER", // required
|
|
487
|
+
* },
|
|
488
|
+
* ControlColumnSort: {
|
|
489
|
+
* Column: "<ColumnIdentifier>", // required
|
|
490
|
+
* SortDirection: "ASC" || "DESC", // required
|
|
491
|
+
* AggregationFunction: {
|
|
492
|
+
* NumericalAggregationFunction: {
|
|
493
|
+
* SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
|
|
494
|
+
* PercentileAggregation: {
|
|
495
|
+
* PercentileValue: Number("double"),
|
|
496
|
+
* },
|
|
497
|
+
* },
|
|
498
|
+
* CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
|
|
499
|
+
* DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
|
|
500
|
+
* AttributeAggregationFunction: {
|
|
501
|
+
* SimpleAttributeAggregation: "UNIQUE_VALUE",
|
|
502
|
+
* ValueForMultipleValues: "STRING_VALUE",
|
|
503
|
+
* },
|
|
504
|
+
* },
|
|
505
|
+
* },
|
|
506
|
+
* },
|
|
507
|
+
* ],
|
|
408
508
|
* },
|
|
409
509
|
* TextField: { // FilterTextFieldControl
|
|
410
510
|
* FilterControlId: "STRING_VALUE", // required
|
|
@@ -676,9 +776,9 @@ declare const CreateAnalysisCommand_base: {
|
|
|
676
776
|
* NumericalMeasureField: { // NumericalMeasureField
|
|
677
777
|
* FieldId: "STRING_VALUE", // required
|
|
678
778
|
* Column: "<ColumnIdentifier>", // required
|
|
679
|
-
* AggregationFunction: {
|
|
779
|
+
* AggregationFunction: {
|
|
680
780
|
* SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
|
|
681
|
-
* PercentileAggregation: {
|
|
781
|
+
* PercentileAggregation: {
|
|
682
782
|
* PercentileValue: Number("double"),
|
|
683
783
|
* },
|
|
684
784
|
* },
|
|
@@ -801,16 +901,11 @@ declare const CreateAnalysisCommand_base: {
|
|
|
801
901
|
* ColumnSort: { // ColumnSort
|
|
802
902
|
* SortBy: "<ColumnIdentifier>", // required
|
|
803
903
|
* Direction: "ASC" || "DESC", // required
|
|
804
|
-
* AggregationFunction: {
|
|
805
|
-
* NumericalAggregationFunction:
|
|
806
|
-
* SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
|
|
807
|
-
* PercentileAggregation: {
|
|
808
|
-
* PercentileValue: Number("double"),
|
|
809
|
-
* },
|
|
810
|
-
* },
|
|
904
|
+
* AggregationFunction: {
|
|
905
|
+
* NumericalAggregationFunction: "<NumericalAggregationFunction>",
|
|
811
906
|
* CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
|
|
812
907
|
* DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
|
|
813
|
-
* AttributeAggregationFunction: {
|
|
908
|
+
* AttributeAggregationFunction: {
|
|
814
909
|
* SimpleAttributeAggregation: "UNIQUE_VALUE",
|
|
815
910
|
* ValueForMultipleValues: "STRING_VALUE",
|
|
816
911
|
* },
|
|
@@ -1057,20 +1152,7 @@ declare const CreateAnalysisCommand_base: {
|
|
|
1057
1152
|
* Column: "<ColumnIdentifier>", // required
|
|
1058
1153
|
* Label: "STRING_VALUE",
|
|
1059
1154
|
* Visibility: "HIDDEN" || "VISIBLE",
|
|
1060
|
-
* Aggregation:
|
|
1061
|
-
* NumericalAggregationFunction: {
|
|
1062
|
-
* SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
|
|
1063
|
-
* PercentileAggregation: {
|
|
1064
|
-
* PercentileValue: Number("double"),
|
|
1065
|
-
* },
|
|
1066
|
-
* },
|
|
1067
|
-
* CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
|
|
1068
|
-
* DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
|
|
1069
|
-
* AttributeAggregationFunction: {
|
|
1070
|
-
* SimpleAttributeAggregation: "UNIQUE_VALUE",
|
|
1071
|
-
* ValueForMultipleValues: "STRING_VALUE",
|
|
1072
|
-
* },
|
|
1073
|
-
* },
|
|
1155
|
+
* Aggregation: "<AggregationFunction>",
|
|
1074
1156
|
* TooltipTarget: "BOTH" || "BAR" || "LINE",
|
|
1075
1157
|
* },
|
|
1076
1158
|
* },
|
|
@@ -1350,12 +1432,7 @@ declare const CreateAnalysisCommand_base: {
|
|
|
1350
1432
|
* NumericalMeasureField: {
|
|
1351
1433
|
* FieldId: "STRING_VALUE", // required
|
|
1352
1434
|
* Column: "<ColumnIdentifier>", // required
|
|
1353
|
-
* AggregationFunction:
|
|
1354
|
-
* SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
|
|
1355
|
-
* PercentileAggregation: {
|
|
1356
|
-
* PercentileValue: Number("double"),
|
|
1357
|
-
* },
|
|
1358
|
-
* },
|
|
1435
|
+
* AggregationFunction: "<NumericalAggregationFunction>",
|
|
1359
1436
|
* FormatConfiguration: "<NumberFormatConfiguration>",
|
|
1360
1437
|
* },
|
|
1361
1438
|
* CategoricalMeasureField: {
|
|
@@ -1390,20 +1467,7 @@ declare const CreateAnalysisCommand_base: {
|
|
|
1390
1467
|
* Column: {
|
|
1391
1468
|
* SortBy: "<ColumnIdentifier>", // required
|
|
1392
1469
|
* Direction: "ASC" || "DESC", // required
|
|
1393
|
-
* AggregationFunction:
|
|
1394
|
-
* NumericalAggregationFunction: {
|
|
1395
|
-
* SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
|
|
1396
|
-
* PercentileAggregation: {
|
|
1397
|
-
* PercentileValue: Number("double"),
|
|
1398
|
-
* },
|
|
1399
|
-
* },
|
|
1400
|
-
* CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
|
|
1401
|
-
* DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
|
|
1402
|
-
* AttributeAggregationFunction: {
|
|
1403
|
-
* SimpleAttributeAggregation: "UNIQUE_VALUE",
|
|
1404
|
-
* ValueForMultipleValues: "STRING_VALUE",
|
|
1405
|
-
* },
|
|
1406
|
-
* },
|
|
1470
|
+
* AggregationFunction: "<AggregationFunction>",
|
|
1407
1471
|
* },
|
|
1408
1472
|
* DataPath: { // DataPathSort
|
|
1409
1473
|
* Direction: "ASC" || "DESC", // required
|
|
@@ -1609,15 +1673,7 @@ declare const CreateAnalysisCommand_base: {
|
|
|
1609
1673
|
* Column: "<ColumnIdentifier>", // required
|
|
1610
1674
|
* Label: "STRING_VALUE",
|
|
1611
1675
|
* Visibility: "HIDDEN" || "VISIBLE",
|
|
1612
|
-
* Aggregation:
|
|
1613
|
-
* NumericalAggregationFunction: "<NumericalAggregationFunction>",
|
|
1614
|
-
* CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
|
|
1615
|
-
* DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
|
|
1616
|
-
* AttributeAggregationFunction: {
|
|
1617
|
-
* SimpleAttributeAggregation: "UNIQUE_VALUE",
|
|
1618
|
-
* ValueForMultipleValues: "STRING_VALUE",
|
|
1619
|
-
* },
|
|
1620
|
-
* },
|
|
1676
|
+
* Aggregation: "<AggregationFunction>",
|
|
1621
1677
|
* TooltipTarget: "BOTH" || "BAR" || "LINE",
|
|
1622
1678
|
* },
|
|
1623
1679
|
* },
|
|
@@ -1857,15 +1913,7 @@ declare const CreateAnalysisCommand_base: {
|
|
|
1857
1913
|
* ColumnSort: {
|
|
1858
1914
|
* SortBy: "<ColumnIdentifier>", // required
|
|
1859
1915
|
* Direction: "ASC" || "DESC", // required
|
|
1860
|
-
* AggregationFunction:
|
|
1861
|
-
* NumericalAggregationFunction: "<NumericalAggregationFunction>",
|
|
1862
|
-
* CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
|
|
1863
|
-
* DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
|
|
1864
|
-
* AttributeAggregationFunction: {
|
|
1865
|
-
* SimpleAttributeAggregation: "UNIQUE_VALUE",
|
|
1866
|
-
* ValueForMultipleValues: "STRING_VALUE",
|
|
1867
|
-
* },
|
|
1868
|
-
* },
|
|
1916
|
+
* AggregationFunction: "<AggregationFunction>",
|
|
1869
1917
|
* },
|
|
1870
1918
|
* },
|
|
1871
1919
|
* ],
|
|
@@ -7084,6 +7132,18 @@ declare const CreateAnalysisCommand_base: {
|
|
|
7084
7132
|
* "STRING_VALUE",
|
|
7085
7133
|
* ],
|
|
7086
7134
|
* },
|
|
7135
|
+
* ControlSortConfigurations: [
|
|
7136
|
+
* {
|
|
7137
|
+
* SelectableValuesSort: {
|
|
7138
|
+
* Direction: "ASC" || "DESC" || "USER_DEFINED_ORDER", // required
|
|
7139
|
+
* },
|
|
7140
|
+
* ControlColumnSort: {
|
|
7141
|
+
* Column: "<ColumnIdentifier>", // required
|
|
7142
|
+
* SortDirection: "ASC" || "DESC", // required
|
|
7143
|
+
* AggregationFunction: "<AggregationFunction>",
|
|
7144
|
+
* },
|
|
7145
|
+
* },
|
|
7146
|
+
* ],
|
|
7087
7147
|
* },
|
|
7088
7148
|
* DefaultDropdownOptions: { // DefaultFilterDropDownControlOptions
|
|
7089
7149
|
* DisplayOptions: {
|
|
@@ -7096,6 +7156,7 @@ declare const CreateAnalysisCommand_base: {
|
|
|
7096
7156
|
* Values: "<ParameterSelectableValueList>",
|
|
7097
7157
|
* },
|
|
7098
7158
|
* CommitMode: "AUTO" || "MANUAL",
|
|
7159
|
+
* ControlSortConfigurations: "<ControlSortConfigurationList>",
|
|
7099
7160
|
* },
|
|
7100
7161
|
* DefaultTextFieldOptions: { // DefaultTextFieldControlOptions
|
|
7101
7162
|
* DisplayOptions: {
|
|
@@ -7178,6 +7239,7 @@ declare const CreateAnalysisCommand_base: {
|
|
|
7178
7239
|
* SelectableValues: {
|
|
7179
7240
|
* Values: "<ParameterSelectableValueList>",
|
|
7180
7241
|
* },
|
|
7242
|
+
* ControlSortConfigurations: "<ControlSortConfigurationList>",
|
|
7181
7243
|
* },
|
|
7182
7244
|
* DefaultDropdownOptions: {
|
|
7183
7245
|
* DisplayOptions: {
|
|
@@ -7188,6 +7250,7 @@ declare const CreateAnalysisCommand_base: {
|
|
|
7188
7250
|
* Type: "MULTI_SELECT" || "SINGLE_SELECT",
|
|
7189
7251
|
* SelectableValues: "<FilterSelectableValues>",
|
|
7190
7252
|
* CommitMode: "AUTO" || "MANUAL",
|
|
7253
|
+
* ControlSortConfigurations: "<ControlSortConfigurationList>",
|
|
7191
7254
|
* },
|
|
7192
7255
|
* DefaultTextFieldOptions: {
|
|
7193
7256
|
* DisplayOptions: {
|
|
@@ -7259,6 +7322,7 @@ declare const CreateAnalysisCommand_base: {
|
|
|
7259
7322
|
* },
|
|
7260
7323
|
* Type: "MULTI_SELECT" || "SINGLE_SELECT",
|
|
7261
7324
|
* SelectableValues: "<FilterSelectableValues>",
|
|
7325
|
+
* ControlSortConfigurations: "<ControlSortConfigurationList>",
|
|
7262
7326
|
* },
|
|
7263
7327
|
* DefaultDropdownOptions: {
|
|
7264
7328
|
* DisplayOptions: {
|
|
@@ -7269,6 +7333,7 @@ declare const CreateAnalysisCommand_base: {
|
|
|
7269
7333
|
* Type: "MULTI_SELECT" || "SINGLE_SELECT",
|
|
7270
7334
|
* SelectableValues: "<FilterSelectableValues>",
|
|
7271
7335
|
* CommitMode: "AUTO" || "MANUAL",
|
|
7336
|
+
* ControlSortConfigurations: "<ControlSortConfigurationList>",
|
|
7272
7337
|
* },
|
|
7273
7338
|
* DefaultTextFieldOptions: {
|
|
7274
7339
|
* DisplayOptions: {
|
|
@@ -7328,12 +7393,14 @@ declare const CreateAnalysisCommand_base: {
|
|
|
7328
7393
|
* DisplayOptions: "<ListControlDisplayOptions>",
|
|
7329
7394
|
* Type: "MULTI_SELECT" || "SINGLE_SELECT",
|
|
7330
7395
|
* SelectableValues: "<FilterSelectableValues>",
|
|
7396
|
+
* ControlSortConfigurations: "<ControlSortConfigurationList>",
|
|
7331
7397
|
* },
|
|
7332
7398
|
* DefaultDropdownOptions: {
|
|
7333
7399
|
* DisplayOptions: "<DropDownControlDisplayOptions>",
|
|
7334
7400
|
* Type: "MULTI_SELECT" || "SINGLE_SELECT",
|
|
7335
7401
|
* SelectableValues: "<FilterSelectableValues>",
|
|
7336
7402
|
* CommitMode: "AUTO" || "MANUAL",
|
|
7403
|
+
* ControlSortConfigurations: "<ControlSortConfigurationList>",
|
|
7337
7404
|
* },
|
|
7338
7405
|
* DefaultTextFieldOptions: {
|
|
7339
7406
|
* DisplayOptions: "<TextFieldControlDisplayOptions>",
|
|
@@ -7394,12 +7461,14 @@ declare const CreateAnalysisCommand_base: {
|
|
|
7394
7461
|
* DisplayOptions: "<ListControlDisplayOptions>",
|
|
7395
7462
|
* Type: "MULTI_SELECT" || "SINGLE_SELECT",
|
|
7396
7463
|
* SelectableValues: "<FilterSelectableValues>",
|
|
7464
|
+
* ControlSortConfigurations: "<ControlSortConfigurationList>",
|
|
7397
7465
|
* },
|
|
7398
7466
|
* DefaultDropdownOptions: {
|
|
7399
7467
|
* DisplayOptions: "<DropDownControlDisplayOptions>",
|
|
7400
7468
|
* Type: "MULTI_SELECT" || "SINGLE_SELECT",
|
|
7401
7469
|
* SelectableValues: "<FilterSelectableValues>",
|
|
7402
7470
|
* CommitMode: "AUTO" || "MANUAL",
|
|
7471
|
+
* ControlSortConfigurations: "<ControlSortConfigurationList>",
|
|
7403
7472
|
* },
|
|
7404
7473
|
* DefaultTextFieldOptions: {
|
|
7405
7474
|
* DisplayOptions: "<TextFieldControlDisplayOptions>",
|
|
@@ -7447,11 +7516,7 @@ declare const CreateAnalysisCommand_base: {
|
|
|
7447
7516
|
* Column: "<ColumnIdentifier>", // required
|
|
7448
7517
|
* Limit: Number("int"),
|
|
7449
7518
|
* AggregationSortConfigurations: [ // AggregationSortConfigurationList // required
|
|
7450
|
-
*
|
|
7451
|
-
* Column: "<ColumnIdentifier>", // required
|
|
7452
|
-
* SortDirection: "ASC" || "DESC", // required
|
|
7453
|
-
* AggregationFunction: "<AggregationFunction>",
|
|
7454
|
-
* },
|
|
7519
|
+
* "<AggregationSortConfiguration>",
|
|
7455
7520
|
* ],
|
|
7456
7521
|
* TimeGranularity: "YEAR" || "QUARTER" || "MONTH" || "WEEK" || "DAY" || "HOUR" || "MINUTE" || "SECOND" || "MILLISECOND",
|
|
7457
7522
|
* ParameterName: "STRING_VALUE",
|