@aws-sdk/client-quicksight 3.262.0 → 3.264.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.
Files changed (50) hide show
  1. package/dist-cjs/commands/CreateAnalysisCommand.js +1 -2
  2. package/dist-cjs/commands/GetSessionEmbedUrlCommand.js +2 -1
  3. package/dist-cjs/commands/ListAnalysesCommand.js +3 -3
  4. package/dist-cjs/commands/ListDashboardVersionsCommand.js +3 -3
  5. package/dist-cjs/commands/ListDashboardsCommand.js +3 -3
  6. package/dist-cjs/commands/ListDataSetsCommand.js +3 -3
  7. package/dist-cjs/commands/ListDataSourcesCommand.js +1 -2
  8. package/dist-cjs/endpoint/ruleset.js +1 -1
  9. package/dist-cjs/models/models_1.js +39 -64
  10. package/dist-cjs/models/models_2.js +96 -80
  11. package/dist-cjs/models/models_3.js +78 -6
  12. package/dist-cjs/protocols/Aws_restJson1.js +399 -2
  13. package/dist-es/commands/CreateAnalysisCommand.js +1 -2
  14. package/dist-es/commands/GetSessionEmbedUrlCommand.js +2 -1
  15. package/dist-es/commands/ListAnalysesCommand.js +1 -1
  16. package/dist-es/commands/ListDashboardVersionsCommand.js +1 -1
  17. package/dist-es/commands/ListDashboardsCommand.js +1 -1
  18. package/dist-es/commands/ListDataSetsCommand.js +1 -1
  19. package/dist-es/commands/ListDataSourcesCommand.js +1 -2
  20. package/dist-es/endpoint/ruleset.js +1 -1
  21. package/dist-es/models/models_1.js +28 -52
  22. package/dist-es/models/models_2.js +74 -60
  23. package/dist-es/models/models_3.js +61 -2
  24. package/dist-es/protocols/Aws_restJson1.js +399 -2
  25. package/dist-types/QuickSight.d.ts +4 -4
  26. package/dist-types/commands/CreateAnalysisCommand.d.ts +2 -3
  27. package/dist-types/commands/CreateDashboardCommand.d.ts +1 -1
  28. package/dist-types/commands/CreateTemplateCommand.d.ts +2 -2
  29. package/dist-types/commands/GetSessionEmbedUrlCommand.d.ts +2 -1
  30. package/dist-types/commands/ListAnalysesCommand.d.ts +1 -1
  31. package/dist-types/commands/ListDashboardVersionsCommand.d.ts +1 -1
  32. package/dist-types/commands/ListDashboardsCommand.d.ts +1 -1
  33. package/dist-types/commands/ListDataSetsCommand.d.ts +1 -1
  34. package/dist-types/commands/ListDataSourcesCommand.d.ts +1 -2
  35. package/dist-types/models/models_0.d.ts +1 -1
  36. package/dist-types/models/models_1.d.ts +192 -193
  37. package/dist-types/models/models_2.d.ts +354 -271
  38. package/dist-types/models/models_3.d.ts +274 -2
  39. package/dist-types/ts3.4/commands/CreateAnalysisCommand.d.ts +4 -2
  40. package/dist-types/ts3.4/commands/GetSessionEmbedUrlCommand.d.ts +2 -4
  41. package/dist-types/ts3.4/commands/ListAnalysesCommand.d.ts +1 -1
  42. package/dist-types/ts3.4/commands/ListDashboardVersionsCommand.d.ts +1 -1
  43. package/dist-types/ts3.4/commands/ListDashboardsCommand.d.ts +1 -1
  44. package/dist-types/ts3.4/commands/ListDataSetsCommand.d.ts +1 -1
  45. package/dist-types/ts3.4/commands/ListDataSourcesCommand.d.ts +4 -2
  46. package/dist-types/ts3.4/models/models_0.d.ts +1 -1
  47. package/dist-types/ts3.4/models/models_1.d.ts +70 -65
  48. package/dist-types/ts3.4/models/models_2.d.ts +116 -118
  49. package/dist-types/ts3.4/models/models_3.d.ts +120 -4
  50. package/package.json +4 -4
@@ -11,6 +11,7 @@ const smithy_client_1 = require("@aws-sdk/smithy-client");
11
11
  const models_0_1 = require("../models/models_0");
12
12
  const models_1_1 = require("../models/models_1");
13
13
  const models_2_1 = require("../models/models_2");
14
+ const models_3_1 = require("../models/models_3");
14
15
  const QuickSightServiceException_1 = require("../models/QuickSightServiceException");
15
16
  const serializeAws_restJson1CancelIngestionCommand = async (input, context) => {
16
17
  const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
@@ -5780,6 +5781,9 @@ const deserializeAws_restJson1DescribeDashboardDefinitionCommand = async (output
5780
5781
  if (data.DashboardId != null) {
5781
5782
  contents.DashboardId = (0, smithy_client_1.expectString)(data.DashboardId);
5782
5783
  }
5784
+ if (data.DashboardPublishOptions != null) {
5785
+ contents.DashboardPublishOptions = deserializeAws_restJson1DashboardPublishOptions(data.DashboardPublishOptions, context);
5786
+ }
5783
5787
  if (data.Definition != null) {
5784
5788
  contents.Definition = deserializeAws_restJson1DashboardVersionDefinition(data.Definition, context);
5785
5789
  }
@@ -10884,7 +10888,7 @@ const deserializeAws_restJson1InvalidRequestExceptionResponse = async (parsedOut
10884
10888
  if (data.RequestId != null) {
10885
10889
  contents.RequestId = (0, smithy_client_1.expectString)(data.RequestId);
10886
10890
  }
10887
- const exception = new models_2_1.InvalidRequestException({
10891
+ const exception = new models_3_1.InvalidRequestException({
10888
10892
  $metadata: deserializeMetadata(parsedOutput),
10889
10893
  ...contents,
10890
10894
  });
@@ -10917,7 +10921,7 @@ const deserializeAws_restJson1PreconditionNotMetExceptionResponse = async (parse
10917
10921
  if (data.RequestId != null) {
10918
10922
  contents.RequestId = (0, smithy_client_1.expectString)(data.RequestId);
10919
10923
  }
10920
- const exception = new models_1_1.PreconditionNotMetException({
10924
+ const exception = new models_2_1.PreconditionNotMetException({
10921
10925
  $metadata: deserializeMetadata(parsedOutput),
10922
10926
  ...contents,
10923
10927
  });
@@ -12291,12 +12295,33 @@ const serializeAws_restJson1DashboardPublishOptions = (input, context) => {
12291
12295
  ...(input.AdHocFilteringOption != null && {
12292
12296
  AdHocFilteringOption: serializeAws_restJson1AdHocFilteringOption(input.AdHocFilteringOption, context),
12293
12297
  }),
12298
+ ...(input.DataPointDrillUpDownOption != null && {
12299
+ DataPointDrillUpDownOption: serializeAws_restJson1DataPointDrillUpDownOption(input.DataPointDrillUpDownOption, context),
12300
+ }),
12301
+ ...(input.DataPointMenuLabelOption != null && {
12302
+ DataPointMenuLabelOption: serializeAws_restJson1DataPointMenuLabelOption(input.DataPointMenuLabelOption, context),
12303
+ }),
12304
+ ...(input.DataPointTooltipOption != null && {
12305
+ DataPointTooltipOption: serializeAws_restJson1DataPointTooltipOption(input.DataPointTooltipOption, context),
12306
+ }),
12294
12307
  ...(input.ExportToCSVOption != null && {
12295
12308
  ExportToCSVOption: serializeAws_restJson1ExportToCSVOption(input.ExportToCSVOption, context),
12296
12309
  }),
12310
+ ...(input.ExportWithHiddenFieldsOption != null && {
12311
+ ExportWithHiddenFieldsOption: serializeAws_restJson1ExportWithHiddenFieldsOption(input.ExportWithHiddenFieldsOption, context),
12312
+ }),
12297
12313
  ...(input.SheetControlsOption != null && {
12298
12314
  SheetControlsOption: serializeAws_restJson1SheetControlsOption(input.SheetControlsOption, context),
12299
12315
  }),
12316
+ ...(input.SheetLayoutElementMaximizationOption != null && {
12317
+ SheetLayoutElementMaximizationOption: serializeAws_restJson1SheetLayoutElementMaximizationOption(input.SheetLayoutElementMaximizationOption, context),
12318
+ }),
12319
+ ...(input.VisualAxisSortOption != null && {
12320
+ VisualAxisSortOption: serializeAws_restJson1VisualAxisSortOption(input.VisualAxisSortOption, context),
12321
+ }),
12322
+ ...(input.VisualMenuOption != null && {
12323
+ VisualMenuOption: serializeAws_restJson1VisualMenuOption(input.VisualMenuOption, context),
12324
+ }),
12300
12325
  ...(input.VisualPublishOptions != null && {
12301
12326
  VisualPublishOptions: serializeAws_restJson1DashboardVisualPublishOptions(input.VisualPublishOptions, context),
12302
12327
  }),
@@ -12488,6 +12513,21 @@ const serializeAws_restJson1DataPathValueList = (input, context) => {
12488
12513
  return serializeAws_restJson1DataPathValue(entry, context);
12489
12514
  });
12490
12515
  };
12516
+ const serializeAws_restJson1DataPointDrillUpDownOption = (input, context) => {
12517
+ return {
12518
+ ...(input.AvailabilityStatus != null && { AvailabilityStatus: input.AvailabilityStatus }),
12519
+ };
12520
+ };
12521
+ const serializeAws_restJson1DataPointMenuLabelOption = (input, context) => {
12522
+ return {
12523
+ ...(input.AvailabilityStatus != null && { AvailabilityStatus: input.AvailabilityStatus }),
12524
+ };
12525
+ };
12526
+ const serializeAws_restJson1DataPointTooltipOption = (input, context) => {
12527
+ return {
12528
+ ...(input.AvailabilityStatus != null && { AvailabilityStatus: input.AvailabilityStatus }),
12529
+ };
12530
+ };
12491
12531
  const serializeAws_restJson1DataSetConfiguration = (input, context) => {
12492
12532
  return {
12493
12533
  ...(input.ColumnGroupSchemaList != null && {
@@ -12975,6 +13015,11 @@ const serializeAws_restJson1ExportToCSVOption = (input, context) => {
12975
13015
  ...(input.AvailabilityStatus != null && { AvailabilityStatus: input.AvailabilityStatus }),
12976
13016
  };
12977
13017
  };
13018
+ const serializeAws_restJson1ExportWithHiddenFieldsOption = (input, context) => {
13019
+ return {
13020
+ ...(input.AvailabilityStatus != null && { AvailabilityStatus: input.AvailabilityStatus }),
13021
+ };
13022
+ };
12978
13023
  const serializeAws_restJson1FieldBasedTooltip = (input, context) => {
12979
13024
  return {
12980
13025
  ...(input.AggregationVisibility != null && { AggregationVisibility: input.AggregationVisibility }),
@@ -15431,6 +15476,119 @@ const serializeAws_restJson1ProjectOperation = (input, context) => {
15431
15476
  }),
15432
15477
  };
15433
15478
  };
15479
+ const serializeAws_restJson1RadarChartAggregatedFieldWells = (input, context) => {
15480
+ return {
15481
+ ...(input.Category != null && {
15482
+ Category: serializeAws_restJson1RadarChartCategoryFieldList(input.Category, context),
15483
+ }),
15484
+ ...(input.Color != null && { Color: serializeAws_restJson1RadarChartColorFieldList(input.Color, context) }),
15485
+ ...(input.Values != null && { Values: serializeAws_restJson1RadarChartValuesFieldList(input.Values, context) }),
15486
+ };
15487
+ };
15488
+ const serializeAws_restJson1RadarChartAreaStyleSettings = (input, context) => {
15489
+ return {
15490
+ ...(input.Visibility != null && { Visibility: input.Visibility }),
15491
+ };
15492
+ };
15493
+ const serializeAws_restJson1RadarChartCategoryFieldList = (input, context) => {
15494
+ return input
15495
+ .filter((e) => e != null)
15496
+ .map((entry) => {
15497
+ return serializeAws_restJson1DimensionField(entry, context);
15498
+ });
15499
+ };
15500
+ const serializeAws_restJson1RadarChartColorFieldList = (input, context) => {
15501
+ return input
15502
+ .filter((e) => e != null)
15503
+ .map((entry) => {
15504
+ return serializeAws_restJson1DimensionField(entry, context);
15505
+ });
15506
+ };
15507
+ const serializeAws_restJson1RadarChartConfiguration = (input, context) => {
15508
+ return {
15509
+ ...(input.AlternateBandColorsVisibility != null && {
15510
+ AlternateBandColorsVisibility: input.AlternateBandColorsVisibility,
15511
+ }),
15512
+ ...(input.AlternateBandEvenColor != null && { AlternateBandEvenColor: input.AlternateBandEvenColor }),
15513
+ ...(input.AlternateBandOddColor != null && { AlternateBandOddColor: input.AlternateBandOddColor }),
15514
+ ...(input.BaseSeriesSettings != null && {
15515
+ BaseSeriesSettings: serializeAws_restJson1RadarChartSeriesSettings(input.BaseSeriesSettings, context),
15516
+ }),
15517
+ ...(input.CategoryAxis != null && {
15518
+ CategoryAxis: serializeAws_restJson1AxisDisplayOptions(input.CategoryAxis, context),
15519
+ }),
15520
+ ...(input.CategoryLabelOptions != null && {
15521
+ CategoryLabelOptions: serializeAws_restJson1ChartAxisLabelOptions(input.CategoryLabelOptions, context),
15522
+ }),
15523
+ ...(input.ColorAxis != null && { ColorAxis: serializeAws_restJson1AxisDisplayOptions(input.ColorAxis, context) }),
15524
+ ...(input.ColorLabelOptions != null && {
15525
+ ColorLabelOptions: serializeAws_restJson1ChartAxisLabelOptions(input.ColorLabelOptions, context),
15526
+ }),
15527
+ ...(input.FieldWells != null && {
15528
+ FieldWells: serializeAws_restJson1RadarChartFieldWells(input.FieldWells, context),
15529
+ }),
15530
+ ...(input.Legend != null && { Legend: serializeAws_restJson1LegendOptions(input.Legend, context) }),
15531
+ ...(input.Shape != null && { Shape: input.Shape }),
15532
+ ...(input.SortConfiguration != null && {
15533
+ SortConfiguration: serializeAws_restJson1RadarChartSortConfiguration(input.SortConfiguration, context),
15534
+ }),
15535
+ ...(input.StartAngle != null && { StartAngle: (0, smithy_client_1.serializeFloat)(input.StartAngle) }),
15536
+ ...(input.VisualPalette != null && {
15537
+ VisualPalette: serializeAws_restJson1VisualPalette(input.VisualPalette, context),
15538
+ }),
15539
+ };
15540
+ };
15541
+ const serializeAws_restJson1RadarChartFieldWells = (input, context) => {
15542
+ return {
15543
+ ...(input.RadarChartAggregatedFieldWells != null && {
15544
+ RadarChartAggregatedFieldWells: serializeAws_restJson1RadarChartAggregatedFieldWells(input.RadarChartAggregatedFieldWells, context),
15545
+ }),
15546
+ };
15547
+ };
15548
+ const serializeAws_restJson1RadarChartSeriesSettings = (input, context) => {
15549
+ return {
15550
+ ...(input.AreaStyleSettings != null && {
15551
+ AreaStyleSettings: serializeAws_restJson1RadarChartAreaStyleSettings(input.AreaStyleSettings, context),
15552
+ }),
15553
+ };
15554
+ };
15555
+ const serializeAws_restJson1RadarChartSortConfiguration = (input, context) => {
15556
+ return {
15557
+ ...(input.CategoryItemsLimit != null && {
15558
+ CategoryItemsLimit: serializeAws_restJson1ItemsLimitConfiguration(input.CategoryItemsLimit, context),
15559
+ }),
15560
+ ...(input.CategorySort != null && {
15561
+ CategorySort: serializeAws_restJson1FieldSortOptionsList(input.CategorySort, context),
15562
+ }),
15563
+ ...(input.ColorItemsLimit != null && {
15564
+ ColorItemsLimit: serializeAws_restJson1ItemsLimitConfiguration(input.ColorItemsLimit, context),
15565
+ }),
15566
+ ...(input.ColorSort != null && { ColorSort: serializeAws_restJson1FieldSortOptionsList(input.ColorSort, context) }),
15567
+ };
15568
+ };
15569
+ const serializeAws_restJson1RadarChartValuesFieldList = (input, context) => {
15570
+ return input
15571
+ .filter((e) => e != null)
15572
+ .map((entry) => {
15573
+ return serializeAws_restJson1MeasureField(entry, context);
15574
+ });
15575
+ };
15576
+ const serializeAws_restJson1RadarChartVisual = (input, context) => {
15577
+ return {
15578
+ ...(input.Actions != null && { Actions: serializeAws_restJson1VisualCustomActionList(input.Actions, context) }),
15579
+ ...(input.ChartConfiguration != null && {
15580
+ ChartConfiguration: serializeAws_restJson1RadarChartConfiguration(input.ChartConfiguration, context),
15581
+ }),
15582
+ ...(input.ColumnHierarchies != null && {
15583
+ ColumnHierarchies: serializeAws_restJson1ColumnHierarchyList(input.ColumnHierarchies, context),
15584
+ }),
15585
+ ...(input.Subtitle != null && {
15586
+ Subtitle: serializeAws_restJson1VisualSubtitleLabelOptions(input.Subtitle, context),
15587
+ }),
15588
+ ...(input.Title != null && { Title: serializeAws_restJson1VisualTitleLabelOptions(input.Title, context) }),
15589
+ ...(input.VisualId != null && { VisualId: input.VisualId }),
15590
+ };
15591
+ };
15434
15592
  const serializeAws_restJson1RangeEndsLabelType = (input, context) => {
15435
15593
  return {
15436
15594
  ...(input.Visibility != null && { Visibility: input.Visibility }),
@@ -16071,6 +16229,11 @@ const serializeAws_restJson1SheetElementRenderingRuleList = (input, context) =>
16071
16229
  return serializeAws_restJson1SheetElementRenderingRule(entry, context);
16072
16230
  });
16073
16231
  };
16232
+ const serializeAws_restJson1SheetLayoutElementMaximizationOption = (input, context) => {
16233
+ return {
16234
+ ...(input.AvailabilityStatus != null && { AvailabilityStatus: input.AvailabilityStatus }),
16235
+ };
16236
+ };
16074
16237
  const serializeAws_restJson1SheetStyle = (input, context) => {
16075
16238
  return {
16076
16239
  ...(input.Tile != null && { Tile: serializeAws_restJson1TileStyle(input.Tile, context) }),
@@ -17027,6 +17190,9 @@ const serializeAws_restJson1Visual = (input, context) => {
17027
17190
  ...(input.PivotTableVisual != null && {
17028
17191
  PivotTableVisual: serializeAws_restJson1PivotTableVisual(input.PivotTableVisual, context),
17029
17192
  }),
17193
+ ...(input.RadarChartVisual != null && {
17194
+ RadarChartVisual: serializeAws_restJson1RadarChartVisual(input.RadarChartVisual, context),
17195
+ }),
17030
17196
  ...(input.SankeyDiagramVisual != null && {
17031
17197
  SankeyDiagramVisual: serializeAws_restJson1SankeyDiagramVisual(input.SankeyDiagramVisual, context),
17032
17198
  }),
@@ -17045,6 +17211,11 @@ const serializeAws_restJson1Visual = (input, context) => {
17045
17211
  }),
17046
17212
  };
17047
17213
  };
17214
+ const serializeAws_restJson1VisualAxisSortOption = (input, context) => {
17215
+ return {
17216
+ ...(input.AvailabilityStatus != null && { AvailabilityStatus: input.AvailabilityStatus }),
17217
+ };
17218
+ };
17048
17219
  const serializeAws_restJson1VisualCustomAction = (input, context) => {
17049
17220
  return {
17050
17221
  ...(input.ActionOperations != null && {
@@ -17093,6 +17264,11 @@ const serializeAws_restJson1VisualList = (input, context) => {
17093
17264
  return serializeAws_restJson1Visual(entry, context);
17094
17265
  });
17095
17266
  };
17267
+ const serializeAws_restJson1VisualMenuOption = (input, context) => {
17268
+ return {
17269
+ ...(input.AvailabilityStatus != null && { AvailabilityStatus: input.AvailabilityStatus }),
17270
+ };
17271
+ };
17096
17272
  const serializeAws_restJson1VisualPalette = (input, context) => {
17097
17273
  return {
17098
17274
  ...(input.ChartColor != null && { ChartColor: input.ChartColor }),
@@ -17342,6 +17518,11 @@ const deserializeAws_restJson1ActiveIAMPolicyAssignmentList = (output, context)
17342
17518
  });
17343
17519
  return retVal;
17344
17520
  };
17521
+ const deserializeAws_restJson1AdHocFilteringOption = (output, context) => {
17522
+ return {
17523
+ AvailabilityStatus: (0, smithy_client_1.expectString)(output.AvailabilityStatus),
17524
+ };
17525
+ };
17345
17526
  const deserializeAws_restJson1AggregationFunction = (output, context) => {
17346
17527
  return {
17347
17528
  CategoricalAggregationFunction: (0, smithy_client_1.expectString)(output.CategoricalAggregationFunction),
@@ -18655,6 +18836,43 @@ const deserializeAws_restJson1DashboardErrorList = (output, context) => {
18655
18836
  });
18656
18837
  return retVal;
18657
18838
  };
18839
+ const deserializeAws_restJson1DashboardPublishOptions = (output, context) => {
18840
+ return {
18841
+ AdHocFilteringOption: output.AdHocFilteringOption != null
18842
+ ? deserializeAws_restJson1AdHocFilteringOption(output.AdHocFilteringOption, context)
18843
+ : undefined,
18844
+ DataPointDrillUpDownOption: output.DataPointDrillUpDownOption != null
18845
+ ? deserializeAws_restJson1DataPointDrillUpDownOption(output.DataPointDrillUpDownOption, context)
18846
+ : undefined,
18847
+ DataPointMenuLabelOption: output.DataPointMenuLabelOption != null
18848
+ ? deserializeAws_restJson1DataPointMenuLabelOption(output.DataPointMenuLabelOption, context)
18849
+ : undefined,
18850
+ DataPointTooltipOption: output.DataPointTooltipOption != null
18851
+ ? deserializeAws_restJson1DataPointTooltipOption(output.DataPointTooltipOption, context)
18852
+ : undefined,
18853
+ ExportToCSVOption: output.ExportToCSVOption != null
18854
+ ? deserializeAws_restJson1ExportToCSVOption(output.ExportToCSVOption, context)
18855
+ : undefined,
18856
+ ExportWithHiddenFieldsOption: output.ExportWithHiddenFieldsOption != null
18857
+ ? deserializeAws_restJson1ExportWithHiddenFieldsOption(output.ExportWithHiddenFieldsOption, context)
18858
+ : undefined,
18859
+ SheetControlsOption: output.SheetControlsOption != null
18860
+ ? deserializeAws_restJson1SheetControlsOption(output.SheetControlsOption, context)
18861
+ : undefined,
18862
+ SheetLayoutElementMaximizationOption: output.SheetLayoutElementMaximizationOption != null
18863
+ ? deserializeAws_restJson1SheetLayoutElementMaximizationOption(output.SheetLayoutElementMaximizationOption, context)
18864
+ : undefined,
18865
+ VisualAxisSortOption: output.VisualAxisSortOption != null
18866
+ ? deserializeAws_restJson1VisualAxisSortOption(output.VisualAxisSortOption, context)
18867
+ : undefined,
18868
+ VisualMenuOption: output.VisualMenuOption != null
18869
+ ? deserializeAws_restJson1VisualMenuOption(output.VisualMenuOption, context)
18870
+ : undefined,
18871
+ VisualPublishOptions: output.VisualPublishOptions != null
18872
+ ? deserializeAws_restJson1DashboardVisualPublishOptions(output.VisualPublishOptions, context)
18873
+ : undefined,
18874
+ };
18875
+ };
18658
18876
  const deserializeAws_restJson1DashboardSummary = (output, context) => {
18659
18877
  return {
18660
18878
  Arn: (0, smithy_client_1.expectString)(output.Arn),
@@ -18743,6 +18961,13 @@ const deserializeAws_restJson1DashboardVersionSummaryList = (output, context) =>
18743
18961
  });
18744
18962
  return retVal;
18745
18963
  };
18964
+ const deserializeAws_restJson1DashboardVisualPublishOptions = (output, context) => {
18965
+ return {
18966
+ ExportHiddenFieldsOption: output.ExportHiddenFieldsOption != null
18967
+ ? deserializeAws_restJson1ExportHiddenFieldsOption(output.ExportHiddenFieldsOption, context)
18968
+ : undefined,
18969
+ };
18970
+ };
18746
18971
  const deserializeAws_restJson1DataBarsOptions = (output, context) => {
18747
18972
  return {
18748
18973
  FieldId: (0, smithy_client_1.expectString)(output.FieldId),
@@ -18873,6 +19098,21 @@ const deserializeAws_restJson1DataPathValueList = (output, context) => {
18873
19098
  });
18874
19099
  return retVal;
18875
19100
  };
19101
+ const deserializeAws_restJson1DataPointDrillUpDownOption = (output, context) => {
19102
+ return {
19103
+ AvailabilityStatus: (0, smithy_client_1.expectString)(output.AvailabilityStatus),
19104
+ };
19105
+ };
19106
+ const deserializeAws_restJson1DataPointMenuLabelOption = (output, context) => {
19107
+ return {
19108
+ AvailabilityStatus: (0, smithy_client_1.expectString)(output.AvailabilityStatus),
19109
+ };
19110
+ };
19111
+ const deserializeAws_restJson1DataPointTooltipOption = (output, context) => {
19112
+ return {
19113
+ AvailabilityStatus: (0, smithy_client_1.expectString)(output.AvailabilityStatus),
19114
+ };
19115
+ };
18876
19116
  const deserializeAws_restJson1DataSet = (output, context) => {
18877
19117
  return {
18878
19118
  Arn: (0, smithy_client_1.expectString)(output.Arn),
@@ -19540,6 +19780,21 @@ const deserializeAws_restJson1ExplicitHierarchyColumnList = (output, context) =>
19540
19780
  });
19541
19781
  return retVal;
19542
19782
  };
19783
+ const deserializeAws_restJson1ExportHiddenFieldsOption = (output, context) => {
19784
+ return {
19785
+ AvailabilityStatus: (0, smithy_client_1.expectString)(output.AvailabilityStatus),
19786
+ };
19787
+ };
19788
+ const deserializeAws_restJson1ExportToCSVOption = (output, context) => {
19789
+ return {
19790
+ AvailabilityStatus: (0, smithy_client_1.expectString)(output.AvailabilityStatus),
19791
+ };
19792
+ };
19793
+ const deserializeAws_restJson1ExportWithHiddenFieldsOption = (output, context) => {
19794
+ return {
19795
+ AvailabilityStatus: (0, smithy_client_1.expectString)(output.AvailabilityStatus),
19796
+ };
19797
+ };
19543
19798
  const deserializeAws_restJson1FieldBasedTooltip = (output, context) => {
19544
19799
  return {
19545
19800
  AggregationVisibility: (0, smithy_client_1.expectString)(output.AggregationVisibility),
@@ -22269,6 +22524,125 @@ const deserializeAws_restJson1QueueInfo = (output, context) => {
22269
22524
  WaitingOnIngestion: (0, smithy_client_1.expectString)(output.WaitingOnIngestion),
22270
22525
  };
22271
22526
  };
22527
+ const deserializeAws_restJson1RadarChartAggregatedFieldWells = (output, context) => {
22528
+ return {
22529
+ Category: output.Category != null
22530
+ ? deserializeAws_restJson1RadarChartCategoryFieldList(output.Category, context)
22531
+ : undefined,
22532
+ Color: output.Color != null ? deserializeAws_restJson1RadarChartColorFieldList(output.Color, context) : undefined,
22533
+ Values: output.Values != null ? deserializeAws_restJson1RadarChartValuesFieldList(output.Values, context) : undefined,
22534
+ };
22535
+ };
22536
+ const deserializeAws_restJson1RadarChartAreaStyleSettings = (output, context) => {
22537
+ return {
22538
+ Visibility: (0, smithy_client_1.expectString)(output.Visibility),
22539
+ };
22540
+ };
22541
+ const deserializeAws_restJson1RadarChartCategoryFieldList = (output, context) => {
22542
+ const retVal = (output || [])
22543
+ .filter((e) => e != null)
22544
+ .map((entry) => {
22545
+ if (entry === null) {
22546
+ return null;
22547
+ }
22548
+ return deserializeAws_restJson1DimensionField(entry, context);
22549
+ });
22550
+ return retVal;
22551
+ };
22552
+ const deserializeAws_restJson1RadarChartColorFieldList = (output, context) => {
22553
+ const retVal = (output || [])
22554
+ .filter((e) => e != null)
22555
+ .map((entry) => {
22556
+ if (entry === null) {
22557
+ return null;
22558
+ }
22559
+ return deserializeAws_restJson1DimensionField(entry, context);
22560
+ });
22561
+ return retVal;
22562
+ };
22563
+ const deserializeAws_restJson1RadarChartConfiguration = (output, context) => {
22564
+ return {
22565
+ AlternateBandColorsVisibility: (0, smithy_client_1.expectString)(output.AlternateBandColorsVisibility),
22566
+ AlternateBandEvenColor: (0, smithy_client_1.expectString)(output.AlternateBandEvenColor),
22567
+ AlternateBandOddColor: (0, smithy_client_1.expectString)(output.AlternateBandOddColor),
22568
+ BaseSeriesSettings: output.BaseSeriesSettings != null
22569
+ ? deserializeAws_restJson1RadarChartSeriesSettings(output.BaseSeriesSettings, context)
22570
+ : undefined,
22571
+ CategoryAxis: output.CategoryAxis != null
22572
+ ? deserializeAws_restJson1AxisDisplayOptions(output.CategoryAxis, context)
22573
+ : undefined,
22574
+ CategoryLabelOptions: output.CategoryLabelOptions != null
22575
+ ? deserializeAws_restJson1ChartAxisLabelOptions(output.CategoryLabelOptions, context)
22576
+ : undefined,
22577
+ ColorAxis: output.ColorAxis != null ? deserializeAws_restJson1AxisDisplayOptions(output.ColorAxis, context) : undefined,
22578
+ ColorLabelOptions: output.ColorLabelOptions != null
22579
+ ? deserializeAws_restJson1ChartAxisLabelOptions(output.ColorLabelOptions, context)
22580
+ : undefined,
22581
+ FieldWells: output.FieldWells != null ? deserializeAws_restJson1RadarChartFieldWells(output.FieldWells, context) : undefined,
22582
+ Legend: output.Legend != null ? deserializeAws_restJson1LegendOptions(output.Legend, context) : undefined,
22583
+ Shape: (0, smithy_client_1.expectString)(output.Shape),
22584
+ SortConfiguration: output.SortConfiguration != null
22585
+ ? deserializeAws_restJson1RadarChartSortConfiguration(output.SortConfiguration, context)
22586
+ : undefined,
22587
+ StartAngle: (0, smithy_client_1.limitedParseDouble)(output.StartAngle),
22588
+ VisualPalette: output.VisualPalette != null ? deserializeAws_restJson1VisualPalette(output.VisualPalette, context) : undefined,
22589
+ };
22590
+ };
22591
+ const deserializeAws_restJson1RadarChartFieldWells = (output, context) => {
22592
+ return {
22593
+ RadarChartAggregatedFieldWells: output.RadarChartAggregatedFieldWells != null
22594
+ ? deserializeAws_restJson1RadarChartAggregatedFieldWells(output.RadarChartAggregatedFieldWells, context)
22595
+ : undefined,
22596
+ };
22597
+ };
22598
+ const deserializeAws_restJson1RadarChartSeriesSettings = (output, context) => {
22599
+ return {
22600
+ AreaStyleSettings: output.AreaStyleSettings != null
22601
+ ? deserializeAws_restJson1RadarChartAreaStyleSettings(output.AreaStyleSettings, context)
22602
+ : undefined,
22603
+ };
22604
+ };
22605
+ const deserializeAws_restJson1RadarChartSortConfiguration = (output, context) => {
22606
+ return {
22607
+ CategoryItemsLimit: output.CategoryItemsLimit != null
22608
+ ? deserializeAws_restJson1ItemsLimitConfiguration(output.CategoryItemsLimit, context)
22609
+ : undefined,
22610
+ CategorySort: output.CategorySort != null
22611
+ ? deserializeAws_restJson1FieldSortOptionsList(output.CategorySort, context)
22612
+ : undefined,
22613
+ ColorItemsLimit: output.ColorItemsLimit != null
22614
+ ? deserializeAws_restJson1ItemsLimitConfiguration(output.ColorItemsLimit, context)
22615
+ : undefined,
22616
+ ColorSort: output.ColorSort != null ? deserializeAws_restJson1FieldSortOptionsList(output.ColorSort, context) : undefined,
22617
+ };
22618
+ };
22619
+ const deserializeAws_restJson1RadarChartValuesFieldList = (output, context) => {
22620
+ const retVal = (output || [])
22621
+ .filter((e) => e != null)
22622
+ .map((entry) => {
22623
+ if (entry === null) {
22624
+ return null;
22625
+ }
22626
+ return deserializeAws_restJson1MeasureField(entry, context);
22627
+ });
22628
+ return retVal;
22629
+ };
22630
+ const deserializeAws_restJson1RadarChartVisual = (output, context) => {
22631
+ return {
22632
+ Actions: output.Actions != null ? deserializeAws_restJson1VisualCustomActionList(output.Actions, context) : undefined,
22633
+ ChartConfiguration: output.ChartConfiguration != null
22634
+ ? deserializeAws_restJson1RadarChartConfiguration(output.ChartConfiguration, context)
22635
+ : undefined,
22636
+ ColumnHierarchies: output.ColumnHierarchies != null
22637
+ ? deserializeAws_restJson1ColumnHierarchyList(output.ColumnHierarchies, context)
22638
+ : undefined,
22639
+ Subtitle: output.Subtitle != null
22640
+ ? deserializeAws_restJson1VisualSubtitleLabelOptions(output.Subtitle, context)
22641
+ : undefined,
22642
+ Title: output.Title != null ? deserializeAws_restJson1VisualTitleLabelOptions(output.Title, context) : undefined,
22643
+ VisualId: (0, smithy_client_1.expectString)(output.VisualId),
22644
+ };
22645
+ };
22272
22646
  const deserializeAws_restJson1RangeEndsLabelType = (output, context) => {
22273
22647
  return {
22274
22648
  Visibility: (0, smithy_client_1.expectString)(output.Visibility),
@@ -22812,6 +23186,11 @@ const deserializeAws_restJson1SheetControlLayoutList = (output, context) => {
22812
23186
  });
22813
23187
  return retVal;
22814
23188
  };
23189
+ const deserializeAws_restJson1SheetControlsOption = (output, context) => {
23190
+ return {
23191
+ VisibilityState: (0, smithy_client_1.expectString)(output.VisibilityState),
23192
+ };
23193
+ };
22815
23194
  const deserializeAws_restJson1SheetDefinition = (output, context) => {
22816
23195
  return {
22817
23196
  ContentType: (0, smithy_client_1.expectString)(output.ContentType),
@@ -22868,6 +23247,11 @@ const deserializeAws_restJson1SheetElementRenderingRuleList = (output, context)
22868
23247
  });
22869
23248
  return retVal;
22870
23249
  };
23250
+ const deserializeAws_restJson1SheetLayoutElementMaximizationOption = (output, context) => {
23251
+ return {
23252
+ AvailabilityStatus: (0, smithy_client_1.expectString)(output.AvailabilityStatus),
23253
+ };
23254
+ };
22871
23255
  const deserializeAws_restJson1SheetList = (output, context) => {
22872
23256
  const retVal = (output || [])
22873
23257
  .filter((e) => e != null)
@@ -24095,6 +24479,9 @@ const deserializeAws_restJson1Visual = (output, context) => {
24095
24479
  PivotTableVisual: output.PivotTableVisual != null
24096
24480
  ? deserializeAws_restJson1PivotTableVisual(output.PivotTableVisual, context)
24097
24481
  : undefined,
24482
+ RadarChartVisual: output.RadarChartVisual != null
24483
+ ? deserializeAws_restJson1RadarChartVisual(output.RadarChartVisual, context)
24484
+ : undefined,
24098
24485
  SankeyDiagramVisual: output.SankeyDiagramVisual != null
24099
24486
  ? deserializeAws_restJson1SankeyDiagramVisual(output.SankeyDiagramVisual, context)
24100
24487
  : undefined,
@@ -24111,6 +24498,11 @@ const deserializeAws_restJson1Visual = (output, context) => {
24111
24498
  : undefined,
24112
24499
  };
24113
24500
  };
24501
+ const deserializeAws_restJson1VisualAxisSortOption = (output, context) => {
24502
+ return {
24503
+ AvailabilityStatus: (0, smithy_client_1.expectString)(output.AvailabilityStatus),
24504
+ };
24505
+ };
24114
24506
  const deserializeAws_restJson1VisualCustomAction = (output, context) => {
24115
24507
  return {
24116
24508
  ActionOperations: output.ActionOperations != null
@@ -24171,6 +24563,11 @@ const deserializeAws_restJson1VisualList = (output, context) => {
24171
24563
  });
24172
24564
  return retVal;
24173
24565
  };
24566
+ const deserializeAws_restJson1VisualMenuOption = (output, context) => {
24567
+ return {
24568
+ AvailabilityStatus: (0, smithy_client_1.expectString)(output.AvailabilityStatus),
24569
+ };
24570
+ };
24174
24571
  const deserializeAws_restJson1VisualPalette = (output, context) => {
24175
24572
  return {
24176
24573
  ChartColor: (0, smithy_client_1.expectString)(output.ChartColor),
@@ -1,8 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { CreateAnalysisRequestFilterSensitiveLog } from "../models/models_1";
5
- import { CreateAnalysisResponseFilterSensitiveLog } from "../models/models_2";
4
+ import { CreateAnalysisRequestFilterSensitiveLog, CreateAnalysisResponseFilterSensitiveLog, } from "../models/models_2";
6
5
  import { deserializeAws_restJson1CreateAnalysisCommand, serializeAws_restJson1CreateAnalysisCommand, } from "../protocols/Aws_restJson1";
7
6
  export class CreateAnalysisCommand extends $Command {
8
7
  constructor(input) {
@@ -1,7 +1,8 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { GetSessionEmbedUrlRequestFilterSensitiveLog, GetSessionEmbedUrlResponseFilterSensitiveLog, } from "../models/models_2";
4
+ import { GetSessionEmbedUrlRequestFilterSensitiveLog } from "../models/models_2";
5
+ import { GetSessionEmbedUrlResponseFilterSensitiveLog } from "../models/models_3";
5
6
  import { deserializeAws_restJson1GetSessionEmbedUrlCommand, serializeAws_restJson1GetSessionEmbedUrlCommand, } from "../protocols/Aws_restJson1";
6
7
  export class GetSessionEmbedUrlCommand extends $Command {
7
8
  constructor(input) {
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { ListAnalysesRequestFilterSensitiveLog, ListAnalysesResponseFilterSensitiveLog, } from "../models/models_2";
4
+ import { ListAnalysesRequestFilterSensitiveLog, ListAnalysesResponseFilterSensitiveLog, } from "../models/models_3";
5
5
  import { deserializeAws_restJson1ListAnalysesCommand, serializeAws_restJson1ListAnalysesCommand, } from "../protocols/Aws_restJson1";
6
6
  export class ListAnalysesCommand extends $Command {
7
7
  constructor(input) {
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { ListDashboardVersionsRequestFilterSensitiveLog, ListDashboardVersionsResponseFilterSensitiveLog, } from "../models/models_2";
4
+ import { ListDashboardVersionsRequestFilterSensitiveLog, ListDashboardVersionsResponseFilterSensitiveLog, } from "../models/models_3";
5
5
  import { deserializeAws_restJson1ListDashboardVersionsCommand, serializeAws_restJson1ListDashboardVersionsCommand, } from "../protocols/Aws_restJson1";
6
6
  export class ListDashboardVersionsCommand extends $Command {
7
7
  constructor(input) {
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { ListDashboardsRequestFilterSensitiveLog, ListDashboardsResponseFilterSensitiveLog, } from "../models/models_2";
4
+ import { ListDashboardsRequestFilterSensitiveLog, ListDashboardsResponseFilterSensitiveLog, } from "../models/models_3";
5
5
  import { deserializeAws_restJson1ListDashboardsCommand, serializeAws_restJson1ListDashboardsCommand, } from "../protocols/Aws_restJson1";
6
6
  export class ListDashboardsCommand extends $Command {
7
7
  constructor(input) {
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { ListDataSetsRequestFilterSensitiveLog, ListDataSetsResponseFilterSensitiveLog, } from "../models/models_2";
4
+ import { ListDataSetsRequestFilterSensitiveLog, ListDataSetsResponseFilterSensitiveLog, } from "../models/models_3";
5
5
  import { deserializeAws_restJson1ListDataSetsCommand, serializeAws_restJson1ListDataSetsCommand, } from "../protocols/Aws_restJson1";
6
6
  export class ListDataSetsCommand extends $Command {
7
7
  constructor(input) {
@@ -1,8 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { ListDataSourcesRequestFilterSensitiveLog } from "../models/models_2";
5
- import { ListDataSourcesResponseFilterSensitiveLog } from "../models/models_3";
4
+ import { ListDataSourcesRequestFilterSensitiveLog, ListDataSourcesResponseFilterSensitiveLog, } from "../models/models_3";
6
5
  import { deserializeAws_restJson1ListDataSourcesCommand, serializeAws_restJson1ListDataSourcesCommand, } from "../protocols/Aws_restJson1";
7
6
  export class ListDataSourcesCommand extends $Command {
8
7
  constructor(input) {
@@ -1,4 +1,4 @@
1
1
  const q = "fn", r = "argv", s = "ref";
2
2
  const a = true, b = false, c = "String", d = "PartitionResult", e = "tree", f = "error", g = "endpoint", h = { "required": true, "default": false, "type": "Boolean" }, i = { [s]: "Endpoint" }, j = { [q]: "booleanEquals", [r]: [{ [s]: "UseFIPS" }, true] }, k = { [q]: "booleanEquals", [r]: [{ [s]: "UseDualStack" }, true] }, l = {}, m = { [q]: "booleanEquals", [r]: [true, { [q]: "getAttr", [r]: [{ [s]: d }, "supportsFIPS"] }] }, n = { [q]: "booleanEquals", [r]: [true, { [q]: "getAttr", [r]: [{ [s]: d }, "supportsDualStack"] }] }, o = [j], p = [k];
3
- const _data = { version: "1.0", parameters: { Region: { required: a, type: c }, UseDualStack: h, UseFIPS: h, Endpoint: { required: b, type: c } }, rules: [{ conditions: [{ [q]: "aws.partition", [r]: [{ [s]: "Region" }], assign: d }], type: e, rules: [{ conditions: [{ [q]: "isSet", [r]: [i] }], type: e, rules: [{ conditions: o, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: f }, { type: e, rules: [{ conditions: p, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: f }, { endpoint: { url: i, properties: l, headers: l }, type: g }] }] }, { conditions: [j, k], type: e, rules: [{ conditions: [m, n], type: e, rules: [{ endpoint: { url: "https://quicksight-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: l, headers: l }, type: g }] }, { error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: f }] }, { conditions: o, type: e, rules: [{ conditions: [m], type: e, rules: [{ type: e, rules: [{ endpoint: { url: "https://quicksight-fips.{Region}.{PartitionResult#dnsSuffix}", properties: l, headers: l }, type: g }] }] }, { error: "FIPS is enabled but this partition does not support FIPS", type: f }] }, { conditions: p, type: e, rules: [{ conditions: [n], type: e, rules: [{ endpoint: { url: "https://quicksight.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: l, headers: l }, type: g }] }, { error: "DualStack is enabled but this partition does not support DualStack", type: f }] }, { endpoint: { url: "https://quicksight.{Region}.{PartitionResult#dnsSuffix}", properties: l, headers: l }, type: g }] }] };
3
+ const _data = { version: "1.0", parameters: { Region: { required: a, type: c }, UseDualStack: h, UseFIPS: h, Endpoint: { required: b, type: c } }, rules: [{ conditions: [{ [q]: "aws.partition", [r]: [{ [s]: "Region" }], assign: d }], type: e, rules: [{ conditions: [{ [q]: "isSet", [r]: [i] }], type: e, rules: [{ conditions: o, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: f }, { type: e, rules: [{ conditions: p, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: f }, { endpoint: { url: i, properties: l, headers: l }, type: g }] }] }, { conditions: [j, k], type: e, rules: [{ conditions: [m, n], type: e, rules: [{ type: e, rules: [{ endpoint: { url: "https://quicksight-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: l, headers: l }, type: g }] }] }, { error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: f }] }, { conditions: o, type: e, rules: [{ conditions: [m], type: e, rules: [{ type: e, rules: [{ endpoint: { url: "https://quicksight-fips.{Region}.{PartitionResult#dnsSuffix}", properties: l, headers: l }, type: g }] }] }, { error: "FIPS is enabled but this partition does not support FIPS", type: f }] }, { conditions: p, type: e, rules: [{ conditions: [n], type: e, rules: [{ type: e, rules: [{ endpoint: { url: "https://quicksight.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: l, headers: l }, type: g }] }] }, { error: "DualStack is enabled but this partition does not support DualStack", type: f }] }, { type: e, rules: [{ endpoint: { url: "https://quicksight.{Region}.{PartitionResult#dnsSuffix}", properties: l, headers: l }, type: g }] }] }] };
4
4
  export const ruleSet = _data;