@aws-sdk/client-quicksight 3.388.0 → 3.391.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 (47) hide show
  1. package/dist-cjs/commands/UpdateDashboardCommand.js +2 -2
  2. package/dist-cjs/endpoint/ruleset.js +1 -1
  3. package/dist-cjs/models/models_1.js +14 -7
  4. package/dist-cjs/models/models_2.js +12 -3
  5. package/dist-cjs/models/models_3.js +2 -6
  6. package/dist-cjs/models/models_4.js +6 -1
  7. package/dist-es/commands/UpdateDashboardCommand.js +1 -1
  8. package/dist-es/endpoint/ruleset.js +1 -1
  9. package/dist-es/models/models_1.js +10 -3
  10. package/dist-es/models/models_2.js +9 -0
  11. package/dist-es/models/models_3.js +1 -4
  12. package/dist-es/models/models_4.js +5 -1
  13. package/dist-types/commands/CreateAccountSubscriptionCommand.d.ts +1 -1
  14. package/dist-types/commands/CreateAnalysisCommand.d.ts +23 -5
  15. package/dist-types/commands/CreateDashboardCommand.d.ts +23 -5
  16. package/dist-types/commands/CreateTemplateCommand.d.ts +23 -5
  17. package/dist-types/commands/CreateTopicCommand.d.ts +4 -2
  18. package/dist-types/commands/DeleteAccountCustomizationCommand.d.ts +1 -1
  19. package/dist-types/commands/DescribeAccountSubscriptionCommand.d.ts +1 -0
  20. package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +23 -5
  21. package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +23 -5
  22. package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +23 -5
  23. package/dist-types/commands/DescribeTopicCommand.d.ts +4 -2
  24. package/dist-types/commands/DescribeUserCommand.d.ts +1 -1
  25. package/dist-types/commands/ListUsersCommand.d.ts +1 -1
  26. package/dist-types/commands/RegisterUserCommand.d.ts +2 -2
  27. package/dist-types/commands/StartDashboardSnapshotJobCommand.d.ts +9 -1
  28. package/dist-types/commands/UpdateAnalysisCommand.d.ts +23 -5
  29. package/dist-types/commands/UpdateAnalysisPermissionsCommand.d.ts +1 -1
  30. package/dist-types/commands/UpdateDashboardCommand.d.ts +24 -6
  31. package/dist-types/commands/UpdateTemplateCommand.d.ts +23 -5
  32. package/dist-types/commands/UpdateTopicCommand.d.ts +4 -2
  33. package/dist-types/commands/UpdateUserCommand.d.ts +1 -1
  34. package/dist-types/models/models_0.d.ts +5 -0
  35. package/dist-types/models/models_1.d.ts +91 -57
  36. package/dist-types/models/models_2.d.ts +72 -116
  37. package/dist-types/models/models_3.d.ts +114 -192
  38. package/dist-types/models/models_4.d.ts +192 -1
  39. package/dist-types/ts3.4/commands/DeleteAccountCustomizationCommand.d.ts +1 -1
  40. package/dist-types/ts3.4/commands/UpdateAnalysisPermissionsCommand.d.ts +1 -1
  41. package/dist-types/ts3.4/commands/UpdateDashboardCommand.d.ts +1 -1
  42. package/dist-types/ts3.4/models/models_0.d.ts +1 -0
  43. package/dist-types/ts3.4/models/models_1.d.ts +26 -20
  44. package/dist-types/ts3.4/models/models_2.d.ts +29 -24
  45. package/dist-types/ts3.4/models/models_3.d.ts +24 -38
  46. package/dist-types/ts3.4/models/models_4.d.ts +39 -0
  47. package/package.json +28 -28
@@ -1,6 +1,193 @@
1
1
  import { ResourceStatus } from "./models_0";
2
- import { AssignmentStatus, ColumnGroup, ColumnLevelPermissionRule, DataSetImportMode, DatasetParameter, DataSetUsageConfiguration, DataSourceCredentials, DataSourceParameters, FieldFolder, Group, LogicalTable, PhysicalTable, RefreshSchedule, ResourcePermission, RowLevelPermissionDataSet, RowLevelPermissionTagConfiguration, SslProperties, TemplateAlias, TemplateSourceEntity, TemplateVersionDefinition, ThemeAlias, ThemeConfiguration, TopicDetails, TopicRefreshSchedule, VPCConnectionAvailabilityStatus, VpcConnectionProperties, VPCConnectionResourceStatus } from "./models_2";
2
+ import { _Parameters, AssignmentStatus, ColumnGroup, ColumnLevelPermissionRule, DashboardPublishOptions, DashboardSourceEntity, DashboardVersionDefinition, DataSetImportMode, DatasetParameter, DataSetUsageConfiguration, DataSourceCredentials, DataSourceParameters, FieldFolder, Group, LogicalTable, PhysicalTable, RefreshSchedule, ResourcePermission, RowLevelPermissionDataSet, RowLevelPermissionTagConfiguration, SslProperties, TemplateAlias, TemplateSourceEntity, TemplateVersionDefinition, ThemeAlias, ThemeConfiguration, TopicDetails, TopicRefreshSchedule, VPCConnectionAvailabilityStatus, VpcConnectionProperties, VPCConnectionResourceStatus } from "./models_2";
3
3
  import { LinkSharingConfiguration, User, UserRole } from "./models_3";
4
+ /**
5
+ * @public
6
+ */
7
+ export interface UpdateAnalysisPermissionsRequest {
8
+ /**
9
+ * @public
10
+ * <p>The ID of the Amazon Web Services account that contains the analysis whose permissions you're
11
+ * updating. You must be using the Amazon Web Services account that the analysis is in.</p>
12
+ */
13
+ AwsAccountId: string | undefined;
14
+ /**
15
+ * @public
16
+ * <p>The ID of the analysis whose permissions you're updating. The ID is part of the
17
+ * analysis URL.</p>
18
+ */
19
+ AnalysisId: string | undefined;
20
+ /**
21
+ * @public
22
+ * <p>A structure that describes the permissions to add and the principal to add them
23
+ * to.</p>
24
+ */
25
+ GrantPermissions?: ResourcePermission[];
26
+ /**
27
+ * @public
28
+ * <p>A structure that describes the permissions to remove and the principal to remove them
29
+ * from.</p>
30
+ */
31
+ RevokePermissions?: ResourcePermission[];
32
+ }
33
+ /**
34
+ * @public
35
+ */
36
+ export interface UpdateAnalysisPermissionsResponse {
37
+ /**
38
+ * @public
39
+ * <p>The Amazon Resource Name (ARN) of the analysis that you updated.</p>
40
+ */
41
+ AnalysisArn?: string;
42
+ /**
43
+ * @public
44
+ * <p>The ID of the analysis that you updated permissions for.</p>
45
+ */
46
+ AnalysisId?: string;
47
+ /**
48
+ * @public
49
+ * <p>A structure that describes the principals and the resource-level permissions on an
50
+ * analysis.</p>
51
+ */
52
+ Permissions?: ResourcePermission[];
53
+ /**
54
+ * @public
55
+ * <p>The Amazon Web Services request ID for this operation.</p>
56
+ */
57
+ RequestId?: string;
58
+ /**
59
+ * @public
60
+ * <p>The HTTP status of the request.</p>
61
+ */
62
+ Status?: number;
63
+ }
64
+ /**
65
+ * @public
66
+ */
67
+ export interface UpdateDashboardRequest {
68
+ /**
69
+ * @public
70
+ * <p>The ID of the Amazon Web Services account that contains the dashboard that you're
71
+ * updating.</p>
72
+ */
73
+ AwsAccountId: string | undefined;
74
+ /**
75
+ * @public
76
+ * <p>The ID for the dashboard.</p>
77
+ */
78
+ DashboardId: string | undefined;
79
+ /**
80
+ * @public
81
+ * <p>The display name of the dashboard.</p>
82
+ */
83
+ Name: string | undefined;
84
+ /**
85
+ * @public
86
+ * <p>The entity that you are using as a source when you update the dashboard. In
87
+ * <code>SourceEntity</code>, you specify the type of object you're using as source. You
88
+ * can only update a dashboard from a template, so you use a <code>SourceTemplate</code>
89
+ * entity. If you need to update a dashboard from an analysis, first convert the analysis
90
+ * to a template by using the <code>
91
+ * <a href="https://docs.aws.amazon.com/quicksight/latest/APIReference/API_CreateTemplate.html">CreateTemplate</a>
92
+ * </code> API operation. For
93
+ * <code>SourceTemplate</code>, specify the Amazon Resource Name (ARN) of the source
94
+ * template. The <code>SourceTemplate</code> ARN can contain any Amazon Web Services account and any
95
+ * Amazon QuickSight-supported Amazon Web Services Region. </p>
96
+ * <p>Use the <code>DataSetReferences</code> entity within <code>SourceTemplate</code> to
97
+ * list the replacement datasets for the placeholders listed in the original. The schema in
98
+ * each dataset must match its placeholder. </p>
99
+ */
100
+ SourceEntity?: DashboardSourceEntity;
101
+ /**
102
+ * @public
103
+ * <p>A structure that contains the parameters of the dashboard. These are parameter
104
+ * overrides for a dashboard. A dashboard can have any type of parameters, and some
105
+ * parameters might accept multiple values.</p>
106
+ */
107
+ Parameters?: _Parameters;
108
+ /**
109
+ * @public
110
+ * <p>A description for the first version of the dashboard being created.</p>
111
+ */
112
+ VersionDescription?: string;
113
+ /**
114
+ * @public
115
+ * <p>Options for publishing the dashboard when you create it:</p>
116
+ * <ul>
117
+ * <li>
118
+ * <p>
119
+ * <code>AvailabilityStatus</code> for <code>AdHocFilteringOption</code> - This
120
+ * status can be either <code>ENABLED</code> or <code>DISABLED</code>. When this is
121
+ * set to <code>DISABLED</code>, Amazon QuickSight disables the left filter pane on the
122
+ * published dashboard, which can be used for ad hoc (one-time) filtering. This
123
+ * option is <code>ENABLED</code> by default. </p>
124
+ * </li>
125
+ * <li>
126
+ * <p>
127
+ * <code>AvailabilityStatus</code> for <code>ExportToCSVOption</code> - This
128
+ * status can be either <code>ENABLED</code> or <code>DISABLED</code>. The visual
129
+ * option to export data to .CSV format isn't enabled when this is set to
130
+ * <code>DISABLED</code>. This option is <code>ENABLED</code> by default. </p>
131
+ * </li>
132
+ * <li>
133
+ * <p>
134
+ * <code>VisibilityState</code> for <code>SheetControlsOption</code> - This
135
+ * visibility state can be either <code>COLLAPSED</code> or <code>EXPANDED</code>.
136
+ * This option is <code>COLLAPSED</code> by default. </p>
137
+ * </li>
138
+ * </ul>
139
+ */
140
+ DashboardPublishOptions?: DashboardPublishOptions;
141
+ /**
142
+ * @public
143
+ * <p>The Amazon Resource Name (ARN) of the theme that is being used for this dashboard. If
144
+ * you add a value for this field, it overrides the value that was originally associated
145
+ * with the entity. The theme ARN must exist in the same Amazon Web Services account where you create the
146
+ * dashboard.</p>
147
+ */
148
+ ThemeArn?: string;
149
+ /**
150
+ * @public
151
+ * <p>The definition of a dashboard.</p>
152
+ * <p>A definition is the data model of all features in a Dashboard, Template, or Analysis.</p>
153
+ */
154
+ Definition?: DashboardVersionDefinition;
155
+ }
156
+ /**
157
+ * @public
158
+ */
159
+ export interface UpdateDashboardResponse {
160
+ /**
161
+ * @public
162
+ * <p>The Amazon Resource Name (ARN) of the resource.</p>
163
+ */
164
+ Arn?: string;
165
+ /**
166
+ * @public
167
+ * <p>The ARN of the dashboard, including the version number.</p>
168
+ */
169
+ VersionArn?: string;
170
+ /**
171
+ * @public
172
+ * <p>The ID for the dashboard.</p>
173
+ */
174
+ DashboardId?: string;
175
+ /**
176
+ * @public
177
+ * <p>The creation status of the request.</p>
178
+ */
179
+ CreationStatus?: ResourceStatus | string;
180
+ /**
181
+ * @public
182
+ * <p>The HTTP status of the request.</p>
183
+ */
184
+ Status?: number;
185
+ /**
186
+ * @public
187
+ * <p>The Amazon Web Services request ID for this operation.</p>
188
+ */
189
+ RequestId?: string;
190
+ }
4
191
  /**
5
192
  * @public
6
193
  */
@@ -1523,6 +1710,10 @@ export interface UpdateVPCConnectionResponse {
1523
1710
  */
1524
1711
  Status?: number;
1525
1712
  }
1713
+ /**
1714
+ * @internal
1715
+ */
1716
+ export declare const UpdateDashboardRequestFilterSensitiveLog: (obj: UpdateDashboardRequest) => any;
1526
1717
  /**
1527
1718
  * @internal
1528
1719
  */
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  DeleteAccountCustomizationRequest,
11
11
  DeleteAccountCustomizationResponse,
12
- } from "../models/models_2";
12
+ } from "../models/models_3";
13
13
  import {
14
14
  QuickSightClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  UpdateAnalysisPermissionsRequest,
11
11
  UpdateAnalysisPermissionsResponse,
12
- } from "../models/models_3";
12
+ } from "../models/models_4";
13
13
  import {
14
14
  QuickSightClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  UpdateDashboardRequest,
11
11
  UpdateDashboardResponse,
12
- } from "../models/models_3";
12
+ } from "../models/models_4";
13
13
  import {
14
14
  QuickSightClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -25,6 +25,7 @@ export interface AccountInfo {
25
25
  NotificationEmail?: string;
26
26
  AuthenticationType?: string;
27
27
  AccountSubscriptionStatus?: string;
28
+ IAMIdentityCenterInstanceArn?: string;
28
29
  }
29
30
  export interface AccountSettings {
30
31
  AccountName?: string;
@@ -1052,6 +1052,7 @@ export declare const TextWrap: {
1052
1052
  };
1053
1053
  export type TextWrap = (typeof TextWrap)[keyof typeof TextWrap];
1054
1054
  export declare const VerticalTextAlignment: {
1055
+ readonly AUTO: "AUTO";
1055
1056
  readonly BOTTOM: "BOTTOM";
1056
1057
  readonly MIDDLE: "MIDDLE";
1057
1058
  readonly TOP: "TOP";
@@ -1077,7 +1078,18 @@ export type PivotTableMetricPlacement =
1077
1078
  export interface RowAlternateColorOptions {
1078
1079
  Status?: WidgetStatus | string;
1079
1080
  RowAlternateColors?: string[];
1081
+ UsePrimaryBackgroundColor?: WidgetStatus | string;
1080
1082
  }
1083
+ export interface PivotTableRowsLabelOptions {
1084
+ Visibility?: Visibility | string;
1085
+ CustomLabel?: string;
1086
+ }
1087
+ export declare const PivotTableRowsLayout: {
1088
+ readonly HIERARCHY: "HIERARCHY";
1089
+ readonly TABULAR: "TABULAR";
1090
+ };
1091
+ export type PivotTableRowsLayout =
1092
+ (typeof PivotTableRowsLayout)[keyof typeof PivotTableRowsLayout];
1081
1093
  export interface PivotTableOptions {
1082
1094
  MetricPlacement?: PivotTableMetricPlacement | string;
1083
1095
  SingleMetricVisibility?: Visibility | string;
@@ -1089,6 +1101,9 @@ export interface PivotTableOptions {
1089
1101
  RowFieldNamesStyle?: TableCellStyle;
1090
1102
  RowAlternateColorOptions?: RowAlternateColorOptions;
1091
1103
  CollapsedRowDimensionsVisibility?: Visibility | string;
1104
+ RowsLayout?: PivotTableRowsLayout | string;
1105
+ RowsLabelOptions?: PivotTableRowsLabelOptions;
1106
+ DefaultCellWidth?: string;
1092
1107
  }
1093
1108
  export declare const PivotTableSubtotalLevel: {
1094
1109
  readonly ALL: "ALL";
@@ -1100,6 +1115,16 @@ export type PivotTableSubtotalLevel =
1100
1115
  export interface PivotTableFieldSubtotalOptions {
1101
1116
  FieldId?: string;
1102
1117
  }
1118
+ export declare const StyledCellType: {
1119
+ readonly METRIC_HEADER: "METRIC_HEADER";
1120
+ readonly TOTAL: "TOTAL";
1121
+ readonly VALUE: "VALUE";
1122
+ };
1123
+ export type StyledCellType =
1124
+ (typeof StyledCellType)[keyof typeof StyledCellType];
1125
+ export interface TableStyleTarget {
1126
+ CellType: StyledCellType | string | undefined;
1127
+ }
1103
1128
  export interface SubtotalOptions {
1104
1129
  TotalsVisibility?: Visibility | string;
1105
1130
  CustomLabel?: string;
@@ -1108,6 +1133,7 @@ export interface SubtotalOptions {
1108
1133
  TotalCellStyle?: TableCellStyle;
1109
1134
  ValueCellStyle?: TableCellStyle;
1110
1135
  MetricHeaderCellStyle?: TableCellStyle;
1136
+ StyleTargets?: TableStyleTarget[];
1111
1137
  }
1112
1138
  export declare const TableTotalsPlacement: {
1113
1139
  readonly END: "END";
@@ -1769,26 +1795,6 @@ export declare const AssetBundleExportJobDataSourcePropertyToOverride: {
1769
1795
  };
1770
1796
  export type AssetBundleExportJobDataSourcePropertyToOverride =
1771
1797
  (typeof AssetBundleExportJobDataSourcePropertyToOverride)[keyof typeof AssetBundleExportJobDataSourcePropertyToOverride];
1772
- export interface AssetBundleExportJobDataSourceOverrideProperties {
1773
- Arn?: string;
1774
- Properties:
1775
- | (AssetBundleExportJobDataSourcePropertyToOverride | string)[]
1776
- | undefined;
1777
- }
1778
- export declare const AssetBundleExportJobRefreshSchedulePropertyToOverride: {
1779
- readonly START_AFTER_DATE_TIME: "StartAfterDateTime";
1780
- };
1781
- export type AssetBundleExportJobRefreshSchedulePropertyToOverride =
1782
- (typeof AssetBundleExportJobRefreshSchedulePropertyToOverride)[keyof typeof AssetBundleExportJobRefreshSchedulePropertyToOverride];
1783
- export interface AssetBundleExportJobRefreshScheduleOverrideProperties {
1784
- Arn?: string;
1785
- Properties:
1786
- | (AssetBundleExportJobRefreshSchedulePropertyToOverride | string)[]
1787
- | undefined;
1788
- }
1789
- export interface AssetBundleExportJobResourceIdOverrideConfiguration {
1790
- PrefixForAllResources?: boolean;
1791
- }
1792
1798
  export declare const BoxPlotAggregatedFieldWellsFilterSensitiveLog: (
1793
1799
  obj: BoxPlotAggregatedFieldWells
1794
1800
  ) => any;
@@ -24,14 +24,32 @@ import {
24
24
  AssetBundleExportJobAnalysisOverrideProperties,
25
25
  AssetBundleExportJobDashboardOverrideProperties,
26
26
  AssetBundleExportJobDataSetOverrideProperties,
27
- AssetBundleExportJobDataSourceOverrideProperties,
28
- AssetBundleExportJobRefreshScheduleOverrideProperties,
29
- AssetBundleExportJobResourceIdOverrideConfiguration,
27
+ AssetBundleExportJobDataSourcePropertyToOverride,
30
28
  DataSetReference,
31
29
  FilterOperator,
32
30
  SheetDefinition,
33
31
  } from "./models_1";
34
32
  import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
33
+ export interface AssetBundleExportJobDataSourceOverrideProperties {
34
+ Arn?: string;
35
+ Properties:
36
+ | (AssetBundleExportJobDataSourcePropertyToOverride | string)[]
37
+ | undefined;
38
+ }
39
+ export declare const AssetBundleExportJobRefreshSchedulePropertyToOverride: {
40
+ readonly START_AFTER_DATE_TIME: "StartAfterDateTime";
41
+ };
42
+ export type AssetBundleExportJobRefreshSchedulePropertyToOverride =
43
+ (typeof AssetBundleExportJobRefreshSchedulePropertyToOverride)[keyof typeof AssetBundleExportJobRefreshSchedulePropertyToOverride];
44
+ export interface AssetBundleExportJobRefreshScheduleOverrideProperties {
45
+ Arn?: string;
46
+ Properties:
47
+ | (AssetBundleExportJobRefreshSchedulePropertyToOverride | string)[]
48
+ | undefined;
49
+ }
50
+ export interface AssetBundleExportJobResourceIdOverrideConfiguration {
51
+ PrefixForAllResources?: boolean;
52
+ }
35
53
  export declare const AssetBundleExportJobThemePropertyToOverride: {
36
54
  readonly NAME: "Name";
37
55
  };
@@ -980,6 +998,7 @@ export type AssignmentStatus =
980
998
  export declare const AuthenticationMethodOption: {
981
999
  readonly ACTIVE_DIRECTORY: "ACTIVE_DIRECTORY";
982
1000
  readonly IAM_AND_QUICKSIGHT: "IAM_AND_QUICKSIGHT";
1001
+ readonly IAM_IDENTITY_CENTER: "IAM_IDENTITY_CENTER";
983
1002
  readonly IAM_ONLY: "IAM_ONLY";
984
1003
  };
985
1004
  export type AuthenticationMethodOption =
@@ -2238,8 +2257,13 @@ export declare const DefaultAggregation: {
2238
2257
  readonly COUNT: "COUNT";
2239
2258
  readonly DISTINCT_COUNT: "DISTINCT_COUNT";
2240
2259
  readonly MAX: "MAX";
2260
+ readonly MEDIAN: "MEDIAN";
2241
2261
  readonly MIN: "MIN";
2262
+ readonly STDEV: "STDEV";
2263
+ readonly STDEVP: "STDEVP";
2242
2264
  readonly SUM: "SUM";
2265
+ readonly VAR: "VAR";
2266
+ readonly VARP: "VARP";
2243
2267
  };
2244
2268
  export type DefaultAggregation =
2245
2269
  (typeof DefaultAggregation)[keyof typeof DefaultAggregation];
@@ -2318,6 +2342,7 @@ export interface TopicCalculatedField {
2318
2342
  NotAllowedAggregations?: (AuthorSpecifiedAggregation | string)[];
2319
2343
  NeverAggregateInFilter?: boolean;
2320
2344
  CellValueSynonyms?: CellValueSynonym[];
2345
+ NonAdditive?: boolean;
2321
2346
  }
2322
2347
  export interface TopicColumn {
2323
2348
  ColumnName: string | undefined;
@@ -2336,6 +2361,7 @@ export interface TopicColumn {
2336
2361
  DefaultFormatting?: DefaultFormatting;
2337
2362
  NeverAggregateInFilter?: boolean;
2338
2363
  CellValueSynonyms?: CellValueSynonym[];
2364
+ NonAdditive?: boolean;
2339
2365
  }
2340
2366
  export interface DataAggregation {
2341
2367
  DatasetRowDateGranularity?: TopicTimeGranularity | string;
@@ -2765,27 +2791,6 @@ export declare const DataSourceFilterAttribute: {
2765
2791
  };
2766
2792
  export type DataSourceFilterAttribute =
2767
2793
  (typeof DataSourceFilterAttribute)[keyof typeof DataSourceFilterAttribute];
2768
- export interface DataSourceSearchFilter {
2769
- Operator: FilterOperator | string | undefined;
2770
- Name: DataSourceFilterAttribute | string | undefined;
2771
- Value: string | undefined;
2772
- }
2773
- export interface DataSourceSummary {
2774
- Arn?: string;
2775
- DataSourceId?: string;
2776
- Name?: string;
2777
- Type?: DataSourceType | string;
2778
- CreatedTime?: Date;
2779
- LastUpdatedTime?: Date;
2780
- }
2781
- export interface DeleteAccountCustomizationRequest {
2782
- AwsAccountId: string | undefined;
2783
- Namespace?: string;
2784
- }
2785
- export interface DeleteAccountCustomizationResponse {
2786
- RequestId?: string;
2787
- Status?: number;
2788
- }
2789
2794
  export declare const AssetBundleImportJobDataSourceCredentialPairFilterSensitiveLog: (
2790
2795
  obj: AssetBundleImportJobDataSourceCredentialPair
2791
2796
  ) => any;
@@ -42,7 +42,6 @@ import {
42
42
  DashboardError,
43
43
  DashboardPublishOptions,
44
44
  DashboardSearchFilter,
45
- DashboardSourceEntity,
46
45
  DashboardSummary,
47
46
  DashboardVersionDefinition,
48
47
  DashboardVersionSummary,
@@ -52,8 +51,8 @@ import {
52
51
  DataSetSearchFilter,
53
52
  DataSetSummary,
54
53
  DataSource,
55
- DataSourceSearchFilter,
56
- DataSourceSummary,
54
+ DataSourceFilterAttribute,
55
+ DataSourceType,
57
56
  FolderType,
58
57
  Group,
59
58
  GroupMember,
@@ -74,6 +73,27 @@ import {
74
73
  VPCConnectionResourceStatus,
75
74
  } from "./models_2";
76
75
  import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
76
+ export interface DataSourceSearchFilter {
77
+ Operator: FilterOperator | string | undefined;
78
+ Name: DataSourceFilterAttribute | string | undefined;
79
+ Value: string | undefined;
80
+ }
81
+ export interface DataSourceSummary {
82
+ Arn?: string;
83
+ DataSourceId?: string;
84
+ Name?: string;
85
+ Type?: DataSourceType | string;
86
+ CreatedTime?: Date;
87
+ LastUpdatedTime?: Date;
88
+ }
89
+ export interface DeleteAccountCustomizationRequest {
90
+ AwsAccountId: string | undefined;
91
+ Namespace?: string;
92
+ }
93
+ export interface DeleteAccountCustomizationResponse {
94
+ RequestId?: string;
95
+ Status?: number;
96
+ }
77
97
  export interface DeleteAccountSubscriptionRequest {
78
98
  AwsAccountId: string | undefined;
79
99
  }
@@ -1003,6 +1023,7 @@ export interface DescribeUserRequest {
1003
1023
  }
1004
1024
  export declare const IdentityType: {
1005
1025
  readonly IAM: "IAM";
1026
+ readonly IAM_IDENTITY_CENTER: "IAM_IDENTITY_CENTER";
1006
1027
  readonly QUICKSIGHT: "QUICKSIGHT";
1007
1028
  };
1008
1029
  export type IdentityType = (typeof IdentityType)[keyof typeof IdentityType];
@@ -1878,38 +1899,6 @@ export interface UpdateAnalysisResponse {
1878
1899
  Status?: number;
1879
1900
  RequestId?: string;
1880
1901
  }
1881
- export interface UpdateAnalysisPermissionsRequest {
1882
- AwsAccountId: string | undefined;
1883
- AnalysisId: string | undefined;
1884
- GrantPermissions?: ResourcePermission[];
1885
- RevokePermissions?: ResourcePermission[];
1886
- }
1887
- export interface UpdateAnalysisPermissionsResponse {
1888
- AnalysisArn?: string;
1889
- AnalysisId?: string;
1890
- Permissions?: ResourcePermission[];
1891
- RequestId?: string;
1892
- Status?: number;
1893
- }
1894
- export interface UpdateDashboardRequest {
1895
- AwsAccountId: string | undefined;
1896
- DashboardId: string | undefined;
1897
- Name: string | undefined;
1898
- SourceEntity?: DashboardSourceEntity;
1899
- Parameters?: _Parameters;
1900
- VersionDescription?: string;
1901
- DashboardPublishOptions?: DashboardPublishOptions;
1902
- ThemeArn?: string;
1903
- Definition?: DashboardVersionDefinition;
1904
- }
1905
- export interface UpdateDashboardResponse {
1906
- Arn?: string;
1907
- VersionArn?: string;
1908
- DashboardId?: string;
1909
- CreationStatus?: ResourceStatus | string;
1910
- Status?: number;
1911
- RequestId?: string;
1912
- }
1913
1902
  export declare const DescribeAnalysisDefinitionResponseFilterSensitiveLog: (
1914
1903
  obj: DescribeAnalysisDefinitionResponse
1915
1904
  ) => any;
@@ -1971,6 +1960,3 @@ export declare const StartDashboardSnapshotJobRequestFilterSensitiveLog: (
1971
1960
  export declare const UpdateAnalysisRequestFilterSensitiveLog: (
1972
1961
  obj: UpdateAnalysisRequest
1973
1962
  ) => any;
1974
- export declare const UpdateDashboardRequestFilterSensitiveLog: (
1975
- obj: UpdateDashboardRequest
1976
- ) => any;
@@ -1,8 +1,12 @@
1
1
  import { ResourceStatus } from "./models_0";
2
2
  import {
3
+ _Parameters,
3
4
  AssignmentStatus,
4
5
  ColumnGroup,
5
6
  ColumnLevelPermissionRule,
7
+ DashboardPublishOptions,
8
+ DashboardSourceEntity,
9
+ DashboardVersionDefinition,
6
10
  DataSetImportMode,
7
11
  DatasetParameter,
8
12
  DataSetUsageConfiguration,
@@ -29,6 +33,38 @@ import {
29
33
  VPCConnectionResourceStatus,
30
34
  } from "./models_2";
31
35
  import { LinkSharingConfiguration, User, UserRole } from "./models_3";
36
+ export interface UpdateAnalysisPermissionsRequest {
37
+ AwsAccountId: string | undefined;
38
+ AnalysisId: string | undefined;
39
+ GrantPermissions?: ResourcePermission[];
40
+ RevokePermissions?: ResourcePermission[];
41
+ }
42
+ export interface UpdateAnalysisPermissionsResponse {
43
+ AnalysisArn?: string;
44
+ AnalysisId?: string;
45
+ Permissions?: ResourcePermission[];
46
+ RequestId?: string;
47
+ Status?: number;
48
+ }
49
+ export interface UpdateDashboardRequest {
50
+ AwsAccountId: string | undefined;
51
+ DashboardId: string | undefined;
52
+ Name: string | undefined;
53
+ SourceEntity?: DashboardSourceEntity;
54
+ Parameters?: _Parameters;
55
+ VersionDescription?: string;
56
+ DashboardPublishOptions?: DashboardPublishOptions;
57
+ ThemeArn?: string;
58
+ Definition?: DashboardVersionDefinition;
59
+ }
60
+ export interface UpdateDashboardResponse {
61
+ Arn?: string;
62
+ VersionArn?: string;
63
+ DashboardId?: string;
64
+ CreationStatus?: ResourceStatus | string;
65
+ Status?: number;
66
+ RequestId?: string;
67
+ }
32
68
  export interface UpdateDashboardPermissionsRequest {
33
69
  AwsAccountId: string | undefined;
34
70
  DashboardId: string | undefined;
@@ -352,6 +388,9 @@ export interface UpdateVPCConnectionResponse {
352
388
  RequestId?: string;
353
389
  Status?: number;
354
390
  }
391
+ export declare const UpdateDashboardRequestFilterSensitiveLog: (
392
+ obj: UpdateDashboardRequest
393
+ ) => any;
355
394
  export declare const UpdateDataSetRequestFilterSensitiveLog: (
356
395
  obj: UpdateDataSetRequest
357
396
  ) => any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-quicksight",
3
3
  "description": "AWS SDK for JavaScript Quicksight Client for Node.js, Browser and React Native",
4
- "version": "3.388.0",
4
+ "version": "3.391.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,37 +21,37 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.388.0",
25
- "@aws-sdk/credential-provider-node": "3.388.0",
26
- "@aws-sdk/middleware-host-header": "3.387.0",
27
- "@aws-sdk/middleware-logger": "3.387.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.387.0",
29
- "@aws-sdk/middleware-signing": "3.387.0",
30
- "@aws-sdk/middleware-user-agent": "3.387.0",
31
- "@aws-sdk/types": "3.387.0",
32
- "@aws-sdk/util-endpoints": "3.387.0",
33
- "@aws-sdk/util-user-agent-browser": "3.387.0",
34
- "@aws-sdk/util-user-agent-node": "3.387.0",
35
- "@smithy/config-resolver": "^2.0.2",
36
- "@smithy/fetch-http-handler": "^2.0.2",
37
- "@smithy/hash-node": "^2.0.2",
38
- "@smithy/invalid-dependency": "^2.0.2",
39
- "@smithy/middleware-content-length": "^2.0.2",
40
- "@smithy/middleware-endpoint": "^2.0.2",
41
- "@smithy/middleware-retry": "^2.0.2",
42
- "@smithy/middleware-serde": "^2.0.2",
24
+ "@aws-sdk/client-sts": "3.391.0",
25
+ "@aws-sdk/credential-provider-node": "3.391.0",
26
+ "@aws-sdk/middleware-host-header": "3.391.0",
27
+ "@aws-sdk/middleware-logger": "3.391.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.391.0",
29
+ "@aws-sdk/middleware-signing": "3.391.0",
30
+ "@aws-sdk/middleware-user-agent": "3.391.0",
31
+ "@aws-sdk/types": "3.391.0",
32
+ "@aws-sdk/util-endpoints": "3.391.0",
33
+ "@aws-sdk/util-user-agent-browser": "3.391.0",
34
+ "@aws-sdk/util-user-agent-node": "3.391.0",
35
+ "@smithy/config-resolver": "^2.0.3",
36
+ "@smithy/fetch-http-handler": "^2.0.3",
37
+ "@smithy/hash-node": "^2.0.3",
38
+ "@smithy/invalid-dependency": "^2.0.3",
39
+ "@smithy/middleware-content-length": "^2.0.3",
40
+ "@smithy/middleware-endpoint": "^2.0.3",
41
+ "@smithy/middleware-retry": "^2.0.3",
42
+ "@smithy/middleware-serde": "^2.0.3",
43
43
  "@smithy/middleware-stack": "^2.0.0",
44
- "@smithy/node-config-provider": "^2.0.2",
45
- "@smithy/node-http-handler": "^2.0.2",
46
- "@smithy/protocol-http": "^2.0.2",
47
- "@smithy/smithy-client": "^2.0.2",
48
- "@smithy/types": "^2.1.0",
49
- "@smithy/url-parser": "^2.0.2",
44
+ "@smithy/node-config-provider": "^2.0.3",
45
+ "@smithy/node-http-handler": "^2.0.3",
46
+ "@smithy/protocol-http": "^2.0.3",
47
+ "@smithy/smithy-client": "^2.0.3",
48
+ "@smithy/types": "^2.2.0",
49
+ "@smithy/url-parser": "^2.0.3",
50
50
  "@smithy/util-base64": "^2.0.0",
51
51
  "@smithy/util-body-length-browser": "^2.0.0",
52
52
  "@smithy/util-body-length-node": "^2.0.0",
53
- "@smithy/util-defaults-mode-browser": "^2.0.2",
54
- "@smithy/util-defaults-mode-node": "^2.0.2",
53
+ "@smithy/util-defaults-mode-browser": "^2.0.3",
54
+ "@smithy/util-defaults-mode-node": "^2.0.3",
55
55
  "@smithy/util-retry": "^2.0.0",
56
56
  "@smithy/util-utf8": "^2.0.0",
57
57
  "tslib": "^2.5.0"