@aws-sdk/client-quicksight 3.660.0 → 3.664.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 (36) hide show
  1. package/dist-cjs/index.js +541 -524
  2. package/dist-cjs/runtimeConfig.js +1 -0
  3. package/dist-es/commands/CreateDataSetCommand.js +1 -1
  4. package/dist-es/models/models_2.js +4 -20
  5. package/dist-es/models/models_3.js +26 -13
  6. package/dist-es/models/models_4.js +14 -1
  7. package/dist-es/protocols/Aws_restJson1.js +6 -0
  8. package/dist-es/runtimeConfig.js +2 -1
  9. package/dist-types/commands/CreateDataSetCommand.d.ts +1 -1
  10. package/dist-types/commands/CreateTopicCommand.d.ts +3 -0
  11. package/dist-types/commands/DescribeAssetBundleExportJobCommand.d.ts +10 -0
  12. package/dist-types/commands/DescribeAssetBundleImportJobCommand.d.ts +19 -0
  13. package/dist-types/commands/DescribeTopicCommand.d.ts +3 -0
  14. package/dist-types/commands/DescribeTopicRefreshCommand.d.ts +2 -1
  15. package/dist-types/commands/DescribeTopicRefreshScheduleCommand.d.ts +1 -1
  16. package/dist-types/commands/DescribeUserCommand.d.ts +1 -2
  17. package/dist-types/commands/StartAssetBundleExportJobCommand.d.ts +10 -0
  18. package/dist-types/commands/StartAssetBundleImportJobCommand.d.ts +19 -0
  19. package/dist-types/commands/UpdateTopicCommand.d.ts +3 -0
  20. package/dist-types/models/models_2.d.ts +101 -212
  21. package/dist-types/models/models_3.d.ts +246 -142
  22. package/dist-types/models/models_4.d.ts +159 -2
  23. package/dist-types/runtimeConfig.browser.d.ts +2 -1
  24. package/dist-types/runtimeConfig.d.ts +2 -1
  25. package/dist-types/runtimeConfig.native.d.ts +2 -1
  26. package/dist-types/ts3.4/commands/CreateDataSetCommand.d.ts +1 -1
  27. package/dist-types/ts3.4/commands/DescribeTopicRefreshCommand.d.ts +2 -4
  28. package/dist-types/ts3.4/commands/DescribeTopicRefreshScheduleCommand.d.ts +1 -1
  29. package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +1 -2
  30. package/dist-types/ts3.4/models/models_2.d.ts +27 -51
  31. package/dist-types/ts3.4/models/models_3.d.ts +65 -45
  32. package/dist-types/ts3.4/models/models_4.d.ts +47 -2
  33. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -3
  34. package/dist-types/ts3.4/runtimeConfig.d.ts +6 -3
  35. package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -3
  36. package/package.json +35 -35
@@ -1,9 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- DescribeTopicRefreshRequest,
5
- DescribeTopicRefreshResponse,
6
- } from "../models/models_3";
3
+ import { DescribeTopicRefreshRequest } from "../models/models_3";
4
+ import { DescribeTopicRefreshResponse } from "../models/models_4";
7
5
  import {
8
6
  QuickSightClientResolvedConfig,
9
7
  ServiceInputTypes,
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  DescribeTopicRefreshScheduleRequest,
5
5
  DescribeTopicRefreshScheduleResponse,
6
- } from "../models/models_3";
6
+ } from "../models/models_4";
7
7
  import {
8
8
  QuickSightClientResolvedConfig,
9
9
  ServiceInputTypes,
@@ -1,7 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { DescribeUserRequest } from "../models/models_3";
4
- import { DescribeUserResponse } from "../models/models_4";
3
+ import { DescribeUserRequest, DescribeUserResponse } from "../models/models_4";
5
4
  import {
6
5
  QuickSightClientResolvedConfig,
7
6
  ServiceInputTypes,
@@ -441,6 +441,16 @@ export interface AssetBundleExportJobDataSourceOverrideProperties {
441
441
  Arn: string | undefined;
442
442
  Properties: AssetBundleExportJobDataSourcePropertyToOverride[] | undefined;
443
443
  }
444
+ export declare const AssetBundleExportJobFolderPropertyToOverride: {
445
+ readonly NAME: "Name";
446
+ readonly PARENT_FOLDER_ARN: "ParentFolderArn";
447
+ };
448
+ export type AssetBundleExportJobFolderPropertyToOverride =
449
+ (typeof AssetBundleExportJobFolderPropertyToOverride)[keyof typeof AssetBundleExportJobFolderPropertyToOverride];
450
+ export interface AssetBundleExportJobFolderOverrideProperties {
451
+ Arn: string | undefined;
452
+ Properties: AssetBundleExportJobFolderPropertyToOverride[] | undefined;
453
+ }
444
454
  export declare const AssetBundleExportJobRefreshSchedulePropertyToOverride: {
445
455
  readonly START_AFTER_DATE_TIME: "StartAfterDateTime";
446
456
  };
@@ -484,6 +494,7 @@ export interface AssetBundleCloudFormationOverridePropertyConfiguration {
484
494
  Themes?: AssetBundleExportJobThemeOverrideProperties[];
485
495
  Analyses?: AssetBundleExportJobAnalysisOverrideProperties[];
486
496
  Dashboards?: AssetBundleExportJobDashboardOverrideProperties[];
497
+ Folders?: AssetBundleExportJobFolderOverrideProperties[];
487
498
  }
488
499
  export declare const AssetBundleExportFormat: {
489
500
  readonly CLOUDFORMATION_JSON: "CLOUDFORMATION_JSON";
@@ -1583,6 +1594,19 @@ export interface AssetBundleImportJobError {
1583
1594
  Type?: string;
1584
1595
  Message?: string;
1585
1596
  }
1597
+ export interface AssetBundleImportJobFolderOverrideParameters {
1598
+ FolderId: string | undefined;
1599
+ Name?: string;
1600
+ ParentFolderArn?: string;
1601
+ }
1602
+ export interface AssetBundleImportJobFolderOverridePermissions {
1603
+ FolderIds: string[] | undefined;
1604
+ Permissions?: AssetBundleResourcePermissions;
1605
+ }
1606
+ export interface AssetBundleImportJobFolderOverrideTags {
1607
+ FolderIds: string[] | undefined;
1608
+ Tags: Tag[] | undefined;
1609
+ }
1586
1610
  export interface AssetBundleImportJobRefreshScheduleOverrideParameters {
1587
1611
  DataSetId: string | undefined;
1588
1612
  ScheduleId: string | undefined;
@@ -1612,6 +1636,7 @@ export interface AssetBundleImportJobOverrideParameters {
1612
1636
  Themes?: AssetBundleImportJobThemeOverrideParameters[];
1613
1637
  Analyses?: AssetBundleImportJobAnalysisOverrideParameters[];
1614
1638
  Dashboards?: AssetBundleImportJobDashboardOverrideParameters[];
1639
+ Folders?: AssetBundleImportJobFolderOverrideParameters[];
1615
1640
  }
1616
1641
  export interface AssetBundleImportJobThemeOverridePermissions {
1617
1642
  ThemeIds: string[] | undefined;
@@ -1623,6 +1648,7 @@ export interface AssetBundleImportJobOverridePermissions {
1623
1648
  Themes?: AssetBundleImportJobThemeOverridePermissions[];
1624
1649
  Analyses?: AssetBundleImportJobAnalysisOverridePermissions[];
1625
1650
  Dashboards?: AssetBundleImportJobDashboardOverridePermissions[];
1651
+ Folders?: AssetBundleImportJobFolderOverridePermissions[];
1626
1652
  }
1627
1653
  export interface AssetBundleImportJobThemeOverrideTags {
1628
1654
  ThemeIds: string[] | undefined;
@@ -1639,6 +1665,7 @@ export interface AssetBundleImportJobOverrideTags {
1639
1665
  Themes?: AssetBundleImportJobThemeOverrideTags[];
1640
1666
  Analyses?: AssetBundleImportJobAnalysisOverrideTags[];
1641
1667
  Dashboards?: AssetBundleImportJobDashboardOverrideTags[];
1668
+ Folders?: AssetBundleImportJobFolderOverrideTags[];
1642
1669
  }
1643
1670
  export interface AssetBundleImportJobOverrideValidationStrategy {
1644
1671
  StrictModeForAllResources?: boolean;
@@ -2790,48 +2817,6 @@ export interface RowLevelPermissionDataSet {
2790
2817
  FormatVersion?: RowLevelPermissionFormatVersion;
2791
2818
  Status?: Status;
2792
2819
  }
2793
- export interface RowLevelPermissionTagRule {
2794
- TagKey: string | undefined;
2795
- ColumnName: string | undefined;
2796
- TagMultiValueDelimiter?: string;
2797
- MatchAllValue?: string;
2798
- }
2799
- export interface RowLevelPermissionTagConfiguration {
2800
- Status?: Status;
2801
- TagRules: RowLevelPermissionTagRule[] | undefined;
2802
- TagRuleConfigurations?: string[][];
2803
- }
2804
- export interface CreateDataSetRequest {
2805
- AwsAccountId: string | undefined;
2806
- DataSetId: string | undefined;
2807
- Name: string | undefined;
2808
- PhysicalTableMap: Record<string, PhysicalTable> | undefined;
2809
- LogicalTableMap?: Record<string, LogicalTable>;
2810
- ImportMode: DataSetImportMode | undefined;
2811
- ColumnGroups?: ColumnGroup[];
2812
- FieldFolders?: Record<string, FieldFolder>;
2813
- Permissions?: ResourcePermission[];
2814
- RowLevelPermissionDataSet?: RowLevelPermissionDataSet;
2815
- RowLevelPermissionTagConfiguration?: RowLevelPermissionTagConfiguration;
2816
- ColumnLevelPermissionRules?: ColumnLevelPermissionRule[];
2817
- Tags?: Tag[];
2818
- DataSetUsageConfiguration?: DataSetUsageConfiguration;
2819
- DatasetParameters?: DatasetParameter[];
2820
- FolderArns?: string[];
2821
- }
2822
- export interface CreateDataSetResponse {
2823
- Arn?: string;
2824
- DataSetId?: string;
2825
- IngestionArn?: string;
2826
- IngestionId?: string;
2827
- RequestId?: string;
2828
- Status?: number;
2829
- }
2830
- export interface CredentialPair {
2831
- Username: string | undefined;
2832
- Password: string | undefined;
2833
- AlternateDataSourceParameters?: DataSourceParameters[];
2834
- }
2835
2820
  export declare const TreeMapConfigurationFilterSensitiveLog: (
2836
2821
  obj: TreeMapConfiguration
2837
2822
  ) => any;
@@ -2942,12 +2927,3 @@ export declare const TransformOperationFilterSensitiveLog: (
2942
2927
  obj: TransformOperation
2943
2928
  ) => any;
2944
2929
  export declare const LogicalTableFilterSensitiveLog: (obj: LogicalTable) => any;
2945
- export declare const RowLevelPermissionTagRuleFilterSensitiveLog: (
2946
- obj: RowLevelPermissionTagRule
2947
- ) => any;
2948
- export declare const RowLevelPermissionTagConfigurationFilterSensitiveLog: (
2949
- obj: RowLevelPermissionTagConfiguration
2950
- ) => any;
2951
- export declare const CreateDataSetRequestFilterSensitiveLog: (
2952
- obj: CreateDataSetRequest
2953
- ) => any;
@@ -52,7 +52,6 @@ import {
52
52
  ColumnSchema,
53
53
  ComparativeOrder,
54
54
  ConstantType,
55
- CredentialPair,
56
55
  DashboardPublishOptions,
57
56
  DashboardVersionDefinition,
58
57
  DataSetImportMode,
@@ -70,17 +69,59 @@ import {
70
69
  PhysicalTable,
71
70
  ResourcePermission,
72
71
  RowLevelPermissionDataSet,
73
- RowLevelPermissionTagConfiguration,
74
72
  ServiceType,
75
73
  SheetDefinition,
76
74
  SnapshotFile,
77
75
  SnapshotS3DestinationConfiguration,
78
76
  SslProperties,
77
+ Status,
79
78
  Tag,
80
79
  ValidationStrategy,
81
80
  VpcConnectionProperties,
82
81
  } from "./models_2";
83
82
  import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
83
+ export interface RowLevelPermissionTagRule {
84
+ TagKey: string | undefined;
85
+ ColumnName: string | undefined;
86
+ TagMultiValueDelimiter?: string;
87
+ MatchAllValue?: string;
88
+ }
89
+ export interface RowLevelPermissionTagConfiguration {
90
+ Status?: Status;
91
+ TagRules: RowLevelPermissionTagRule[] | undefined;
92
+ TagRuleConfigurations?: string[][];
93
+ }
94
+ export interface CreateDataSetRequest {
95
+ AwsAccountId: string | undefined;
96
+ DataSetId: string | undefined;
97
+ Name: string | undefined;
98
+ PhysicalTableMap: Record<string, PhysicalTable> | undefined;
99
+ LogicalTableMap?: Record<string, LogicalTable>;
100
+ ImportMode: DataSetImportMode | undefined;
101
+ ColumnGroups?: ColumnGroup[];
102
+ FieldFolders?: Record<string, FieldFolder>;
103
+ Permissions?: ResourcePermission[];
104
+ RowLevelPermissionDataSet?: RowLevelPermissionDataSet;
105
+ RowLevelPermissionTagConfiguration?: RowLevelPermissionTagConfiguration;
106
+ ColumnLevelPermissionRules?: ColumnLevelPermissionRule[];
107
+ Tags?: Tag[];
108
+ DataSetUsageConfiguration?: DataSetUsageConfiguration;
109
+ DatasetParameters?: DatasetParameter[];
110
+ FolderArns?: string[];
111
+ }
112
+ export interface CreateDataSetResponse {
113
+ Arn?: string;
114
+ DataSetId?: string;
115
+ IngestionArn?: string;
116
+ IngestionId?: string;
117
+ RequestId?: string;
118
+ Status?: number;
119
+ }
120
+ export interface CredentialPair {
121
+ Username: string | undefined;
122
+ Password: string | undefined;
123
+ AlternateDataSourceParameters?: DataSourceParameters[];
124
+ }
84
125
  export interface DataSourceCredentials {
85
126
  CredentialPair?: CredentialPair;
86
127
  CopySourceArn?: string;
@@ -523,6 +564,9 @@ export interface CreateThemeAliasResponse {
523
564
  Status?: number;
524
565
  RequestId?: string;
525
566
  }
567
+ export interface TopicConfigOptions {
568
+ QBusinessInsightsEnabled?: boolean;
569
+ }
526
570
  export declare const DefaultAggregation: {
527
571
  readonly AVERAGE: "AVERAGE";
528
572
  readonly COUNT: "COUNT";
@@ -753,6 +797,7 @@ export interface TopicDetails {
753
797
  Description?: string;
754
798
  UserExperienceVersion?: TopicUserExperienceVersion;
755
799
  DataSets?: DatasetMetadata[];
800
+ ConfigOptions?: TopicConfigOptions;
756
801
  }
757
802
  export interface CreateTopicRequest {
758
803
  AwsAccountId: string | undefined;
@@ -1360,6 +1405,13 @@ export interface DescribeAssetBundleExportJobRequest {
1360
1405
  AwsAccountId: string | undefined;
1361
1406
  AssetBundleExportJobId: string | undefined;
1362
1407
  }
1408
+ export declare const IncludeFolderMembers: {
1409
+ readonly NONE: "NONE";
1410
+ readonly ONE_LEVEL: "ONE_LEVEL";
1411
+ readonly RECURSE: "RECURSE";
1412
+ };
1413
+ export type IncludeFolderMembers =
1414
+ (typeof IncludeFolderMembers)[keyof typeof IncludeFolderMembers];
1363
1415
  export interface DescribeAssetBundleExportJobResponse {
1364
1416
  JobStatus?: AssetBundleExportJobStatus;
1365
1417
  DownloadUrl?: string;
@@ -1378,6 +1430,8 @@ export interface DescribeAssetBundleExportJobResponse {
1378
1430
  IncludeTags?: boolean;
1379
1431
  ValidationStrategy?: AssetBundleExportJobValidationStrategy;
1380
1432
  Warnings?: AssetBundleExportJobWarning[];
1433
+ IncludeFolderMemberships?: boolean;
1434
+ IncludeFolderMembers?: IncludeFolderMembers;
1381
1435
  }
1382
1436
  export interface DescribeAssetBundleImportJobRequest {
1383
1437
  AwsAccountId: string | undefined;
@@ -2012,49 +2066,15 @@ export interface DescribeTopicRefreshRequest {
2012
2066
  TopicId: string | undefined;
2013
2067
  RefreshId: string | undefined;
2014
2068
  }
2015
- export declare const TopicRefreshStatus: {
2016
- readonly CANCELLED: "CANCELLED";
2017
- readonly COMPLETED: "COMPLETED";
2018
- readonly FAILED: "FAILED";
2019
- readonly INITIALIZED: "INITIALIZED";
2020
- readonly RUNNING: "RUNNING";
2021
- };
2022
- export type TopicRefreshStatus =
2023
- (typeof TopicRefreshStatus)[keyof typeof TopicRefreshStatus];
2024
- export interface TopicRefreshDetails {
2025
- RefreshArn?: string;
2026
- RefreshId?: string;
2027
- RefreshStatus?: TopicRefreshStatus;
2028
- }
2029
- export interface DescribeTopicRefreshResponse {
2030
- RefreshDetails?: TopicRefreshDetails;
2031
- RequestId?: string;
2032
- Status?: number;
2033
- }
2034
- export interface DescribeTopicRefreshScheduleRequest {
2035
- AwsAccountId: string | undefined;
2036
- TopicId: string | undefined;
2037
- DatasetId: string | undefined;
2038
- }
2039
- export interface DescribeTopicRefreshScheduleResponse {
2040
- TopicId?: string;
2041
- TopicArn?: string;
2042
- DatasetArn?: string;
2043
- RefreshSchedule?: TopicRefreshSchedule;
2044
- Status?: number;
2045
- RequestId?: string;
2046
- }
2047
- export interface DescribeUserRequest {
2048
- UserName: string | undefined;
2049
- AwsAccountId: string | undefined;
2050
- Namespace: string | undefined;
2051
- }
2052
- export declare const IdentityType: {
2053
- readonly IAM: "IAM";
2054
- readonly IAM_IDENTITY_CENTER: "IAM_IDENTITY_CENTER";
2055
- readonly QUICKSIGHT: "QUICKSIGHT";
2056
- };
2057
- export type IdentityType = (typeof IdentityType)[keyof typeof IdentityType];
2069
+ export declare const RowLevelPermissionTagRuleFilterSensitiveLog: (
2070
+ obj: RowLevelPermissionTagRule
2071
+ ) => any;
2072
+ export declare const RowLevelPermissionTagConfigurationFilterSensitiveLog: (
2073
+ obj: RowLevelPermissionTagConfiguration
2074
+ ) => any;
2075
+ export declare const CreateDataSetRequestFilterSensitiveLog: (
2076
+ obj: CreateDataSetRequest
2077
+ ) => any;
2058
2078
  export declare const DataSourceCredentialsFilterSensitiveLog: (
2059
2079
  obj: DataSourceCredentials
2060
2080
  ) => any;
@@ -42,7 +42,6 @@ import {
42
42
  PhysicalTable,
43
43
  ResourcePermission,
44
44
  RowLevelPermissionDataSet,
45
- RowLevelPermissionTagConfiguration,
46
45
  ServiceType,
47
46
  SharedViewConfigurations,
48
47
  SslProperties,
@@ -67,13 +66,14 @@ import {
67
66
  FolderType,
68
67
  Group,
69
68
  GroupMember,
70
- IdentityType,
69
+ IncludeFolderMembers,
71
70
  Ingestion,
72
71
  NamespaceInfoV2,
73
72
  PersonalizationMode,
74
73
  RefreshSchedule,
75
74
  RegisteredCustomerManagedKey,
76
75
  Role,
76
+ RowLevelPermissionTagConfiguration,
77
77
  SharingModel,
78
78
  SnapshotConfiguration,
79
79
  TemplateAlias,
@@ -89,6 +89,49 @@ import {
89
89
  VPCConnectionResourceStatus,
90
90
  } from "./models_3";
91
91
  import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
92
+ export declare const TopicRefreshStatus: {
93
+ readonly CANCELLED: "CANCELLED";
94
+ readonly COMPLETED: "COMPLETED";
95
+ readonly FAILED: "FAILED";
96
+ readonly INITIALIZED: "INITIALIZED";
97
+ readonly RUNNING: "RUNNING";
98
+ };
99
+ export type TopicRefreshStatus =
100
+ (typeof TopicRefreshStatus)[keyof typeof TopicRefreshStatus];
101
+ export interface TopicRefreshDetails {
102
+ RefreshArn?: string;
103
+ RefreshId?: string;
104
+ RefreshStatus?: TopicRefreshStatus;
105
+ }
106
+ export interface DescribeTopicRefreshResponse {
107
+ RefreshDetails?: TopicRefreshDetails;
108
+ RequestId?: string;
109
+ Status?: number;
110
+ }
111
+ export interface DescribeTopicRefreshScheduleRequest {
112
+ AwsAccountId: string | undefined;
113
+ TopicId: string | undefined;
114
+ DatasetId: string | undefined;
115
+ }
116
+ export interface DescribeTopicRefreshScheduleResponse {
117
+ TopicId?: string;
118
+ TopicArn?: string;
119
+ DatasetArn?: string;
120
+ RefreshSchedule?: TopicRefreshSchedule;
121
+ Status?: number;
122
+ RequestId?: string;
123
+ }
124
+ export interface DescribeUserRequest {
125
+ UserName: string | undefined;
126
+ AwsAccountId: string | undefined;
127
+ Namespace: string | undefined;
128
+ }
129
+ export declare const IdentityType: {
130
+ readonly IAM: "IAM";
131
+ readonly IAM_IDENTITY_CENTER: "IAM_IDENTITY_CENTER";
132
+ readonly QUICKSIGHT: "QUICKSIGHT";
133
+ };
134
+ export type IdentityType = (typeof IdentityType)[keyof typeof IdentityType];
92
135
  export declare const UserRole: {
93
136
  readonly ADMIN: "ADMIN";
94
137
  readonly ADMIN_PRO: "ADMIN_PRO";
@@ -933,6 +976,8 @@ export interface StartAssetBundleExportJobRequest {
933
976
  IncludePermissions?: boolean;
934
977
  IncludeTags?: boolean;
935
978
  ValidationStrategy?: AssetBundleExportJobValidationStrategy;
979
+ IncludeFolderMemberships?: boolean;
980
+ IncludeFolderMembers?: IncludeFolderMembers;
936
981
  }
937
982
  export interface StartAssetBundleExportJobResponse {
938
983
  Arn?: string;
@@ -9,9 +9,9 @@ export declare const getRuntimeConfig: (config: QuickSightClientConfig) => {
9
9
  credentialDefaultProvider: (
10
10
  input: any
11
11
  ) => import("@smithy/types").AwsCredentialIdentityProvider;
12
- defaultUserAgentProvider: import("@smithy/types").Provider<
13
- import("@smithy/types").UserAgent
14
- >;
12
+ defaultUserAgentProvider: (
13
+ config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
14
+ ) => Promise<import("@smithy/types").UserAgent>;
15
15
  maxAttempts: number | import("@smithy/types").Provider<number>;
16
16
  region: string | import("@smithy/types").Provider<any>;
17
17
  requestHandler:
@@ -34,6 +34,10 @@ export declare const getRuntimeConfig: (config: QuickSightClientConfig) => {
34
34
  logger: import("@smithy/types").Logger;
35
35
  extensions: import("./runtimeExtensions").RuntimeExtension[];
36
36
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
37
+ userAgentAppId?:
38
+ | string
39
+ | import("@smithy/types").Provider<string | undefined>
40
+ | undefined;
37
41
  retryStrategy?:
38
42
  | import("@smithy/types").RetryStrategy
39
43
  | import("@smithy/types").RetryStrategyV2
@@ -13,9 +13,11 @@ export declare const getRuntimeConfig: (config: QuickSightClientConfig) => {
13
13
  ) => import("@smithy/types").MemoizedProvider<
14
14
  import("@smithy/types").AwsCredentialIdentity
15
15
  >;
16
- defaultUserAgentProvider: import("@smithy/types").Provider<
17
- import("@smithy/types").UserAgent
18
- >;
16
+ defaultUserAgentProvider: (
17
+ config?:
18
+ | import("@aws-sdk/util-user-agent-node").PreviouslyResolved
19
+ | undefined
20
+ ) => Promise<import("@smithy/types").UserAgent>;
19
21
  maxAttempts: number | import("@smithy/types").Provider<number>;
20
22
  region: string | import("@smithy/types").Provider<string>;
21
23
  requestHandler:
@@ -26,6 +28,7 @@ export declare const getRuntimeConfig: (config: QuickSightClientConfig) => {
26
28
  streamCollector: import("@smithy/types").StreamCollector;
27
29
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
28
30
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
31
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
29
32
  apiVersion: string;
30
33
  cacheMiddleware?: boolean | undefined;
31
34
  urlParser: import("@smithy/types").UrlParser;
@@ -22,9 +22,9 @@ export declare const getRuntimeConfig: (config: QuickSightClientConfig) => {
22
22
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
23
23
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
24
24
  region: string | import("@smithy/types").Provider<any>;
25
- defaultUserAgentProvider: import("@smithy/types").Provider<
26
- import("@smithy/types").UserAgent
27
- >;
25
+ defaultUserAgentProvider: (
26
+ config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
27
+ ) => Promise<import("@smithy/types").UserAgent>;
28
28
  credentialDefaultProvider: (
29
29
  input: any
30
30
  ) => import("@smithy/types").AwsCredentialIdentityProvider;
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: QuickSightClientConfig) => {
38
38
  import("@smithy/smithy-client").DefaultsMode
39
39
  >;
40
40
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
41
+ userAgentAppId?:
42
+ | string
43
+ | import("@smithy/types").Provider<string | undefined>
44
+ | undefined;
41
45
  retryStrategy?:
42
46
  | import("@smithy/types").RetryStrategy
43
47
  | import("@smithy/types").RetryStrategyV2
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.660.0",
4
+ "version": "3.664.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-quicksight",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.658.1",
24
- "@aws-sdk/client-sts": "3.658.1",
25
- "@aws-sdk/core": "3.658.1",
26
- "@aws-sdk/credential-provider-node": "3.658.1",
27
- "@aws-sdk/middleware-host-header": "3.654.0",
28
- "@aws-sdk/middleware-logger": "3.654.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.654.0",
30
- "@aws-sdk/middleware-user-agent": "3.654.0",
31
- "@aws-sdk/region-config-resolver": "3.654.0",
32
- "@aws-sdk/types": "3.654.0",
33
- "@aws-sdk/util-endpoints": "3.654.0",
34
- "@aws-sdk/util-user-agent-browser": "3.654.0",
35
- "@aws-sdk/util-user-agent-node": "3.654.0",
36
- "@smithy/config-resolver": "^3.0.8",
37
- "@smithy/core": "^2.4.6",
38
- "@smithy/fetch-http-handler": "^3.2.8",
39
- "@smithy/hash-node": "^3.0.6",
40
- "@smithy/invalid-dependency": "^3.0.6",
41
- "@smithy/middleware-content-length": "^3.0.8",
42
- "@smithy/middleware-endpoint": "^3.1.3",
43
- "@smithy/middleware-retry": "^3.0.21",
44
- "@smithy/middleware-serde": "^3.0.6",
45
- "@smithy/middleware-stack": "^3.0.6",
46
- "@smithy/node-config-provider": "^3.1.7",
47
- "@smithy/node-http-handler": "^3.2.3",
48
- "@smithy/protocol-http": "^4.1.3",
49
- "@smithy/smithy-client": "^3.3.5",
50
- "@smithy/types": "^3.4.2",
51
- "@smithy/url-parser": "^3.0.6",
23
+ "@aws-sdk/client-sso-oidc": "3.664.0",
24
+ "@aws-sdk/client-sts": "3.664.0",
25
+ "@aws-sdk/core": "3.664.0",
26
+ "@aws-sdk/credential-provider-node": "3.664.0",
27
+ "@aws-sdk/middleware-host-header": "3.664.0",
28
+ "@aws-sdk/middleware-logger": "3.664.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.664.0",
30
+ "@aws-sdk/middleware-user-agent": "3.664.0",
31
+ "@aws-sdk/region-config-resolver": "3.664.0",
32
+ "@aws-sdk/types": "3.664.0",
33
+ "@aws-sdk/util-endpoints": "3.664.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.664.0",
35
+ "@aws-sdk/util-user-agent-node": "3.664.0",
36
+ "@smithy/config-resolver": "^3.0.9",
37
+ "@smithy/core": "^2.4.7",
38
+ "@smithy/fetch-http-handler": "^3.2.9",
39
+ "@smithy/hash-node": "^3.0.7",
40
+ "@smithy/invalid-dependency": "^3.0.7",
41
+ "@smithy/middleware-content-length": "^3.0.9",
42
+ "@smithy/middleware-endpoint": "^3.1.4",
43
+ "@smithy/middleware-retry": "^3.0.22",
44
+ "@smithy/middleware-serde": "^3.0.7",
45
+ "@smithy/middleware-stack": "^3.0.7",
46
+ "@smithy/node-config-provider": "^3.1.8",
47
+ "@smithy/node-http-handler": "^3.2.4",
48
+ "@smithy/protocol-http": "^4.1.4",
49
+ "@smithy/smithy-client": "^3.3.6",
50
+ "@smithy/types": "^3.5.0",
51
+ "@smithy/url-parser": "^3.0.7",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.21",
56
- "@smithy/util-defaults-mode-node": "^3.0.21",
57
- "@smithy/util-endpoints": "^2.1.2",
58
- "@smithy/util-middleware": "^3.0.6",
59
- "@smithy/util-retry": "^3.0.6",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.22",
56
+ "@smithy/util-defaults-mode-node": "^3.0.22",
57
+ "@smithy/util-endpoints": "^2.1.3",
58
+ "@smithy/util-middleware": "^3.0.7",
59
+ "@smithy/util-retry": "^3.0.7",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
61
  "tslib": "^2.6.2"
62
62
  },