Skip to content

Commit 76e011f

Browse files
author
awstools
committed
feat(client-quicksight): Excel support in Snapshot Export APIs. Removed Required trait for some insight Computations. Namespace-shared Folders support. Global Filters support. Table pin Column support.
1 parent 5006d64 commit 76e011f

32 files changed

+1190
-546
lines changed

clients/client-quicksight/src/commands/CreateAnalysisCommand.ts

Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -926,6 +926,11 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
926926
* Order: [ // FieldOrderList
927927
* "STRING_VALUE",
928928
* ],
929+
* PinnedFieldOptions: { // TablePinnedFieldOptions
930+
* PinnedLeftFields: [ // TableFieldOrderList
931+
* "STRING_VALUE",
932+
* ],
933+
* },
929934
* },
930935
* PaginatedReportOptions: { // TablePaginatedReportOptions
931936
* VerticalOverflowVisibility: "HIDDEN" || "VISIBLE",
@@ -3824,16 +3829,16 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
38243829
* TopBottomRanked: { // TopBottomRankedComputation
38253830
* ComputationId: "STRING_VALUE", // required
38263831
* Name: "STRING_VALUE",
3827-
* Category: "<DimensionField>", // required
3832+
* Category: "<DimensionField>",
38283833
* Value: "<MeasureField>",
38293834
* ResultSize: Number("int"),
38303835
* Type: "TOP" || "BOTTOM", // required
38313836
* },
38323837
* TopBottomMovers: { // TopBottomMoversComputation
38333838
* ComputationId: "STRING_VALUE", // required
38343839
* Name: "STRING_VALUE",
3835-
* Time: "<DimensionField>", // required
3836-
* Category: "<DimensionField>", // required
3840+
* Time: "<DimensionField>",
3841+
* Category: "<DimensionField>",
38373842
* Value: "<MeasureField>",
38383843
* MoverSize: Number("int"),
38393844
* SortOrder: "PERCENT_DIFFERENCE" || "ABSOLUTE_DIFFERENCE",
@@ -3842,51 +3847,51 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
38423847
* TotalAggregation: { // TotalAggregationComputation
38433848
* ComputationId: "STRING_VALUE", // required
38443849
* Name: "STRING_VALUE",
3845-
* Value: "<MeasureField>", // required
3850+
* Value: "<MeasureField>",
38463851
* },
38473852
* MaximumMinimum: { // MaximumMinimumComputation
38483853
* ComputationId: "STRING_VALUE", // required
38493854
* Name: "STRING_VALUE",
3850-
* Time: "<DimensionField>", // required
3855+
* Time: "<DimensionField>",
38513856
* Value: "<MeasureField>",
38523857
* Type: "MAXIMUM" || "MINIMUM", // required
38533858
* },
38543859
* MetricComparison: { // MetricComparisonComputation
38553860
* ComputationId: "STRING_VALUE", // required
38563861
* Name: "STRING_VALUE",
3857-
* Time: "<DimensionField>", // required
3858-
* FromValue: "<MeasureField>", // required
3859-
* TargetValue: "<MeasureField>", // required
3862+
* Time: "<DimensionField>",
3863+
* FromValue: "<MeasureField>",
3864+
* TargetValue: "<MeasureField>",
38603865
* },
38613866
* PeriodOverPeriod: { // PeriodOverPeriodComputation
38623867
* ComputationId: "STRING_VALUE", // required
38633868
* Name: "STRING_VALUE",
3864-
* Time: "<DimensionField>", // required
3869+
* Time: "<DimensionField>",
38653870
* Value: "<MeasureField>",
38663871
* },
38673872
* PeriodToDate: { // PeriodToDateComputation
38683873
* ComputationId: "STRING_VALUE", // required
38693874
* Name: "STRING_VALUE",
3870-
* Time: "<DimensionField>", // required
3875+
* Time: "<DimensionField>",
38713876
* Value: "<MeasureField>",
38723877
* PeriodTimeGranularity: "YEAR" || "QUARTER" || "MONTH" || "WEEK" || "DAY" || "HOUR" || "MINUTE" || "SECOND" || "MILLISECOND",
38733878
* },
38743879
* GrowthRate: { // GrowthRateComputation
38753880
* ComputationId: "STRING_VALUE", // required
38763881
* Name: "STRING_VALUE",
3877-
* Time: "<DimensionField>", // required
3882+
* Time: "<DimensionField>",
38783883
* Value: "<MeasureField>",
38793884
* PeriodSize: Number("int"),
38803885
* },
38813886
* UniqueValues: { // UniqueValuesComputation
38823887
* ComputationId: "STRING_VALUE", // required
38833888
* Name: "STRING_VALUE",
3884-
* Category: "<DimensionField>", // required
3889+
* Category: "<DimensionField>",
38853890
* },
38863891
* Forecast: { // ForecastComputation
38873892
* ComputationId: "STRING_VALUE", // required
38883893
* Name: "STRING_VALUE",
3889-
* Time: "<DimensionField>", // required
3894+
* Time: "<DimensionField>",
38903895
* Value: "<MeasureField>",
38913896
* PeriodsForward: Number("int"),
38923897
* PeriodsBackward: Number("int"),
@@ -4441,6 +4446,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
44414446
* },
44424447
* ],
44434448
* },
4449+
* AllSheets: {},
44444450
* },
44454451
* Status: "ENABLED" || "DISABLED",
44464452
* CrossDataset: "ALL_DATASETS" || "SINGLE_DATASET", // required

clients/client-quicksight/src/commands/CreateDashboardCommand.ts

Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -972,6 +972,11 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
972972
* Order: [ // FieldOrderList
973973
* "STRING_VALUE",
974974
* ],
975+
* PinnedFieldOptions: { // TablePinnedFieldOptions
976+
* PinnedLeftFields: [ // TableFieldOrderList
977+
* "STRING_VALUE",
978+
* ],
979+
* },
975980
* },
976981
* PaginatedReportOptions: { // TablePaginatedReportOptions
977982
* VerticalOverflowVisibility: "HIDDEN" || "VISIBLE",
@@ -3870,16 +3875,16 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
38703875
* TopBottomRanked: { // TopBottomRankedComputation
38713876
* ComputationId: "STRING_VALUE", // required
38723877
* Name: "STRING_VALUE",
3873-
* Category: "<DimensionField>", // required
3878+
* Category: "<DimensionField>",
38743879
* Value: "<MeasureField>",
38753880
* ResultSize: Number("int"),
38763881
* Type: "TOP" || "BOTTOM", // required
38773882
* },
38783883
* TopBottomMovers: { // TopBottomMoversComputation
38793884
* ComputationId: "STRING_VALUE", // required
38803885
* Name: "STRING_VALUE",
3881-
* Time: "<DimensionField>", // required
3882-
* Category: "<DimensionField>", // required
3886+
* Time: "<DimensionField>",
3887+
* Category: "<DimensionField>",
38833888
* Value: "<MeasureField>",
38843889
* MoverSize: Number("int"),
38853890
* SortOrder: "PERCENT_DIFFERENCE" || "ABSOLUTE_DIFFERENCE",
@@ -3888,51 +3893,51 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
38883893
* TotalAggregation: { // TotalAggregationComputation
38893894
* ComputationId: "STRING_VALUE", // required
38903895
* Name: "STRING_VALUE",
3891-
* Value: "<MeasureField>", // required
3896+
* Value: "<MeasureField>",
38923897
* },
38933898
* MaximumMinimum: { // MaximumMinimumComputation
38943899
* ComputationId: "STRING_VALUE", // required
38953900
* Name: "STRING_VALUE",
3896-
* Time: "<DimensionField>", // required
3901+
* Time: "<DimensionField>",
38973902
* Value: "<MeasureField>",
38983903
* Type: "MAXIMUM" || "MINIMUM", // required
38993904
* },
39003905
* MetricComparison: { // MetricComparisonComputation
39013906
* ComputationId: "STRING_VALUE", // required
39023907
* Name: "STRING_VALUE",
3903-
* Time: "<DimensionField>", // required
3904-
* FromValue: "<MeasureField>", // required
3905-
* TargetValue: "<MeasureField>", // required
3908+
* Time: "<DimensionField>",
3909+
* FromValue: "<MeasureField>",
3910+
* TargetValue: "<MeasureField>",
39063911
* },
39073912
* PeriodOverPeriod: { // PeriodOverPeriodComputation
39083913
* ComputationId: "STRING_VALUE", // required
39093914
* Name: "STRING_VALUE",
3910-
* Time: "<DimensionField>", // required
3915+
* Time: "<DimensionField>",
39113916
* Value: "<MeasureField>",
39123917
* },
39133918
* PeriodToDate: { // PeriodToDateComputation
39143919
* ComputationId: "STRING_VALUE", // required
39153920
* Name: "STRING_VALUE",
3916-
* Time: "<DimensionField>", // required
3921+
* Time: "<DimensionField>",
39173922
* Value: "<MeasureField>",
39183923
* PeriodTimeGranularity: "YEAR" || "QUARTER" || "MONTH" || "WEEK" || "DAY" || "HOUR" || "MINUTE" || "SECOND" || "MILLISECOND",
39193924
* },
39203925
* GrowthRate: { // GrowthRateComputation
39213926
* ComputationId: "STRING_VALUE", // required
39223927
* Name: "STRING_VALUE",
3923-
* Time: "<DimensionField>", // required
3928+
* Time: "<DimensionField>",
39243929
* Value: "<MeasureField>",
39253930
* PeriodSize: Number("int"),
39263931
* },
39273932
* UniqueValues: { // UniqueValuesComputation
39283933
* ComputationId: "STRING_VALUE", // required
39293934
* Name: "STRING_VALUE",
3930-
* Category: "<DimensionField>", // required
3935+
* Category: "<DimensionField>",
39313936
* },
39323937
* Forecast: { // ForecastComputation
39333938
* ComputationId: "STRING_VALUE", // required
39343939
* Name: "STRING_VALUE",
3935-
* Time: "<DimensionField>", // required
3940+
* Time: "<DimensionField>",
39363941
* Value: "<MeasureField>",
39373942
* PeriodsForward: Number("int"),
39383943
* PeriodsBackward: Number("int"),
@@ -4487,6 +4492,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
44874492
* },
44884493
* ],
44894494
* },
4495+
* AllSheets: {},
44904496
* },
44914497
* Status: "ENABLED" || "DISABLED",
44924498
* CrossDataset: "ALL_DATASETS" || "SINGLE_DATASET", // required

clients/client-quicksight/src/commands/CreateFolderCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ export interface CreateFolderCommandOutput extends CreateFolderResponse, __Metad
6363
* Value: "STRING_VALUE", // required
6464
* },
6565
* ],
66+
* SharingModel: "ACCOUNT" || "NAMESPACE",
6667
* };
6768
* const command = new CreateFolderCommand(input);
6869
* const response = await client.send(command);

clients/client-quicksight/src/commands/CreateTemplateCommand.ts

Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -920,6 +920,11 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
920920
* Order: [ // FieldOrderList
921921
* "STRING_VALUE",
922922
* ],
923+
* PinnedFieldOptions: { // TablePinnedFieldOptions
924+
* PinnedLeftFields: [ // TableFieldOrderList
925+
* "STRING_VALUE",
926+
* ],
927+
* },
923928
* },
924929
* PaginatedReportOptions: { // TablePaginatedReportOptions
925930
* VerticalOverflowVisibility: "HIDDEN" || "VISIBLE",
@@ -3818,16 +3823,16 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
38183823
* TopBottomRanked: { // TopBottomRankedComputation
38193824
* ComputationId: "STRING_VALUE", // required
38203825
* Name: "STRING_VALUE",
3821-
* Category: "<DimensionField>", // required
3826+
* Category: "<DimensionField>",
38223827
* Value: "<MeasureField>",
38233828
* ResultSize: Number("int"),
38243829
* Type: "TOP" || "BOTTOM", // required
38253830
* },
38263831
* TopBottomMovers: { // TopBottomMoversComputation
38273832
* ComputationId: "STRING_VALUE", // required
38283833
* Name: "STRING_VALUE",
3829-
* Time: "<DimensionField>", // required
3830-
* Category: "<DimensionField>", // required
3834+
* Time: "<DimensionField>",
3835+
* Category: "<DimensionField>",
38313836
* Value: "<MeasureField>",
38323837
* MoverSize: Number("int"),
38333838
* SortOrder: "PERCENT_DIFFERENCE" || "ABSOLUTE_DIFFERENCE",
@@ -3836,51 +3841,51 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
38363841
* TotalAggregation: { // TotalAggregationComputation
38373842
* ComputationId: "STRING_VALUE", // required
38383843
* Name: "STRING_VALUE",
3839-
* Value: "<MeasureField>", // required
3844+
* Value: "<MeasureField>",
38403845
* },
38413846
* MaximumMinimum: { // MaximumMinimumComputation
38423847
* ComputationId: "STRING_VALUE", // required
38433848
* Name: "STRING_VALUE",
3844-
* Time: "<DimensionField>", // required
3849+
* Time: "<DimensionField>",
38453850
* Value: "<MeasureField>",
38463851
* Type: "MAXIMUM" || "MINIMUM", // required
38473852
* },
38483853
* MetricComparison: { // MetricComparisonComputation
38493854
* ComputationId: "STRING_VALUE", // required
38503855
* Name: "STRING_VALUE",
3851-
* Time: "<DimensionField>", // required
3852-
* FromValue: "<MeasureField>", // required
3853-
* TargetValue: "<MeasureField>", // required
3856+
* Time: "<DimensionField>",
3857+
* FromValue: "<MeasureField>",
3858+
* TargetValue: "<MeasureField>",
38543859
* },
38553860
* PeriodOverPeriod: { // PeriodOverPeriodComputation
38563861
* ComputationId: "STRING_VALUE", // required
38573862
* Name: "STRING_VALUE",
3858-
* Time: "<DimensionField>", // required
3863+
* Time: "<DimensionField>",
38593864
* Value: "<MeasureField>",
38603865
* },
38613866
* PeriodToDate: { // PeriodToDateComputation
38623867
* ComputationId: "STRING_VALUE", // required
38633868
* Name: "STRING_VALUE",
3864-
* Time: "<DimensionField>", // required
3869+
* Time: "<DimensionField>",
38653870
* Value: "<MeasureField>",
38663871
* PeriodTimeGranularity: "YEAR" || "QUARTER" || "MONTH" || "WEEK" || "DAY" || "HOUR" || "MINUTE" || "SECOND" || "MILLISECOND",
38673872
* },
38683873
* GrowthRate: { // GrowthRateComputation
38693874
* ComputationId: "STRING_VALUE", // required
38703875
* Name: "STRING_VALUE",
3871-
* Time: "<DimensionField>", // required
3876+
* Time: "<DimensionField>",
38723877
* Value: "<MeasureField>",
38733878
* PeriodSize: Number("int"),
38743879
* },
38753880
* UniqueValues: { // UniqueValuesComputation
38763881
* ComputationId: "STRING_VALUE", // required
38773882
* Name: "STRING_VALUE",
3878-
* Category: "<DimensionField>", // required
3883+
* Category: "<DimensionField>",
38793884
* },
38803885
* Forecast: { // ForecastComputation
38813886
* ComputationId: "STRING_VALUE", // required
38823887
* Name: "STRING_VALUE",
3883-
* Time: "<DimensionField>", // required
3888+
* Time: "<DimensionField>",
38843889
* Value: "<MeasureField>",
38853890
* PeriodsForward: Number("int"),
38863891
* PeriodsBackward: Number("int"),
@@ -4435,6 +4440,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
44354440
* },
44364441
* ],
44374442
* },
4443+
* AllSheets: {},
44384444
* },
44394445
* Status: "ENABLED" || "DISABLED",
44404446
* CrossDataset: "ALL_DATASETS" || "SINGLE_DATASET", // required

0 commit comments

Comments
 (0)