@aws-sdk/client-quicksight 3.1030.0 → 3.1032.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 (53) hide show
  1. package/dist-cjs/index.js +7 -0
  2. package/dist-cjs/schemas/schemas_0.js +90 -56
  3. package/dist-es/models/enums.js +6 -0
  4. package/dist-es/schemas/schemas_0.js +58 -24
  5. package/dist-types/commands/CreateAnalysisCommand.d.ts +136 -71
  6. package/dist-types/commands/CreateCustomPermissionsCommand.d.ts +1 -0
  7. package/dist-types/commands/CreateDashboardCommand.d.ts +136 -71
  8. package/dist-types/commands/CreateDataSourceCommand.d.ts +9 -1
  9. package/dist-types/commands/CreateTemplateCommand.d.ts +136 -71
  10. package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +136 -71
  11. package/dist-types/commands/DescribeAssetBundleImportJobCommand.d.ts +4 -0
  12. package/dist-types/commands/DescribeCustomPermissionsCommand.d.ts +1 -0
  13. package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +136 -71
  14. package/dist-types/commands/DescribeDataSourceCommand.d.ts +9 -1
  15. package/dist-types/commands/DescribeRoleCustomPermissionCommand.d.ts +2 -1
  16. package/dist-types/commands/DescribeSelfUpgradeConfigurationCommand.d.ts +1 -1
  17. package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +136 -71
  18. package/dist-types/commands/GenerateEmbedUrlForRegisteredUserCommand.d.ts +6 -0
  19. package/dist-types/commands/GenerateEmbedUrlForRegisteredUserWithIdentityCommand.d.ts +6 -0
  20. package/dist-types/commands/ListCustomPermissionsCommand.d.ts +1 -0
  21. package/dist-types/commands/ListDataSourcesCommand.d.ts +9 -1
  22. package/dist-types/commands/SearchDataSourcesCommand.d.ts +1 -1
  23. package/dist-types/commands/StartAssetBundleImportJobCommand.d.ts +4 -0
  24. package/dist-types/commands/UpdateAnalysisCommand.d.ts +136 -71
  25. package/dist-types/commands/UpdateCustomPermissionsCommand.d.ts +1 -0
  26. package/dist-types/commands/UpdateDashboardCommand.d.ts +136 -71
  27. package/dist-types/commands/UpdateDataSourceCommand.d.ts +8 -0
  28. package/dist-types/commands/UpdateTemplateCommand.d.ts +136 -71
  29. package/dist-types/commands/UpdateTopicRefreshScheduleCommand.d.ts +2 -1
  30. package/dist-types/commands/UpdateUserCommand.d.ts +1 -1
  31. package/dist-types/commands/UpdateUserCustomPermissionCommand.d.ts +1 -2
  32. package/dist-types/models/enums.d.ts +14 -0
  33. package/dist-types/models/models_0.d.ts +72 -43
  34. package/dist-types/models/models_1.d.ts +43 -109
  35. package/dist-types/models/models_2.d.ts +207 -60
  36. package/dist-types/models/models_3.d.ts +69 -78
  37. package/dist-types/models/models_4.d.ts +87 -210
  38. package/dist-types/models/models_5.d.ts +211 -1
  39. package/dist-types/schemas/schemas_0.d.ts +4 -0
  40. package/dist-types/ts3.4/commands/DescribeRoleCustomPermissionCommand.d.ts +2 -4
  41. package/dist-types/ts3.4/commands/DescribeSelfUpgradeConfigurationCommand.d.ts +1 -1
  42. package/dist-types/ts3.4/commands/UpdateTopicRefreshScheduleCommand.d.ts +2 -4
  43. package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +1 -1
  44. package/dist-types/ts3.4/commands/UpdateUserCustomPermissionCommand.d.ts +4 -2
  45. package/dist-types/ts3.4/models/enums.d.ts +8 -0
  46. package/dist-types/ts3.4/models/models_0.d.ts +14 -10
  47. package/dist-types/ts3.4/models/models_1.d.ts +11 -25
  48. package/dist-types/ts3.4/models/models_2.d.ts +107 -15
  49. package/dist-types/ts3.4/models/models_3.d.ts +19 -21
  50. package/dist-types/ts3.4/models/models_4.d.ts +24 -30
  51. package/dist-types/ts3.4/models/models_5.d.ts +32 -0
  52. package/dist-types/ts3.4/schemas/schemas_0.d.ts +4 -0
  53. package/package.json +33 -33
@@ -1,5 +1,215 @@
1
- import type { VisualRole, VPCConnectionAvailabilityStatus, VPCConnectionResourceStatus } from "./enums";
1
+ import type { UserRole, VisualRole, VPCConnectionAvailabilityStatus, VPCConnectionResourceStatus } from "./enums";
2
2
  import type { TopicIR, TopicTemplate } from "./models_2";
3
+ import type { User } from "./models_4";
4
+ /**
5
+ * @public
6
+ */
7
+ export interface UpdateTopicRefreshScheduleResponse {
8
+ /**
9
+ * <p>The ID of the topic that you want to modify. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
10
+ * @public
11
+ */
12
+ TopicId?: string | undefined;
13
+ /**
14
+ * <p>The Amazon Resource Name (ARN) of the topic.</p>
15
+ * @public
16
+ */
17
+ TopicArn?: string | undefined;
18
+ /**
19
+ * <p>The Amazon Resource Name (ARN) of the dataset.</p>
20
+ * @public
21
+ */
22
+ DatasetArn?: string | undefined;
23
+ /**
24
+ * <p>The HTTP status of the request.</p>
25
+ * @public
26
+ */
27
+ Status?: number | undefined;
28
+ /**
29
+ * <p>The Amazon Web Services request ID for this operation.</p>
30
+ * @public
31
+ */
32
+ RequestId?: string | undefined;
33
+ }
34
+ /**
35
+ * @public
36
+ */
37
+ export interface UpdateUserRequest {
38
+ /**
39
+ * <p>The Amazon Quick Sight user name that you want to update.</p>
40
+ * @public
41
+ */
42
+ UserName: string | undefined;
43
+ /**
44
+ * <p>The ID for the Amazon Web Services account that the user is in. Currently, you use the ID for the
45
+ * Amazon Web Services account that contains your Amazon Quick Sight account.</p>
46
+ * @public
47
+ */
48
+ AwsAccountId: string | undefined;
49
+ /**
50
+ * <p>The namespace. Currently, you should set this to <code>default</code>.</p>
51
+ * @public
52
+ */
53
+ Namespace: string | undefined;
54
+ /**
55
+ * <p>The email address of the user that you want to update.</p>
56
+ * @public
57
+ */
58
+ Email: string | undefined;
59
+ /**
60
+ * <p>The Amazon Quick Sight role of the user. The role can be one of the
61
+ * following default security cohorts:</p>
62
+ * <ul>
63
+ * <li>
64
+ * <p>
65
+ * <code>READER</code>: A user who has read-only access to dashboards.</p>
66
+ * </li>
67
+ * <li>
68
+ * <p>
69
+ * <code>AUTHOR</code>: A user who can create data sources, datasets, analyses, and
70
+ * dashboards.</p>
71
+ * </li>
72
+ * <li>
73
+ * <p>
74
+ * <code>ADMIN</code>: A user who is an author, who can also manage Amazon Quick Sight
75
+ * settings.</p>
76
+ * </li>
77
+ * <li>
78
+ * <p>
79
+ * <code>READER_PRO</code>: Reader Pro adds Generative BI capabilities to the Reader role. Reader Pros have access to Amazon Q in Quick Sight, can build stories with Amazon Q, and can generate executive summaries from dashboards.</p>
80
+ * </li>
81
+ * <li>
82
+ * <p>
83
+ * <code>AUTHOR_PRO</code>: Author Pro adds Generative BI capabilities to the Author role. Author Pros can author dashboards with natural language with Amazon Q, build stories with Amazon Q, create Topics for Q&A, and generate executive summaries from dashboards.</p>
84
+ * </li>
85
+ * <li>
86
+ * <p>
87
+ * <code>ADMIN_PRO</code>: Admin Pros are Author Pros who can also manage Amazon Quick Sight administrative settings. Admin Pro users are billed at Author Pro pricing.</p>
88
+ * </li>
89
+ * </ul>
90
+ * <p>The name of the Quick Sight role is invisible to the user except for the console
91
+ * screens dealing with permissions.</p>
92
+ * @public
93
+ */
94
+ Role: UserRole | undefined;
95
+ /**
96
+ * <p>(Enterprise edition only) The name of the custom permissions profile that you want to
97
+ * assign to this user. Customized permissions allows you to control a user's access by
98
+ * restricting access the following operations:</p>
99
+ * <ul>
100
+ * <li>
101
+ * <p>Create and update data sources</p>
102
+ * </li>
103
+ * <li>
104
+ * <p>Create and update datasets</p>
105
+ * </li>
106
+ * <li>
107
+ * <p>Create and update email reports</p>
108
+ * </li>
109
+ * <li>
110
+ * <p>Subscribe to email reports</p>
111
+ * </li>
112
+ * </ul>
113
+ * <p>A set of custom permissions includes any combination of these restrictions. Currently,
114
+ * you need to create the profile names for custom permission sets by using the Quick Sight
115
+ * console. Then, you use the <code>RegisterUser</code> API operation to assign the named set of
116
+ * permissions to a Quick Sight user. </p>
117
+ * <p>Quick Sight custom permissions are applied through IAM policies. Therefore, they
118
+ * override the permissions typically granted by assigning Quick Sight users to one of the
119
+ * default security cohorts in Quick Sight (admin, author, reader).</p>
120
+ * <p>This feature is available only to Quick Sight Enterprise edition subscriptions.</p>
121
+ * @public
122
+ */
123
+ CustomPermissionsName?: string | undefined;
124
+ /**
125
+ * <p>A flag that you use to indicate that you want to remove all custom permissions
126
+ * from this user. Using this parameter resets the user to the state
127
+ * it was in before a custom permissions profile was applied. This parameter defaults to
128
+ * NULL and it doesn't accept any other value.</p>
129
+ * @public
130
+ */
131
+ UnapplyCustomPermissions?: boolean | undefined;
132
+ /**
133
+ * <p>The type of supported external login provider that provides identity to let a user federate into Quick Sight with an associated Identity and Access Management(IAM) role. The type of supported external login provider can be one of the following.</p>
134
+ * <ul>
135
+ * <li>
136
+ * <p>
137
+ * <code>COGNITO</code>: Amazon Cognito. The provider URL is cognito-identity.amazonaws.com. When choosing the <code>COGNITO</code> provider type, don’t use the "CustomFederationProviderUrl" parameter which is only needed when the external provider is custom.</p>
138
+ * </li>
139
+ * <li>
140
+ * <p>
141
+ * <code>CUSTOM_OIDC</code>: Custom OpenID Connect (OIDC) provider. When choosing <code>CUSTOM_OIDC</code> type, use the <code>CustomFederationProviderUrl</code> parameter to provide the custom OIDC provider URL.</p>
142
+ * </li>
143
+ * <li>
144
+ * <p>
145
+ * <code>NONE</code>: This clears all the previously saved external login information for a user. Use the
146
+ * <code>
147
+ * <a href="https://docs.aws.amazon.com/quicksight/latest/APIReference/API_DescribeUser.html">DescribeUser</a>
148
+ * </code>
149
+ * API operation to check the external login information.</p>
150
+ * </li>
151
+ * </ul>
152
+ * @public
153
+ */
154
+ ExternalLoginFederationProviderType?: string | undefined;
155
+ /**
156
+ * <p>The URL of the custom OpenID Connect (OIDC) provider that provides identity to let a user federate
157
+ * into Quick Sight with an associated Identity and Access Management(IAM) role. This parameter should
158
+ * only be used when <code>ExternalLoginFederationProviderType</code> parameter is set to <code>CUSTOM_OIDC</code>.</p>
159
+ * @public
160
+ */
161
+ CustomFederationProviderUrl?: string | undefined;
162
+ /**
163
+ * <p>The identity ID for a user in the external login provider.</p>
164
+ * @public
165
+ */
166
+ ExternalLoginId?: string | undefined;
167
+ }
168
+ /**
169
+ * @public
170
+ */
171
+ export interface UpdateUserResponse {
172
+ /**
173
+ * <p>The Amazon Quick Sight user.</p>
174
+ * @public
175
+ */
176
+ User?: User | undefined;
177
+ /**
178
+ * <p>The Amazon Web Services request ID for this operation.</p>
179
+ * @public
180
+ */
181
+ RequestId?: string | undefined;
182
+ /**
183
+ * <p>The HTTP status of the request.</p>
184
+ * @public
185
+ */
186
+ Status?: number | undefined;
187
+ }
188
+ /**
189
+ * @public
190
+ */
191
+ export interface UpdateUserCustomPermissionRequest {
192
+ /**
193
+ * <p>The username of the user that you want to update custom permissions for.</p>
194
+ * @public
195
+ */
196
+ UserName: string | undefined;
197
+ /**
198
+ * <p>The ID of the Amazon Web Services account that contains the custom permission configuration that you want to update.</p>
199
+ * @public
200
+ */
201
+ AwsAccountId: string | undefined;
202
+ /**
203
+ * <p>The namespace that the user belongs to.</p>
204
+ * @public
205
+ */
206
+ Namespace: string | undefined;
207
+ /**
208
+ * <p>The name of the custom permissions that you want to update.</p>
209
+ * @public
210
+ */
211
+ CustomPermissionsName: string | undefined;
212
+ }
3
213
  /**
4
214
  * @public
5
215
  */
@@ -248,6 +248,7 @@ export declare var ContextualAccentPalette$: StaticStructureSchema;
248
248
  export declare var ContributionAnalysisDefault$: StaticStructureSchema;
249
249
  export declare var ContributionAnalysisFactor$: StaticStructureSchema;
250
250
  export declare var ContributionAnalysisTimeRanges$: StaticStructureSchema;
251
+ export declare var ControlSortConfiguration$: StaticStructureSchema;
251
252
  export declare var Coordinate$: StaticStructureSchema;
252
253
  export declare var CreateAccountCustomizationRequest$: StaticStructureSchema;
253
254
  export declare var CreateAccountCustomizationResponse$: StaticStructureSchema;
@@ -320,6 +321,7 @@ export declare var CustomPermissions$: StaticStructureSchema;
320
321
  export declare var CustomSql$: StaticStructureSchema;
321
322
  export declare var CustomValuesConfiguration$: StaticStructureSchema;
322
323
  export declare var Dashboard$: StaticStructureSchema;
324
+ export declare var DashboardCustomizationSummaryConfigurations$: StaticStructureSchema;
323
325
  export declare var DashboardCustomizationVisualOptions$: StaticStructureSchema;
324
326
  export declare var DashboardError$: StaticStructureSchema;
325
327
  export declare var DashboardPublishOptions$: StaticStructureSchema;
@@ -1123,6 +1125,7 @@ export declare var S3BucketConfiguration$: StaticStructureSchema;
1123
1125
  export declare var S3KnowledgeBaseParameters$: StaticStructureSchema;
1124
1126
  export declare var S3Parameters$: StaticStructureSchema;
1125
1127
  export declare var S3Source$: StaticStructureSchema;
1128
+ export declare var S3TablesParameters$: StaticStructureSchema;
1126
1129
  export declare var SaaSTable$: StaticStructureSchema;
1127
1130
  export declare var SameSheetTargetVisualConfiguration$: StaticStructureSchema;
1128
1131
  export declare var SankeyDiagramAggregatedFieldWells$: StaticStructureSchema;
@@ -1166,6 +1169,7 @@ export declare var SectionBasedLayoutPaperCanvasSizeOptions$: StaticStructureSch
1166
1169
  export declare var SectionLayoutConfiguration$: StaticStructureSchema;
1167
1170
  export declare var SectionPageBreakConfiguration$: StaticStructureSchema;
1168
1171
  export declare var SectionStyle$: StaticStructureSchema;
1172
+ export declare var SelectableValuesSort$: StaticStructureSchema;
1169
1173
  export declare var SelectedSheetsFilterScopeConfiguration$: StaticStructureSchema;
1170
1174
  export declare var SelfUpgradeConfiguration$: StaticStructureSchema;
1171
1175
  export declare var SelfUpgradeRequestDetail$: StaticStructureSchema;
@@ -1,9 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- DescribeRoleCustomPermissionRequest,
5
- DescribeRoleCustomPermissionResponse,
6
- } from "../models/models_3";
3
+ import { DescribeRoleCustomPermissionRequest } from "../models/models_3";
4
+ import { DescribeRoleCustomPermissionResponse } from "../models/models_4";
7
5
  import {
8
6
  QuickSightClientResolvedConfig,
9
7
  ServiceInputTypes,
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  DescribeSelfUpgradeConfigurationRequest,
5
5
  DescribeSelfUpgradeConfigurationResponse,
6
- } from "../models/models_3";
6
+ } from "../models/models_4";
7
7
  import {
8
8
  QuickSightClientResolvedConfig,
9
9
  ServiceInputTypes,
@@ -1,9 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- UpdateTopicRefreshScheduleRequest,
5
- UpdateTopicRefreshScheduleResponse,
6
- } from "../models/models_4";
3
+ import { UpdateTopicRefreshScheduleRequest } from "../models/models_4";
4
+ import { UpdateTopicRefreshScheduleResponse } from "../models/models_5";
7
5
  import {
8
6
  QuickSightClientResolvedConfig,
9
7
  ServiceInputTypes,
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { UpdateUserRequest, UpdateUserResponse } from "../models/models_4";
3
+ import { UpdateUserRequest, UpdateUserResponse } from "../models/models_5";
4
4
  import {
5
5
  QuickSightClientResolvedConfig,
6
6
  ServiceInputTypes,
@@ -1,7 +1,9 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { UpdateUserCustomPermissionRequest } from "../models/models_4";
4
- import { UpdateUserCustomPermissionResponse } from "../models/models_5";
3
+ import {
4
+ UpdateUserCustomPermissionRequest,
5
+ UpdateUserCustomPermissionResponse,
6
+ } from "../models/models_5";
5
7
  import {
6
8
  QuickSightClientResolvedConfig,
7
9
  ServiceInputTypes,
@@ -410,6 +410,13 @@ export declare const SheetControlDateTimePickerType: {
410
410
  };
411
411
  export type SheetControlDateTimePickerType =
412
412
  (typeof SheetControlDateTimePickerType)[keyof typeof SheetControlDateTimePickerType];
413
+ export declare const ControlSortDirection: {
414
+ readonly ASC: "ASC";
415
+ readonly DESC: "DESC";
416
+ readonly USER_DEFINED_ORDER: "USER_DEFINED_ORDER";
417
+ };
418
+ export type ControlSortDirection =
419
+ (typeof ControlSortDirection)[keyof typeof ControlSortDirection];
413
420
  export declare const SheetControlListType: {
414
421
  readonly MULTI_SELECT: "MULTI_SELECT";
415
422
  readonly SINGLE_SELECT: "SINGLE_SELECT";
@@ -1656,6 +1663,7 @@ export declare const DataSourceType: {
1656
1663
  readonly REDSHIFT: "REDSHIFT";
1657
1664
  readonly S3: "S3";
1658
1665
  readonly S3_KNOWLEDGE_BASE: "S3_KNOWLEDGE_BASE";
1666
+ readonly S3_TABLES: "S3_TABLES";
1659
1667
  readonly SALESFORCE: "SALESFORCE";
1660
1668
  readonly SERVICENOW: "SERVICENOW";
1661
1669
  readonly SHAREPOINT: "SHAREPOINT";
@@ -14,6 +14,7 @@ import {
14
14
  ColumnRole,
15
15
  CommitMode,
16
16
  ConnectionAuthType,
17
+ ControlSortDirection,
17
18
  CrossDatasetTypes,
18
19
  DashboardBehavior,
19
20
  DataLabelContent,
@@ -733,6 +734,13 @@ export interface DefaultDateTimePickerControlOptions {
733
734
  DisplayOptions?: DateTimePickerControlDisplayOptions | undefined;
734
735
  CommitMode?: CommitMode | undefined;
735
736
  }
737
+ export interface SelectableValuesSort {
738
+ Direction: ControlSortDirection | undefined;
739
+ }
740
+ export interface ControlSortConfiguration {
741
+ SelectableValuesSort?: SelectableValuesSort | undefined;
742
+ ControlColumnSort?: AggregationSortConfiguration | undefined;
743
+ }
736
744
  export interface ListControlSelectAllOptions {
737
745
  Visibility?: Visibility | undefined;
738
746
  }
@@ -749,6 +757,7 @@ export interface DefaultFilterDropDownControlOptions {
749
757
  Type?: SheetControlListType | undefined;
750
758
  SelectableValues?: FilterSelectableValues | undefined;
751
759
  CommitMode?: CommitMode | undefined;
760
+ ControlSortConfigurations?: ControlSortConfiguration[] | undefined;
752
761
  }
753
762
  export interface ListControlSearchOptions {
754
763
  Visibility?: Visibility | undefined;
@@ -763,6 +772,7 @@ export interface DefaultFilterListControlOptions {
763
772
  DisplayOptions?: ListControlDisplayOptions | undefined;
764
773
  Type?: SheetControlListType | undefined;
765
774
  SelectableValues?: FilterSelectableValues | undefined;
775
+ ControlSortConfigurations?: ControlSortConfiguration[] | undefined;
766
776
  }
767
777
  export interface RelativeDateTimeControlDisplayOptions {
768
778
  TitleOptions?: LabelOptions | undefined;
@@ -1097,6 +1107,7 @@ export interface FilterDropDownControl {
1097
1107
  SelectableValues?: FilterSelectableValues | undefined;
1098
1108
  CascadingControlConfiguration?: CascadingControlConfiguration | undefined;
1099
1109
  CommitMode?: CommitMode | undefined;
1110
+ ControlSortConfigurations?: ControlSortConfiguration[] | undefined;
1100
1111
  }
1101
1112
  export interface FilterListControl {
1102
1113
  FilterControlId: string | undefined;
@@ -1106,6 +1117,7 @@ export interface FilterListControl {
1106
1117
  Type?: SheetControlListType | undefined;
1107
1118
  SelectableValues?: FilterSelectableValues | undefined;
1108
1119
  CascadingControlConfiguration?: CascadingControlConfiguration | undefined;
1120
+ ControlSortConfigurations?: ControlSortConfiguration[] | undefined;
1109
1121
  }
1110
1122
  export interface FilterRelativeDateTimeControl {
1111
1123
  FilterControlId: string | undefined;
@@ -1319,6 +1331,7 @@ export interface ParameterDropDownControl {
1319
1331
  SelectableValues?: ParameterSelectableValues | undefined;
1320
1332
  CascadingControlConfiguration?: CascadingControlConfiguration | undefined;
1321
1333
  CommitMode?: CommitMode | undefined;
1334
+ ControlSortConfigurations?: ControlSortConfiguration[] | undefined;
1322
1335
  }
1323
1336
  export interface ParameterListControl {
1324
1337
  ParameterControlId: string | undefined;
@@ -1328,6 +1341,7 @@ export interface ParameterListControl {
1328
1341
  Type?: SheetControlListType | undefined;
1329
1342
  SelectableValues?: ParameterSelectableValues | undefined;
1330
1343
  CascadingControlConfiguration?: CascadingControlConfiguration | undefined;
1344
+ ControlSortConfigurations?: ControlSortConfiguration[] | undefined;
1331
1345
  }
1332
1346
  export interface ParameterSliderControl {
1333
1347
  ParameterControlId: string | undefined;
@@ -1745,13 +1759,3 @@ export interface TooltipOptions {
1745
1759
  export interface DataPathType {
1746
1760
  PivotTableDataPathType?: PivotTableDataPathType | undefined;
1747
1761
  }
1748
- export interface DataPathValue {
1749
- FieldId?: string | undefined;
1750
- FieldValue?: string | undefined;
1751
- DataPathType?: DataPathType | undefined;
1752
- }
1753
- export interface DataPathColor {
1754
- Element: DataPathValue | undefined;
1755
- Color: string | undefined;
1756
- TimeGranularity?: TimeGranularity | undefined;
1757
- }
@@ -80,8 +80,7 @@ import {
80
80
  CustomActionSetParametersOperation,
81
81
  CustomActionURLOperation,
82
82
  DataLabelOptions,
83
- DataPathColor,
84
- DataPathValue,
83
+ DataPathType,
85
84
  DecalSettings,
86
85
  DimensionField,
87
86
  FieldSort,
@@ -99,6 +98,16 @@ import {
99
98
  VisualCustomAction,
100
99
  VisualInteractionOptions,
101
100
  } from "./models_0";
101
+ export interface DataPathValue {
102
+ FieldId?: string | undefined;
103
+ FieldValue?: string | undefined;
104
+ DataPathType?: DataPathType | undefined;
105
+ }
106
+ export interface DataPathColor {
107
+ Element: DataPathValue | undefined;
108
+ Color: string | undefined;
109
+ TimeGranularity?: TimeGranularity | undefined;
110
+ }
102
111
  export interface VisualPalette {
103
112
  ChartColor?: string | undefined;
104
113
  ColorMap?: DataPathColor[] | undefined;
@@ -1766,26 +1775,3 @@ export interface WaterfallChartSortConfiguration {
1766
1775
  export interface WaterfallChartOptions {
1767
1776
  TotalBarLabel?: string | undefined;
1768
1777
  }
1769
- export interface WaterfallChartConfiguration {
1770
- FieldWells?: WaterfallChartFieldWells | undefined;
1771
- SortConfiguration?: WaterfallChartSortConfiguration | undefined;
1772
- WaterfallChartOptions?: WaterfallChartOptions | undefined;
1773
- CategoryAxisLabelOptions?: ChartAxisLabelOptions | undefined;
1774
- CategoryAxisDisplayOptions?: AxisDisplayOptions | undefined;
1775
- PrimaryYAxisLabelOptions?: ChartAxisLabelOptions | undefined;
1776
- PrimaryYAxisDisplayOptions?: AxisDisplayOptions | undefined;
1777
- Legend?: LegendOptions | undefined;
1778
- DataLabels?: DataLabelOptions | undefined;
1779
- VisualPalette?: VisualPalette | undefined;
1780
- ColorConfiguration?: WaterfallChartColorConfiguration | undefined;
1781
- Interactions?: VisualInteractionOptions | undefined;
1782
- }
1783
- export interface WaterfallVisual {
1784
- VisualId: string | undefined;
1785
- Title?: VisualTitleLabelOptions | undefined;
1786
- Subtitle?: VisualSubtitleLabelOptions | undefined;
1787
- ChartConfiguration?: WaterfallChartConfiguration | undefined;
1788
- Actions?: VisualCustomAction[] | undefined;
1789
- ColumnHierarchies?: ColumnHierarchy[] | undefined;
1790
- VisualContentAltText?: string | undefined;
1791
- }