@aws-sdk/client-quicksight 3.556.0 → 3.558.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 (46) hide show
  1. package/dist-cjs/index.js +16644 -16530
  2. package/dist-es/models/models_0.js +31 -51
  3. package/dist-es/models/models_1.js +21 -53
  4. package/dist-es/models/models_2.js +54 -25
  5. package/dist-es/models/models_3.js +25 -0
  6. package/dist-es/protocols/Aws_restJson1.js +115 -4
  7. package/dist-types/commands/CreateAnalysisCommand.d.ts +300 -0
  8. package/dist-types/commands/CreateDashboardCommand.d.ts +300 -0
  9. package/dist-types/commands/CreateTemplateCommand.d.ts +300 -0
  10. package/dist-types/commands/CreateThemeAliasCommand.d.ts +1 -1
  11. package/dist-types/commands/CreateThemeCommand.d.ts +1 -1
  12. package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +300 -0
  13. package/dist-types/commands/DescribeAssetBundleExportJobCommand.d.ts +1 -1
  14. package/dist-types/commands/DescribeAssetBundleImportJobCommand.d.ts +6 -0
  15. package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +300 -0
  16. package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +300 -0
  17. package/dist-types/commands/ListGroupsCommand.d.ts +1 -1
  18. package/dist-types/commands/ListIAMPolicyAssignmentsCommand.d.ts +1 -1
  19. package/dist-types/commands/ListIAMPolicyAssignmentsForUserCommand.d.ts +1 -1
  20. package/dist-types/commands/ListIdentityPropagationConfigsCommand.d.ts +1 -1
  21. package/dist-types/commands/ListIngestionsCommand.d.ts +1 -1
  22. package/dist-types/commands/ListNamespacesCommand.d.ts +1 -2
  23. package/dist-types/commands/StartAssetBundleExportJobCommand.d.ts +1 -1
  24. package/dist-types/commands/StartDashboardSnapshotJobCommand.d.ts +52 -5
  25. package/dist-types/commands/UpdateAnalysisCommand.d.ts +300 -0
  26. package/dist-types/commands/UpdateDashboardCommand.d.ts +300 -0
  27. package/dist-types/commands/UpdateTemplateCommand.d.ts +300 -0
  28. package/dist-types/models/models_0.d.ts +717 -725
  29. package/dist-types/models/models_1.d.ts +286 -446
  30. package/dist-types/models/models_2.d.ts +463 -302
  31. package/dist-types/models/models_3.d.ts +316 -280
  32. package/dist-types/models/models_4.d.ts +280 -4
  33. package/dist-types/ts3.4/commands/CreateThemeAliasCommand.d.ts +1 -1
  34. package/dist-types/ts3.4/commands/CreateThemeCommand.d.ts +1 -1
  35. package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +1 -1
  36. package/dist-types/ts3.4/commands/ListIAMPolicyAssignmentsCommand.d.ts +1 -1
  37. package/dist-types/ts3.4/commands/ListIAMPolicyAssignmentsForUserCommand.d.ts +1 -1
  38. package/dist-types/ts3.4/commands/ListIdentityPropagationConfigsCommand.d.ts +1 -1
  39. package/dist-types/ts3.4/commands/ListIngestionsCommand.d.ts +1 -1
  40. package/dist-types/ts3.4/commands/ListNamespacesCommand.d.ts +4 -2
  41. package/dist-types/ts3.4/models/models_0.d.ts +174 -190
  42. package/dist-types/ts3.4/models/models_1.d.ts +77 -134
  43. package/dist-types/ts3.4/models/models_2.d.ts +159 -91
  44. package/dist-types/ts3.4/models/models_3.d.ts +91 -72
  45. package/dist-types/ts3.4/models/models_4.d.ts +76 -3
  46. package/package.json +1 -1
@@ -430,10 +430,168 @@ export interface CategoryFilterConfiguration {
430
430
  CustomFilterListConfiguration?: CustomFilterListConfiguration;
431
431
  CustomFilterConfiguration?: CustomFilterConfiguration;
432
432
  }
433
+ export interface SheetControlInfoIconLabelOptions {
434
+ Visibility?: Visibility;
435
+ InfoIconText?: string;
436
+ }
437
+ export declare const FontDecoration: {
438
+ readonly NONE: "NONE";
439
+ readonly UNDERLINE: "UNDERLINE";
440
+ };
441
+ export type FontDecoration =
442
+ (typeof FontDecoration)[keyof typeof FontDecoration];
443
+ export declare const RelativeFontSize: {
444
+ readonly EXTRA_LARGE: "EXTRA_LARGE";
445
+ readonly EXTRA_SMALL: "EXTRA_SMALL";
446
+ readonly LARGE: "LARGE";
447
+ readonly MEDIUM: "MEDIUM";
448
+ readonly SMALL: "SMALL";
449
+ };
450
+ export type RelativeFontSize =
451
+ (typeof RelativeFontSize)[keyof typeof RelativeFontSize];
452
+ export interface FontSize {
453
+ Relative?: RelativeFontSize;
454
+ }
455
+ export declare const FontStyle: {
456
+ readonly ITALIC: "ITALIC";
457
+ readonly NORMAL: "NORMAL";
458
+ };
459
+ export type FontStyle = (typeof FontStyle)[keyof typeof FontStyle];
460
+ export declare const FontWeightName: {
461
+ readonly BOLD: "BOLD";
462
+ readonly NORMAL: "NORMAL";
463
+ };
464
+ export type FontWeightName =
465
+ (typeof FontWeightName)[keyof typeof FontWeightName];
466
+ export interface FontWeight {
467
+ Name?: FontWeightName;
468
+ }
469
+ export interface FontConfiguration {
470
+ FontSize?: FontSize;
471
+ FontDecoration?: FontDecoration;
472
+ FontColor?: string;
473
+ FontWeight?: FontWeight;
474
+ FontStyle?: FontStyle;
475
+ }
476
+ export interface LabelOptions {
477
+ Visibility?: Visibility;
478
+ FontConfiguration?: FontConfiguration;
479
+ CustomLabel?: string;
480
+ }
481
+ export interface DateTimePickerControlDisplayOptions {
482
+ TitleOptions?: LabelOptions;
483
+ DateTimeFormat?: string;
484
+ InfoIconLabelOptions?: SheetControlInfoIconLabelOptions;
485
+ }
486
+ export declare const SheetControlDateTimePickerType: {
487
+ readonly DATE_RANGE: "DATE_RANGE";
488
+ readonly SINGLE_VALUED: "SINGLE_VALUED";
489
+ };
490
+ export type SheetControlDateTimePickerType =
491
+ (typeof SheetControlDateTimePickerType)[keyof typeof SheetControlDateTimePickerType];
492
+ export interface DefaultDateTimePickerControlOptions {
493
+ Type?: SheetControlDateTimePickerType;
494
+ DisplayOptions?: DateTimePickerControlDisplayOptions;
495
+ }
496
+ export interface ListControlSelectAllOptions {
497
+ Visibility?: Visibility;
498
+ }
499
+ export interface DropDownControlDisplayOptions {
500
+ SelectAllOptions?: ListControlSelectAllOptions;
501
+ TitleOptions?: LabelOptions;
502
+ InfoIconLabelOptions?: SheetControlInfoIconLabelOptions;
503
+ }
504
+ export interface FilterSelectableValues {
505
+ Values?: string[];
506
+ }
507
+ export declare const SheetControlListType: {
508
+ readonly MULTI_SELECT: "MULTI_SELECT";
509
+ readonly SINGLE_SELECT: "SINGLE_SELECT";
510
+ };
511
+ export type SheetControlListType =
512
+ (typeof SheetControlListType)[keyof typeof SheetControlListType];
513
+ export interface DefaultFilterDropDownControlOptions {
514
+ DisplayOptions?: DropDownControlDisplayOptions;
515
+ Type?: SheetControlListType;
516
+ SelectableValues?: FilterSelectableValues;
517
+ }
518
+ export interface ListControlSearchOptions {
519
+ Visibility?: Visibility;
520
+ }
521
+ export interface ListControlDisplayOptions {
522
+ SearchOptions?: ListControlSearchOptions;
523
+ SelectAllOptions?: ListControlSelectAllOptions;
524
+ TitleOptions?: LabelOptions;
525
+ InfoIconLabelOptions?: SheetControlInfoIconLabelOptions;
526
+ }
527
+ export interface DefaultFilterListControlOptions {
528
+ DisplayOptions?: ListControlDisplayOptions;
529
+ Type?: SheetControlListType;
530
+ SelectableValues?: FilterSelectableValues;
531
+ }
532
+ export interface RelativeDateTimeControlDisplayOptions {
533
+ TitleOptions?: LabelOptions;
534
+ DateTimeFormat?: string;
535
+ InfoIconLabelOptions?: SheetControlInfoIconLabelOptions;
536
+ }
537
+ export interface DefaultRelativeDateTimeControlOptions {
538
+ DisplayOptions?: RelativeDateTimeControlDisplayOptions;
539
+ }
540
+ export interface SliderControlDisplayOptions {
541
+ TitleOptions?: LabelOptions;
542
+ InfoIconLabelOptions?: SheetControlInfoIconLabelOptions;
543
+ }
544
+ export declare const SheetControlSliderType: {
545
+ readonly RANGE: "RANGE";
546
+ readonly SINGLE_POINT: "SINGLE_POINT";
547
+ };
548
+ export type SheetControlSliderType =
549
+ (typeof SheetControlSliderType)[keyof typeof SheetControlSliderType];
550
+ export interface DefaultSliderControlOptions {
551
+ DisplayOptions?: SliderControlDisplayOptions;
552
+ Type?: SheetControlSliderType;
553
+ MaximumValue: number | undefined;
554
+ MinimumValue: number | undefined;
555
+ StepSize: number | undefined;
556
+ }
557
+ export interface TextControlPlaceholderOptions {
558
+ Visibility?: Visibility;
559
+ }
560
+ export interface TextAreaControlDisplayOptions {
561
+ TitleOptions?: LabelOptions;
562
+ PlaceholderOptions?: TextControlPlaceholderOptions;
563
+ InfoIconLabelOptions?: SheetControlInfoIconLabelOptions;
564
+ }
565
+ export interface DefaultTextAreaControlOptions {
566
+ Delimiter?: string;
567
+ DisplayOptions?: TextAreaControlDisplayOptions;
568
+ }
569
+ export interface TextFieldControlDisplayOptions {
570
+ TitleOptions?: LabelOptions;
571
+ PlaceholderOptions?: TextControlPlaceholderOptions;
572
+ InfoIconLabelOptions?: SheetControlInfoIconLabelOptions;
573
+ }
574
+ export interface DefaultTextFieldControlOptions {
575
+ DisplayOptions?: TextFieldControlDisplayOptions;
576
+ }
577
+ export interface DefaultFilterControlOptions {
578
+ DefaultDateTimePickerOptions?: DefaultDateTimePickerControlOptions;
579
+ DefaultListOptions?: DefaultFilterListControlOptions;
580
+ DefaultDropdownOptions?: DefaultFilterDropDownControlOptions;
581
+ DefaultTextFieldOptions?: DefaultTextFieldControlOptions;
582
+ DefaultTextAreaOptions?: DefaultTextAreaControlOptions;
583
+ DefaultSliderOptions?: DefaultSliderControlOptions;
584
+ DefaultRelativeDateTimeOptions?: DefaultRelativeDateTimeControlOptions;
585
+ }
586
+ export interface DefaultFilterControlConfiguration {
587
+ Title: string | undefined;
588
+ ControlOptions: DefaultFilterControlOptions | undefined;
589
+ }
433
590
  export interface CategoryFilter {
434
591
  FilterId: string | undefined;
435
592
  Column: ColumnIdentifier | undefined;
436
593
  Configuration: CategoryFilterConfiguration | undefined;
594
+ DefaultFilterControlConfiguration?: DefaultFilterControlConfiguration;
437
595
  }
438
596
  export declare const NumericEqualityMatchOperator: {
439
597
  readonly DOES_NOT_EQUAL: "DOES_NOT_EQUAL";
@@ -455,6 +613,7 @@ export interface NumericEqualityFilter {
455
613
  AggregationFunction?: AggregationFunction;
456
614
  ParameterName?: string;
457
615
  NullOption: FilterNullOption | undefined;
616
+ DefaultFilterControlConfiguration?: DefaultFilterControlConfiguration;
458
617
  }
459
618
  export interface NumericRangeFilterValue {
460
619
  StaticValue?: number;
@@ -470,6 +629,7 @@ export interface NumericRangeFilter {
470
629
  SelectAllOptions?: NumericFilterSelectAllOptions;
471
630
  AggregationFunction?: AggregationFunction;
472
631
  NullOption: FilterNullOption | undefined;
632
+ DefaultFilterControlConfiguration?: DefaultFilterControlConfiguration;
473
633
  }
474
634
  export declare const AnchorOption: {
475
635
  readonly NOW: "NOW";
@@ -522,6 +682,7 @@ export interface RelativeDatesFilter {
522
682
  ParameterName?: string;
523
683
  NullOption: FilterNullOption | undefined;
524
684
  ExcludePeriodConfiguration?: ExcludePeriodConfiguration;
685
+ DefaultFilterControlConfiguration?: DefaultFilterControlConfiguration;
525
686
  }
526
687
  export interface RollingDateConfiguration {
527
688
  DataSetIdentifier?: string;
@@ -534,6 +695,7 @@ export interface TimeEqualityFilter {
534
695
  ParameterName?: string;
535
696
  TimeGranularity?: TimeGranularity;
536
697
  RollingDate?: RollingDateConfiguration;
698
+ DefaultFilterControlConfiguration?: DefaultFilterControlConfiguration;
537
699
  }
538
700
  export interface TimeRangeFilterValue {
539
701
  StaticValue?: Date;
@@ -550,6 +712,7 @@ export interface TimeRangeFilter {
550
712
  NullOption: FilterNullOption | undefined;
551
713
  ExcludePeriodConfiguration?: ExcludePeriodConfiguration;
552
714
  TimeGranularity?: TimeGranularity;
715
+ DefaultFilterControlConfiguration?: DefaultFilterControlConfiguration;
553
716
  }
554
717
  export interface TopBottomFilter {
555
718
  FilterId: string | undefined;
@@ -558,6 +721,7 @@ export interface TopBottomFilter {
558
721
  AggregationSortConfigurations: AggregationSortConfiguration[] | undefined;
559
722
  TimeGranularity?: TimeGranularity;
560
723
  ParameterName?: string;
724
+ DefaultFilterControlConfiguration?: DefaultFilterControlConfiguration;
561
725
  }
562
726
  export interface Filter {
563
727
  CategoryFilter?: CategoryFilter;
@@ -695,65 +859,18 @@ export interface ParameterDeclaration {
695
859
  IntegerParameterDeclaration?: IntegerParameterDeclaration;
696
860
  DateTimeParameterDeclaration?: DateTimeParameterDeclaration;
697
861
  }
698
- export interface SheetControlInfoIconLabelOptions {
699
- Visibility?: Visibility;
700
- InfoIconText?: string;
701
- }
702
- export declare const FontDecoration: {
703
- readonly NONE: "NONE";
704
- readonly UNDERLINE: "UNDERLINE";
705
- };
706
- export type FontDecoration =
707
- (typeof FontDecoration)[keyof typeof FontDecoration];
708
- export declare const RelativeFontSize: {
709
- readonly EXTRA_LARGE: "EXTRA_LARGE";
710
- readonly EXTRA_SMALL: "EXTRA_SMALL";
711
- readonly LARGE: "LARGE";
712
- readonly MEDIUM: "MEDIUM";
713
- readonly SMALL: "SMALL";
714
- };
715
- export type RelativeFontSize =
716
- (typeof RelativeFontSize)[keyof typeof RelativeFontSize];
717
- export interface FontSize {
718
- Relative?: RelativeFontSize;
719
- }
720
- export declare const FontStyle: {
721
- readonly ITALIC: "ITALIC";
722
- readonly NORMAL: "NORMAL";
723
- };
724
- export type FontStyle = (typeof FontStyle)[keyof typeof FontStyle];
725
- export declare const FontWeightName: {
726
- readonly BOLD: "BOLD";
727
- readonly NORMAL: "NORMAL";
728
- };
729
- export type FontWeightName =
730
- (typeof FontWeightName)[keyof typeof FontWeightName];
731
- export interface FontWeight {
732
- Name?: FontWeightName;
733
- }
734
- export interface FontConfiguration {
735
- FontSize?: FontSize;
736
- FontDecoration?: FontDecoration;
737
- FontColor?: string;
738
- FontWeight?: FontWeight;
739
- FontStyle?: FontStyle;
862
+ export interface CascadingControlSource {
863
+ SourceSheetControlId?: string;
864
+ ColumnToMatch?: ColumnIdentifier;
740
865
  }
741
- export interface LabelOptions {
742
- Visibility?: Visibility;
743
- FontConfiguration?: FontConfiguration;
744
- CustomLabel?: string;
866
+ export interface CascadingControlConfiguration {
867
+ SourceControls?: CascadingControlSource[];
745
868
  }
746
- export interface DateTimePickerControlDisplayOptions {
747
- TitleOptions?: LabelOptions;
748
- DateTimeFormat?: string;
749
- InfoIconLabelOptions?: SheetControlInfoIconLabelOptions;
869
+ export interface FilterCrossSheetControl {
870
+ FilterControlId: string | undefined;
871
+ SourceFilterId: string | undefined;
872
+ CascadingControlConfiguration?: CascadingControlConfiguration;
750
873
  }
751
- export declare const SheetControlDateTimePickerType: {
752
- readonly DATE_RANGE: "DATE_RANGE";
753
- readonly SINGLE_VALUED: "SINGLE_VALUED";
754
- };
755
- export type SheetControlDateTimePickerType =
756
- (typeof SheetControlDateTimePickerType)[keyof typeof SheetControlDateTimePickerType];
757
874
  export interface FilterDateTimePickerControl {
758
875
  FilterControlId: string | undefined;
759
876
  Title: string | undefined;
@@ -761,30 +878,6 @@ export interface FilterDateTimePickerControl {
761
878
  DisplayOptions?: DateTimePickerControlDisplayOptions;
762
879
  Type?: SheetControlDateTimePickerType;
763
880
  }
764
- export interface CascadingControlSource {
765
- SourceSheetControlId?: string;
766
- ColumnToMatch?: ColumnIdentifier;
767
- }
768
- export interface CascadingControlConfiguration {
769
- SourceControls?: CascadingControlSource[];
770
- }
771
- export interface ListControlSelectAllOptions {
772
- Visibility?: Visibility;
773
- }
774
- export interface DropDownControlDisplayOptions {
775
- SelectAllOptions?: ListControlSelectAllOptions;
776
- TitleOptions?: LabelOptions;
777
- InfoIconLabelOptions?: SheetControlInfoIconLabelOptions;
778
- }
779
- export interface FilterSelectableValues {
780
- Values?: string[];
781
- }
782
- export declare const SheetControlListType: {
783
- readonly MULTI_SELECT: "MULTI_SELECT";
784
- readonly SINGLE_SELECT: "SINGLE_SELECT";
785
- };
786
- export type SheetControlListType =
787
- (typeof SheetControlListType)[keyof typeof SheetControlListType];
788
881
  export interface FilterDropDownControl {
789
882
  FilterControlId: string | undefined;
790
883
  Title: string | undefined;
@@ -794,15 +887,6 @@ export interface FilterDropDownControl {
794
887
  SelectableValues?: FilterSelectableValues;
795
888
  CascadingControlConfiguration?: CascadingControlConfiguration;
796
889
  }
797
- export interface ListControlSearchOptions {
798
- Visibility?: Visibility;
799
- }
800
- export interface ListControlDisplayOptions {
801
- SearchOptions?: ListControlSearchOptions;
802
- SelectAllOptions?: ListControlSelectAllOptions;
803
- TitleOptions?: LabelOptions;
804
- InfoIconLabelOptions?: SheetControlInfoIconLabelOptions;
805
- }
806
890
  export interface FilterListControl {
807
891
  FilterControlId: string | undefined;
808
892
  Title: string | undefined;
@@ -812,27 +896,12 @@ export interface FilterListControl {
812
896
  SelectableValues?: FilterSelectableValues;
813
897
  CascadingControlConfiguration?: CascadingControlConfiguration;
814
898
  }
815
- export interface RelativeDateTimeControlDisplayOptions {
816
- TitleOptions?: LabelOptions;
817
- DateTimeFormat?: string;
818
- InfoIconLabelOptions?: SheetControlInfoIconLabelOptions;
819
- }
820
899
  export interface FilterRelativeDateTimeControl {
821
900
  FilterControlId: string | undefined;
822
901
  Title: string | undefined;
823
902
  SourceFilterId: string | undefined;
824
903
  DisplayOptions?: RelativeDateTimeControlDisplayOptions;
825
904
  }
826
- export interface SliderControlDisplayOptions {
827
- TitleOptions?: LabelOptions;
828
- InfoIconLabelOptions?: SheetControlInfoIconLabelOptions;
829
- }
830
- export declare const SheetControlSliderType: {
831
- readonly RANGE: "RANGE";
832
- readonly SINGLE_POINT: "SINGLE_POINT";
833
- };
834
- export type SheetControlSliderType =
835
- (typeof SheetControlSliderType)[keyof typeof SheetControlSliderType];
836
905
  export interface FilterSliderControl {
837
906
  FilterControlId: string | undefined;
838
907
  Title: string | undefined;
@@ -843,14 +912,6 @@ export interface FilterSliderControl {
843
912
  MinimumValue: number | undefined;
844
913
  StepSize: number | undefined;
845
914
  }
846
- export interface TextControlPlaceholderOptions {
847
- Visibility?: Visibility;
848
- }
849
- export interface TextAreaControlDisplayOptions {
850
- TitleOptions?: LabelOptions;
851
- PlaceholderOptions?: TextControlPlaceholderOptions;
852
- InfoIconLabelOptions?: SheetControlInfoIconLabelOptions;
853
- }
854
915
  export interface FilterTextAreaControl {
855
916
  FilterControlId: string | undefined;
856
917
  Title: string | undefined;
@@ -858,11 +919,6 @@ export interface FilterTextAreaControl {
858
919
  Delimiter?: string;
859
920
  DisplayOptions?: TextAreaControlDisplayOptions;
860
921
  }
861
- export interface TextFieldControlDisplayOptions {
862
- TitleOptions?: LabelOptions;
863
- PlaceholderOptions?: TextControlPlaceholderOptions;
864
- InfoIconLabelOptions?: SheetControlInfoIconLabelOptions;
865
- }
866
922
  export interface FilterTextFieldControl {
867
923
  FilterControlId: string | undefined;
868
924
  Title: string | undefined;
@@ -877,6 +933,7 @@ export interface FilterControl {
877
933
  TextArea?: FilterTextAreaControl;
878
934
  Slider?: FilterSliderControl;
879
935
  RelativeDateTime?: FilterRelativeDateTimeControl;
936
+ CrossSheet?: FilterCrossSheetControl;
880
937
  }
881
938
  export interface FreeFormLayoutElementBackgroundStyle {
882
939
  Visibility?: Visibility;
@@ -1595,67 +1652,6 @@ export type PivotTableDataPathType =
1595
1652
  export interface DataPathType {
1596
1653
  PivotTableDataPathType?: PivotTableDataPathType;
1597
1654
  }
1598
- export interface DataPathValue {
1599
- FieldId?: string;
1600
- FieldValue?: string;
1601
- DataPathType?: DataPathType;
1602
- }
1603
- export interface DataPathColor {
1604
- Element: DataPathValue | undefined;
1605
- Color: string | undefined;
1606
- TimeGranularity?: TimeGranularity;
1607
- }
1608
- export interface VisualPalette {
1609
- ChartColor?: string;
1610
- ColorMap?: DataPathColor[];
1611
- }
1612
- export interface BarChartConfiguration {
1613
- FieldWells?: BarChartFieldWells;
1614
- SortConfiguration?: BarChartSortConfiguration;
1615
- Orientation?: BarChartOrientation;
1616
- BarsArrangement?: BarsArrangement;
1617
- VisualPalette?: VisualPalette;
1618
- SmallMultiplesOptions?: SmallMultiplesOptions;
1619
- CategoryAxis?: AxisDisplayOptions;
1620
- CategoryLabelOptions?: ChartAxisLabelOptions;
1621
- ValueAxis?: AxisDisplayOptions;
1622
- ValueLabelOptions?: ChartAxisLabelOptions;
1623
- ColorLabelOptions?: ChartAxisLabelOptions;
1624
- Legend?: LegendOptions;
1625
- DataLabels?: DataLabelOptions;
1626
- Tooltip?: TooltipOptions;
1627
- ReferenceLines?: ReferenceLine[];
1628
- ContributionAnalysisDefaults?: ContributionAnalysisDefault[];
1629
- Interactions?: VisualInteractionOptions;
1630
- }
1631
- export interface CategoryDrillDownFilter {
1632
- Column: ColumnIdentifier | undefined;
1633
- CategoryValues: string[] | undefined;
1634
- }
1635
- export interface NumericEqualityDrillDownFilter {
1636
- Column: ColumnIdentifier | undefined;
1637
- Value: number | undefined;
1638
- }
1639
- export interface TimeRangeDrillDownFilter {
1640
- Column: ColumnIdentifier | undefined;
1641
- RangeMinimum: Date | undefined;
1642
- RangeMaximum: Date | undefined;
1643
- TimeGranularity: TimeGranularity | undefined;
1644
- }
1645
- export interface DrillDownFilter {
1646
- NumericEqualityFilter?: NumericEqualityDrillDownFilter;
1647
- CategoryFilter?: CategoryDrillDownFilter;
1648
- TimeRangeFilter?: TimeRangeDrillDownFilter;
1649
- }
1650
- export interface DateTimeHierarchy {
1651
- HierarchyId: string | undefined;
1652
- DrillDownFilters?: DrillDownFilter[];
1653
- }
1654
- export interface ExplicitHierarchy {
1655
- HierarchyId: string | undefined;
1656
- Columns: ColumnIdentifier[] | undefined;
1657
- DrillDownFilters?: DrillDownFilter[];
1658
- }
1659
1655
  export declare const CalculatedFieldFilterSensitiveLog: (
1660
1656
  obj: CalculatedField
1661
1657
  ) => any;
@@ -1853,15 +1849,3 @@ export declare const ReferenceLineLabelConfigurationFilterSensitiveLog: (
1853
1849
  export declare const ReferenceLineFilterSensitiveLog: (
1854
1850
  obj: ReferenceLine
1855
1851
  ) => any;
1856
- export declare const DataPathValueFilterSensitiveLog: (
1857
- obj: DataPathValue
1858
- ) => any;
1859
- export declare const DataPathColorFilterSensitiveLog: (
1860
- obj: DataPathColor
1861
- ) => any;
1862
- export declare const VisualPaletteFilterSensitiveLog: (
1863
- obj: VisualPalette
1864
- ) => any;
1865
- export declare const BarChartConfigurationFilterSensitiveLog: (
1866
- obj: BarChartConfiguration
1867
- ) => any;