@aws-sdk/client-quicksight 3.261.0 → 3.264.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 (50) hide show
  1. package/dist-cjs/commands/CreateAnalysisCommand.js +1 -2
  2. package/dist-cjs/commands/GetSessionEmbedUrlCommand.js +2 -1
  3. package/dist-cjs/commands/ListAnalysesCommand.js +3 -3
  4. package/dist-cjs/commands/ListDashboardVersionsCommand.js +3 -3
  5. package/dist-cjs/commands/ListDashboardsCommand.js +3 -3
  6. package/dist-cjs/commands/ListDataSetsCommand.js +3 -3
  7. package/dist-cjs/commands/ListDataSourcesCommand.js +1 -2
  8. package/dist-cjs/endpoint/ruleset.js +1 -1
  9. package/dist-cjs/models/models_1.js +39 -64
  10. package/dist-cjs/models/models_2.js +96 -80
  11. package/dist-cjs/models/models_3.js +78 -6
  12. package/dist-cjs/protocols/Aws_restJson1.js +399 -2
  13. package/dist-es/commands/CreateAnalysisCommand.js +1 -2
  14. package/dist-es/commands/GetSessionEmbedUrlCommand.js +2 -1
  15. package/dist-es/commands/ListAnalysesCommand.js +1 -1
  16. package/dist-es/commands/ListDashboardVersionsCommand.js +1 -1
  17. package/dist-es/commands/ListDashboardsCommand.js +1 -1
  18. package/dist-es/commands/ListDataSetsCommand.js +1 -1
  19. package/dist-es/commands/ListDataSourcesCommand.js +1 -2
  20. package/dist-es/endpoint/ruleset.js +1 -1
  21. package/dist-es/models/models_1.js +28 -52
  22. package/dist-es/models/models_2.js +74 -60
  23. package/dist-es/models/models_3.js +61 -2
  24. package/dist-es/protocols/Aws_restJson1.js +399 -2
  25. package/dist-types/QuickSight.d.ts +4 -4
  26. package/dist-types/commands/CreateAnalysisCommand.d.ts +2 -3
  27. package/dist-types/commands/CreateDashboardCommand.d.ts +1 -1
  28. package/dist-types/commands/CreateTemplateCommand.d.ts +2 -2
  29. package/dist-types/commands/GetSessionEmbedUrlCommand.d.ts +2 -1
  30. package/dist-types/commands/ListAnalysesCommand.d.ts +1 -1
  31. package/dist-types/commands/ListDashboardVersionsCommand.d.ts +1 -1
  32. package/dist-types/commands/ListDashboardsCommand.d.ts +1 -1
  33. package/dist-types/commands/ListDataSetsCommand.d.ts +1 -1
  34. package/dist-types/commands/ListDataSourcesCommand.d.ts +1 -2
  35. package/dist-types/models/models_0.d.ts +1 -1
  36. package/dist-types/models/models_1.d.ts +192 -193
  37. package/dist-types/models/models_2.d.ts +354 -271
  38. package/dist-types/models/models_3.d.ts +274 -2
  39. package/dist-types/ts3.4/commands/CreateAnalysisCommand.d.ts +4 -2
  40. package/dist-types/ts3.4/commands/GetSessionEmbedUrlCommand.d.ts +2 -4
  41. package/dist-types/ts3.4/commands/ListAnalysesCommand.d.ts +1 -1
  42. package/dist-types/ts3.4/commands/ListDashboardVersionsCommand.d.ts +1 -1
  43. package/dist-types/ts3.4/commands/ListDashboardsCommand.d.ts +1 -1
  44. package/dist-types/ts3.4/commands/ListDataSetsCommand.d.ts +1 -1
  45. package/dist-types/ts3.4/commands/ListDataSourcesCommand.d.ts +4 -2
  46. package/dist-types/ts3.4/models/models_0.d.ts +1 -1
  47. package/dist-types/ts3.4/models/models_1.d.ts +70 -65
  48. package/dist-types/ts3.4/models/models_2.d.ts +116 -118
  49. package/dist-types/ts3.4/models/models_3.d.ts +120 -4
  50. package/package.json +4 -4
@@ -20,9 +20,8 @@ import {
20
20
  Sheet,
21
21
  } from "./models_0";
22
22
  import {
23
- _Parameters,
24
23
  AnalysisDefinition,
25
- AnalysisSummary,
24
+ AnalysisSourceEntity,
26
25
  AnonymousUserEmbeddingExperienceConfiguration,
27
26
  AssignmentStatus,
28
27
  AthenaParameters,
@@ -43,11 +42,56 @@ import {
43
42
  DataSetReference,
44
43
  ExceptionResourceType,
45
44
  FilterOperator,
46
- ResourcePermission,
47
45
  SheetDefinition,
48
46
  Tag,
49
47
  } from "./models_1";
50
48
  import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
49
+ export declare class PreconditionNotMetException extends __BaseException {
50
+ readonly name: "PreconditionNotMetException";
51
+ readonly $fault: "client";
52
+ Message?: string;
53
+ RequestId?: string;
54
+ constructor(
55
+ opts: __ExceptionOptionType<PreconditionNotMetException, __BaseException>
56
+ );
57
+ }
58
+ export interface DateTimeParameter {
59
+ Name: string | undefined;
60
+ Values: Date[] | undefined;
61
+ }
62
+ export interface DecimalParameter {
63
+ Name: string | undefined;
64
+ Values: number[] | undefined;
65
+ }
66
+ export interface IntegerParameter {
67
+ Name: string | undefined;
68
+ Values: number[] | undefined;
69
+ }
70
+ export interface StringParameter {
71
+ Name: string | undefined;
72
+ Values: string[] | undefined;
73
+ }
74
+ export interface _Parameters {
75
+ StringParameters?: StringParameter[];
76
+ IntegerParameters?: IntegerParameter[];
77
+ DecimalParameters?: DecimalParameter[];
78
+ DateTimeParameters?: DateTimeParameter[];
79
+ }
80
+ export interface ResourcePermission {
81
+ Principal: string | undefined;
82
+ Actions: string[] | undefined;
83
+ }
84
+ export interface CreateAnalysisRequest {
85
+ AwsAccountId: string | undefined;
86
+ AnalysisId: string | undefined;
87
+ Name: string | undefined;
88
+ Parameters?: _Parameters;
89
+ Permissions?: ResourcePermission[];
90
+ SourceEntity?: AnalysisSourceEntity;
91
+ ThemeArn?: string;
92
+ Tags?: Tag[];
93
+ Definition?: AnalysisDefinition;
94
+ }
51
95
  export interface CreateAnalysisResponse {
52
96
  Arn?: string;
53
97
  AnalysisId?: string;
@@ -80,9 +124,21 @@ export declare class UnsupportedUserEditionException extends __BaseException {
80
124
  export interface CreateColumnsOperation {
81
125
  Columns: CalculatedColumn[] | undefined;
82
126
  }
127
+ export interface DataPointDrillUpDownOption {
128
+ AvailabilityStatus?: DashboardBehavior | string;
129
+ }
130
+ export interface DataPointMenuLabelOption {
131
+ AvailabilityStatus?: DashboardBehavior | string;
132
+ }
133
+ export interface DataPointTooltipOption {
134
+ AvailabilityStatus?: DashboardBehavior | string;
135
+ }
83
136
  export interface ExportToCSVOption {
84
137
  AvailabilityStatus?: DashboardBehavior | string;
85
138
  }
139
+ export interface ExportWithHiddenFieldsOption {
140
+ AvailabilityStatus?: DashboardBehavior | string;
141
+ }
86
142
  export declare enum DashboardUIState {
87
143
  COLLAPSED = "COLLAPSED",
88
144
  EXPANDED = "EXPANDED",
@@ -90,6 +146,15 @@ export declare enum DashboardUIState {
90
146
  export interface SheetControlsOption {
91
147
  VisibilityState?: DashboardUIState | string;
92
148
  }
149
+ export interface SheetLayoutElementMaximizationOption {
150
+ AvailabilityStatus?: DashboardBehavior | string;
151
+ }
152
+ export interface VisualAxisSortOption {
153
+ AvailabilityStatus?: DashboardBehavior | string;
154
+ }
155
+ export interface VisualMenuOption {
156
+ AvailabilityStatus?: DashboardBehavior | string;
157
+ }
93
158
  export interface ExportHiddenFieldsOption {
94
159
  AvailabilityStatus?: DashboardBehavior | string;
95
160
  }
@@ -101,6 +166,13 @@ export interface DashboardPublishOptions {
101
166
  ExportToCSVOption?: ExportToCSVOption;
102
167
  SheetControlsOption?: SheetControlsOption;
103
168
  VisualPublishOptions?: DashboardVisualPublishOptions;
169
+ SheetLayoutElementMaximizationOption?: SheetLayoutElementMaximizationOption;
170
+ VisualMenuOption?: VisualMenuOption;
171
+ VisualAxisSortOption?: VisualAxisSortOption;
172
+ ExportWithHiddenFieldsOption?: ExportWithHiddenFieldsOption;
173
+ DataPointDrillUpDownOption?: DataPointDrillUpDownOption;
174
+ DataPointMenuLabelOption?: DataPointMenuLabelOption;
175
+ DataPointTooltipOption?: DataPointTooltipOption;
104
176
  }
105
177
  export interface DashboardVersionDefinition {
106
178
  DataSetIdentifierDeclarations: DataSetIdentifierDeclaration[] | undefined;
@@ -1978,6 +2050,7 @@ export interface DescribeDashboardDefinitionResponse {
1978
2050
  Definition?: DashboardVersionDefinition;
1979
2051
  Status?: number;
1980
2052
  RequestId?: string;
2053
+ DashboardPublishOptions?: DashboardPublishOptions;
1981
2054
  }
1982
2055
  export interface DescribeDashboardPermissionsRequest {
1983
2056
  AwsAccountId: string | undefined;
@@ -2588,97 +2661,58 @@ export interface GetSessionEmbedUrlRequest {
2588
2661
  SessionLifetimeInMinutes?: number;
2589
2662
  UserArn?: string;
2590
2663
  }
2591
- export interface GetSessionEmbedUrlResponse {
2592
- EmbedUrl?: string;
2593
- Status?: number;
2594
- RequestId?: string;
2595
- }
2596
- export declare enum GroupFilterAttribute {
2597
- GROUP_NAME = "GROUP_NAME",
2598
- }
2599
- export declare enum GroupFilterOperator {
2600
- StartsWith = "StartsWith",
2601
- }
2602
- export interface GroupSearchFilter {
2603
- Operator: GroupFilterOperator | string | undefined;
2604
- Name: GroupFilterAttribute | string | undefined;
2605
- Value: string | undefined;
2606
- }
2607
- export interface IAMPolicyAssignmentSummary {
2608
- AssignmentName?: string;
2609
- AssignmentStatus?: AssignmentStatus | string;
2610
- }
2611
- export declare class InvalidRequestException extends __BaseException {
2612
- readonly name: "InvalidRequestException";
2613
- readonly $fault: "client";
2614
- Message?: string;
2615
- RequestId?: string;
2616
- constructor(
2617
- opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
2618
- );
2619
- }
2620
- export interface ListAnalysesRequest {
2621
- AwsAccountId: string | undefined;
2622
- NextToken?: string;
2623
- MaxResults?: number;
2624
- }
2625
- export interface ListAnalysesResponse {
2626
- AnalysisSummaryList?: AnalysisSummary[];
2627
- NextToken?: string;
2628
- Status?: number;
2629
- RequestId?: string;
2630
- }
2631
- export interface ListDashboardsRequest {
2632
- AwsAccountId: string | undefined;
2633
- NextToken?: string;
2634
- MaxResults?: number;
2635
- }
2636
- export interface ListDashboardsResponse {
2637
- DashboardSummaryList?: DashboardSummary[];
2638
- NextToken?: string;
2639
- Status?: number;
2640
- RequestId?: string;
2641
- }
2642
- export interface ListDashboardVersionsRequest {
2643
- AwsAccountId: string | undefined;
2644
- DashboardId: string | undefined;
2645
- NextToken?: string;
2646
- MaxResults?: number;
2647
- }
2648
- export interface ListDashboardVersionsResponse {
2649
- DashboardVersionSummaryList?: DashboardVersionSummary[];
2650
- NextToken?: string;
2651
- Status?: number;
2652
- RequestId?: string;
2653
- }
2654
- export interface ListDataSetsRequest {
2655
- AwsAccountId: string | undefined;
2656
- NextToken?: string;
2657
- MaxResults?: number;
2658
- }
2659
- export interface ListDataSetsResponse {
2660
- DataSetSummaries?: DataSetSummary[];
2661
- NextToken?: string;
2662
- RequestId?: string;
2663
- Status?: number;
2664
- }
2665
- export interface ListDataSourcesRequest {
2666
- AwsAccountId: string | undefined;
2667
- NextToken?: string;
2668
- MaxResults?: number;
2669
- }
2664
+ export declare const DateTimeParameterFilterSensitiveLog: (
2665
+ obj: DateTimeParameter
2666
+ ) => any;
2667
+ export declare const DecimalParameterFilterSensitiveLog: (
2668
+ obj: DecimalParameter
2669
+ ) => any;
2670
+ export declare const IntegerParameterFilterSensitiveLog: (
2671
+ obj: IntegerParameter
2672
+ ) => any;
2673
+ export declare const StringParameterFilterSensitiveLog: (
2674
+ obj: StringParameter
2675
+ ) => any;
2676
+ export declare const _ParametersFilterSensitiveLog: (obj: _Parameters) => any;
2677
+ export declare const ResourcePermissionFilterSensitiveLog: (
2678
+ obj: ResourcePermission
2679
+ ) => any;
2680
+ export declare const CreateAnalysisRequestFilterSensitiveLog: (
2681
+ obj: CreateAnalysisRequest
2682
+ ) => any;
2670
2683
  export declare const CreateAnalysisResponseFilterSensitiveLog: (
2671
2684
  obj: CreateAnalysisResponse
2672
2685
  ) => any;
2673
2686
  export declare const CreateColumnsOperationFilterSensitiveLog: (
2674
2687
  obj: CreateColumnsOperation
2675
2688
  ) => any;
2689
+ export declare const DataPointDrillUpDownOptionFilterSensitiveLog: (
2690
+ obj: DataPointDrillUpDownOption
2691
+ ) => any;
2692
+ export declare const DataPointMenuLabelOptionFilterSensitiveLog: (
2693
+ obj: DataPointMenuLabelOption
2694
+ ) => any;
2695
+ export declare const DataPointTooltipOptionFilterSensitiveLog: (
2696
+ obj: DataPointTooltipOption
2697
+ ) => any;
2676
2698
  export declare const ExportToCSVOptionFilterSensitiveLog: (
2677
2699
  obj: ExportToCSVOption
2678
2700
  ) => any;
2701
+ export declare const ExportWithHiddenFieldsOptionFilterSensitiveLog: (
2702
+ obj: ExportWithHiddenFieldsOption
2703
+ ) => any;
2679
2704
  export declare const SheetControlsOptionFilterSensitiveLog: (
2680
2705
  obj: SheetControlsOption
2681
2706
  ) => any;
2707
+ export declare const SheetLayoutElementMaximizationOptionFilterSensitiveLog: (
2708
+ obj: SheetLayoutElementMaximizationOption
2709
+ ) => any;
2710
+ export declare const VisualAxisSortOptionFilterSensitiveLog: (
2711
+ obj: VisualAxisSortOption
2712
+ ) => any;
2713
+ export declare const VisualMenuOptionFilterSensitiveLog: (
2714
+ obj: VisualMenuOption
2715
+ ) => any;
2682
2716
  export declare const ExportHiddenFieldsOptionFilterSensitiveLog: (
2683
2717
  obj: ExportHiddenFieldsOption
2684
2718
  ) => any;
@@ -3340,39 +3374,3 @@ export declare const GetDashboardEmbedUrlResponseFilterSensitiveLog: (
3340
3374
  export declare const GetSessionEmbedUrlRequestFilterSensitiveLog: (
3341
3375
  obj: GetSessionEmbedUrlRequest
3342
3376
  ) => any;
3343
- export declare const GetSessionEmbedUrlResponseFilterSensitiveLog: (
3344
- obj: GetSessionEmbedUrlResponse
3345
- ) => any;
3346
- export declare const GroupSearchFilterFilterSensitiveLog: (
3347
- obj: GroupSearchFilter
3348
- ) => any;
3349
- export declare const IAMPolicyAssignmentSummaryFilterSensitiveLog: (
3350
- obj: IAMPolicyAssignmentSummary
3351
- ) => any;
3352
- export declare const ListAnalysesRequestFilterSensitiveLog: (
3353
- obj: ListAnalysesRequest
3354
- ) => any;
3355
- export declare const ListAnalysesResponseFilterSensitiveLog: (
3356
- obj: ListAnalysesResponse
3357
- ) => any;
3358
- export declare const ListDashboardsRequestFilterSensitiveLog: (
3359
- obj: ListDashboardsRequest
3360
- ) => any;
3361
- export declare const ListDashboardsResponseFilterSensitiveLog: (
3362
- obj: ListDashboardsResponse
3363
- ) => any;
3364
- export declare const ListDashboardVersionsRequestFilterSensitiveLog: (
3365
- obj: ListDashboardVersionsRequest
3366
- ) => any;
3367
- export declare const ListDashboardVersionsResponseFilterSensitiveLog: (
3368
- obj: ListDashboardVersionsResponse
3369
- ) => any;
3370
- export declare const ListDataSetsRequestFilterSensitiveLog: (
3371
- obj: ListDataSetsRequest
3372
- ) => any;
3373
- export declare const ListDataSetsResponseFilterSensitiveLog: (
3374
- obj: ListDataSetsResponse
3375
- ) => any;
3376
- export declare const ListDataSourcesRequestFilterSensitiveLog: (
3377
- obj: ListDataSourcesRequest
3378
- ) => any;
@@ -1,10 +1,10 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
1
2
  import {
2
3
  AccountCustomization,
3
4
  ActiveIAMPolicyAssignment,
4
5
  ResourceStatus,
5
6
  } from "./models_0";
6
7
  import {
7
- _Parameters,
8
8
  AnalysisDefinition,
9
9
  AnalysisSearchFilter,
10
10
  AnalysisSourceEntity,
@@ -12,15 +12,16 @@ import {
12
12
  AssignmentStatus,
13
13
  ColumnGroup,
14
14
  ColumnLevelPermissionRule,
15
- ResourcePermission,
16
15
  Tag,
17
16
  } from "./models_1";
18
17
  import {
18
+ _Parameters,
19
19
  DashboardPublishOptions,
20
20
  DashboardSearchFilter,
21
21
  DashboardSourceEntity,
22
22
  DashboardSummary,
23
23
  DashboardVersionDefinition,
24
+ DashboardVersionSummary,
24
25
  DataSetImportMode,
25
26
  DataSetSearchFilter,
26
27
  DataSetSummary,
@@ -35,8 +36,6 @@ import {
35
36
  FolderSummary,
36
37
  Group,
37
38
  GroupMember,
38
- GroupSearchFilter,
39
- IAMPolicyAssignmentSummary,
40
39
  IdentityType,
41
40
  Ingestion,
42
41
  LinkSharingConfiguration,
@@ -44,6 +43,7 @@ import {
44
43
  MemberIdArnPair,
45
44
  NamespaceInfoV2,
46
45
  PhysicalTable,
46
+ ResourcePermission,
47
47
  RowLevelPermissionDataSet,
48
48
  RowLevelPermissionTagConfiguration,
49
49
  SslProperties,
@@ -57,6 +57,86 @@ import {
57
57
  UserRole,
58
58
  VpcConnectionProperties,
59
59
  } from "./models_2";
60
+ import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
61
+ export interface GetSessionEmbedUrlResponse {
62
+ EmbedUrl?: string;
63
+ Status?: number;
64
+ RequestId?: string;
65
+ }
66
+ export declare enum GroupFilterAttribute {
67
+ GROUP_NAME = "GROUP_NAME",
68
+ }
69
+ export declare enum GroupFilterOperator {
70
+ StartsWith = "StartsWith",
71
+ }
72
+ export interface GroupSearchFilter {
73
+ Operator: GroupFilterOperator | string | undefined;
74
+ Name: GroupFilterAttribute | string | undefined;
75
+ Value: string | undefined;
76
+ }
77
+ export interface IAMPolicyAssignmentSummary {
78
+ AssignmentName?: string;
79
+ AssignmentStatus?: AssignmentStatus | string;
80
+ }
81
+ export declare class InvalidRequestException extends __BaseException {
82
+ readonly name: "InvalidRequestException";
83
+ readonly $fault: "client";
84
+ Message?: string;
85
+ RequestId?: string;
86
+ constructor(
87
+ opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
88
+ );
89
+ }
90
+ export interface ListAnalysesRequest {
91
+ AwsAccountId: string | undefined;
92
+ NextToken?: string;
93
+ MaxResults?: number;
94
+ }
95
+ export interface ListAnalysesResponse {
96
+ AnalysisSummaryList?: AnalysisSummary[];
97
+ NextToken?: string;
98
+ Status?: number;
99
+ RequestId?: string;
100
+ }
101
+ export interface ListDashboardsRequest {
102
+ AwsAccountId: string | undefined;
103
+ NextToken?: string;
104
+ MaxResults?: number;
105
+ }
106
+ export interface ListDashboardsResponse {
107
+ DashboardSummaryList?: DashboardSummary[];
108
+ NextToken?: string;
109
+ Status?: number;
110
+ RequestId?: string;
111
+ }
112
+ export interface ListDashboardVersionsRequest {
113
+ AwsAccountId: string | undefined;
114
+ DashboardId: string | undefined;
115
+ NextToken?: string;
116
+ MaxResults?: number;
117
+ }
118
+ export interface ListDashboardVersionsResponse {
119
+ DashboardVersionSummaryList?: DashboardVersionSummary[];
120
+ NextToken?: string;
121
+ Status?: number;
122
+ RequestId?: string;
123
+ }
124
+ export interface ListDataSetsRequest {
125
+ AwsAccountId: string | undefined;
126
+ NextToken?: string;
127
+ MaxResults?: number;
128
+ }
129
+ export interface ListDataSetsResponse {
130
+ DataSetSummaries?: DataSetSummary[];
131
+ NextToken?: string;
132
+ RequestId?: string;
133
+ Status?: number;
134
+ }
135
+ export interface ListDataSourcesRequest {
136
+ AwsAccountId: string | undefined;
137
+ NextToken?: string;
138
+ MaxResults?: number;
139
+ }
60
140
  export interface ListDataSourcesResponse {
61
141
  DataSources?: DataSource[];
62
142
  NextToken?: string;
@@ -740,6 +820,42 @@ export interface UpdateUserResponse {
740
820
  RequestId?: string;
741
821
  Status?: number;
742
822
  }
823
+ export declare const GetSessionEmbedUrlResponseFilterSensitiveLog: (
824
+ obj: GetSessionEmbedUrlResponse
825
+ ) => any;
826
+ export declare const GroupSearchFilterFilterSensitiveLog: (
827
+ obj: GroupSearchFilter
828
+ ) => any;
829
+ export declare const IAMPolicyAssignmentSummaryFilterSensitiveLog: (
830
+ obj: IAMPolicyAssignmentSummary
831
+ ) => any;
832
+ export declare const ListAnalysesRequestFilterSensitiveLog: (
833
+ obj: ListAnalysesRequest
834
+ ) => any;
835
+ export declare const ListAnalysesResponseFilterSensitiveLog: (
836
+ obj: ListAnalysesResponse
837
+ ) => any;
838
+ export declare const ListDashboardsRequestFilterSensitiveLog: (
839
+ obj: ListDashboardsRequest
840
+ ) => any;
841
+ export declare const ListDashboardsResponseFilterSensitiveLog: (
842
+ obj: ListDashboardsResponse
843
+ ) => any;
844
+ export declare const ListDashboardVersionsRequestFilterSensitiveLog: (
845
+ obj: ListDashboardVersionsRequest
846
+ ) => any;
847
+ export declare const ListDashboardVersionsResponseFilterSensitiveLog: (
848
+ obj: ListDashboardVersionsResponse
849
+ ) => any;
850
+ export declare const ListDataSetsRequestFilterSensitiveLog: (
851
+ obj: ListDataSetsRequest
852
+ ) => any;
853
+ export declare const ListDataSetsResponseFilterSensitiveLog: (
854
+ obj: ListDataSetsResponse
855
+ ) => any;
856
+ export declare const ListDataSourcesRequestFilterSensitiveLog: (
857
+ obj: ListDataSourcesRequest
858
+ ) => any;
743
859
  export declare const ListDataSourcesResponseFilterSensitiveLog: (
744
860
  obj: ListDataSourcesResponse
745
861
  ) => 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.261.0",
4
+ "version": "3.264.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,14 +20,14 @@
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.261.0",
23
+ "@aws-sdk/client-sts": "3.264.0",
24
24
  "@aws-sdk/config-resolver": "3.259.0",
25
- "@aws-sdk/credential-provider-node": "3.261.0",
25
+ "@aws-sdk/credential-provider-node": "3.264.0",
26
26
  "@aws-sdk/fetch-http-handler": "3.257.0",
27
27
  "@aws-sdk/hash-node": "3.257.0",
28
28
  "@aws-sdk/invalid-dependency": "3.257.0",
29
29
  "@aws-sdk/middleware-content-length": "3.257.0",
30
- "@aws-sdk/middleware-endpoint": "3.257.0",
30
+ "@aws-sdk/middleware-endpoint": "3.264.0",
31
31
  "@aws-sdk/middleware-host-header": "3.257.0",
32
32
  "@aws-sdk/middleware-logger": "3.257.0",
33
33
  "@aws-sdk/middleware-recursion-detection": "3.257.0",