@aws-sdk/client-quicksight 3.473.0 → 3.476.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/README.md +8 -0
- package/dist-cjs/QuickSight.js +2 -0
- package/dist-cjs/commands/UpdateDashboardLinksCommand.js +51 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/models/models_1.js +7 -4
- package/dist-cjs/models/models_2.js +1 -14
- package/dist-cjs/models/models_3.js +16 -3
- package/dist-cjs/protocols/Aws_restJson1.js +91 -5
- package/dist-es/QuickSight.js +2 -0
- package/dist-es/commands/UpdateDashboardLinksCommand.js +47 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_1.js +3 -0
- package/dist-es/models/models_2.js +0 -10
- package/dist-es/models/models_3.js +11 -1
- package/dist-es/protocols/Aws_restJson1.js +84 -0
- package/dist-types/QuickSight.d.ts +7 -0
- package/dist-types/QuickSightClient.d.ts +3 -2
- package/dist-types/commands/CreateAccountSubscriptionCommand.d.ts +1 -2
- package/dist-types/commands/CreateAnalysisCommand.d.ts +13 -0
- package/dist-types/commands/CreateDashboardCommand.d.ts +16 -0
- package/dist-types/commands/CreateGroupCommand.d.ts +1 -1
- package/dist-types/commands/CreateTemplateCommand.d.ts +13 -0
- package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +13 -0
- package/dist-types/commands/DescribeDashboardCommand.d.ts +3 -0
- package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +13 -0
- package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +13 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/ListTemplateAliasesCommand.d.ts +1 -1
- package/dist-types/commands/ListTemplatesCommand.d.ts +1 -2
- package/dist-types/commands/UpdateAnalysisCommand.d.ts +13 -0
- package/dist-types/commands/UpdateDashboardCommand.d.ts +13 -0
- package/dist-types/commands/UpdateDashboardLinksCommand.d.ts +103 -0
- package/dist-types/commands/UpdateTemplateCommand.d.ts +13 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_1.d.ts +60 -78
- package/dist-types/models/models_2.d.ts +85 -93
- package/dist-types/models/models_3.d.ts +92 -87
- package/dist-types/models/models_4.d.ts +136 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/QuickSight.d.ts +17 -0
- package/dist-types/ts3.4/QuickSightClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListTemplateAliasesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTemplatesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdateDashboardLinksCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_1.d.ts +17 -16
- package/dist-types/ts3.4/models/models_2.d.ts +19 -29
- package/dist-types/ts3.4/models/models_3.d.ts +34 -26
- package/dist-types/ts3.4/models/models_4.d.ts +33 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +4 -4
|
@@ -20,10 +20,27 @@ import {
|
|
|
20
20
|
import {
|
|
21
21
|
AnalysisDefinition,
|
|
22
22
|
AnalysisSourceEntity,
|
|
23
|
+
AnonymousUserDashboardEmbeddingConfiguration,
|
|
23
24
|
DataSetReference,
|
|
24
25
|
SheetDefinition,
|
|
25
26
|
} from "./models_1";
|
|
26
27
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
28
|
+
export interface DashboardVisualId {
|
|
29
|
+
DashboardId: string | undefined;
|
|
30
|
+
SheetId: string | undefined;
|
|
31
|
+
VisualId: string | undefined;
|
|
32
|
+
}
|
|
33
|
+
export interface AnonymousUserDashboardVisualEmbeddingConfiguration {
|
|
34
|
+
InitialDashboardVisualId: DashboardVisualId | undefined;
|
|
35
|
+
}
|
|
36
|
+
export interface AnonymousUserQSearchBarEmbeddingConfiguration {
|
|
37
|
+
InitialTopicId: string | undefined;
|
|
38
|
+
}
|
|
39
|
+
export interface AnonymousUserEmbeddingExperienceConfiguration {
|
|
40
|
+
Dashboard?: AnonymousUserDashboardEmbeddingConfiguration;
|
|
41
|
+
DashboardVisual?: AnonymousUserDashboardVisualEmbeddingConfiguration;
|
|
42
|
+
QSearchBar?: AnonymousUserQSearchBarEmbeddingConfiguration;
|
|
43
|
+
}
|
|
27
44
|
export declare const SnapshotFileFormatType: {
|
|
28
45
|
readonly CSV: "CSV";
|
|
29
46
|
readonly EXCEL: "EXCEL";
|
|
@@ -56,7 +73,7 @@ export interface S3BucketConfiguration {
|
|
|
56
73
|
BucketRegion: string | undefined;
|
|
57
74
|
}
|
|
58
75
|
export interface SnapshotS3DestinationConfiguration {
|
|
59
|
-
BucketConfiguration
|
|
76
|
+
BucketConfiguration: S3BucketConfiguration | undefined;
|
|
60
77
|
}
|
|
61
78
|
export interface SnapshotJobS3Result {
|
|
62
79
|
S3DestinationConfiguration?: SnapshotS3DestinationConfiguration;
|
|
@@ -1837,6 +1854,7 @@ export interface CreateDashboardRequest {
|
|
|
1837
1854
|
ValidationStrategy?: ValidationStrategy;
|
|
1838
1855
|
FolderArns?: string[];
|
|
1839
1856
|
LinkSharingConfiguration?: LinkSharingConfiguration;
|
|
1857
|
+
LinkEntities?: string[];
|
|
1840
1858
|
}
|
|
1841
1859
|
export interface CreateDashboardResponse {
|
|
1842
1860
|
Arn?: string;
|
|
@@ -2791,25 +2809,6 @@ export interface DataAggregation {
|
|
|
2791
2809
|
DatasetRowDateGranularity?: TopicTimeGranularity;
|
|
2792
2810
|
DefaultDateColumnName?: string;
|
|
2793
2811
|
}
|
|
2794
|
-
export interface TopicCategoryFilterConstant {
|
|
2795
|
-
ConstantType?: ConstantType;
|
|
2796
|
-
SingularConstant?: string;
|
|
2797
|
-
CollectiveConstant?: CollectiveConstant;
|
|
2798
|
-
}
|
|
2799
|
-
export interface TopicCategoryFilter {
|
|
2800
|
-
CategoryFilterFunction?: CategoryFilterFunction;
|
|
2801
|
-
CategoryFilterType?: CategoryFilterType;
|
|
2802
|
-
Constant?: TopicCategoryFilterConstant;
|
|
2803
|
-
Inverse?: boolean;
|
|
2804
|
-
}
|
|
2805
|
-
export interface RangeConstant {
|
|
2806
|
-
Minimum?: string;
|
|
2807
|
-
Maximum?: string;
|
|
2808
|
-
}
|
|
2809
|
-
export interface TopicRangeFilterConstant {
|
|
2810
|
-
ConstantType?: ConstantType;
|
|
2811
|
-
RangeConstant?: RangeConstant;
|
|
2812
|
-
}
|
|
2813
2812
|
export declare const SnapshotJobS3ResultFilterSensitiveLog: (
|
|
2814
2813
|
obj: SnapshotJobS3Result
|
|
2815
2814
|
) => any;
|
|
@@ -2898,12 +2897,3 @@ export declare const TopicCalculatedFieldFilterSensitiveLog: (
|
|
|
2898
2897
|
obj: TopicCalculatedField
|
|
2899
2898
|
) => any;
|
|
2900
2899
|
export declare const TopicColumnFilterSensitiveLog: (obj: TopicColumn) => any;
|
|
2901
|
-
export declare const TopicCategoryFilterConstantFilterSensitiveLog: (
|
|
2902
|
-
obj: TopicCategoryFilterConstant
|
|
2903
|
-
) => any;
|
|
2904
|
-
export declare const TopicCategoryFilterFilterSensitiveLog: (
|
|
2905
|
-
obj: TopicCategoryFilter
|
|
2906
|
-
) => any;
|
|
2907
|
-
export declare const TopicRangeFilterConstantFilterSensitiveLog: (
|
|
2908
|
-
obj: TopicRangeFilterConstant
|
|
2909
|
-
) => any;
|
|
@@ -13,12 +13,11 @@ import {
|
|
|
13
13
|
import {
|
|
14
14
|
AnalysisDefinition,
|
|
15
15
|
AnalysisSummary,
|
|
16
|
-
AnonymousUserEmbeddingExperienceConfiguration,
|
|
17
|
-
DashboardVisualId,
|
|
18
16
|
FilterOperator,
|
|
19
17
|
} from "./models_1";
|
|
20
18
|
import {
|
|
21
19
|
_Parameters,
|
|
20
|
+
AnonymousUserEmbeddingExperienceConfiguration,
|
|
22
21
|
AnonymousUserSnapshotJobResult,
|
|
23
22
|
AssetBundleCloudFormationOverridePropertyConfiguration,
|
|
24
23
|
AssetBundleExportFormat,
|
|
@@ -39,6 +38,9 @@ import {
|
|
|
39
38
|
AssignmentStatus,
|
|
40
39
|
AuthorizedTargetsByService,
|
|
41
40
|
BookmarksConfigurations,
|
|
41
|
+
CategoryFilterFunction,
|
|
42
|
+
CategoryFilterType,
|
|
43
|
+
CollectiveConstant,
|
|
42
44
|
ColumnDataSubType,
|
|
43
45
|
ColumnDataType,
|
|
44
46
|
ColumnGroup,
|
|
@@ -46,6 +48,7 @@ import {
|
|
|
46
48
|
ConstantType,
|
|
47
49
|
DashboardPublishOptions,
|
|
48
50
|
DashboardVersionDefinition,
|
|
51
|
+
DashboardVisualId,
|
|
49
52
|
DataAggregation,
|
|
50
53
|
DataSetConfiguration,
|
|
51
54
|
DataSetImportMode,
|
|
@@ -80,13 +83,30 @@ import {
|
|
|
80
83
|
ThemeAlias,
|
|
81
84
|
ThemeConfiguration,
|
|
82
85
|
TopicCalculatedField,
|
|
83
|
-
TopicCategoryFilter,
|
|
84
86
|
TopicColumn,
|
|
85
|
-
TopicRangeFilterConstant,
|
|
86
87
|
TopicTimeGranularity,
|
|
87
88
|
VpcConnectionProperties,
|
|
88
89
|
} from "./models_2";
|
|
89
90
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
91
|
+
export interface TopicCategoryFilterConstant {
|
|
92
|
+
ConstantType?: ConstantType;
|
|
93
|
+
SingularConstant?: string;
|
|
94
|
+
CollectiveConstant?: CollectiveConstant;
|
|
95
|
+
}
|
|
96
|
+
export interface TopicCategoryFilter {
|
|
97
|
+
CategoryFilterFunction?: CategoryFilterFunction;
|
|
98
|
+
CategoryFilterType?: CategoryFilterType;
|
|
99
|
+
Constant?: TopicCategoryFilterConstant;
|
|
100
|
+
Inverse?: boolean;
|
|
101
|
+
}
|
|
102
|
+
export interface RangeConstant {
|
|
103
|
+
Minimum?: string;
|
|
104
|
+
Maximum?: string;
|
|
105
|
+
}
|
|
106
|
+
export interface TopicRangeFilterConstant {
|
|
107
|
+
ConstantType?: ConstantType;
|
|
108
|
+
RangeConstant?: RangeConstant;
|
|
109
|
+
}
|
|
90
110
|
export interface TopicDateRangeFilter {
|
|
91
111
|
Inclusive?: boolean;
|
|
92
112
|
Constant?: TopicRangeFilterConstant;
|
|
@@ -348,6 +368,7 @@ export interface Dashboard {
|
|
|
348
368
|
CreatedTime?: Date;
|
|
349
369
|
LastPublishedTime?: Date;
|
|
350
370
|
LastUpdatedTime?: Date;
|
|
371
|
+
LinkEntities?: string[];
|
|
351
372
|
}
|
|
352
373
|
export declare const DashboardFilterAttribute: {
|
|
353
374
|
readonly DASHBOARD_NAME: "DASHBOARD_NAME";
|
|
@@ -1992,28 +2013,15 @@ export interface ListRoleMembershipsResponse {
|
|
|
1992
2013
|
export interface ListTagsForResourceRequest {
|
|
1993
2014
|
ResourceArn: string | undefined;
|
|
1994
2015
|
}
|
|
1995
|
-
export
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
MaxResults?: number;
|
|
2005
|
-
}
|
|
2006
|
-
export interface ListTemplateAliasesResponse {
|
|
2007
|
-
TemplateAliasList?: TemplateAlias[];
|
|
2008
|
-
Status?: number;
|
|
2009
|
-
RequestId?: string;
|
|
2010
|
-
NextToken?: string;
|
|
2011
|
-
}
|
|
2012
|
-
export interface ListTemplatesRequest {
|
|
2013
|
-
AwsAccountId: string | undefined;
|
|
2014
|
-
NextToken?: string;
|
|
2015
|
-
MaxResults?: number;
|
|
2016
|
-
}
|
|
2016
|
+
export declare const TopicCategoryFilterConstantFilterSensitiveLog: (
|
|
2017
|
+
obj: TopicCategoryFilterConstant
|
|
2018
|
+
) => any;
|
|
2019
|
+
export declare const TopicCategoryFilterFilterSensitiveLog: (
|
|
2020
|
+
obj: TopicCategoryFilter
|
|
2021
|
+
) => any;
|
|
2022
|
+
export declare const TopicRangeFilterConstantFilterSensitiveLog: (
|
|
2023
|
+
obj: TopicRangeFilterConstant
|
|
2024
|
+
) => any;
|
|
2017
2025
|
export declare const TopicDateRangeFilterFilterSensitiveLog: (
|
|
2018
2026
|
obj: TopicDateRangeFilter
|
|
2019
2027
|
) => any;
|
|
@@ -71,6 +71,28 @@ import {
|
|
|
71
71
|
VPCConnectionAvailabilityStatus,
|
|
72
72
|
VPCConnectionResourceStatus,
|
|
73
73
|
} from "./models_3";
|
|
74
|
+
export interface ListTagsForResourceResponse {
|
|
75
|
+
Tags?: Tag[];
|
|
76
|
+
RequestId?: string;
|
|
77
|
+
Status?: number;
|
|
78
|
+
}
|
|
79
|
+
export interface ListTemplateAliasesRequest {
|
|
80
|
+
AwsAccountId: string | undefined;
|
|
81
|
+
TemplateId: string | undefined;
|
|
82
|
+
NextToken?: string;
|
|
83
|
+
MaxResults?: number;
|
|
84
|
+
}
|
|
85
|
+
export interface ListTemplateAliasesResponse {
|
|
86
|
+
TemplateAliasList?: TemplateAlias[];
|
|
87
|
+
Status?: number;
|
|
88
|
+
RequestId?: string;
|
|
89
|
+
NextToken?: string;
|
|
90
|
+
}
|
|
91
|
+
export interface ListTemplatesRequest {
|
|
92
|
+
AwsAccountId: string | undefined;
|
|
93
|
+
NextToken?: string;
|
|
94
|
+
MaxResults?: number;
|
|
95
|
+
}
|
|
74
96
|
export interface TemplateSummary {
|
|
75
97
|
Arn?: string;
|
|
76
98
|
TemplateId?: string;
|
|
@@ -492,6 +514,17 @@ export interface UpdateDashboardResponse {
|
|
|
492
514
|
Status?: number;
|
|
493
515
|
RequestId?: string;
|
|
494
516
|
}
|
|
517
|
+
export interface UpdateDashboardLinksRequest {
|
|
518
|
+
AwsAccountId: string | undefined;
|
|
519
|
+
DashboardId: string | undefined;
|
|
520
|
+
LinkEntities: string[] | undefined;
|
|
521
|
+
}
|
|
522
|
+
export interface UpdateDashboardLinksResponse {
|
|
523
|
+
RequestId?: string;
|
|
524
|
+
Status?: number;
|
|
525
|
+
DashboardArn?: string;
|
|
526
|
+
LinkEntities?: string[];
|
|
527
|
+
}
|
|
495
528
|
export interface UpdateDashboardPermissionsRequest {
|
|
496
529
|
AwsAccountId: string | undefined;
|
|
497
530
|
DashboardId: string | undefined;
|
|
@@ -579,6 +579,10 @@ import {
|
|
|
579
579
|
UpdateDashboardCommandInput,
|
|
580
580
|
UpdateDashboardCommandOutput,
|
|
581
581
|
} from "../commands/UpdateDashboardCommand";
|
|
582
|
+
import {
|
|
583
|
+
UpdateDashboardLinksCommandInput,
|
|
584
|
+
UpdateDashboardLinksCommandOutput,
|
|
585
|
+
} from "../commands/UpdateDashboardLinksCommand";
|
|
582
586
|
import {
|
|
583
587
|
UpdateDashboardPermissionsCommandInput,
|
|
584
588
|
UpdateDashboardPermissionsCommandOutput,
|
|
@@ -1259,6 +1263,10 @@ export declare const se_UpdateDashboardCommand: (
|
|
|
1259
1263
|
input: UpdateDashboardCommandInput,
|
|
1260
1264
|
context: __SerdeContext
|
|
1261
1265
|
) => Promise<__HttpRequest>;
|
|
1266
|
+
export declare const se_UpdateDashboardLinksCommand: (
|
|
1267
|
+
input: UpdateDashboardLinksCommandInput,
|
|
1268
|
+
context: __SerdeContext
|
|
1269
|
+
) => Promise<__HttpRequest>;
|
|
1262
1270
|
export declare const se_UpdateDashboardPermissionsCommand: (
|
|
1263
1271
|
input: UpdateDashboardPermissionsCommandInput,
|
|
1264
1272
|
context: __SerdeContext
|
|
@@ -1939,6 +1947,10 @@ export declare const de_UpdateDashboardCommand: (
|
|
|
1939
1947
|
output: __HttpResponse,
|
|
1940
1948
|
context: __SerdeContext
|
|
1941
1949
|
) => Promise<UpdateDashboardCommandOutput>;
|
|
1950
|
+
export declare const de_UpdateDashboardLinksCommand: (
|
|
1951
|
+
output: __HttpResponse,
|
|
1952
|
+
context: __SerdeContext
|
|
1953
|
+
) => Promise<UpdateDashboardLinksCommandOutput>;
|
|
1942
1954
|
export declare const de_UpdateDashboardPermissionsCommand: (
|
|
1943
1955
|
output: __HttpResponse,
|
|
1944
1956
|
context: __SerdeContext
|
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.476.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,9 +20,9 @@
|
|
|
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/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.476.0",
|
|
24
|
+
"@aws-sdk/core": "3.476.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.476.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.468.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.468.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.468.0",
|