@aws-sdk/client-quicksight 3.301.0 → 3.306.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/models/models_0.js +311 -372
- package/dist-cjs/models/models_1.js +276 -326
- package/dist-cjs/models/models_2.js +249 -281
- package/dist-cjs/models/models_3.js +6 -8
- package/dist-es/models/models_0.js +311 -372
- package/dist-es/models/models_1.js +276 -326
- package/dist-es/models/models_2.js +249 -281
- package/dist-es/models/models_3.js +6 -8
- package/dist-types/models/models_0.d.ts +616 -311
- package/dist-types/models/models_1.d.ts +526 -276
- package/dist-types/models/models_2.d.ts +410 -250
- package/dist-types/models/models_3.d.ts +16 -6
- package/dist-types/ts3.4/models/models_0.d.ts +422 -311
- package/dist-types/ts3.4/models/models_1.d.ts +369 -276
- package/dist-types/ts3.4/models/models_2.d.ts +302 -249
- package/dist-types/ts3.4/models/models_3.d.ts +10 -6
- package/package.json +34 -34
|
@@ -36,12 +36,17 @@ export interface AccountCustomization {
|
|
|
36
36
|
}
|
|
37
37
|
/**
|
|
38
38
|
* @public
|
|
39
|
+
* @enum
|
|
39
40
|
*/
|
|
40
|
-
export declare
|
|
41
|
-
ENTERPRISE
|
|
42
|
-
ENTERPRISE_AND_Q
|
|
43
|
-
STANDARD
|
|
44
|
-
}
|
|
41
|
+
export declare const Edition: {
|
|
42
|
+
readonly ENTERPRISE: "ENTERPRISE";
|
|
43
|
+
readonly ENTERPRISE_AND_Q: "ENTERPRISE_AND_Q";
|
|
44
|
+
readonly STANDARD: "STANDARD";
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
export type Edition = (typeof Edition)[keyof typeof Edition];
|
|
45
50
|
/**
|
|
46
51
|
* @public
|
|
47
52
|
* <p>A structure that contains the following account information
|
|
@@ -138,11 +143,16 @@ export interface ActiveIAMPolicyAssignment {
|
|
|
138
143
|
}
|
|
139
144
|
/**
|
|
140
145
|
* @public
|
|
146
|
+
* @enum
|
|
141
147
|
*/
|
|
142
|
-
export declare
|
|
143
|
-
DISABLED
|
|
144
|
-
ENABLED
|
|
145
|
-
}
|
|
148
|
+
export declare const DashboardBehavior: {
|
|
149
|
+
readonly DISABLED: "DISABLED";
|
|
150
|
+
readonly ENABLED: "ENABLED";
|
|
151
|
+
};
|
|
152
|
+
/**
|
|
153
|
+
* @public
|
|
154
|
+
*/
|
|
155
|
+
export type DashboardBehavior = (typeof DashboardBehavior)[keyof typeof DashboardBehavior];
|
|
146
156
|
/**
|
|
147
157
|
* @public
|
|
148
158
|
* <p>An ad hoc (one-time) filtering option.</p>
|
|
@@ -155,20 +165,30 @@ export interface AdHocFilteringOption {
|
|
|
155
165
|
}
|
|
156
166
|
/**
|
|
157
167
|
* @public
|
|
168
|
+
* @enum
|
|
158
169
|
*/
|
|
159
|
-
export declare
|
|
160
|
-
COUNT
|
|
161
|
-
DISTINCT_COUNT
|
|
162
|
-
}
|
|
170
|
+
export declare const CategoricalAggregationFunction: {
|
|
171
|
+
readonly COUNT: "COUNT";
|
|
172
|
+
readonly DISTINCT_COUNT: "DISTINCT_COUNT";
|
|
173
|
+
};
|
|
163
174
|
/**
|
|
164
175
|
* @public
|
|
165
176
|
*/
|
|
166
|
-
export
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
177
|
+
export type CategoricalAggregationFunction = (typeof CategoricalAggregationFunction)[keyof typeof CategoricalAggregationFunction];
|
|
178
|
+
/**
|
|
179
|
+
* @public
|
|
180
|
+
* @enum
|
|
181
|
+
*/
|
|
182
|
+
export declare const DateAggregationFunction: {
|
|
183
|
+
readonly COUNT: "COUNT";
|
|
184
|
+
readonly DISTINCT_COUNT: "DISTINCT_COUNT";
|
|
185
|
+
readonly MAX: "MAX";
|
|
186
|
+
readonly MIN: "MIN";
|
|
187
|
+
};
|
|
188
|
+
/**
|
|
189
|
+
* @public
|
|
190
|
+
*/
|
|
191
|
+
export type DateAggregationFunction = (typeof DateAggregationFunction)[keyof typeof DateAggregationFunction];
|
|
172
192
|
/**
|
|
173
193
|
* @public
|
|
174
194
|
* <p>An aggregation based on the percentile of values in a dimension or measure.</p>
|
|
@@ -181,20 +201,25 @@ export interface PercentileAggregation {
|
|
|
181
201
|
}
|
|
182
202
|
/**
|
|
183
203
|
* @public
|
|
204
|
+
* @enum
|
|
184
205
|
*/
|
|
185
|
-
export declare
|
|
186
|
-
AVERAGE
|
|
187
|
-
COUNT
|
|
188
|
-
DISTINCT_COUNT
|
|
189
|
-
MAX
|
|
190
|
-
MEDIAN
|
|
191
|
-
MIN
|
|
192
|
-
STDEV
|
|
193
|
-
STDEVP
|
|
194
|
-
SUM
|
|
195
|
-
VAR
|
|
196
|
-
VARP
|
|
197
|
-
}
|
|
206
|
+
export declare const SimpleNumericalAggregationFunction: {
|
|
207
|
+
readonly AVERAGE: "AVERAGE";
|
|
208
|
+
readonly COUNT: "COUNT";
|
|
209
|
+
readonly DISTINCT_COUNT: "DISTINCT_COUNT";
|
|
210
|
+
readonly MAX: "MAX";
|
|
211
|
+
readonly MEDIAN: "MEDIAN";
|
|
212
|
+
readonly MIN: "MIN";
|
|
213
|
+
readonly STDEV: "STDEV";
|
|
214
|
+
readonly STDEVP: "STDEVP";
|
|
215
|
+
readonly SUM: "SUM";
|
|
216
|
+
readonly VAR: "VAR";
|
|
217
|
+
readonly VARP: "VARP";
|
|
218
|
+
};
|
|
219
|
+
/**
|
|
220
|
+
* @public
|
|
221
|
+
*/
|
|
222
|
+
export type SimpleNumericalAggregationFunction = (typeof SimpleNumericalAggregationFunction)[keyof typeof SimpleNumericalAggregationFunction];
|
|
198
223
|
/**
|
|
199
224
|
* @public
|
|
200
225
|
* <p>Aggregation for numerical values.</p>
|
|
@@ -318,11 +343,16 @@ export interface ColumnIdentifier {
|
|
|
318
343
|
}
|
|
319
344
|
/**
|
|
320
345
|
* @public
|
|
346
|
+
* @enum
|
|
321
347
|
*/
|
|
322
|
-
export declare
|
|
323
|
-
ASC
|
|
324
|
-
DESC
|
|
325
|
-
}
|
|
348
|
+
export declare const SortDirection: {
|
|
349
|
+
readonly ASC: "ASC";
|
|
350
|
+
readonly DESC: "DESC";
|
|
351
|
+
};
|
|
352
|
+
/**
|
|
353
|
+
* @public
|
|
354
|
+
*/
|
|
355
|
+
export type SortDirection = (typeof SortDirection)[keyof typeof SortDirection];
|
|
326
356
|
/**
|
|
327
357
|
* @public
|
|
328
358
|
* <p>The configuration options to sort aggregated values.</p>
|
|
@@ -373,19 +403,24 @@ export interface AmazonOpenSearchParameters {
|
|
|
373
403
|
}
|
|
374
404
|
/**
|
|
375
405
|
* @public
|
|
406
|
+
* @enum
|
|
376
407
|
*/
|
|
377
|
-
export declare
|
|
378
|
-
ACCESS_DENIED
|
|
379
|
-
COLUMN_GEOGRAPHIC_ROLE_MISMATCH
|
|
380
|
-
COLUMN_REPLACEMENT_MISSING
|
|
381
|
-
COLUMN_TYPE_MISMATCH
|
|
382
|
-
DATA_SET_NOT_FOUND
|
|
383
|
-
INTERNAL_FAILURE
|
|
384
|
-
PARAMETER_NOT_FOUND
|
|
385
|
-
PARAMETER_TYPE_INVALID
|
|
386
|
-
PARAMETER_VALUE_INCOMPATIBLE
|
|
387
|
-
SOURCE_NOT_FOUND
|
|
388
|
-
}
|
|
408
|
+
export declare const AnalysisErrorType: {
|
|
409
|
+
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
410
|
+
readonly COLUMN_GEOGRAPHIC_ROLE_MISMATCH: "COLUMN_GEOGRAPHIC_ROLE_MISMATCH";
|
|
411
|
+
readonly COLUMN_REPLACEMENT_MISSING: "COLUMN_REPLACEMENT_MISSING";
|
|
412
|
+
readonly COLUMN_TYPE_MISMATCH: "COLUMN_TYPE_MISMATCH";
|
|
413
|
+
readonly DATA_SET_NOT_FOUND: "DATA_SET_NOT_FOUND";
|
|
414
|
+
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
415
|
+
readonly PARAMETER_NOT_FOUND: "PARAMETER_NOT_FOUND";
|
|
416
|
+
readonly PARAMETER_TYPE_INVALID: "PARAMETER_TYPE_INVALID";
|
|
417
|
+
readonly PARAMETER_VALUE_INCOMPATIBLE: "PARAMETER_VALUE_INCOMPATIBLE";
|
|
418
|
+
readonly SOURCE_NOT_FOUND: "SOURCE_NOT_FOUND";
|
|
419
|
+
};
|
|
420
|
+
/**
|
|
421
|
+
* @public
|
|
422
|
+
*/
|
|
423
|
+
export type AnalysisErrorType = (typeof AnalysisErrorType)[keyof typeof AnalysisErrorType];
|
|
389
424
|
/**
|
|
390
425
|
* @public
|
|
391
426
|
* <p>An object, structure, or sub-structure of an analysis, template, or dashboard.</p>
|
|
@@ -435,16 +470,21 @@ export interface Sheet {
|
|
|
435
470
|
}
|
|
436
471
|
/**
|
|
437
472
|
* @public
|
|
473
|
+
* @enum
|
|
438
474
|
*/
|
|
439
|
-
export declare
|
|
440
|
-
CREATION_FAILED
|
|
441
|
-
CREATION_IN_PROGRESS
|
|
442
|
-
CREATION_SUCCESSFUL
|
|
443
|
-
DELETED
|
|
444
|
-
UPDATE_FAILED
|
|
445
|
-
UPDATE_IN_PROGRESS
|
|
446
|
-
UPDATE_SUCCESSFUL
|
|
447
|
-
}
|
|
475
|
+
export declare const ResourceStatus: {
|
|
476
|
+
readonly CREATION_FAILED: "CREATION_FAILED";
|
|
477
|
+
readonly CREATION_IN_PROGRESS: "CREATION_IN_PROGRESS";
|
|
478
|
+
readonly CREATION_SUCCESSFUL: "CREATION_SUCCESSFUL";
|
|
479
|
+
readonly DELETED: "DELETED";
|
|
480
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
481
|
+
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
482
|
+
readonly UPDATE_SUCCESSFUL: "UPDATE_SUCCESSFUL";
|
|
483
|
+
};
|
|
484
|
+
/**
|
|
485
|
+
* @public
|
|
486
|
+
*/
|
|
487
|
+
export type ResourceStatus = (typeof ResourceStatus)[keyof typeof ResourceStatus];
|
|
448
488
|
/**
|
|
449
489
|
* @public
|
|
450
490
|
* <p>Metadata structure for an analysis in Amazon QuickSight</p>
|
|
@@ -523,11 +563,16 @@ export interface DefaultFreeFormLayoutConfiguration {
|
|
|
523
563
|
}
|
|
524
564
|
/**
|
|
525
565
|
* @public
|
|
566
|
+
* @enum
|
|
526
567
|
*/
|
|
527
|
-
export declare
|
|
528
|
-
FIXED
|
|
529
|
-
RESPONSIVE
|
|
530
|
-
}
|
|
568
|
+
export declare const ResizeOption: {
|
|
569
|
+
readonly FIXED: "FIXED";
|
|
570
|
+
readonly RESPONSIVE: "RESPONSIVE";
|
|
571
|
+
};
|
|
572
|
+
/**
|
|
573
|
+
* @public
|
|
574
|
+
*/
|
|
575
|
+
export type ResizeOption = (typeof ResizeOption)[keyof typeof ResizeOption];
|
|
531
576
|
/**
|
|
532
577
|
* @public
|
|
533
578
|
* <p>The options that determine the sizing of the canvas used in a grid layout.</p>
|
|
@@ -612,27 +657,37 @@ export interface Spacing {
|
|
|
612
657
|
}
|
|
613
658
|
/**
|
|
614
659
|
* @public
|
|
660
|
+
* @enum
|
|
615
661
|
*/
|
|
616
|
-
export declare
|
|
617
|
-
LANDSCAPE
|
|
618
|
-
PORTRAIT
|
|
619
|
-
}
|
|
662
|
+
export declare const PaperOrientation: {
|
|
663
|
+
readonly LANDSCAPE: "LANDSCAPE";
|
|
664
|
+
readonly PORTRAIT: "PORTRAIT";
|
|
665
|
+
};
|
|
620
666
|
/**
|
|
621
667
|
* @public
|
|
622
668
|
*/
|
|
623
|
-
export
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
669
|
+
export type PaperOrientation = (typeof PaperOrientation)[keyof typeof PaperOrientation];
|
|
670
|
+
/**
|
|
671
|
+
* @public
|
|
672
|
+
* @enum
|
|
673
|
+
*/
|
|
674
|
+
export declare const PaperSize: {
|
|
675
|
+
readonly A0: "A0";
|
|
676
|
+
readonly A1: "A1";
|
|
677
|
+
readonly A2: "A2";
|
|
678
|
+
readonly A3: "A3";
|
|
679
|
+
readonly A4: "A4";
|
|
680
|
+
readonly A5: "A5";
|
|
681
|
+
readonly JIS_B4: "JIS_B4";
|
|
682
|
+
readonly JIS_B5: "JIS_B5";
|
|
683
|
+
readonly US_LEGAL: "US_LEGAL";
|
|
684
|
+
readonly US_LETTER: "US_LETTER";
|
|
685
|
+
readonly US_TABLOID_LEDGER: "US_TABLOID_LEDGER";
|
|
686
|
+
};
|
|
687
|
+
/**
|
|
688
|
+
* @public
|
|
689
|
+
*/
|
|
690
|
+
export type PaperSize = (typeof PaperSize)[keyof typeof PaperSize];
|
|
636
691
|
/**
|
|
637
692
|
* @public
|
|
638
693
|
* <p>The options for a paper canvas of a section-based layout.</p>
|
|
@@ -693,11 +748,16 @@ export interface DefaultPaginatedLayoutConfiguration {
|
|
|
693
748
|
}
|
|
694
749
|
/**
|
|
695
750
|
* @public
|
|
751
|
+
* @enum
|
|
696
752
|
*/
|
|
697
|
-
export declare
|
|
698
|
-
INTERACTIVE
|
|
699
|
-
PAGINATED
|
|
700
|
-
}
|
|
753
|
+
export declare const SheetContentType: {
|
|
754
|
+
readonly INTERACTIVE: "INTERACTIVE";
|
|
755
|
+
readonly PAGINATED: "PAGINATED";
|
|
756
|
+
};
|
|
757
|
+
/**
|
|
758
|
+
* @public
|
|
759
|
+
*/
|
|
760
|
+
export type SheetContentType = (typeof SheetContentType)[keyof typeof SheetContentType];
|
|
701
761
|
/**
|
|
702
762
|
* @public
|
|
703
763
|
* <p>The configuration for default new sheet settings.</p>
|
|
@@ -766,11 +826,16 @@ export interface DecimalPlacesConfiguration {
|
|
|
766
826
|
}
|
|
767
827
|
/**
|
|
768
828
|
* @public
|
|
829
|
+
* @enum
|
|
769
830
|
*/
|
|
770
|
-
export declare
|
|
771
|
-
NEGATIVE
|
|
772
|
-
POSITIVE
|
|
773
|
-
}
|
|
831
|
+
export declare const NegativeValueDisplayMode: {
|
|
832
|
+
readonly NEGATIVE: "NEGATIVE";
|
|
833
|
+
readonly POSITIVE: "POSITIVE";
|
|
834
|
+
};
|
|
835
|
+
/**
|
|
836
|
+
* @public
|
|
837
|
+
*/
|
|
838
|
+
export type NegativeValueDisplayMode = (typeof NegativeValueDisplayMode)[keyof typeof NegativeValueDisplayMode];
|
|
774
839
|
/**
|
|
775
840
|
* @public
|
|
776
841
|
* <p>The options that determine the negative value configuration.</p>
|
|
@@ -783,30 +848,45 @@ export interface NegativeValueConfiguration {
|
|
|
783
848
|
}
|
|
784
849
|
/**
|
|
785
850
|
* @public
|
|
851
|
+
* @enum
|
|
786
852
|
*/
|
|
787
|
-
export declare
|
|
788
|
-
AUTO
|
|
789
|
-
BILLIONS
|
|
790
|
-
MILLIONS
|
|
791
|
-
NONE
|
|
792
|
-
THOUSANDS
|
|
793
|
-
TRILLIONS
|
|
794
|
-
}
|
|
853
|
+
export declare const NumberScale: {
|
|
854
|
+
readonly AUTO: "AUTO";
|
|
855
|
+
readonly BILLIONS: "BILLIONS";
|
|
856
|
+
readonly MILLIONS: "MILLIONS";
|
|
857
|
+
readonly NONE: "NONE";
|
|
858
|
+
readonly THOUSANDS: "THOUSANDS";
|
|
859
|
+
readonly TRILLIONS: "TRILLIONS";
|
|
860
|
+
};
|
|
795
861
|
/**
|
|
796
862
|
* @public
|
|
797
863
|
*/
|
|
798
|
-
export
|
|
799
|
-
COMMA = "COMMA",
|
|
800
|
-
DOT = "DOT",
|
|
801
|
-
SPACE = "SPACE"
|
|
802
|
-
}
|
|
864
|
+
export type NumberScale = (typeof NumberScale)[keyof typeof NumberScale];
|
|
803
865
|
/**
|
|
804
866
|
* @public
|
|
867
|
+
* @enum
|
|
805
868
|
*/
|
|
806
|
-
export declare
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
869
|
+
export declare const NumericSeparatorSymbol: {
|
|
870
|
+
readonly COMMA: "COMMA";
|
|
871
|
+
readonly DOT: "DOT";
|
|
872
|
+
readonly SPACE: "SPACE";
|
|
873
|
+
};
|
|
874
|
+
/**
|
|
875
|
+
* @public
|
|
876
|
+
*/
|
|
877
|
+
export type NumericSeparatorSymbol = (typeof NumericSeparatorSymbol)[keyof typeof NumericSeparatorSymbol];
|
|
878
|
+
/**
|
|
879
|
+
* @public
|
|
880
|
+
* @enum
|
|
881
|
+
*/
|
|
882
|
+
export declare const Visibility: {
|
|
883
|
+
readonly HIDDEN: "HIDDEN";
|
|
884
|
+
readonly VISIBLE: "VISIBLE";
|
|
885
|
+
};
|
|
886
|
+
/**
|
|
887
|
+
* @public
|
|
888
|
+
*/
|
|
889
|
+
export type Visibility = (typeof Visibility)[keyof typeof Visibility];
|
|
810
890
|
/**
|
|
811
891
|
* @public
|
|
812
892
|
* <p>The options that determine the thousands separator configuration.</p>
|
|
@@ -1018,11 +1098,16 @@ export interface FormatConfiguration {
|
|
|
1018
1098
|
}
|
|
1019
1099
|
/**
|
|
1020
1100
|
* @public
|
|
1101
|
+
* @enum
|
|
1021
1102
|
*/
|
|
1022
|
-
export declare
|
|
1023
|
-
DIMENSION
|
|
1024
|
-
MEASURE
|
|
1025
|
-
}
|
|
1103
|
+
export declare const ColumnRole: {
|
|
1104
|
+
readonly DIMENSION: "DIMENSION";
|
|
1105
|
+
readonly MEASURE: "MEASURE";
|
|
1106
|
+
};
|
|
1107
|
+
/**
|
|
1108
|
+
* @public
|
|
1109
|
+
*/
|
|
1110
|
+
export type ColumnRole = (typeof ColumnRole)[keyof typeof ColumnRole];
|
|
1026
1111
|
/**
|
|
1027
1112
|
* @public
|
|
1028
1113
|
* <p>The general configuration of a column.</p>
|
|
@@ -1057,36 +1142,56 @@ export interface DataSetIdentifierDeclaration {
|
|
|
1057
1142
|
}
|
|
1058
1143
|
/**
|
|
1059
1144
|
* @public
|
|
1145
|
+
* @enum
|
|
1060
1146
|
*/
|
|
1061
|
-
export declare
|
|
1062
|
-
ALL_DATASETS
|
|
1063
|
-
SINGLE_DATASET
|
|
1064
|
-
}
|
|
1147
|
+
export declare const CrossDatasetTypes: {
|
|
1148
|
+
readonly ALL_DATASETS: "ALL_DATASETS";
|
|
1149
|
+
readonly SINGLE_DATASET: "SINGLE_DATASET";
|
|
1150
|
+
};
|
|
1065
1151
|
/**
|
|
1066
1152
|
* @public
|
|
1067
1153
|
*/
|
|
1068
|
-
export
|
|
1069
|
-
CONTAINS = "CONTAINS",
|
|
1070
|
-
DOES_NOT_CONTAIN = "DOES_NOT_CONTAIN",
|
|
1071
|
-
DOES_NOT_EQUAL = "DOES_NOT_EQUAL",
|
|
1072
|
-
ENDS_WITH = "ENDS_WITH",
|
|
1073
|
-
EQUALS = "EQUALS",
|
|
1074
|
-
STARTS_WITH = "STARTS_WITH"
|
|
1075
|
-
}
|
|
1154
|
+
export type CrossDatasetTypes = (typeof CrossDatasetTypes)[keyof typeof CrossDatasetTypes];
|
|
1076
1155
|
/**
|
|
1077
1156
|
* @public
|
|
1157
|
+
* @enum
|
|
1078
1158
|
*/
|
|
1079
|
-
export declare
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1159
|
+
export declare const CategoryFilterMatchOperator: {
|
|
1160
|
+
readonly CONTAINS: "CONTAINS";
|
|
1161
|
+
readonly DOES_NOT_CONTAIN: "DOES_NOT_CONTAIN";
|
|
1162
|
+
readonly DOES_NOT_EQUAL: "DOES_NOT_EQUAL";
|
|
1163
|
+
readonly ENDS_WITH: "ENDS_WITH";
|
|
1164
|
+
readonly EQUALS: "EQUALS";
|
|
1165
|
+
readonly STARTS_WITH: "STARTS_WITH";
|
|
1166
|
+
};
|
|
1084
1167
|
/**
|
|
1085
1168
|
* @public
|
|
1086
1169
|
*/
|
|
1087
|
-
export
|
|
1088
|
-
|
|
1089
|
-
|
|
1170
|
+
export type CategoryFilterMatchOperator = (typeof CategoryFilterMatchOperator)[keyof typeof CategoryFilterMatchOperator];
|
|
1171
|
+
/**
|
|
1172
|
+
* @public
|
|
1173
|
+
* @enum
|
|
1174
|
+
*/
|
|
1175
|
+
export declare const FilterNullOption: {
|
|
1176
|
+
readonly ALL_VALUES: "ALL_VALUES";
|
|
1177
|
+
readonly NON_NULLS_ONLY: "NON_NULLS_ONLY";
|
|
1178
|
+
readonly NULLS_ONLY: "NULLS_ONLY";
|
|
1179
|
+
};
|
|
1180
|
+
/**
|
|
1181
|
+
* @public
|
|
1182
|
+
*/
|
|
1183
|
+
export type FilterNullOption = (typeof FilterNullOption)[keyof typeof FilterNullOption];
|
|
1184
|
+
/**
|
|
1185
|
+
* @public
|
|
1186
|
+
* @enum
|
|
1187
|
+
*/
|
|
1188
|
+
export declare const CategoryFilterSelectAllOptions: {
|
|
1189
|
+
readonly FILTER_ALL_VALUES: "FILTER_ALL_VALUES";
|
|
1190
|
+
};
|
|
1191
|
+
/**
|
|
1192
|
+
* @public
|
|
1193
|
+
*/
|
|
1194
|
+
export type CategoryFilterSelectAllOptions = (typeof CategoryFilterSelectAllOptions)[keyof typeof CategoryFilterSelectAllOptions];
|
|
1090
1195
|
/**
|
|
1091
1196
|
* @public
|
|
1092
1197
|
* <p>A custom filter that filters based on a single value. This filter can be partially matched.</p>
|
|
@@ -1244,17 +1349,27 @@ export interface CategoryFilter {
|
|
|
1244
1349
|
}
|
|
1245
1350
|
/**
|
|
1246
1351
|
* @public
|
|
1352
|
+
* @enum
|
|
1247
1353
|
*/
|
|
1248
|
-
export declare
|
|
1249
|
-
DOES_NOT_EQUAL
|
|
1250
|
-
EQUALS
|
|
1251
|
-
}
|
|
1354
|
+
export declare const NumericEqualityMatchOperator: {
|
|
1355
|
+
readonly DOES_NOT_EQUAL: "DOES_NOT_EQUAL";
|
|
1356
|
+
readonly EQUALS: "EQUALS";
|
|
1357
|
+
};
|
|
1252
1358
|
/**
|
|
1253
1359
|
* @public
|
|
1254
1360
|
*/
|
|
1255
|
-
export
|
|
1256
|
-
|
|
1257
|
-
|
|
1361
|
+
export type NumericEqualityMatchOperator = (typeof NumericEqualityMatchOperator)[keyof typeof NumericEqualityMatchOperator];
|
|
1362
|
+
/**
|
|
1363
|
+
* @public
|
|
1364
|
+
* @enum
|
|
1365
|
+
*/
|
|
1366
|
+
export declare const NumericFilterSelectAllOptions: {
|
|
1367
|
+
readonly FILTER_ALL_VALUES: "FILTER_ALL_VALUES";
|
|
1368
|
+
};
|
|
1369
|
+
/**
|
|
1370
|
+
* @public
|
|
1371
|
+
*/
|
|
1372
|
+
export type NumericFilterSelectAllOptions = (typeof NumericFilterSelectAllOptions)[keyof typeof NumericFilterSelectAllOptions];
|
|
1258
1373
|
/**
|
|
1259
1374
|
* @public
|
|
1260
1375
|
* <p>A <code>NumericEqualityFilter</code> filters values that are equal to the specified value.</p>
|
|
@@ -1393,10 +1508,15 @@ export interface NumericRangeFilter {
|
|
|
1393
1508
|
}
|
|
1394
1509
|
/**
|
|
1395
1510
|
* @public
|
|
1511
|
+
* @enum
|
|
1396
1512
|
*/
|
|
1397
|
-
export declare
|
|
1398
|
-
NOW
|
|
1399
|
-
}
|
|
1513
|
+
export declare const AnchorOption: {
|
|
1514
|
+
readonly NOW: "NOW";
|
|
1515
|
+
};
|
|
1516
|
+
/**
|
|
1517
|
+
* @public
|
|
1518
|
+
*/
|
|
1519
|
+
export type AnchorOption = (typeof AnchorOption)[keyof typeof AnchorOption];
|
|
1400
1520
|
/**
|
|
1401
1521
|
* @public
|
|
1402
1522
|
* <p>The date configuration of the filter.</p>
|
|
@@ -1420,25 +1540,35 @@ export interface AnchorDateConfiguration {
|
|
|
1420
1540
|
}
|
|
1421
1541
|
/**
|
|
1422
1542
|
* @public
|
|
1543
|
+
* @enum
|
|
1423
1544
|
*/
|
|
1424
|
-
export declare
|
|
1425
|
-
DAY
|
|
1426
|
-
HOUR
|
|
1427
|
-
MILLISECOND
|
|
1428
|
-
MINUTE
|
|
1429
|
-
MONTH
|
|
1430
|
-
QUARTER
|
|
1431
|
-
SECOND
|
|
1432
|
-
WEEK
|
|
1433
|
-
YEAR
|
|
1434
|
-
}
|
|
1545
|
+
export declare const TimeGranularity: {
|
|
1546
|
+
readonly DAY: "DAY";
|
|
1547
|
+
readonly HOUR: "HOUR";
|
|
1548
|
+
readonly MILLISECOND: "MILLISECOND";
|
|
1549
|
+
readonly MINUTE: "MINUTE";
|
|
1550
|
+
readonly MONTH: "MONTH";
|
|
1551
|
+
readonly QUARTER: "QUARTER";
|
|
1552
|
+
readonly SECOND: "SECOND";
|
|
1553
|
+
readonly WEEK: "WEEK";
|
|
1554
|
+
readonly YEAR: "YEAR";
|
|
1555
|
+
};
|
|
1435
1556
|
/**
|
|
1436
1557
|
* @public
|
|
1437
1558
|
*/
|
|
1438
|
-
export
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1559
|
+
export type TimeGranularity = (typeof TimeGranularity)[keyof typeof TimeGranularity];
|
|
1560
|
+
/**
|
|
1561
|
+
* @public
|
|
1562
|
+
* @enum
|
|
1563
|
+
*/
|
|
1564
|
+
export declare const WidgetStatus: {
|
|
1565
|
+
readonly DISABLED: "DISABLED";
|
|
1566
|
+
readonly ENABLED: "ENABLED";
|
|
1567
|
+
};
|
|
1568
|
+
/**
|
|
1569
|
+
* @public
|
|
1570
|
+
*/
|
|
1571
|
+
export type WidgetStatus = (typeof WidgetStatus)[keyof typeof WidgetStatus];
|
|
1442
1572
|
/**
|
|
1443
1573
|
* @public
|
|
1444
1574
|
* <p>The exclude period of <code>TimeRangeFilter</code> or <code>RelativeDatesFilter</code>.</p>
|
|
@@ -1471,14 +1601,19 @@ export interface ExcludePeriodConfiguration {
|
|
|
1471
1601
|
}
|
|
1472
1602
|
/**
|
|
1473
1603
|
* @public
|
|
1604
|
+
* @enum
|
|
1474
1605
|
*/
|
|
1475
|
-
export declare
|
|
1476
|
-
LAST
|
|
1477
|
-
NEXT
|
|
1478
|
-
NOW
|
|
1479
|
-
PREVIOUS
|
|
1480
|
-
THIS
|
|
1481
|
-
}
|
|
1606
|
+
export declare const RelativeDateType: {
|
|
1607
|
+
readonly LAST: "LAST";
|
|
1608
|
+
readonly NEXT: "NEXT";
|
|
1609
|
+
readonly NOW: "NOW";
|
|
1610
|
+
readonly PREVIOUS: "PREVIOUS";
|
|
1611
|
+
readonly THIS: "THIS";
|
|
1612
|
+
};
|
|
1613
|
+
/**
|
|
1614
|
+
* @public
|
|
1615
|
+
*/
|
|
1616
|
+
export type RelativeDateType = (typeof RelativeDateType)[keyof typeof RelativeDateType];
|
|
1482
1617
|
/**
|
|
1483
1618
|
* @public
|
|
1484
1619
|
* <p>A <code>RelativeDatesFilter</code> filters relative dates values.</p>
|
|
@@ -1752,11 +1887,16 @@ export interface Filter {
|
|
|
1752
1887
|
}
|
|
1753
1888
|
/**
|
|
1754
1889
|
* @public
|
|
1890
|
+
* @enum
|
|
1755
1891
|
*/
|
|
1756
|
-
export declare
|
|
1757
|
-
ALL_VISUALS
|
|
1758
|
-
SELECTED_VISUALS
|
|
1759
|
-
}
|
|
1892
|
+
export declare const FilterVisualScope: {
|
|
1893
|
+
readonly ALL_VISUALS: "ALL_VISUALS";
|
|
1894
|
+
readonly SELECTED_VISUALS: "SELECTED_VISUALS";
|
|
1895
|
+
};
|
|
1896
|
+
/**
|
|
1897
|
+
* @public
|
|
1898
|
+
*/
|
|
1899
|
+
export type FilterVisualScope = (typeof FilterVisualScope)[keyof typeof FilterVisualScope];
|
|
1760
1900
|
/**
|
|
1761
1901
|
* @public
|
|
1762
1902
|
* <p>The filter that is applied to the options.</p>
|
|
@@ -1887,11 +2027,16 @@ export interface DateTimeDefaultValues {
|
|
|
1887
2027
|
}
|
|
1888
2028
|
/**
|
|
1889
2029
|
* @public
|
|
2030
|
+
* @enum
|
|
1890
2031
|
*/
|
|
1891
|
-
export declare
|
|
1892
|
-
NULL
|
|
1893
|
-
RECOMMENDED_VALUE
|
|
1894
|
-
}
|
|
2032
|
+
export declare const ValueWhenUnsetOption: {
|
|
2033
|
+
readonly NULL: "NULL";
|
|
2034
|
+
readonly RECOMMENDED_VALUE: "RECOMMENDED_VALUE";
|
|
2035
|
+
};
|
|
2036
|
+
/**
|
|
2037
|
+
* @public
|
|
2038
|
+
*/
|
|
2039
|
+
export type ValueWhenUnsetOption = (typeof ValueWhenUnsetOption)[keyof typeof ValueWhenUnsetOption];
|
|
1895
2040
|
/**
|
|
1896
2041
|
* @public
|
|
1897
2042
|
* <p>The configuration that defines the default value of a <code>DateTime</code> parameter when a value has not been set.</p>
|
|
@@ -1954,11 +2099,16 @@ export interface DecimalDefaultValues {
|
|
|
1954
2099
|
}
|
|
1955
2100
|
/**
|
|
1956
2101
|
* @public
|
|
2102
|
+
* @enum
|
|
1957
2103
|
*/
|
|
1958
|
-
export declare
|
|
1959
|
-
MULTI_VALUED
|
|
1960
|
-
SINGLE_VALUED
|
|
1961
|
-
}
|
|
2104
|
+
export declare const ParameterValueType: {
|
|
2105
|
+
readonly MULTI_VALUED: "MULTI_VALUED";
|
|
2106
|
+
readonly SINGLE_VALUED: "SINGLE_VALUED";
|
|
2107
|
+
};
|
|
2108
|
+
/**
|
|
2109
|
+
* @public
|
|
2110
|
+
*/
|
|
2111
|
+
export type ParameterValueType = (typeof ParameterValueType)[keyof typeof ParameterValueType];
|
|
1962
2112
|
/**
|
|
1963
2113
|
* @public
|
|
1964
2114
|
* <p>The configuration that defines the default value of a <code>Decimal</code> parameter when a value has not been set.</p>
|
|
@@ -2152,21 +2302,31 @@ export interface ParameterDeclaration {
|
|
|
2152
2302
|
}
|
|
2153
2303
|
/**
|
|
2154
2304
|
* @public
|
|
2305
|
+
* @enum
|
|
2155
2306
|
*/
|
|
2156
|
-
export declare
|
|
2157
|
-
NONE
|
|
2158
|
-
UNDERLINE
|
|
2159
|
-
}
|
|
2307
|
+
export declare const FontDecoration: {
|
|
2308
|
+
readonly NONE: "NONE";
|
|
2309
|
+
readonly UNDERLINE: "UNDERLINE";
|
|
2310
|
+
};
|
|
2160
2311
|
/**
|
|
2161
2312
|
* @public
|
|
2162
2313
|
*/
|
|
2163
|
-
export
|
|
2164
|
-
|
|
2165
|
-
|
|
2166
|
-
|
|
2167
|
-
|
|
2168
|
-
|
|
2169
|
-
|
|
2314
|
+
export type FontDecoration = (typeof FontDecoration)[keyof typeof FontDecoration];
|
|
2315
|
+
/**
|
|
2316
|
+
* @public
|
|
2317
|
+
* @enum
|
|
2318
|
+
*/
|
|
2319
|
+
export declare const RelativeFontSize: {
|
|
2320
|
+
readonly EXTRA_LARGE: "EXTRA_LARGE";
|
|
2321
|
+
readonly EXTRA_SMALL: "EXTRA_SMALL";
|
|
2322
|
+
readonly LARGE: "LARGE";
|
|
2323
|
+
readonly MEDIUM: "MEDIUM";
|
|
2324
|
+
readonly SMALL: "SMALL";
|
|
2325
|
+
};
|
|
2326
|
+
/**
|
|
2327
|
+
* @public
|
|
2328
|
+
*/
|
|
2329
|
+
export type RelativeFontSize = (typeof RelativeFontSize)[keyof typeof RelativeFontSize];
|
|
2170
2330
|
/**
|
|
2171
2331
|
* @public
|
|
2172
2332
|
* <p>The option that determines the text display size.</p>
|
|
@@ -2179,18 +2339,28 @@ export interface FontSize {
|
|
|
2179
2339
|
}
|
|
2180
2340
|
/**
|
|
2181
2341
|
* @public
|
|
2342
|
+
* @enum
|
|
2182
2343
|
*/
|
|
2183
|
-
export declare
|
|
2184
|
-
ITALIC
|
|
2185
|
-
NORMAL
|
|
2186
|
-
}
|
|
2344
|
+
export declare const FontStyle: {
|
|
2345
|
+
readonly ITALIC: "ITALIC";
|
|
2346
|
+
readonly NORMAL: "NORMAL";
|
|
2347
|
+
};
|
|
2187
2348
|
/**
|
|
2188
2349
|
* @public
|
|
2189
2350
|
*/
|
|
2190
|
-
export
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
|
|
2351
|
+
export type FontStyle = (typeof FontStyle)[keyof typeof FontStyle];
|
|
2352
|
+
/**
|
|
2353
|
+
* @public
|
|
2354
|
+
* @enum
|
|
2355
|
+
*/
|
|
2356
|
+
export declare const FontWeightName: {
|
|
2357
|
+
readonly BOLD: "BOLD";
|
|
2358
|
+
readonly NORMAL: "NORMAL";
|
|
2359
|
+
};
|
|
2360
|
+
/**
|
|
2361
|
+
* @public
|
|
2362
|
+
*/
|
|
2363
|
+
export type FontWeightName = (typeof FontWeightName)[keyof typeof FontWeightName];
|
|
2194
2364
|
/**
|
|
2195
2365
|
* @public
|
|
2196
2366
|
* <p>The option that determines the text display weight, or boldness.</p>
|
|
@@ -2261,11 +2431,16 @@ export interface DateTimePickerControlDisplayOptions {
|
|
|
2261
2431
|
}
|
|
2262
2432
|
/**
|
|
2263
2433
|
* @public
|
|
2434
|
+
* @enum
|
|
2264
2435
|
*/
|
|
2265
|
-
export declare
|
|
2266
|
-
DATE_RANGE
|
|
2267
|
-
SINGLE_VALUED
|
|
2268
|
-
}
|
|
2436
|
+
export declare const SheetControlDateTimePickerType: {
|
|
2437
|
+
readonly DATE_RANGE: "DATE_RANGE";
|
|
2438
|
+
readonly SINGLE_VALUED: "SINGLE_VALUED";
|
|
2439
|
+
};
|
|
2440
|
+
/**
|
|
2441
|
+
* @public
|
|
2442
|
+
*/
|
|
2443
|
+
export type SheetControlDateTimePickerType = (typeof SheetControlDateTimePickerType)[keyof typeof SheetControlDateTimePickerType];
|
|
2269
2444
|
/**
|
|
2270
2445
|
* @public
|
|
2271
2446
|
* <p>A control from a date filter that is used to specify date and time.</p>
|
|
@@ -2363,11 +2538,16 @@ export interface FilterSelectableValues {
|
|
|
2363
2538
|
}
|
|
2364
2539
|
/**
|
|
2365
2540
|
* @public
|
|
2541
|
+
* @enum
|
|
2366
2542
|
*/
|
|
2367
|
-
export declare
|
|
2368
|
-
MULTI_SELECT
|
|
2369
|
-
SINGLE_SELECT
|
|
2370
|
-
}
|
|
2543
|
+
export declare const SheetControlListType: {
|
|
2544
|
+
readonly MULTI_SELECT: "MULTI_SELECT";
|
|
2545
|
+
readonly SINGLE_SELECT: "SINGLE_SELECT";
|
|
2546
|
+
};
|
|
2547
|
+
/**
|
|
2548
|
+
* @public
|
|
2549
|
+
*/
|
|
2550
|
+
export type SheetControlListType = (typeof SheetControlListType)[keyof typeof SheetControlListType];
|
|
2371
2551
|
/**
|
|
2372
2552
|
* @public
|
|
2373
2553
|
* <p>A control to display a dropdown list with buttons that are used to select a single value.</p>
|
|
@@ -2532,11 +2712,16 @@ export interface SliderControlDisplayOptions {
|
|
|
2532
2712
|
}
|
|
2533
2713
|
/**
|
|
2534
2714
|
* @public
|
|
2715
|
+
* @enum
|
|
2535
2716
|
*/
|
|
2536
|
-
export declare
|
|
2537
|
-
RANGE
|
|
2538
|
-
SINGLE_POINT
|
|
2539
|
-
}
|
|
2717
|
+
export declare const SheetControlSliderType: {
|
|
2718
|
+
readonly RANGE: "RANGE";
|
|
2719
|
+
readonly SINGLE_POINT: "SINGLE_POINT";
|
|
2720
|
+
};
|
|
2721
|
+
/**
|
|
2722
|
+
* @public
|
|
2723
|
+
*/
|
|
2724
|
+
export type SheetControlSliderType = (typeof SheetControlSliderType)[keyof typeof SheetControlSliderType];
|
|
2540
2725
|
/**
|
|
2541
2726
|
* @public
|
|
2542
2727
|
* <p>A control to display a horizontal toggle bar. This is used to change a value by sliding the toggle.</p>
|
|
@@ -2736,13 +2921,18 @@ export interface FreeFormLayoutElementBorderStyle {
|
|
|
2736
2921
|
}
|
|
2737
2922
|
/**
|
|
2738
2923
|
* @public
|
|
2924
|
+
* @enum
|
|
2739
2925
|
*/
|
|
2740
|
-
export declare
|
|
2741
|
-
FILTER_CONTROL
|
|
2742
|
-
PARAMETER_CONTROL
|
|
2743
|
-
TEXT_BOX
|
|
2744
|
-
VISUAL
|
|
2745
|
-
}
|
|
2926
|
+
export declare const LayoutElementType: {
|
|
2927
|
+
readonly FILTER_CONTROL: "FILTER_CONTROL";
|
|
2928
|
+
readonly PARAMETER_CONTROL: "PARAMETER_CONTROL";
|
|
2929
|
+
readonly TEXT_BOX: "TEXT_BOX";
|
|
2930
|
+
readonly VISUAL: "VISUAL";
|
|
2931
|
+
};
|
|
2932
|
+
/**
|
|
2933
|
+
* @public
|
|
2934
|
+
*/
|
|
2935
|
+
export type LayoutElementType = (typeof LayoutElementType)[keyof typeof LayoutElementType];
|
|
2746
2936
|
/**
|
|
2747
2937
|
* @public
|
|
2748
2938
|
* <p>The configuration of loading animation in free-form layout. </p>
|
|
@@ -2934,11 +3124,16 @@ export interface BodySectionContent {
|
|
|
2934
3124
|
}
|
|
2935
3125
|
/**
|
|
2936
3126
|
* @public
|
|
3127
|
+
* @enum
|
|
2937
3128
|
*/
|
|
2938
|
-
export declare
|
|
2939
|
-
DISABLED
|
|
2940
|
-
ENABLED
|
|
2941
|
-
}
|
|
3129
|
+
export declare const SectionPageBreakStatus: {
|
|
3130
|
+
readonly DISABLED: "DISABLED";
|
|
3131
|
+
readonly ENABLED: "ENABLED";
|
|
3132
|
+
};
|
|
3133
|
+
/**
|
|
3134
|
+
* @public
|
|
3135
|
+
*/
|
|
3136
|
+
export type SectionPageBreakStatus = (typeof SectionPageBreakStatus)[keyof typeof SectionPageBreakStatus];
|
|
2942
3137
|
/**
|
|
2943
3138
|
* @public
|
|
2944
3139
|
* <p>The configuration of a page break after a section.</p>
|
|
@@ -3322,10 +3517,15 @@ export interface SheetTextBox {
|
|
|
3322
3517
|
}
|
|
3323
3518
|
/**
|
|
3324
3519
|
* @public
|
|
3520
|
+
* @enum
|
|
3325
3521
|
*/
|
|
3326
|
-
export declare
|
|
3327
|
-
ALL_FIELDS
|
|
3328
|
-
}
|
|
3522
|
+
export declare const SelectedFieldOptions: {
|
|
3523
|
+
readonly ALL_FIELDS: "ALL_FIELDS";
|
|
3524
|
+
};
|
|
3525
|
+
/**
|
|
3526
|
+
* @public
|
|
3527
|
+
*/
|
|
3528
|
+
export type SelectedFieldOptions = (typeof SelectedFieldOptions)[keyof typeof SelectedFieldOptions];
|
|
3329
3529
|
/**
|
|
3330
3530
|
* @public
|
|
3331
3531
|
* <p>The configuration of selected fields in the<code>CustomActionFilterOperation</code>.</p>
|
|
@@ -3350,10 +3550,15 @@ export interface FilterOperationSelectedFieldsConfiguration {
|
|
|
3350
3550
|
}
|
|
3351
3551
|
/**
|
|
3352
3552
|
* @public
|
|
3553
|
+
* @enum
|
|
3353
3554
|
*/
|
|
3354
|
-
export declare
|
|
3355
|
-
ALL_VISUALS
|
|
3356
|
-
}
|
|
3555
|
+
export declare const TargetVisualOptions: {
|
|
3556
|
+
readonly ALL_VISUALS: "ALL_VISUALS";
|
|
3557
|
+
};
|
|
3558
|
+
/**
|
|
3559
|
+
* @public
|
|
3560
|
+
*/
|
|
3561
|
+
export type TargetVisualOptions = (typeof TargetVisualOptions)[keyof typeof TargetVisualOptions];
|
|
3357
3562
|
/**
|
|
3358
3563
|
* @public
|
|
3359
3564
|
* <p>The configuration of the same-sheet target visuals that you want to be filtered.</p>
|
|
@@ -3462,10 +3667,15 @@ export interface CustomValuesConfiguration {
|
|
|
3462
3667
|
}
|
|
3463
3668
|
/**
|
|
3464
3669
|
* @public
|
|
3670
|
+
* @enum
|
|
3465
3671
|
*/
|
|
3466
|
-
export declare
|
|
3467
|
-
ALL_VALUES
|
|
3468
|
-
}
|
|
3672
|
+
export declare const SelectAllValueOptions: {
|
|
3673
|
+
readonly ALL_VALUES: "ALL_VALUES";
|
|
3674
|
+
};
|
|
3675
|
+
/**
|
|
3676
|
+
* @public
|
|
3677
|
+
*/
|
|
3678
|
+
export type SelectAllValueOptions = (typeof SelectAllValueOptions)[keyof typeof SelectAllValueOptions];
|
|
3469
3679
|
/**
|
|
3470
3680
|
* @public
|
|
3471
3681
|
* <p>The configuration of destination parameter values.</p>
|
|
@@ -3516,12 +3726,17 @@ export interface CustomActionSetParametersOperation {
|
|
|
3516
3726
|
}
|
|
3517
3727
|
/**
|
|
3518
3728
|
* @public
|
|
3729
|
+
* @enum
|
|
3519
3730
|
*/
|
|
3520
|
-
export declare
|
|
3521
|
-
NEW_TAB
|
|
3522
|
-
NEW_WINDOW
|
|
3523
|
-
SAME_TAB
|
|
3524
|
-
}
|
|
3731
|
+
export declare const URLTargetConfiguration: {
|
|
3732
|
+
readonly NEW_TAB: "NEW_TAB";
|
|
3733
|
+
readonly NEW_WINDOW: "NEW_WINDOW";
|
|
3734
|
+
readonly SAME_TAB: "SAME_TAB";
|
|
3735
|
+
};
|
|
3736
|
+
/**
|
|
3737
|
+
* @public
|
|
3738
|
+
*/
|
|
3739
|
+
export type URLTargetConfiguration = (typeof URLTargetConfiguration)[keyof typeof URLTargetConfiguration];
|
|
3525
3740
|
/**
|
|
3526
3741
|
* @public
|
|
3527
3742
|
* <p>The URL operation that opens a link to another webpage.</p>
|
|
@@ -3576,11 +3791,16 @@ export interface VisualCustomActionOperation {
|
|
|
3576
3791
|
}
|
|
3577
3792
|
/**
|
|
3578
3793
|
* @public
|
|
3794
|
+
* @enum
|
|
3579
3795
|
*/
|
|
3580
|
-
export declare
|
|
3581
|
-
DATA_POINT_CLICK
|
|
3582
|
-
DATA_POINT_MENU
|
|
3583
|
-
}
|
|
3796
|
+
export declare const VisualCustomActionTrigger: {
|
|
3797
|
+
readonly DATA_POINT_CLICK: "DATA_POINT_CLICK";
|
|
3798
|
+
readonly DATA_POINT_MENU: "DATA_POINT_MENU";
|
|
3799
|
+
};
|
|
3800
|
+
/**
|
|
3801
|
+
* @public
|
|
3802
|
+
*/
|
|
3803
|
+
export type VisualCustomActionTrigger = (typeof VisualCustomActionTrigger)[keyof typeof VisualCustomActionTrigger];
|
|
3584
3804
|
/**
|
|
3585
3805
|
* @public
|
|
3586
3806
|
* <p>A custom action defined on a visual.</p>
|
|
@@ -3621,12 +3841,17 @@ export interface VisualCustomAction {
|
|
|
3621
3841
|
}
|
|
3622
3842
|
/**
|
|
3623
3843
|
* @public
|
|
3844
|
+
* @enum
|
|
3624
3845
|
*/
|
|
3625
|
-
export declare
|
|
3626
|
-
CLUSTERED
|
|
3627
|
-
STACKED
|
|
3628
|
-
STACKED_PERCENT
|
|
3629
|
-
}
|
|
3846
|
+
export declare const BarsArrangement: {
|
|
3847
|
+
readonly CLUSTERED: "CLUSTERED";
|
|
3848
|
+
readonly STACKED: "STACKED";
|
|
3849
|
+
readonly STACKED_PERCENT: "STACKED_PERCENT";
|
|
3850
|
+
};
|
|
3851
|
+
/**
|
|
3852
|
+
* @public
|
|
3853
|
+
*/
|
|
3854
|
+
export type BarsArrangement = (typeof BarsArrangement)[keyof typeof BarsArrangement];
|
|
3630
3855
|
/**
|
|
3631
3856
|
* @public
|
|
3632
3857
|
* <p>The options that determine how a date axis is displayed.</p>
|
|
@@ -3991,30 +4216,45 @@ export interface DataLabelType {
|
|
|
3991
4216
|
}
|
|
3992
4217
|
/**
|
|
3993
4218
|
* @public
|
|
4219
|
+
* @enum
|
|
3994
4220
|
*/
|
|
3995
|
-
export declare
|
|
3996
|
-
PERCENT
|
|
3997
|
-
VALUE
|
|
3998
|
-
VALUE_AND_PERCENT
|
|
3999
|
-
}
|
|
4221
|
+
export declare const DataLabelContent: {
|
|
4222
|
+
readonly PERCENT: "PERCENT";
|
|
4223
|
+
readonly VALUE: "VALUE";
|
|
4224
|
+
readonly VALUE_AND_PERCENT: "VALUE_AND_PERCENT";
|
|
4225
|
+
};
|
|
4000
4226
|
/**
|
|
4001
4227
|
* @public
|
|
4002
4228
|
*/
|
|
4003
|
-
export
|
|
4004
|
-
DISABLE_OVERLAP = "DISABLE_OVERLAP",
|
|
4005
|
-
ENABLE_OVERLAP = "ENABLE_OVERLAP"
|
|
4006
|
-
}
|
|
4229
|
+
export type DataLabelContent = (typeof DataLabelContent)[keyof typeof DataLabelContent];
|
|
4007
4230
|
/**
|
|
4008
4231
|
* @public
|
|
4232
|
+
* @enum
|
|
4009
4233
|
*/
|
|
4010
|
-
export declare
|
|
4011
|
-
|
|
4012
|
-
|
|
4013
|
-
|
|
4014
|
-
|
|
4015
|
-
|
|
4016
|
-
|
|
4017
|
-
|
|
4234
|
+
export declare const DataLabelOverlap: {
|
|
4235
|
+
readonly DISABLE_OVERLAP: "DISABLE_OVERLAP";
|
|
4236
|
+
readonly ENABLE_OVERLAP: "ENABLE_OVERLAP";
|
|
4237
|
+
};
|
|
4238
|
+
/**
|
|
4239
|
+
* @public
|
|
4240
|
+
*/
|
|
4241
|
+
export type DataLabelOverlap = (typeof DataLabelOverlap)[keyof typeof DataLabelOverlap];
|
|
4242
|
+
/**
|
|
4243
|
+
* @public
|
|
4244
|
+
* @enum
|
|
4245
|
+
*/
|
|
4246
|
+
export declare const DataLabelPosition: {
|
|
4247
|
+
readonly BOTTOM: "BOTTOM";
|
|
4248
|
+
readonly INSIDE: "INSIDE";
|
|
4249
|
+
readonly LEFT: "LEFT";
|
|
4250
|
+
readonly OUTSIDE: "OUTSIDE";
|
|
4251
|
+
readonly RIGHT: "RIGHT";
|
|
4252
|
+
readonly TOP: "TOP";
|
|
4253
|
+
};
|
|
4254
|
+
/**
|
|
4255
|
+
* @public
|
|
4256
|
+
*/
|
|
4257
|
+
export type DataLabelPosition = (typeof DataLabelPosition)[keyof typeof DataLabelPosition];
|
|
4018
4258
|
/**
|
|
4019
4259
|
* @public
|
|
4020
4260
|
* <p>The options that determine the presentation of the data labels.</p>
|
|
@@ -4330,13 +4570,18 @@ export interface BarChartFieldWells {
|
|
|
4330
4570
|
}
|
|
4331
4571
|
/**
|
|
4332
4572
|
* @public
|
|
4573
|
+
* @enum
|
|
4333
4574
|
*/
|
|
4334
|
-
export declare
|
|
4335
|
-
AUTO
|
|
4336
|
-
BOTTOM
|
|
4337
|
-
RIGHT
|
|
4338
|
-
TOP
|
|
4339
|
-
}
|
|
4575
|
+
export declare const LegendPosition: {
|
|
4576
|
+
readonly AUTO: "AUTO";
|
|
4577
|
+
readonly BOTTOM: "BOTTOM";
|
|
4578
|
+
readonly RIGHT: "RIGHT";
|
|
4579
|
+
readonly TOP: "TOP";
|
|
4580
|
+
};
|
|
4581
|
+
/**
|
|
4582
|
+
* @public
|
|
4583
|
+
*/
|
|
4584
|
+
export type LegendPosition = (typeof LegendPosition)[keyof typeof LegendPosition];
|
|
4340
4585
|
/**
|
|
4341
4586
|
* @public
|
|
4342
4587
|
* <p>The options for the legend setup of a visual.</p>
|
|
@@ -4389,18 +4634,28 @@ export interface LegendOptions {
|
|
|
4389
4634
|
}
|
|
4390
4635
|
/**
|
|
4391
4636
|
* @public
|
|
4637
|
+
* @enum
|
|
4392
4638
|
*/
|
|
4393
|
-
export declare
|
|
4394
|
-
HORIZONTAL
|
|
4395
|
-
VERTICAL
|
|
4396
|
-
}
|
|
4639
|
+
export declare const BarChartOrientation: {
|
|
4640
|
+
readonly HORIZONTAL: "HORIZONTAL";
|
|
4641
|
+
readonly VERTICAL: "VERTICAL";
|
|
4642
|
+
};
|
|
4397
4643
|
/**
|
|
4398
4644
|
* @public
|
|
4399
4645
|
*/
|
|
4400
|
-
export
|
|
4401
|
-
|
|
4402
|
-
|
|
4403
|
-
|
|
4646
|
+
export type BarChartOrientation = (typeof BarChartOrientation)[keyof typeof BarChartOrientation];
|
|
4647
|
+
/**
|
|
4648
|
+
* @public
|
|
4649
|
+
* @enum
|
|
4650
|
+
*/
|
|
4651
|
+
export declare const AxisBinding: {
|
|
4652
|
+
readonly PRIMARY_YAXIS: "PRIMARY_YAXIS";
|
|
4653
|
+
readonly SECONDARY_YAXIS: "SECONDARY_YAXIS";
|
|
4654
|
+
};
|
|
4655
|
+
/**
|
|
4656
|
+
* @public
|
|
4657
|
+
*/
|
|
4658
|
+
export type AxisBinding = (typeof AxisBinding)[keyof typeof AxisBinding];
|
|
4404
4659
|
/**
|
|
4405
4660
|
* @public
|
|
4406
4661
|
* <p>The dynamic configuration of the reference line data configuration.</p>
|
|
@@ -4468,19 +4723,29 @@ export interface ReferenceLineCustomLabelConfiguration {
|
|
|
4468
4723
|
}
|
|
4469
4724
|
/**
|
|
4470
4725
|
* @public
|
|
4726
|
+
* @enum
|
|
4471
4727
|
*/
|
|
4472
|
-
export declare
|
|
4473
|
-
CENTER
|
|
4474
|
-
LEFT
|
|
4475
|
-
RIGHT
|
|
4476
|
-
}
|
|
4728
|
+
export declare const ReferenceLineLabelHorizontalPosition: {
|
|
4729
|
+
readonly CENTER: "CENTER";
|
|
4730
|
+
readonly LEFT: "LEFT";
|
|
4731
|
+
readonly RIGHT: "RIGHT";
|
|
4732
|
+
};
|
|
4477
4733
|
/**
|
|
4478
4734
|
* @public
|
|
4479
4735
|
*/
|
|
4480
|
-
export
|
|
4481
|
-
|
|
4482
|
-
|
|
4483
|
-
|
|
4736
|
+
export type ReferenceLineLabelHorizontalPosition = (typeof ReferenceLineLabelHorizontalPosition)[keyof typeof ReferenceLineLabelHorizontalPosition];
|
|
4737
|
+
/**
|
|
4738
|
+
* @public
|
|
4739
|
+
* @enum
|
|
4740
|
+
*/
|
|
4741
|
+
export declare const ReferenceLineValueLabelRelativePosition: {
|
|
4742
|
+
readonly AFTER_CUSTOM_LABEL: "AFTER_CUSTOM_LABEL";
|
|
4743
|
+
readonly BEFORE_CUSTOM_LABEL: "BEFORE_CUSTOM_LABEL";
|
|
4744
|
+
};
|
|
4745
|
+
/**
|
|
4746
|
+
* @public
|
|
4747
|
+
*/
|
|
4748
|
+
export type ReferenceLineValueLabelRelativePosition = (typeof ReferenceLineValueLabelRelativePosition)[keyof typeof ReferenceLineValueLabelRelativePosition];
|
|
4484
4749
|
/**
|
|
4485
4750
|
* @public
|
|
4486
4751
|
* <p>The value label configuration of the label in a reference line.</p>
|
|
@@ -4509,11 +4774,16 @@ export interface ReferenceLineValueLabelConfiguration {
|
|
|
4509
4774
|
}
|
|
4510
4775
|
/**
|
|
4511
4776
|
* @public
|
|
4777
|
+
* @enum
|
|
4512
4778
|
*/
|
|
4513
|
-
export declare
|
|
4514
|
-
ABOVE
|
|
4515
|
-
BELOW
|
|
4516
|
-
}
|
|
4779
|
+
export declare const ReferenceLineLabelVerticalPosition: {
|
|
4780
|
+
readonly ABOVE: "ABOVE";
|
|
4781
|
+
readonly BELOW: "BELOW";
|
|
4782
|
+
};
|
|
4783
|
+
/**
|
|
4784
|
+
* @public
|
|
4785
|
+
*/
|
|
4786
|
+
export type ReferenceLineLabelVerticalPosition = (typeof ReferenceLineLabelVerticalPosition)[keyof typeof ReferenceLineLabelVerticalPosition];
|
|
4517
4787
|
/**
|
|
4518
4788
|
* @public
|
|
4519
4789
|
* <p>The label configuration of a reference line.</p>
|
|
@@ -4576,12 +4846,17 @@ export interface ReferenceLineLabelConfiguration {
|
|
|
4576
4846
|
}
|
|
4577
4847
|
/**
|
|
4578
4848
|
* @public
|
|
4849
|
+
* @enum
|
|
4579
4850
|
*/
|
|
4580
|
-
export declare
|
|
4581
|
-
DASHED
|
|
4582
|
-
DOTTED
|
|
4583
|
-
SOLID
|
|
4584
|
-
}
|
|
4851
|
+
export declare const ReferenceLinePatternType: {
|
|
4852
|
+
readonly DASHED: "DASHED";
|
|
4853
|
+
readonly DOTTED: "DOTTED";
|
|
4854
|
+
readonly SOLID: "SOLID";
|
|
4855
|
+
};
|
|
4856
|
+
/**
|
|
4857
|
+
* @public
|
|
4858
|
+
*/
|
|
4859
|
+
export type ReferenceLinePatternType = (typeof ReferenceLinePatternType)[keyof typeof ReferenceLinePatternType];
|
|
4585
4860
|
/**
|
|
4586
4861
|
* @public
|
|
4587
4862
|
* <p>The style configuration of the reference
|
|
@@ -4650,21 +4925,31 @@ export interface ReferenceLine {
|
|
|
4650
4925
|
}
|
|
4651
4926
|
/**
|
|
4652
4927
|
* @public
|
|
4928
|
+
* @enum
|
|
4653
4929
|
*/
|
|
4654
|
-
export declare
|
|
4655
|
-
DASHED
|
|
4656
|
-
DOTTED
|
|
4657
|
-
SOLID
|
|
4658
|
-
}
|
|
4930
|
+
export declare const PanelBorderStyle: {
|
|
4931
|
+
readonly DASHED: "DASHED";
|
|
4932
|
+
readonly DOTTED: "DOTTED";
|
|
4933
|
+
readonly SOLID: "SOLID";
|
|
4934
|
+
};
|
|
4659
4935
|
/**
|
|
4660
4936
|
* @public
|
|
4661
4937
|
*/
|
|
4662
|
-
export
|
|
4663
|
-
|
|
4664
|
-
|
|
4665
|
-
|
|
4666
|
-
|
|
4667
|
-
|
|
4938
|
+
export type PanelBorderStyle = (typeof PanelBorderStyle)[keyof typeof PanelBorderStyle];
|
|
4939
|
+
/**
|
|
4940
|
+
* @public
|
|
4941
|
+
* @enum
|
|
4942
|
+
*/
|
|
4943
|
+
export declare const HorizontalTextAlignment: {
|
|
4944
|
+
readonly AUTO: "AUTO";
|
|
4945
|
+
readonly CENTER: "CENTER";
|
|
4946
|
+
readonly LEFT: "LEFT";
|
|
4947
|
+
readonly RIGHT: "RIGHT";
|
|
4948
|
+
};
|
|
4949
|
+
/**
|
|
4950
|
+
* @public
|
|
4951
|
+
*/
|
|
4952
|
+
export type HorizontalTextAlignment = (typeof HorizontalTextAlignment)[keyof typeof HorizontalTextAlignment];
|
|
4668
4953
|
/**
|
|
4669
4954
|
* @public
|
|
4670
4955
|
* <p>The options that determine the title styles for each small multiples
|
|
@@ -4750,11 +5035,16 @@ export interface SmallMultiplesOptions {
|
|
|
4750
5035
|
}
|
|
4751
5036
|
/**
|
|
4752
5037
|
* @public
|
|
5038
|
+
* @enum
|
|
4753
5039
|
*/
|
|
4754
|
-
export declare
|
|
4755
|
-
EXCLUDE
|
|
4756
|
-
INCLUDE
|
|
4757
|
-
}
|
|
5040
|
+
export declare const OtherCategories: {
|
|
5041
|
+
readonly EXCLUDE: "EXCLUDE";
|
|
5042
|
+
readonly INCLUDE: "INCLUDE";
|
|
5043
|
+
};
|
|
5044
|
+
/**
|
|
5045
|
+
* @public
|
|
5046
|
+
*/
|
|
5047
|
+
export type OtherCategories = (typeof OtherCategories)[keyof typeof OtherCategories];
|
|
4758
5048
|
/**
|
|
4759
5049
|
* @public
|
|
4760
5050
|
* <p>The limit configuration of the visual display for an axis.</p>
|
|
@@ -4928,11 +5218,16 @@ export interface TooltipItem {
|
|
|
4928
5218
|
}
|
|
4929
5219
|
/**
|
|
4930
5220
|
* @public
|
|
5221
|
+
* @enum
|
|
4931
5222
|
*/
|
|
4932
|
-
export declare
|
|
4933
|
-
NONE
|
|
4934
|
-
PRIMARY_VALUE
|
|
4935
|
-
}
|
|
5223
|
+
export declare const TooltipTitleType: {
|
|
5224
|
+
readonly NONE: "NONE";
|
|
5225
|
+
readonly PRIMARY_VALUE: "PRIMARY_VALUE";
|
|
5226
|
+
};
|
|
5227
|
+
/**
|
|
5228
|
+
* @public
|
|
5229
|
+
*/
|
|
5230
|
+
export type TooltipTitleType = (typeof TooltipTitleType)[keyof typeof TooltipTitleType];
|
|
4936
5231
|
/**
|
|
4937
5232
|
* @public
|
|
4938
5233
|
* <p>The setup for the detailed tooltip.</p>
|
|
@@ -4964,11 +5259,16 @@ export interface FieldBasedTooltip {
|
|
|
4964
5259
|
}
|
|
4965
5260
|
/**
|
|
4966
5261
|
* @public
|
|
5262
|
+
* @enum
|
|
4967
5263
|
*/
|
|
4968
|
-
export declare
|
|
4969
|
-
BASIC
|
|
4970
|
-
DETAILED
|
|
4971
|
-
}
|
|
5264
|
+
export declare const SelectedTooltipType: {
|
|
5265
|
+
readonly BASIC: "BASIC";
|
|
5266
|
+
readonly DETAILED: "DETAILED";
|
|
5267
|
+
};
|
|
5268
|
+
/**
|
|
5269
|
+
* @public
|
|
5270
|
+
*/
|
|
5271
|
+
export type SelectedTooltipType = (typeof SelectedTooltipType)[keyof typeof SelectedTooltipType];
|
|
4972
5272
|
/**
|
|
4973
5273
|
* @public
|
|
4974
5274
|
* <p>The display options for the visual tooltip.</p>
|
|
@@ -5373,11 +5673,16 @@ export interface BarChartVisual {
|
|
|
5373
5673
|
}
|
|
5374
5674
|
/**
|
|
5375
5675
|
* @public
|
|
5676
|
+
* @enum
|
|
5376
5677
|
*/
|
|
5377
|
-
export declare
|
|
5378
|
-
SOLID
|
|
5379
|
-
TRANSPARENT
|
|
5380
|
-
}
|
|
5678
|
+
export declare const BoxPlotFillStyle: {
|
|
5679
|
+
readonly SOLID: "SOLID";
|
|
5680
|
+
readonly TRANSPARENT: "TRANSPARENT";
|
|
5681
|
+
};
|
|
5682
|
+
/**
|
|
5683
|
+
* @public
|
|
5684
|
+
*/
|
|
5685
|
+
export type BoxPlotFillStyle = (typeof BoxPlotFillStyle)[keyof typeof BoxPlotFillStyle];
|
|
5381
5686
|
/**
|
|
5382
5687
|
* @public
|
|
5383
5688
|
* <p>The style options of the box plot.</p>
|