@aws-sdk/client-quicksight 3.52.0 → 3.53.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/QuickSightServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +206 -6
- package/dist-cjs/models/models_1.js +79 -3
- package/dist-cjs/protocols/Aws_restJson1.js +1438 -5945
- package/dist-es/index.js +1 -0
- package/dist-es/models/QuickSightServiceException.js +12 -0
- package/dist-es/models/models_0.js +188 -1
- package/dist-es/models/models_1.js +72 -1
- package/dist-es/protocols/Aws_restJson1.js +3090 -6425
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/QuickSightServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +93 -40
- package/dist-types/models/models_1.d.ts +37 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/QuickSightServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +67 -40
- package/dist-types/ts3.4/models/models_1.d.ts +27 -16
- package/package.json +25 -25
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { _Parameters, AccountCustomization, ActiveIAMPolicyAssignment, AnalysisSearchFilter, AnalysisSourceEntity, AnalysisSummary, AnonymousUserEmbeddingExperienceConfiguration, AssignmentStatus, ColumnGroup, ColumnLevelPermissionRule, DashboardPublishOptions, DashboardSearchFilter, DashboardSourceEntity, DashboardSummary, DashboardVersionSummary, DataSetImportMode, DataSetSummary, DataSetUsageConfiguration, DataSource, DataSourceCredentials, DataSourceParameters, FieldFolder, FilterOperator, FolderType, Group, GroupMember, IdentityType, Ingestion, LinkSharingConfiguration, LogicalTable, NamespaceInfoV2, PhysicalTable, ResourcePermission, ResourceStatus, RowLevelPermissionDataSet, RowLevelPermissionTagConfiguration, SslProperties, Tag, TemplateAlias, TemplateSourceEntity, ThemeAlias, ThemeConfiguration, ThemeType, VpcConnectionProperties } from "./models_0";
|
|
3
|
+
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
3
4
|
export declare enum UserRole {
|
|
4
5
|
ADMIN = "ADMIN",
|
|
5
6
|
AUTHOR = "AUTHOR",
|
|
@@ -49,12 +50,14 @@ export declare namespace DescribeUserResponse {
|
|
|
49
50
|
const filterSensitiveLog: (obj: DescribeUserResponse) => any;
|
|
50
51
|
}
|
|
51
52
|
|
|
52
|
-
export
|
|
53
|
-
name: "DomainNotWhitelistedException";
|
|
54
|
-
$fault: "client";
|
|
53
|
+
export declare class DomainNotWhitelistedException extends __BaseException {
|
|
54
|
+
readonly name: "DomainNotWhitelistedException";
|
|
55
|
+
readonly $fault: "client";
|
|
55
56
|
Message?: string;
|
|
56
57
|
|
|
57
58
|
RequestId?: string;
|
|
59
|
+
|
|
60
|
+
constructor(opts: __ExceptionOptionType<DomainNotWhitelistedException, __BaseException>);
|
|
58
61
|
}
|
|
59
62
|
export declare enum EmbeddingIdentityType {
|
|
60
63
|
ANONYMOUS = "ANONYMOUS",
|
|
@@ -149,20 +152,24 @@ export declare namespace GenerateEmbedUrlForAnonymousUserResponse {
|
|
|
149
152
|
const filterSensitiveLog: (obj: GenerateEmbedUrlForAnonymousUserResponse) => any;
|
|
150
153
|
}
|
|
151
154
|
|
|
152
|
-
export
|
|
153
|
-
name: "SessionLifetimeInMinutesInvalidException";
|
|
154
|
-
$fault: "client";
|
|
155
|
+
export declare class SessionLifetimeInMinutesInvalidException extends __BaseException {
|
|
156
|
+
readonly name: "SessionLifetimeInMinutesInvalidException";
|
|
157
|
+
readonly $fault: "client";
|
|
155
158
|
Message?: string;
|
|
156
159
|
|
|
157
160
|
RequestId?: string;
|
|
161
|
+
|
|
162
|
+
constructor(opts: __ExceptionOptionType<SessionLifetimeInMinutesInvalidException, __BaseException>);
|
|
158
163
|
}
|
|
159
164
|
|
|
160
|
-
export
|
|
161
|
-
name: "UnsupportedPricingPlanException";
|
|
162
|
-
$fault: "client";
|
|
165
|
+
export declare class UnsupportedPricingPlanException extends __BaseException {
|
|
166
|
+
readonly name: "UnsupportedPricingPlanException";
|
|
167
|
+
readonly $fault: "client";
|
|
163
168
|
Message?: string;
|
|
164
169
|
|
|
165
170
|
RequestId?: string;
|
|
171
|
+
|
|
172
|
+
constructor(opts: __ExceptionOptionType<UnsupportedPricingPlanException, __BaseException>);
|
|
166
173
|
}
|
|
167
174
|
|
|
168
175
|
export interface RegisteredUserDashboardEmbeddingConfiguration {
|
|
@@ -231,12 +238,14 @@ export declare namespace GenerateEmbedUrlForRegisteredUserResponse {
|
|
|
231
238
|
const filterSensitiveLog: (obj: GenerateEmbedUrlForRegisteredUserResponse) => any;
|
|
232
239
|
}
|
|
233
240
|
|
|
234
|
-
export
|
|
235
|
-
name: "QuickSightUserNotFoundException";
|
|
236
|
-
$fault: "client";
|
|
241
|
+
export declare class QuickSightUserNotFoundException extends __BaseException {
|
|
242
|
+
readonly name: "QuickSightUserNotFoundException";
|
|
243
|
+
readonly $fault: "client";
|
|
237
244
|
Message?: string;
|
|
238
245
|
|
|
239
246
|
RequestId?: string;
|
|
247
|
+
|
|
248
|
+
constructor(opts: __ExceptionOptionType<QuickSightUserNotFoundException, __BaseException>);
|
|
240
249
|
}
|
|
241
250
|
export interface GetDashboardEmbedUrlRequest {
|
|
242
251
|
|
|
@@ -278,12 +287,14 @@ export declare namespace GetDashboardEmbedUrlResponse {
|
|
|
278
287
|
const filterSensitiveLog: (obj: GetDashboardEmbedUrlResponse) => any;
|
|
279
288
|
}
|
|
280
289
|
|
|
281
|
-
export
|
|
282
|
-
name: "IdentityTypeNotSupportedException";
|
|
283
|
-
$fault: "client";
|
|
290
|
+
export declare class IdentityTypeNotSupportedException extends __BaseException {
|
|
291
|
+
readonly name: "IdentityTypeNotSupportedException";
|
|
292
|
+
readonly $fault: "client";
|
|
284
293
|
Message?: string;
|
|
285
294
|
|
|
286
295
|
RequestId?: string;
|
|
296
|
+
|
|
297
|
+
constructor(opts: __ExceptionOptionType<IdentityTypeNotSupportedException, __BaseException>);
|
|
287
298
|
}
|
|
288
299
|
export interface GetSessionEmbedUrlRequest {
|
|
289
300
|
|
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.
|
|
4
|
+
"version": "3.53.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",
|
|
@@ -18,34 +18,34 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.53.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.53.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.53.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.53.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.53.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.53.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.53.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.53.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.53.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.53.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.53.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.53.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.53.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.53.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.53.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.53.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.53.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.53.0",
|
|
39
|
+
"@aws-sdk/types": "3.53.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.53.0",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.52.0",
|
|
44
44
|
"@aws-sdk/util-body-length-node": "3.52.0",
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.53.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.53.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.53.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.53.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0"
|