@aws-sdk/client-quicksight 3.282.0 → 3.288.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/commands/GetDashboardEmbedUrlCommand.js +2 -1
- package/dist-cjs/commands/GetSessionEmbedUrlCommand.js +1 -2
- package/dist-cjs/models/models_2.js +19 -31
- package/dist-cjs/models/models_3.js +27 -3
- package/dist-cjs/pagination/ListAnalysesPaginator.js +1 -8
- package/dist-cjs/pagination/ListDashboardVersionsPaginator.js +1 -8
- package/dist-cjs/pagination/ListDashboardsPaginator.js +1 -8
- package/dist-cjs/pagination/ListDataSetsPaginator.js +1 -8
- package/dist-cjs/pagination/ListDataSourcesPaginator.js +1 -8
- package/dist-cjs/pagination/ListIngestionsPaginator.js +1 -8
- package/dist-cjs/pagination/ListNamespacesPaginator.js +1 -8
- package/dist-cjs/pagination/ListTemplateAliasesPaginator.js +1 -8
- package/dist-cjs/pagination/ListTemplateVersionsPaginator.js +1 -8
- package/dist-cjs/pagination/ListTemplatesPaginator.js +1 -8
- package/dist-cjs/pagination/ListThemeVersionsPaginator.js +1 -8
- package/dist-cjs/pagination/ListThemesPaginator.js +1 -8
- package/dist-cjs/pagination/SearchAnalysesPaginator.js +1 -8
- package/dist-cjs/pagination/SearchDashboardsPaginator.js +1 -8
- package/dist-cjs/pagination/SearchDataSetsPaginator.js +1 -8
- package/dist-cjs/pagination/SearchDataSourcesPaginator.js +1 -8
- package/dist-cjs/protocols/Aws_restJson1.js +30 -1
- package/dist-es/commands/GetDashboardEmbedUrlCommand.js +2 -1
- package/dist-es/commands/GetSessionEmbedUrlCommand.js +1 -2
- package/dist-es/models/models_2.js +9 -21
- package/dist-es/models/models_3.js +21 -0
- package/dist-es/pagination/ListAnalysesPaginator.js +1 -8
- package/dist-es/pagination/ListDashboardVersionsPaginator.js +1 -8
- package/dist-es/pagination/ListDashboardsPaginator.js +1 -8
- package/dist-es/pagination/ListDataSetsPaginator.js +1 -8
- package/dist-es/pagination/ListDataSourcesPaginator.js +1 -8
- package/dist-es/pagination/ListIngestionsPaginator.js +1 -8
- package/dist-es/pagination/ListNamespacesPaginator.js +1 -8
- package/dist-es/pagination/ListTemplateAliasesPaginator.js +1 -8
- package/dist-es/pagination/ListTemplateVersionsPaginator.js +1 -8
- package/dist-es/pagination/ListTemplatesPaginator.js +1 -8
- package/dist-es/pagination/ListThemeVersionsPaginator.js +1 -8
- package/dist-es/pagination/ListThemesPaginator.js +1 -8
- package/dist-es/pagination/SearchAnalysesPaginator.js +1 -8
- package/dist-es/pagination/SearchDashboardsPaginator.js +1 -8
- package/dist-es/pagination/SearchDataSetsPaginator.js +1 -8
- package/dist-es/pagination/SearchDataSourcesPaginator.js +1 -8
- package/dist-es/protocols/Aws_restJson1.js +31 -2
- package/dist-types/QuickSight.d.ts +1 -1
- package/dist-types/commands/DeleteUserCommand.d.ts +1 -1
- package/dist-types/commands/GetDashboardEmbedUrlCommand.d.ts +2 -1
- package/dist-types/commands/GetSessionEmbedUrlCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +2 -2
- package/dist-types/models/models_1.d.ts +4 -0
- package/dist-types/models/models_2.d.ts +48 -115
- package/dist-types/models/models_3.d.ts +114 -1
- package/dist-types/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/commands/GetDashboardEmbedUrlCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetSessionEmbedUrlCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_1.d.ts +1 -0
- package/dist-types/ts3.4/models/models_2.d.ts +20 -29
- package/dist-types/ts3.4/models/models_3.d.ts +29 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/package.json +9 -9
|
@@ -2583,8 +2583,15 @@ export declare class UnsupportedPricingPlanException extends __BaseException {
|
|
|
2583
2583
|
>
|
|
2584
2584
|
);
|
|
2585
2585
|
}
|
|
2586
|
+
export interface StatePersistenceConfigurations {
|
|
2587
|
+
Enabled: boolean | undefined;
|
|
2588
|
+
}
|
|
2589
|
+
export interface RegisteredUserDashboardFeatureConfigurations {
|
|
2590
|
+
StatePersistence?: StatePersistenceConfigurations;
|
|
2591
|
+
}
|
|
2586
2592
|
export interface RegisteredUserDashboardEmbeddingConfiguration {
|
|
2587
2593
|
InitialDashboardId: string | undefined;
|
|
2594
|
+
FeatureConfigurations?: RegisteredUserDashboardFeatureConfigurations;
|
|
2588
2595
|
}
|
|
2589
2596
|
export interface RegisteredUserDashboardVisualEmbeddingConfiguration {
|
|
2590
2597
|
InitialDashboardVisualId: DashboardVisualId | undefined;
|
|
@@ -2592,8 +2599,12 @@ export interface RegisteredUserDashboardVisualEmbeddingConfiguration {
|
|
|
2592
2599
|
export interface RegisteredUserQSearchBarEmbeddingConfiguration {
|
|
2593
2600
|
InitialTopicId?: string;
|
|
2594
2601
|
}
|
|
2602
|
+
export interface RegisteredUserConsoleFeatureConfigurations {
|
|
2603
|
+
StatePersistence?: StatePersistenceConfigurations;
|
|
2604
|
+
}
|
|
2595
2605
|
export interface RegisteredUserQuickSightConsoleEmbeddingConfiguration {
|
|
2596
2606
|
InitialPath?: string;
|
|
2607
|
+
FeatureConfigurations?: RegisteredUserConsoleFeatureConfigurations;
|
|
2597
2608
|
}
|
|
2598
2609
|
export interface RegisteredUserEmbeddingExperienceConfiguration {
|
|
2599
2610
|
Dashboard?: RegisteredUserDashboardEmbeddingConfiguration;
|
|
@@ -2639,29 +2650,6 @@ export interface GetDashboardEmbedUrlRequest {
|
|
|
2639
2650
|
Namespace?: string;
|
|
2640
2651
|
AdditionalDashboardIds?: string[];
|
|
2641
2652
|
}
|
|
2642
|
-
export interface GetDashboardEmbedUrlResponse {
|
|
2643
|
-
EmbedUrl?: string;
|
|
2644
|
-
Status?: number;
|
|
2645
|
-
RequestId?: string;
|
|
2646
|
-
}
|
|
2647
|
-
export declare class IdentityTypeNotSupportedException extends __BaseException {
|
|
2648
|
-
readonly name: "IdentityTypeNotSupportedException";
|
|
2649
|
-
readonly $fault: "client";
|
|
2650
|
-
Message?: string;
|
|
2651
|
-
RequestId?: string;
|
|
2652
|
-
constructor(
|
|
2653
|
-
opts: __ExceptionOptionType<
|
|
2654
|
-
IdentityTypeNotSupportedException,
|
|
2655
|
-
__BaseException
|
|
2656
|
-
>
|
|
2657
|
-
);
|
|
2658
|
-
}
|
|
2659
|
-
export interface GetSessionEmbedUrlRequest {
|
|
2660
|
-
AwsAccountId: string | undefined;
|
|
2661
|
-
EntryPoint?: string;
|
|
2662
|
-
SessionLifetimeInMinutes?: number;
|
|
2663
|
-
UserArn?: string;
|
|
2664
|
-
}
|
|
2665
2653
|
export declare const DateTimeParameterFilterSensitiveLog: (
|
|
2666
2654
|
obj: DateTimeParameter
|
|
2667
2655
|
) => any;
|
|
@@ -3345,6 +3333,12 @@ export declare const GenerateEmbedUrlForAnonymousUserRequestFilterSensitiveLog:
|
|
|
3345
3333
|
export declare const GenerateEmbedUrlForAnonymousUserResponseFilterSensitiveLog: (
|
|
3346
3334
|
obj: GenerateEmbedUrlForAnonymousUserResponse
|
|
3347
3335
|
) => any;
|
|
3336
|
+
export declare const StatePersistenceConfigurationsFilterSensitiveLog: (
|
|
3337
|
+
obj: StatePersistenceConfigurations
|
|
3338
|
+
) => any;
|
|
3339
|
+
export declare const RegisteredUserDashboardFeatureConfigurationsFilterSensitiveLog: (
|
|
3340
|
+
obj: RegisteredUserDashboardFeatureConfigurations
|
|
3341
|
+
) => any;
|
|
3348
3342
|
export declare const RegisteredUserDashboardEmbeddingConfigurationFilterSensitiveLog: (
|
|
3349
3343
|
obj: RegisteredUserDashboardEmbeddingConfiguration
|
|
3350
3344
|
) => any;
|
|
@@ -3354,6 +3348,9 @@ export declare const RegisteredUserDashboardVisualEmbeddingConfigurationFilterSe
|
|
|
3354
3348
|
export declare const RegisteredUserQSearchBarEmbeddingConfigurationFilterSensitiveLog: (
|
|
3355
3349
|
obj: RegisteredUserQSearchBarEmbeddingConfiguration
|
|
3356
3350
|
) => any;
|
|
3351
|
+
export declare const RegisteredUserConsoleFeatureConfigurationsFilterSensitiveLog: (
|
|
3352
|
+
obj: RegisteredUserConsoleFeatureConfigurations
|
|
3353
|
+
) => any;
|
|
3357
3354
|
export declare const RegisteredUserQuickSightConsoleEmbeddingConfigurationFilterSensitiveLog: (
|
|
3358
3355
|
obj: RegisteredUserQuickSightConsoleEmbeddingConfiguration
|
|
3359
3356
|
) => any;
|
|
@@ -3369,9 +3366,3 @@ export declare const GenerateEmbedUrlForRegisteredUserResponseFilterSensitiveLog
|
|
|
3369
3366
|
export declare const GetDashboardEmbedUrlRequestFilterSensitiveLog: (
|
|
3370
3367
|
obj: GetDashboardEmbedUrlRequest
|
|
3371
3368
|
) => any;
|
|
3372
|
-
export declare const GetDashboardEmbedUrlResponseFilterSensitiveLog: (
|
|
3373
|
-
obj: GetDashboardEmbedUrlResponse
|
|
3374
|
-
) => any;
|
|
3375
|
-
export declare const GetSessionEmbedUrlRequestFilterSensitiveLog: (
|
|
3376
|
-
obj: GetSessionEmbedUrlRequest
|
|
3377
|
-
) => any;
|
|
@@ -58,6 +58,29 @@ import {
|
|
|
58
58
|
VpcConnectionProperties,
|
|
59
59
|
} from "./models_2";
|
|
60
60
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
61
|
+
export interface GetDashboardEmbedUrlResponse {
|
|
62
|
+
EmbedUrl?: string;
|
|
63
|
+
Status?: number;
|
|
64
|
+
RequestId?: string;
|
|
65
|
+
}
|
|
66
|
+
export declare class IdentityTypeNotSupportedException extends __BaseException {
|
|
67
|
+
readonly name: "IdentityTypeNotSupportedException";
|
|
68
|
+
readonly $fault: "client";
|
|
69
|
+
Message?: string;
|
|
70
|
+
RequestId?: string;
|
|
71
|
+
constructor(
|
|
72
|
+
opts: __ExceptionOptionType<
|
|
73
|
+
IdentityTypeNotSupportedException,
|
|
74
|
+
__BaseException
|
|
75
|
+
>
|
|
76
|
+
);
|
|
77
|
+
}
|
|
78
|
+
export interface GetSessionEmbedUrlRequest {
|
|
79
|
+
AwsAccountId: string | undefined;
|
|
80
|
+
EntryPoint?: string;
|
|
81
|
+
SessionLifetimeInMinutes?: number;
|
|
82
|
+
UserArn?: string;
|
|
83
|
+
}
|
|
61
84
|
export interface GetSessionEmbedUrlResponse {
|
|
62
85
|
EmbedUrl?: string;
|
|
63
86
|
Status?: number;
|
|
@@ -820,6 +843,12 @@ export interface UpdateUserResponse {
|
|
|
820
843
|
RequestId?: string;
|
|
821
844
|
Status?: number;
|
|
822
845
|
}
|
|
846
|
+
export declare const GetDashboardEmbedUrlResponseFilterSensitiveLog: (
|
|
847
|
+
obj: GetDashboardEmbedUrlResponse
|
|
848
|
+
) => any;
|
|
849
|
+
export declare const GetSessionEmbedUrlRequestFilterSensitiveLog: (
|
|
850
|
+
obj: GetSessionEmbedUrlRequest
|
|
851
|
+
) => any;
|
|
823
852
|
export declare const GetSessionEmbedUrlResponseFilterSensitiveLog: (
|
|
824
853
|
obj: GetSessionEmbedUrlResponse
|
|
825
854
|
) => any;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { QuickSight } from "../QuickSight";
|
|
3
2
|
import { QuickSightClient } from "../QuickSightClient";
|
|
4
3
|
export interface QuickSightPaginationConfiguration
|
|
5
4
|
extends PaginationConfiguration {
|
|
6
|
-
client:
|
|
5
|
+
client: QuickSightClient;
|
|
7
6
|
}
|
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.288.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",
|
|
@@ -20,23 +20,23 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.288.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.287.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.288.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.282.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.272.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.272.0",
|
|
29
29
|
"@aws-sdk/middleware-content-length": "3.282.0",
|
|
30
30
|
"@aws-sdk/middleware-endpoint": "3.282.0",
|
|
31
31
|
"@aws-sdk/middleware-host-header": "3.282.0",
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.288.0",
|
|
33
33
|
"@aws-sdk/middleware-recursion-detection": "3.282.0",
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.287.0",
|
|
35
35
|
"@aws-sdk/middleware-serde": "3.272.0",
|
|
36
36
|
"@aws-sdk/middleware-signing": "3.282.0",
|
|
37
37
|
"@aws-sdk/middleware-stack": "3.272.0",
|
|
38
38
|
"@aws-sdk/middleware-user-agent": "3.282.0",
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.287.0",
|
|
40
40
|
"@aws-sdk/node-http-handler": "3.282.0",
|
|
41
41
|
"@aws-sdk/protocol-http": "3.282.0",
|
|
42
42
|
"@aws-sdk/smithy-client": "3.279.0",
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
48
|
"@aws-sdk/util-defaults-mode-browser": "3.279.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.287.0",
|
|
50
50
|
"@aws-sdk/util-endpoints": "3.272.0",
|
|
51
51
|
"@aws-sdk/util-retry": "3.272.0",
|
|
52
52
|
"@aws-sdk/util-user-agent-browser": "3.282.0",
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.287.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
55
|
"tslib": "^2.3.1"
|
|
56
56
|
},
|