Skip to content

Commit e89e93c

Browse files
author
awstools
committed
feat(client-quicksight): QuickSight support for pivot table field collapse state, radar chart range scale and multiple scope options in conditional formatting.
1 parent d678417 commit e89e93c

27 files changed

+708
-293
lines changed

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

+15
Original file line numberDiff line numberDiff line change
@@ -1353,6 +1353,15 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
13531353
* Width: "STRING_VALUE",
13541354
* },
13551355
* ],
1356+
* CollapseStateOptions: [ // PivotTableFieldCollapseStateOptionList
1357+
* { // PivotTableFieldCollapseStateOption
1358+
* Target: { // PivotTableFieldCollapseStateTarget
1359+
* FieldId: "STRING_VALUE",
1360+
* FieldDataPathValues: "<DataPathValueList>",
1361+
* },
1362+
* State: "COLLAPSED" || "EXPANDED",
1363+
* },
1364+
* ],
13561365
* },
13571366
* PaginatedReportOptions: { // PivotTablePaginatedReportOptions
13581367
* VerticalOverflowVisibility: "HIDDEN" || "VISIBLE",
@@ -1405,6 +1414,11 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
14051414
* Scope: { // PivotTableConditionalFormattingScope
14061415
* Role: "FIELD" || "FIELD_TOTAL" || "GRAND_TOTAL",
14071416
* },
1417+
* Scopes: [ // PivotTableConditionalFormattingScopeList
1418+
* {
1419+
* Role: "FIELD" || "FIELD_TOTAL" || "GRAND_TOTAL",
1420+
* },
1421+
* ],
14081422
* },
14091423
* },
14101424
* ],
@@ -3882,6 +3896,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
38823896
* ColorAxis: "<AxisDisplayOptions>",
38833897
* ColorLabelOptions: "<ChartAxisLabelOptions>",
38843898
* Legend: "<LegendOptions>",
3899+
* AxesRangeScale: "AUTO" || "INDEPENDENT" || "SHARED",
38853900
* },
38863901
* Actions: "<VisualCustomActionList>",
38873902
* ColumnHierarchies: "<ColumnHierarchyList>",

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

+15
Original file line numberDiff line numberDiff line change
@@ -1399,6 +1399,15 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
13991399
* Width: "STRING_VALUE",
14001400
* },
14011401
* ],
1402+
* CollapseStateOptions: [ // PivotTableFieldCollapseStateOptionList
1403+
* { // PivotTableFieldCollapseStateOption
1404+
* Target: { // PivotTableFieldCollapseStateTarget
1405+
* FieldId: "STRING_VALUE",
1406+
* FieldDataPathValues: "<DataPathValueList>",
1407+
* },
1408+
* State: "COLLAPSED" || "EXPANDED",
1409+
* },
1410+
* ],
14021411
* },
14031412
* PaginatedReportOptions: { // PivotTablePaginatedReportOptions
14041413
* VerticalOverflowVisibility: "HIDDEN" || "VISIBLE",
@@ -1451,6 +1460,11 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
14511460
* Scope: { // PivotTableConditionalFormattingScope
14521461
* Role: "FIELD" || "FIELD_TOTAL" || "GRAND_TOTAL",
14531462
* },
1463+
* Scopes: [ // PivotTableConditionalFormattingScopeList
1464+
* {
1465+
* Role: "FIELD" || "FIELD_TOTAL" || "GRAND_TOTAL",
1466+
* },
1467+
* ],
14541468
* },
14551469
* },
14561470
* ],
@@ -3928,6 +3942,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
39283942
* ColorAxis: "<AxisDisplayOptions>",
39293943
* ColorLabelOptions: "<ChartAxisLabelOptions>",
39303944
* Legend: "<LegendOptions>",
3945+
* AxesRangeScale: "AUTO" || "INDEPENDENT" || "SHARED",
39313946
* },
39323947
* Actions: "<VisualCustomActionList>",
39333948
* ColumnHierarchies: "<ColumnHierarchyList>",

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

+15
Original file line numberDiff line numberDiff line change
@@ -1347,6 +1347,15 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
13471347
* Width: "STRING_VALUE",
13481348
* },
13491349
* ],
1350+
* CollapseStateOptions: [ // PivotTableFieldCollapseStateOptionList
1351+
* { // PivotTableFieldCollapseStateOption
1352+
* Target: { // PivotTableFieldCollapseStateTarget
1353+
* FieldId: "STRING_VALUE",
1354+
* FieldDataPathValues: "<DataPathValueList>",
1355+
* },
1356+
* State: "COLLAPSED" || "EXPANDED",
1357+
* },
1358+
* ],
13501359
* },
13511360
* PaginatedReportOptions: { // PivotTablePaginatedReportOptions
13521361
* VerticalOverflowVisibility: "HIDDEN" || "VISIBLE",
@@ -1399,6 +1408,11 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
13991408
* Scope: { // PivotTableConditionalFormattingScope
14001409
* Role: "FIELD" || "FIELD_TOTAL" || "GRAND_TOTAL",
14011410
* },
1411+
* Scopes: [ // PivotTableConditionalFormattingScopeList
1412+
* {
1413+
* Role: "FIELD" || "FIELD_TOTAL" || "GRAND_TOTAL",
1414+
* },
1415+
* ],
14021416
* },
14031417
* },
14041418
* ],
@@ -3876,6 +3890,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
38763890
* ColorAxis: "<AxisDisplayOptions>",
38773891
* ColorLabelOptions: "<ChartAxisLabelOptions>",
38783892
* Legend: "<LegendOptions>",
3893+
* AxesRangeScale: "AUTO" || "INDEPENDENT" || "SHARED",
38793894
* },
38803895
* Actions: "<VisualCustomActionList>",
38813896
* ColumnHierarchies: "<ColumnHierarchyList>",

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

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ import {
1313
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
1414
import { SerdeContext as __SerdeContext } from "@smithy/types";
1515

16-
import { DeleteGroupMembershipRequest, DeleteGroupMembershipResponse } from "../models/models_2";
16+
import { DeleteGroupMembershipRequest } from "../models/models_2";
17+
import { DeleteGroupMembershipResponse } from "../models/models_3";
1718
import { de_DeleteGroupMembershipCommand, se_DeleteGroupMembershipCommand } from "../protocols/Aws_restJson1";
1819
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
1920

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
1414
import { SerdeContext as __SerdeContext } from "@smithy/types";
1515

16-
import { DeleteIAMPolicyAssignmentRequest, DeleteIAMPolicyAssignmentResponse } from "../models/models_2";
16+
import { DeleteIAMPolicyAssignmentRequest, DeleteIAMPolicyAssignmentResponse } from "../models/models_3";
1717
import { de_DeleteIAMPolicyAssignmentCommand, se_DeleteIAMPolicyAssignmentCommand } from "../protocols/Aws_restJson1";
1818
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
1919

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

+1-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ import {
1313
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
1414
import { SerdeContext as __SerdeContext } from "@smithy/types";
1515

16-
import { DeleteNamespaceRequest } from "../models/models_2";
17-
import { DeleteNamespaceResponse } from "../models/models_3";
16+
import { DeleteNamespaceRequest, DeleteNamespaceResponse } from "../models/models_3";
1817
import { de_DeleteNamespaceCommand, se_DeleteNamespaceCommand } from "../protocols/Aws_restJson1";
1918
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
2019

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

+15
Original file line numberDiff line numberDiff line change
@@ -1319,6 +1319,15 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
13191319
* // Width: "STRING_VALUE",
13201320
* // },
13211321
* // ],
1322+
* // CollapseStateOptions: [ // PivotTableFieldCollapseStateOptionList
1323+
* // { // PivotTableFieldCollapseStateOption
1324+
* // Target: { // PivotTableFieldCollapseStateTarget
1325+
* // FieldId: "STRING_VALUE",
1326+
* // FieldDataPathValues: "<DataPathValueList>",
1327+
* // },
1328+
* // State: "COLLAPSED" || "EXPANDED",
1329+
* // },
1330+
* // ],
13221331
* // },
13231332
* // PaginatedReportOptions: { // PivotTablePaginatedReportOptions
13241333
* // VerticalOverflowVisibility: "HIDDEN" || "VISIBLE",
@@ -1371,6 +1380,11 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
13711380
* // Scope: { // PivotTableConditionalFormattingScope
13721381
* // Role: "FIELD" || "FIELD_TOTAL" || "GRAND_TOTAL",
13731382
* // },
1383+
* // Scopes: [ // PivotTableConditionalFormattingScopeList
1384+
* // {
1385+
* // Role: "FIELD" || "FIELD_TOTAL" || "GRAND_TOTAL",
1386+
* // },
1387+
* // ],
13741388
* // },
13751389
* // },
13761390
* // ],
@@ -3848,6 +3862,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
38483862
* // ColorAxis: "<AxisDisplayOptions>",
38493863
* // ColorLabelOptions: "<ChartAxisLabelOptions>",
38503864
* // Legend: "<LegendOptions>",
3865+
* // AxesRangeScale: "AUTO" || "INDEPENDENT" || "SHARED",
38513866
* // },
38523867
* // Actions: "<VisualCustomActionList>",
38533868
* // ColumnHierarchies: "<ColumnHierarchyList>",

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

+4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ import {
2020
} from "../protocols/Aws_restJson1";
2121
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
2222

23+
/**
24+
* @public
25+
*/
26+
export { __MetadataBearer, $Command };
2327
/**
2428
* @public
2529
*

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

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ import {
2424
} from "../protocols/Aws_restJson1";
2525
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
2626

27+
/**
28+
* @public
29+
*/
30+
export { __MetadataBearer, $Command };
2731
/**
2832
* @public
2933
*

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

+15
Original file line numberDiff line numberDiff line change
@@ -1326,6 +1326,15 @@ export interface DescribeDashboardDefinitionCommandOutput
13261326
* // Width: "STRING_VALUE",
13271327
* // },
13281328
* // ],
1329+
* // CollapseStateOptions: [ // PivotTableFieldCollapseStateOptionList
1330+
* // { // PivotTableFieldCollapseStateOption
1331+
* // Target: { // PivotTableFieldCollapseStateTarget
1332+
* // FieldId: "STRING_VALUE",
1333+
* // FieldDataPathValues: "<DataPathValueList>",
1334+
* // },
1335+
* // State: "COLLAPSED" || "EXPANDED",
1336+
* // },
1337+
* // ],
13291338
* // },
13301339
* // PaginatedReportOptions: { // PivotTablePaginatedReportOptions
13311340
* // VerticalOverflowVisibility: "HIDDEN" || "VISIBLE",
@@ -1378,6 +1387,11 @@ export interface DescribeDashboardDefinitionCommandOutput
13781387
* // Scope: { // PivotTableConditionalFormattingScope
13791388
* // Role: "FIELD" || "FIELD_TOTAL" || "GRAND_TOTAL",
13801389
* // },
1390+
* // Scopes: [ // PivotTableConditionalFormattingScopeList
1391+
* // {
1392+
* // Role: "FIELD" || "FIELD_TOTAL" || "GRAND_TOTAL",
1393+
* // },
1394+
* // ],
13811395
* // },
13821396
* // },
13831397
* // ],
@@ -3855,6 +3869,7 @@ export interface DescribeDashboardDefinitionCommandOutput
38553869
* // ColorAxis: "<AxisDisplayOptions>",
38563870
* // ColorLabelOptions: "<ChartAxisLabelOptions>",
38573871
* // Legend: "<LegendOptions>",
3872+
* // AxesRangeScale: "AUTO" || "INDEPENDENT" || "SHARED",
38583873
* // },
38593874
* // Actions: "<VisualCustomActionList>",
38603875
* // ColumnHierarchies: "<ColumnHierarchyList>",

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

+15
Original file line numberDiff line numberDiff line change
@@ -1339,6 +1339,15 @@ export interface DescribeTemplateDefinitionCommandOutput extends DescribeTemplat
13391339
* // Width: "STRING_VALUE",
13401340
* // },
13411341
* // ],
1342+
* // CollapseStateOptions: [ // PivotTableFieldCollapseStateOptionList
1343+
* // { // PivotTableFieldCollapseStateOption
1344+
* // Target: { // PivotTableFieldCollapseStateTarget
1345+
* // FieldId: "STRING_VALUE",
1346+
* // FieldDataPathValues: "<DataPathValueList>",
1347+
* // },
1348+
* // State: "COLLAPSED" || "EXPANDED",
1349+
* // },
1350+
* // ],
13421351
* // },
13431352
* // PaginatedReportOptions: { // PivotTablePaginatedReportOptions
13441353
* // VerticalOverflowVisibility: "HIDDEN" || "VISIBLE",
@@ -1391,6 +1400,11 @@ export interface DescribeTemplateDefinitionCommandOutput extends DescribeTemplat
13911400
* // Scope: { // PivotTableConditionalFormattingScope
13921401
* // Role: "FIELD" || "FIELD_TOTAL" || "GRAND_TOTAL",
13931402
* // },
1403+
* // Scopes: [ // PivotTableConditionalFormattingScopeList
1404+
* // {
1405+
* // Role: "FIELD" || "FIELD_TOTAL" || "GRAND_TOTAL",
1406+
* // },
1407+
* // ],
13941408
* // },
13951409
* // },
13961410
* // ],
@@ -3868,6 +3882,7 @@ export interface DescribeTemplateDefinitionCommandOutput extends DescribeTemplat
38683882
* // ColorAxis: "<AxisDisplayOptions>",
38693883
* // ColorLabelOptions: "<ChartAxisLabelOptions>",
38703884
* // Legend: "<LegendOptions>",
3885+
* // AxesRangeScale: "AUTO" || "INDEPENDENT" || "SHARED",
38713886
* // },
38723887
* // Actions: "<VisualCustomActionList>",
38733888
* // ColumnHierarchies: "<ColumnHierarchyList>",

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

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ import { ListAssetBundleExportJobsRequest, ListAssetBundleExportJobsResponse } f
1717
import { de_ListAssetBundleExportJobsCommand, se_ListAssetBundleExportJobsCommand } from "../protocols/Aws_restJson1";
1818
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
1919

20+
/**
21+
* @public
22+
*/
23+
export { __MetadataBearer, $Command };
2024
/**
2125
* @public
2226
*

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

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ import { ListAssetBundleImportJobsRequest, ListAssetBundleImportJobsResponse } f
1717
import { de_ListAssetBundleImportJobsCommand, se_ListAssetBundleImportJobsCommand } from "../protocols/Aws_restJson1";
1818
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
1919

20+
/**
21+
* @public
22+
*/
23+
export { __MetadataBearer, $Command };
2024
/**
2125
* @public
2226
*

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

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ import { StartAssetBundleExportJobRequest, StartAssetBundleExportJobResponse } f
1717
import { de_StartAssetBundleExportJobCommand, se_StartAssetBundleExportJobCommand } from "../protocols/Aws_restJson1";
1818
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
1919

20+
/**
21+
* @public
22+
*/
23+
export { __MetadataBearer, $Command };
2024
/**
2125
* @public
2226
*

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

+4
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ import {
2121
import { de_StartAssetBundleImportJobCommand, se_StartAssetBundleImportJobCommand } from "../protocols/Aws_restJson1";
2222
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
2323

24+
/**
25+
* @public
26+
*/
27+
export { __MetadataBearer, $Command };
2428
/**
2529
* @public
2630
*

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

+15
Original file line numberDiff line numberDiff line change
@@ -1339,6 +1339,15 @@ export interface UpdateAnalysisCommandOutput extends UpdateAnalysisResponse, __M
13391339
* Width: "STRING_VALUE",
13401340
* },
13411341
* ],
1342+
* CollapseStateOptions: [ // PivotTableFieldCollapseStateOptionList
1343+
* { // PivotTableFieldCollapseStateOption
1344+
* Target: { // PivotTableFieldCollapseStateTarget
1345+
* FieldId: "STRING_VALUE",
1346+
* FieldDataPathValues: "<DataPathValueList>",
1347+
* },
1348+
* State: "COLLAPSED" || "EXPANDED",
1349+
* },
1350+
* ],
13421351
* },
13431352
* PaginatedReportOptions: { // PivotTablePaginatedReportOptions
13441353
* VerticalOverflowVisibility: "HIDDEN" || "VISIBLE",
@@ -1391,6 +1400,11 @@ export interface UpdateAnalysisCommandOutput extends UpdateAnalysisResponse, __M
13911400
* Scope: { // PivotTableConditionalFormattingScope
13921401
* Role: "FIELD" || "FIELD_TOTAL" || "GRAND_TOTAL",
13931402
* },
1403+
* Scopes: [ // PivotTableConditionalFormattingScopeList
1404+
* {
1405+
* Role: "FIELD" || "FIELD_TOTAL" || "GRAND_TOTAL",
1406+
* },
1407+
* ],
13941408
* },
13951409
* },
13961410
* ],
@@ -3868,6 +3882,7 @@ export interface UpdateAnalysisCommandOutput extends UpdateAnalysisResponse, __M
38683882
* ColorAxis: "<AxisDisplayOptions>",
38693883
* ColorLabelOptions: "<ChartAxisLabelOptions>",
38703884
* Legend: "<LegendOptions>",
3885+
* AxesRangeScale: "AUTO" || "INDEPENDENT" || "SHARED",
38713886
* },
38723887
* Actions: "<VisualCustomActionList>",
38733888
* ColumnHierarchies: "<ColumnHierarchyList>",

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

+15
Original file line numberDiff line numberDiff line change
@@ -1384,6 +1384,15 @@ export interface UpdateDashboardCommandOutput extends UpdateDashboardResponse, _
13841384
* Width: "STRING_VALUE",
13851385
* },
13861386
* ],
1387+
* CollapseStateOptions: [ // PivotTableFieldCollapseStateOptionList
1388+
* { // PivotTableFieldCollapseStateOption
1389+
* Target: { // PivotTableFieldCollapseStateTarget
1390+
* FieldId: "STRING_VALUE",
1391+
* FieldDataPathValues: "<DataPathValueList>",
1392+
* },
1393+
* State: "COLLAPSED" || "EXPANDED",
1394+
* },
1395+
* ],
13871396
* },
13881397
* PaginatedReportOptions: { // PivotTablePaginatedReportOptions
13891398
* VerticalOverflowVisibility: "HIDDEN" || "VISIBLE",
@@ -1436,6 +1445,11 @@ export interface UpdateDashboardCommandOutput extends UpdateDashboardResponse, _
14361445
* Scope: { // PivotTableConditionalFormattingScope
14371446
* Role: "FIELD" || "FIELD_TOTAL" || "GRAND_TOTAL",
14381447
* },
1448+
* Scopes: [ // PivotTableConditionalFormattingScopeList
1449+
* {
1450+
* Role: "FIELD" || "FIELD_TOTAL" || "GRAND_TOTAL",
1451+
* },
1452+
* ],
14391453
* },
14401454
* },
14411455
* ],
@@ -3913,6 +3927,7 @@ export interface UpdateDashboardCommandOutput extends UpdateDashboardResponse, _
39133927
* ColorAxis: "<AxisDisplayOptions>",
39143928
* ColorLabelOptions: "<ChartAxisLabelOptions>",
39153929
* Legend: "<LegendOptions>",
3930+
* AxesRangeScale: "AUTO" || "INDEPENDENT" || "SHARED",
39163931
* },
39173932
* Actions: "<VisualCustomActionList>",
39183933
* ColumnHierarchies: "<ColumnHierarchyList>",

0 commit comments

Comments
 (0)