@aws-sdk/client-quicksight 3.213.0 → 3.215.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 (74) hide show
  1. package/dist-cjs/QuickSight.js +45 -0
  2. package/dist-cjs/commands/DeleteAccountSubscriptionCommand.js +46 -0
  3. package/dist-cjs/commands/DescribeTemplateAliasCommand.js +3 -3
  4. package/dist-cjs/commands/DescribeTemplateCommand.js +2 -1
  5. package/dist-cjs/commands/DescribeTemplatePermissionsCommand.js +3 -3
  6. package/dist-cjs/commands/DescribeThemeCommand.js +1 -2
  7. package/dist-cjs/commands/SearchDataSetsCommand.js +46 -0
  8. package/dist-cjs/commands/SearchDataSourcesCommand.js +46 -0
  9. package/dist-cjs/commands/index.js +3 -0
  10. package/dist-cjs/endpoint/ruleset.js +1 -1
  11. package/dist-cjs/models/models_0.js +69 -45
  12. package/dist-cjs/models/models_1.js +79 -4
  13. package/dist-cjs/pagination/SearchDataSetsPaginator.js +36 -0
  14. package/dist-cjs/pagination/SearchDataSourcesPaginator.js +36 -0
  15. package/dist-cjs/pagination/index.js +2 -0
  16. package/dist-cjs/protocols/Aws_restJson1.js +352 -5
  17. package/dist-es/QuickSight.js +45 -0
  18. package/dist-es/commands/DeleteAccountSubscriptionCommand.js +42 -0
  19. package/dist-es/commands/DescribeTemplateAliasCommand.js +1 -1
  20. package/dist-es/commands/DescribeTemplateCommand.js +2 -1
  21. package/dist-es/commands/DescribeTemplatePermissionsCommand.js +1 -1
  22. package/dist-es/commands/DescribeThemeCommand.js +1 -2
  23. package/dist-es/commands/SearchDataSetsCommand.js +42 -0
  24. package/dist-es/commands/SearchDataSourcesCommand.js +42 -0
  25. package/dist-es/commands/index.js +3 -0
  26. package/dist-es/endpoint/ruleset.js +1 -1
  27. package/dist-es/models/models_0.js +55 -30
  28. package/dist-es/models/models_1.js +62 -0
  29. package/dist-es/pagination/SearchDataSetsPaginator.js +32 -0
  30. package/dist-es/pagination/SearchDataSourcesPaginator.js +32 -0
  31. package/dist-es/pagination/index.js +2 -0
  32. package/dist-es/protocols/Aws_restJson1.js +342 -1
  33. package/dist-types/QuickSight.d.ts +22 -1
  34. package/dist-types/QuickSightClient.d.ts +5 -2
  35. package/dist-types/commands/DeleteAccountSubscriptionCommand.d.ts +37 -0
  36. package/dist-types/commands/DescribeAccountSubscriptionCommand.d.ts +1 -1
  37. package/dist-types/commands/DescribeTemplateAliasCommand.d.ts +1 -1
  38. package/dist-types/commands/DescribeTemplateCommand.d.ts +2 -1
  39. package/dist-types/commands/DescribeTemplatePermissionsCommand.d.ts +1 -1
  40. package/dist-types/commands/DescribeThemeCommand.d.ts +1 -2
  41. package/dist-types/commands/SearchDataSetsCommand.d.ts +37 -0
  42. package/dist-types/commands/SearchDataSourcesCommand.d.ts +37 -0
  43. package/dist-types/commands/index.d.ts +3 -0
  44. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  45. package/dist-types/models/models_0.d.ts +349 -227
  46. package/dist-types/models/models_1.d.ts +373 -5
  47. package/dist-types/pagination/SearchDataSetsPaginator.d.ts +4 -0
  48. package/dist-types/pagination/SearchDataSourcesPaginator.d.ts +4 -0
  49. package/dist-types/pagination/index.d.ts +2 -0
  50. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  51. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  52. package/dist-types/runtimeConfig.d.ts +1 -1
  53. package/dist-types/runtimeConfig.native.d.ts +1 -1
  54. package/dist-types/ts3.4/QuickSight.d.ts +51 -0
  55. package/dist-types/ts3.4/QuickSightClient.d.ts +18 -0
  56. package/dist-types/ts3.4/commands/DeleteAccountSubscriptionCommand.d.ts +41 -0
  57. package/dist-types/ts3.4/commands/DescribeTemplateAliasCommand.d.ts +1 -1
  58. package/dist-types/ts3.4/commands/DescribeTemplateCommand.d.ts +2 -4
  59. package/dist-types/ts3.4/commands/DescribeTemplatePermissionsCommand.d.ts +1 -1
  60. package/dist-types/ts3.4/commands/DescribeThemeCommand.d.ts +4 -2
  61. package/dist-types/ts3.4/commands/SearchDataSetsCommand.d.ts +37 -0
  62. package/dist-types/ts3.4/commands/SearchDataSourcesCommand.d.ts +38 -0
  63. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  64. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  65. package/dist-types/ts3.4/models/models_0.d.ts +136 -78
  66. package/dist-types/ts3.4/models/models_1.d.ts +137 -1
  67. package/dist-types/ts3.4/pagination/SearchDataSetsPaginator.d.ts +11 -0
  68. package/dist-types/ts3.4/pagination/SearchDataSourcesPaginator.d.ts +11 -0
  69. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  70. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
  71. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -2
  72. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -2
  73. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -2
  74. package/package.json +28 -28
@@ -1,6 +1,191 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { _Parameters, AccountCustomization, ActiveIAMPolicyAssignment, AnalysisSearchFilter, AnalysisSourceEntity, AnalysisSummary, AnonymousUserEmbeddingExperienceConfiguration, AssignmentStatus, ColumnGroup, ColumnLevelPermissionRule, DashboardPublishOptions, DashboardSearchFilter, DashboardSourceEntity, DashboardSummary, DashboardVersionSummary, DashboardVisualId, DataSetImportMode, DataSetSummary, DataSetUsageConfiguration, DataSource, DataSourceCredentials, DataSourceParameters, FieldFolder, FilterOperator, FolderType, Group, GroupMember, Ingestion, LinkSharingConfiguration, LogicalTable, NamespaceInfoV2, PhysicalTable, ResourcePermission, ResourceStatus, RowLevelPermissionDataSet, RowLevelPermissionTagConfiguration, SslProperties, Tag, TemplateAlias, TemplateSourceEntity, ThemeAlias, ThemeConfiguration, ThemeType, VpcConnectionProperties } from "./models_0";
2
+ import { _Parameters, AccountCustomization, ActiveIAMPolicyAssignment, AnalysisSearchFilter, AnalysisSourceEntity, AnalysisSummary, AnonymousUserEmbeddingExperienceConfiguration, AssignmentStatus, ColumnGroup, ColumnLevelPermissionRule, DashboardPublishOptions, DashboardSearchFilter, DashboardSourceEntity, DashboardSummary, DashboardVersionSummary, DashboardVisualId, DataSetConfiguration, DataSetImportMode, DataSetSearchFilter, DataSetSummary, DataSetUsageConfiguration, DataSource, DataSourceCredentials, DataSourceParameters, DataSourceSearchFilter, DataSourceSummary, FieldFolder, FilterOperator, FolderType, Group, GroupMember, Ingestion, LinkSharingConfiguration, LogicalTable, NamespaceInfoV2, PhysicalTable, ResourcePermission, ResourceStatus, RowLevelPermissionDataSet, RowLevelPermissionTagConfiguration, Sheet, SslProperties, Tag, TemplateAlias, TemplateError, TemplateSourceEntity, ThemeAlias, ThemeConfiguration, VpcConnectionProperties } from "./models_0";
3
3
  import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
4
+ /**
5
+ * <p>A version of a template.</p>
6
+ */
7
+ export interface TemplateVersion {
8
+ /**
9
+ * <p>The time that this template version was created.</p>
10
+ */
11
+ CreatedTime?: Date;
12
+ /**
13
+ * <p>Errors associated with this template version.</p>
14
+ */
15
+ Errors?: TemplateError[];
16
+ /**
17
+ * <p>The version number of the template version.</p>
18
+ */
19
+ VersionNumber?: number;
20
+ /**
21
+ * <p>The HTTP status of the request.</p>
22
+ */
23
+ Status?: ResourceStatus | string;
24
+ /**
25
+ * <p>Schema of the dataset identified by the placeholder. Any dashboard created from this
26
+ * template should be bound to new datasets matching the same schema described through this
27
+ * API operation.</p>
28
+ */
29
+ DataSetConfigurations?: DataSetConfiguration[];
30
+ /**
31
+ * <p>The description of the template.</p>
32
+ */
33
+ Description?: string;
34
+ /**
35
+ * <p>The Amazon Resource Name (ARN) of an analysis or template that was used to create this
36
+ * template.</p>
37
+ */
38
+ SourceEntityArn?: string;
39
+ /**
40
+ * <p>The ARN of the theme associated with this version of the template.</p>
41
+ */
42
+ ThemeArn?: string;
43
+ /**
44
+ * <p>A list of the associated sheets with the unique identifier and name of each sheet.</p>
45
+ */
46
+ Sheets?: Sheet[];
47
+ }
48
+ /**
49
+ * <p>A template object. A <i>template</i> is an entity in Amazon QuickSight that
50
+ * encapsulates the metadata required to create an analysis and that you can use to create
51
+ * a dashboard. A template adds a layer of abstraction by using placeholders to replace the
52
+ * dataset associated with an analysis. You can use templates to create dashboards by
53
+ * replacing dataset placeholders with datasets that follow the same schema that was used
54
+ * to create the source analysis and template.</p>
55
+ * <p>You can share templates across Amazon Web Services accounts by allowing users in other Amazon Web Services accounts to
56
+ * create a template or a dashboard from an existing template.</p>
57
+ */
58
+ export interface Template {
59
+ /**
60
+ * <p>The Amazon Resource Name (ARN) of the template.</p>
61
+ */
62
+ Arn?: string;
63
+ /**
64
+ * <p>The display name of the template.</p>
65
+ */
66
+ Name?: string;
67
+ /**
68
+ * <p>A structure describing the versions of the template.</p>
69
+ */
70
+ Version?: TemplateVersion;
71
+ /**
72
+ * <p>The ID for the template. This is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
73
+ */
74
+ TemplateId?: string;
75
+ /**
76
+ * <p>Time when this was last updated.</p>
77
+ */
78
+ LastUpdatedTime?: Date;
79
+ /**
80
+ * <p>Time when this was created.</p>
81
+ */
82
+ CreatedTime?: Date;
83
+ }
84
+ export interface DescribeTemplateResponse {
85
+ /**
86
+ * <p>The template structure for the object you want to describe.</p>
87
+ */
88
+ Template?: Template;
89
+ /**
90
+ * <p>The HTTP status of the request.</p>
91
+ */
92
+ Status?: number;
93
+ /**
94
+ * <p>The Amazon Web Services request ID for this operation.</p>
95
+ */
96
+ RequestId?: string;
97
+ }
98
+ export interface DescribeTemplateAliasRequest {
99
+ /**
100
+ * <p>The ID of the Amazon Web Services account that contains the template alias that you're
101
+ * describing.</p>
102
+ */
103
+ AwsAccountId: string | undefined;
104
+ /**
105
+ * <p>The ID for the template.</p>
106
+ */
107
+ TemplateId: string | undefined;
108
+ /**
109
+ * <p>The name of the template alias that you want to describe. If you name a specific alias, you
110
+ * describe the version that the alias points to. You can specify the latest version of the
111
+ * template by providing the keyword <code>$LATEST</code> in the <code>AliasName</code>
112
+ * parameter. The keyword <code>$PUBLISHED</code> doesn't apply to templates.</p>
113
+ */
114
+ AliasName: string | undefined;
115
+ }
116
+ export interface DescribeTemplateAliasResponse {
117
+ /**
118
+ * <p>Information about the template alias.</p>
119
+ */
120
+ TemplateAlias?: TemplateAlias;
121
+ /**
122
+ * <p>The HTTP status of the request.</p>
123
+ */
124
+ Status?: number;
125
+ /**
126
+ * <p>The Amazon Web Services request ID for this operation.</p>
127
+ */
128
+ RequestId?: string;
129
+ }
130
+ export interface DescribeTemplatePermissionsRequest {
131
+ /**
132
+ * <p>The ID of the Amazon Web Services account that contains the template that you're describing.</p>
133
+ */
134
+ AwsAccountId: string | undefined;
135
+ /**
136
+ * <p>The ID for the template.</p>
137
+ */
138
+ TemplateId: string | undefined;
139
+ }
140
+ export interface DescribeTemplatePermissionsResponse {
141
+ /**
142
+ * <p>The ID for the template.</p>
143
+ */
144
+ TemplateId?: string;
145
+ /**
146
+ * <p>The Amazon Resource Name (ARN) of the template.</p>
147
+ */
148
+ TemplateArn?: string;
149
+ /**
150
+ * <p>A list of resource permissions to be set on the template. </p>
151
+ */
152
+ Permissions?: ResourcePermission[];
153
+ /**
154
+ * <p>The Amazon Web Services request ID for this operation.</p>
155
+ */
156
+ RequestId?: string;
157
+ /**
158
+ * <p>The HTTP status of the request.</p>
159
+ */
160
+ Status?: number;
161
+ }
162
+ export interface DescribeThemeRequest {
163
+ /**
164
+ * <p>The ID of the Amazon Web Services account that contains the theme that you're describing.</p>
165
+ */
166
+ AwsAccountId: string | undefined;
167
+ /**
168
+ * <p>The ID for the theme.</p>
169
+ */
170
+ ThemeId: string | undefined;
171
+ /**
172
+ * <p>The version number for the version to describe. If a <code>VersionNumber</code> parameter
173
+ * value isn't provided, the latest version of the theme is described.</p>
174
+ */
175
+ VersionNumber?: number;
176
+ /**
177
+ * <p>The alias of the theme that you want to describe. If you name a specific alias, you
178
+ * describe the version that the alias points to. You can specify the latest version of the
179
+ * theme by providing the keyword <code>$LATEST</code> in the <code>AliasName</code>
180
+ * parameter. The keyword <code>$PUBLISHED</code> doesn't apply to themes.</p>
181
+ */
182
+ AliasName?: string;
183
+ }
184
+ export declare enum ThemeType {
185
+ ALL = "ALL",
186
+ CUSTOM = "CUSTOM",
187
+ QUICKSIGHT = "QUICKSIGHT"
188
+ }
4
189
  export declare enum ThemeErrorType {
5
190
  INTERNAL_FAILURE = "INTERNAL_FAILURE"
6
191
  }
@@ -318,7 +503,13 @@ export declare enum EmbeddingIdentityType {
318
503
  QUICKSIGHT = "QUICKSIGHT"
319
504
  }
320
505
  export declare enum FolderFilterAttribute {
321
- PARENT_FOLDER_ARN = "PARENT_FOLDER_ARN"
506
+ DIRECT_QUICKSIGHT_OWNER = "DIRECT_QUICKSIGHT_OWNER",
507
+ DIRECT_QUICKSIGHT_SOLE_OWNER = "DIRECT_QUICKSIGHT_SOLE_OWNER",
508
+ DIRECT_QUICKSIGHT_VIEWER_OR_OWNER = "DIRECT_QUICKSIGHT_VIEWER_OR_OWNER",
509
+ FOLDER_NAME = "FOLDER_NAME",
510
+ PARENT_FOLDER_ARN = "PARENT_FOLDER_ARN",
511
+ QUICKSIGHT_OWNER = "QUICKSIGHT_OWNER",
512
+ QUICKSIGHT_VIEWER_OR_OWNER = "QUICKSIGHT_VIEWER_OR_OWNER"
322
513
  }
323
514
  /**
324
515
  * <p>An object that consists of a member Amazon Resource Name (ARN) and a member ID.</p>
@@ -334,15 +525,48 @@ export interface MemberIdArnPair {
334
525
  MemberArn?: string;
335
526
  }
336
527
  /**
337
- * <p>A filter to use to search a Amazon QuickSight folder.</p>
528
+ * <p>A filter to use to search an Amazon QuickSight folder.</p>
338
529
  */
339
530
  export interface FolderSearchFilter {
340
531
  /**
341
- * <p>The comparison operator that you want to use in the filter. For example, <code>"Operator": "StringEquals"</code>.</p>
532
+ * <p>The comparison operator that you want to use as a filter, for example <code>"Operator": "StringEquals"</code>. Valid values are <code>"StringEquals"</code> and <code>"StringLike"</code>.</p>
533
+ * <p>If you set the operator value to <code>"StringEquals"</code>, you need to provide an ownership related filter in the <code>"NAME"</code> field and the arn of the user or group whose folders you want to search in the <code>"Value"</code> field. For example, <code>"Name":"DIRECT_QUICKSIGHT_OWNER", "Operator": "StringEquals", "Value": "arn:aws:quicksight:us-east-1:1:user/default/UserName1"</code>.</p>
534
+ * <p>If you set the value to <code>"StringLike"</code>, you need to provide the name of the folders you are searching for. For example, <code>"Name":"FOLDER_NAME", "Operator": "StringLike", "Value": "Test"</code>. The <code>"StringLike"</code> operator only supports the <code>NAME</code> value <code>FOLDER_NAME</code>.</p>
342
535
  */
343
536
  Operator?: FilterOperator | string;
344
537
  /**
345
- * <p>The name of a value that you want to use in the filter. For example, <code>"Name": "PARENT_FOLDER_ARN"</code>.</p>
538
+ * <p>The name of a value that you want to use in the filter. For example, <code>"Name": "QUICKSIGHT_OWNER"</code>.</p>
539
+ * <p>Valid values are defined as follows:</p>
540
+ * <ul>
541
+ * <li>
542
+ * <p>
543
+ * <code>QUICKSIGHT_VIEWER_OR_OWNER</code>: Provide an ARN of a user or group, and any folders with that ARN listed as one of the folder's owners or viewers are returned. Implicit permissions from folders or groups are considered.</p>
544
+ * </li>
545
+ * <li>
546
+ * <p>
547
+ * <code>QUICKSIGHT_OWNER</code>: Provide an ARN of a user or group, and any folders with that ARN listed as one of the owners of the folders are returned. Implicit permissions from folders or groups are considered.</p>
548
+ * </li>
549
+ * <li>
550
+ * <p>
551
+ * <code>DIRECT_QUICKSIGHT_SOLE_OWNER</code>: Provide an ARN of a user or group, and any folders with that ARN listed as the only owner of the folder are returned. Implicit permissions from folders or groups are not considered.</p>
552
+ * </li>
553
+ * <li>
554
+ * <p>
555
+ * <code>DIRECT_QUICKSIGHT_OWNER</code>: Provide an ARN of a user or group, and any folders with that ARN listed as one of the owners of the folders are returned. Implicit permissions from folders or groups are not considered.</p>
556
+ * </li>
557
+ * <li>
558
+ * <p>
559
+ * <code>DIRECT_QUICKSIGHT_VIEWER_OR_OWNER</code>: Provide an ARN of a user or group, and any folders with that ARN listed as one of the owners or viewers of the folders are returned. Implicit permissions from folders or groups are not considered. </p>
560
+ * </li>
561
+ * <li>
562
+ * <p>
563
+ * <code>FOLDER_NAME</code>: Any folders whose names have a substring match to this value will be returned.</p>
564
+ * </li>
565
+ * <li>
566
+ * <p>
567
+ * <code>PARENT_FOLDER_ARN</code>: Provide an ARN of a folder, and any folders that are directly under that parent folder are returned. If you choose to use this option and leave the value blank, all root-level folders in the account are returned. </p>
568
+ * </li>
569
+ * </ul>
346
570
  */
347
571
  Name?: FolderFilterAttribute | string;
348
572
  /**
@@ -447,6 +671,10 @@ export interface GenerateEmbedUrlForAnonymousUserResponse {
447
671
  * <p>The Amazon Web Services request ID for this operation.</p>
448
672
  */
449
673
  RequestId: string | undefined;
674
+ /**
675
+ * <p>The Amazon Resource Name (ARN) to use for the anonymous Amazon QuickSight user.</p>
676
+ */
677
+ AnonymousUserArn: string | undefined;
450
678
  }
451
679
  /**
452
680
  * <p>The number of minutes specified for the lifetime of a session isn't valid. The session
@@ -911,6 +1139,22 @@ export interface IAMPolicyAssignmentSummary {
911
1139
  */
912
1140
  AssignmentStatus?: AssignmentStatus | string;
913
1141
  }
1142
+ /**
1143
+ * <p>You don't have this feature activated for your account. To fix this issue, contact Amazon Web Services support.</p>
1144
+ */
1145
+ export declare class InvalidRequestException extends __BaseException {
1146
+ readonly name: "InvalidRequestException";
1147
+ readonly $fault: "client";
1148
+ Message?: string;
1149
+ /**
1150
+ * <p>The Amazon Web Services request ID for this request.</p>
1151
+ */
1152
+ RequestId?: string;
1153
+ /**
1154
+ * @internal
1155
+ */
1156
+ constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
1157
+ }
914
1158
  export interface ListAnalysesRequest {
915
1159
  /**
916
1160
  * <p>The ID of the Amazon Web Services account that contains the analyses.</p>
@@ -2072,6 +2316,78 @@ export interface SearchDashboardsResponse {
2072
2316
  */
2073
2317
  RequestId?: string;
2074
2318
  }
2319
+ export interface SearchDataSetsRequest {
2320
+ /**
2321
+ * <p>The Amazon Web Services account ID.</p>
2322
+ */
2323
+ AwsAccountId: string | undefined;
2324
+ /**
2325
+ * <p>The filters to apply to the search.</p>
2326
+ */
2327
+ Filters: DataSetSearchFilter[] | undefined;
2328
+ /**
2329
+ * <p>A pagination token that can be used in a subsequent request.</p>
2330
+ */
2331
+ NextToken?: string;
2332
+ /**
2333
+ * <p>The maximum number of results to be returned per request.</p>
2334
+ */
2335
+ MaxResults?: number;
2336
+ }
2337
+ export interface SearchDataSetsResponse {
2338
+ /**
2339
+ * <p>A <code>DataSetSummaries</code> object that returns a summary of a dataset.</p>
2340
+ */
2341
+ DataSetSummaries?: DataSetSummary[];
2342
+ /**
2343
+ * <p>A pagination token that can be used in a subsequent request.</p>
2344
+ */
2345
+ NextToken?: string;
2346
+ /**
2347
+ * <p>The HTTP status of the request.</p>
2348
+ */
2349
+ Status?: number;
2350
+ /**
2351
+ * <p>The Amazon Web Services request ID for this operation.</p>
2352
+ */
2353
+ RequestId?: string;
2354
+ }
2355
+ export interface SearchDataSourcesRequest {
2356
+ /**
2357
+ * <p>The Amazon Web Services account ID.</p>
2358
+ */
2359
+ AwsAccountId: string | undefined;
2360
+ /**
2361
+ * <p>The filters to apply to the search.</p>
2362
+ */
2363
+ Filters: DataSourceSearchFilter[] | undefined;
2364
+ /**
2365
+ * <p>A pagination token that can be used in a subsequent request.</p>
2366
+ */
2367
+ NextToken?: string;
2368
+ /**
2369
+ * <p>The maximum number of results to be returned per request.</p>
2370
+ */
2371
+ MaxResults?: number;
2372
+ }
2373
+ export interface SearchDataSourcesResponse {
2374
+ /**
2375
+ * <p>A <code>DataSourceSummaries</code> object that returns a summary of a data source.</p>
2376
+ */
2377
+ DataSourceSummaries?: DataSourceSummary[];
2378
+ /**
2379
+ * <p>A pagination token that can be used in a subsequent request.</p>
2380
+ */
2381
+ NextToken?: string;
2382
+ /**
2383
+ * <p>The HTTP status of the request.</p>
2384
+ */
2385
+ Status?: number;
2386
+ /**
2387
+ * <p>The Amazon Web Services request ID for this operation.</p>
2388
+ */
2389
+ RequestId?: string;
2390
+ }
2075
2391
  export interface SearchFoldersRequest {
2076
2392
  /**
2077
2393
  * <p>The ID for the Amazon Web Services account that contains the folder.</p>
@@ -2250,6 +2566,10 @@ export interface UpdateAccountSettingsRequest {
2250
2566
  * Amazon Web Services account or Amazon QuickSight subscription.</p>
2251
2567
  */
2252
2568
  NotificationEmail?: string;
2569
+ /**
2570
+ * <p>A boolean value that determines whether or not an Amazon QuickSight account can be deleted. A <code>True</code> value doesn't allow the account to be deleted and results in an error message if a user tries to make a <code>DeleteAccountSubscription</code> request. A <code>False</code> value will allow the account to be deleted.</p>
2571
+ */
2572
+ TerminationProtectionEnabled?: boolean;
2253
2573
  }
2254
2574
  export interface UpdateAccountSettingsResponse {
2255
2575
  /**
@@ -3385,6 +3705,38 @@ export interface UpdateUserResponse {
3385
3705
  */
3386
3706
  Status?: number;
3387
3707
  }
3708
+ /**
3709
+ * @internal
3710
+ */
3711
+ export declare const TemplateVersionFilterSensitiveLog: (obj: TemplateVersion) => any;
3712
+ /**
3713
+ * @internal
3714
+ */
3715
+ export declare const TemplateFilterSensitiveLog: (obj: Template) => any;
3716
+ /**
3717
+ * @internal
3718
+ */
3719
+ export declare const DescribeTemplateResponseFilterSensitiveLog: (obj: DescribeTemplateResponse) => any;
3720
+ /**
3721
+ * @internal
3722
+ */
3723
+ export declare const DescribeTemplateAliasRequestFilterSensitiveLog: (obj: DescribeTemplateAliasRequest) => any;
3724
+ /**
3725
+ * @internal
3726
+ */
3727
+ export declare const DescribeTemplateAliasResponseFilterSensitiveLog: (obj: DescribeTemplateAliasResponse) => any;
3728
+ /**
3729
+ * @internal
3730
+ */
3731
+ export declare const DescribeTemplatePermissionsRequestFilterSensitiveLog: (obj: DescribeTemplatePermissionsRequest) => any;
3732
+ /**
3733
+ * @internal
3734
+ */
3735
+ export declare const DescribeTemplatePermissionsResponseFilterSensitiveLog: (obj: DescribeTemplatePermissionsResponse) => any;
3736
+ /**
3737
+ * @internal
3738
+ */
3739
+ export declare const DescribeThemeRequestFilterSensitiveLog: (obj: DescribeThemeRequest) => any;
3388
3740
  /**
3389
3741
  * @internal
3390
3742
  */
@@ -3729,6 +4081,22 @@ export declare const SearchDashboardsRequestFilterSensitiveLog: (obj: SearchDash
3729
4081
  * @internal
3730
4082
  */
3731
4083
  export declare const SearchDashboardsResponseFilterSensitiveLog: (obj: SearchDashboardsResponse) => any;
4084
+ /**
4085
+ * @internal
4086
+ */
4087
+ export declare const SearchDataSetsRequestFilterSensitiveLog: (obj: SearchDataSetsRequest) => any;
4088
+ /**
4089
+ * @internal
4090
+ */
4091
+ export declare const SearchDataSetsResponseFilterSensitiveLog: (obj: SearchDataSetsResponse) => any;
4092
+ /**
4093
+ * @internal
4094
+ */
4095
+ export declare const SearchDataSourcesRequestFilterSensitiveLog: (obj: SearchDataSourcesRequest) => any;
4096
+ /**
4097
+ * @internal
4098
+ */
4099
+ export declare const SearchDataSourcesResponseFilterSensitiveLog: (obj: SearchDataSourcesResponse) => any;
3732
4100
  /**
3733
4101
  * @internal
3734
4102
  */
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { SearchDataSetsCommandInput, SearchDataSetsCommandOutput } from "../commands/SearchDataSetsCommand";
3
+ import { QuickSightPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateSearchDataSets(config: QuickSightPaginationConfiguration, input: SearchDataSetsCommandInput, ...additionalArguments: any): Paginator<SearchDataSetsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { SearchDataSourcesCommandInput, SearchDataSourcesCommandOutput } from "../commands/SearchDataSourcesCommand";
3
+ import { QuickSightPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateSearchDataSources(config: QuickSightPaginationConfiguration, input: SearchDataSourcesCommandInput, ...additionalArguments: any): Paginator<SearchDataSourcesCommandOutput>;
@@ -13,3 +13,5 @@ export * from "./ListThemeVersionsPaginator";
13
13
  export * from "./ListThemesPaginator";
14
14
  export * from "./SearchAnalysesPaginator";
15
15
  export * from "./SearchDashboardsPaginator";
16
+ export * from "./SearchDataSetsPaginator";
17
+ export * from "./SearchDataSourcesPaginator";
@@ -19,6 +19,7 @@ import { CreateTemplateCommandInput, CreateTemplateCommandOutput } from "../comm
19
19
  import { CreateThemeAliasCommandInput, CreateThemeAliasCommandOutput } from "../commands/CreateThemeAliasCommand";
20
20
  import { CreateThemeCommandInput, CreateThemeCommandOutput } from "../commands/CreateThemeCommand";
21
21
  import { DeleteAccountCustomizationCommandInput, DeleteAccountCustomizationCommandOutput } from "../commands/DeleteAccountCustomizationCommand";
22
+ import { DeleteAccountSubscriptionCommandInput, DeleteAccountSubscriptionCommandOutput } from "../commands/DeleteAccountSubscriptionCommand";
22
23
  import { DeleteAnalysisCommandInput, DeleteAnalysisCommandOutput } from "../commands/DeleteAnalysisCommand";
23
24
  import { DeleteDashboardCommandInput, DeleteDashboardCommandOutput } from "../commands/DeleteDashboardCommand";
24
25
  import { DeleteDataSetCommandInput, DeleteDataSetCommandOutput } from "../commands/DeleteDataSetCommand";
@@ -92,6 +93,8 @@ import { RegisterUserCommandInput, RegisterUserCommandOutput } from "../commands
92
93
  import { RestoreAnalysisCommandInput, RestoreAnalysisCommandOutput } from "../commands/RestoreAnalysisCommand";
93
94
  import { SearchAnalysesCommandInput, SearchAnalysesCommandOutput } from "../commands/SearchAnalysesCommand";
94
95
  import { SearchDashboardsCommandInput, SearchDashboardsCommandOutput } from "../commands/SearchDashboardsCommand";
96
+ import { SearchDataSetsCommandInput, SearchDataSetsCommandOutput } from "../commands/SearchDataSetsCommand";
97
+ import { SearchDataSourcesCommandInput, SearchDataSourcesCommandOutput } from "../commands/SearchDataSourcesCommand";
95
98
  import { SearchFoldersCommandInput, SearchFoldersCommandOutput } from "../commands/SearchFoldersCommand";
96
99
  import { SearchGroupsCommandInput, SearchGroupsCommandOutput } from "../commands/SearchGroupsCommand";
97
100
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
@@ -139,6 +142,7 @@ export declare const serializeAws_restJson1CreateTemplateAliasCommand: (input: C
139
142
  export declare const serializeAws_restJson1CreateThemeCommand: (input: CreateThemeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
140
143
  export declare const serializeAws_restJson1CreateThemeAliasCommand: (input: CreateThemeAliasCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
141
144
  export declare const serializeAws_restJson1DeleteAccountCustomizationCommand: (input: DeleteAccountCustomizationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
145
+ export declare const serializeAws_restJson1DeleteAccountSubscriptionCommand: (input: DeleteAccountSubscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
142
146
  export declare const serializeAws_restJson1DeleteAnalysisCommand: (input: DeleteAnalysisCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
143
147
  export declare const serializeAws_restJson1DeleteDashboardCommand: (input: DeleteDashboardCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
144
148
  export declare const serializeAws_restJson1DeleteDataSetCommand: (input: DeleteDataSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -212,6 +216,8 @@ export declare const serializeAws_restJson1RegisterUserCommand: (input: Register
212
216
  export declare const serializeAws_restJson1RestoreAnalysisCommand: (input: RestoreAnalysisCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
213
217
  export declare const serializeAws_restJson1SearchAnalysesCommand: (input: SearchAnalysesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
214
218
  export declare const serializeAws_restJson1SearchDashboardsCommand: (input: SearchDashboardsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
219
+ export declare const serializeAws_restJson1SearchDataSetsCommand: (input: SearchDataSetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
220
+ export declare const serializeAws_restJson1SearchDataSourcesCommand: (input: SearchDataSourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
215
221
  export declare const serializeAws_restJson1SearchFoldersCommand: (input: SearchFoldersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
216
222
  export declare const serializeAws_restJson1SearchGroupsCommand: (input: SearchGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
217
223
  export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -259,6 +265,7 @@ export declare const deserializeAws_restJson1CreateTemplateAliasCommand: (output
259
265
  export declare const deserializeAws_restJson1CreateThemeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateThemeCommandOutput>;
260
266
  export declare const deserializeAws_restJson1CreateThemeAliasCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateThemeAliasCommandOutput>;
261
267
  export declare const deserializeAws_restJson1DeleteAccountCustomizationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAccountCustomizationCommandOutput>;
268
+ export declare const deserializeAws_restJson1DeleteAccountSubscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAccountSubscriptionCommandOutput>;
262
269
  export declare const deserializeAws_restJson1DeleteAnalysisCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAnalysisCommandOutput>;
263
270
  export declare const deserializeAws_restJson1DeleteDashboardCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDashboardCommandOutput>;
264
271
  export declare const deserializeAws_restJson1DeleteDataSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDataSetCommandOutput>;
@@ -332,6 +339,8 @@ export declare const deserializeAws_restJson1RegisterUserCommand: (output: __Htt
332
339
  export declare const deserializeAws_restJson1RestoreAnalysisCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RestoreAnalysisCommandOutput>;
333
340
  export declare const deserializeAws_restJson1SearchAnalysesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchAnalysesCommandOutput>;
334
341
  export declare const deserializeAws_restJson1SearchDashboardsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchDashboardsCommandOutput>;
342
+ export declare const deserializeAws_restJson1SearchDataSetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchDataSetsCommandOutput>;
343
+ export declare const deserializeAws_restJson1SearchDataSourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchDataSourcesCommandOutput>;
335
344
  export declare const deserializeAws_restJson1SearchFoldersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchFoldersCommandOutput>;
336
345
  export declare const deserializeAws_restJson1SearchGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchGroupsCommandOutput>;
337
346
  export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
@@ -32,7 +32,7 @@ export declare const getRuntimeConfig: (config: QuickSightClientConfig) => {
32
32
  }) => import("@aws-sdk/types").EndpointV2;
33
33
  tls?: boolean | undefined;
34
34
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
35
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
35
+ credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
36
36
  signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
37
37
  signingEscapePath?: boolean | undefined;
38
38
  systemClockOffset?: number | undefined;
@@ -32,7 +32,7 @@ export declare const getRuntimeConfig: (config: QuickSightClientConfig) => {
32
32
  }) => import("@aws-sdk/types").EndpointV2;
33
33
  tls?: boolean | undefined;
34
34
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
35
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
35
+ credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
36
36
  signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
37
37
  signingEscapePath?: boolean | undefined;
38
38
  systemClockOffset?: number | undefined;
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: QuickSightClientConfig) => {
31
31
  }) => import("@aws-sdk/types").EndpointV2;
32
32
  tls?: boolean | undefined;
33
33
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
34
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
34
+ credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
35
35
  signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
36
36
  signingEscapePath?: boolean | undefined;
37
37
  systemClockOffset?: number | undefined;
@@ -75,6 +75,10 @@ import {
75
75
  DeleteAccountCustomizationCommandInput,
76
76
  DeleteAccountCustomizationCommandOutput,
77
77
  } from "./commands/DeleteAccountCustomizationCommand";
78
+ import {
79
+ DeleteAccountSubscriptionCommandInput,
80
+ DeleteAccountSubscriptionCommandOutput,
81
+ } from "./commands/DeleteAccountSubscriptionCommand";
78
82
  import {
79
83
  DeleteAnalysisCommandInput,
80
84
  DeleteAnalysisCommandOutput,
@@ -367,6 +371,14 @@ import {
367
371
  SearchDashboardsCommandInput,
368
372
  SearchDashboardsCommandOutput,
369
373
  } from "./commands/SearchDashboardsCommand";
374
+ import {
375
+ SearchDataSetsCommandInput,
376
+ SearchDataSetsCommandOutput,
377
+ } from "./commands/SearchDataSetsCommand";
378
+ import {
379
+ SearchDataSourcesCommandInput,
380
+ SearchDataSourcesCommandOutput,
381
+ } from "./commands/SearchDataSourcesCommand";
370
382
  import {
371
383
  SearchFoldersCommandInput,
372
384
  SearchFoldersCommandOutput,
@@ -728,6 +740,19 @@ export declare class QuickSight extends QuickSightClient {
728
740
  options: __HttpHandlerOptions,
729
741
  cb: (err: any, data?: DeleteAccountCustomizationCommandOutput) => void
730
742
  ): void;
743
+ deleteAccountSubscription(
744
+ args: DeleteAccountSubscriptionCommandInput,
745
+ options?: __HttpHandlerOptions
746
+ ): Promise<DeleteAccountSubscriptionCommandOutput>;
747
+ deleteAccountSubscription(
748
+ args: DeleteAccountSubscriptionCommandInput,
749
+ cb: (err: any, data?: DeleteAccountSubscriptionCommandOutput) => void
750
+ ): void;
751
+ deleteAccountSubscription(
752
+ args: DeleteAccountSubscriptionCommandInput,
753
+ options: __HttpHandlerOptions,
754
+ cb: (err: any, data?: DeleteAccountSubscriptionCommandOutput) => void
755
+ ): void;
731
756
  deleteAnalysis(
732
757
  args: DeleteAnalysisCommandInput,
733
758
  options?: __HttpHandlerOptions
@@ -1689,6 +1714,32 @@ export declare class QuickSight extends QuickSightClient {
1689
1714
  options: __HttpHandlerOptions,
1690
1715
  cb: (err: any, data?: SearchDashboardsCommandOutput) => void
1691
1716
  ): void;
1717
+ searchDataSets(
1718
+ args: SearchDataSetsCommandInput,
1719
+ options?: __HttpHandlerOptions
1720
+ ): Promise<SearchDataSetsCommandOutput>;
1721
+ searchDataSets(
1722
+ args: SearchDataSetsCommandInput,
1723
+ cb: (err: any, data?: SearchDataSetsCommandOutput) => void
1724
+ ): void;
1725
+ searchDataSets(
1726
+ args: SearchDataSetsCommandInput,
1727
+ options: __HttpHandlerOptions,
1728
+ cb: (err: any, data?: SearchDataSetsCommandOutput) => void
1729
+ ): void;
1730
+ searchDataSources(
1731
+ args: SearchDataSourcesCommandInput,
1732
+ options?: __HttpHandlerOptions
1733
+ ): Promise<SearchDataSourcesCommandOutput>;
1734
+ searchDataSources(
1735
+ args: SearchDataSourcesCommandInput,
1736
+ cb: (err: any, data?: SearchDataSourcesCommandOutput) => void
1737
+ ): void;
1738
+ searchDataSources(
1739
+ args: SearchDataSourcesCommandInput,
1740
+ options: __HttpHandlerOptions,
1741
+ cb: (err: any, data?: SearchDataSourcesCommandOutput) => void
1742
+ ): void;
1692
1743
  searchFolders(
1693
1744
  args: SearchFoldersCommandInput,
1694
1745
  options?: __HttpHandlerOptions