@aws-sdk/client-quicksight 3.658.0 → 3.660.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 +16 -0
- package/dist-cjs/index.js +114 -13
- package/dist-es/QuickSight.js +4 -0
- package/dist-es/commands/DescribeQPersonalizationConfigurationCommand.js +22 -0
- package/dist-es/commands/UpdateQPersonalizationConfigurationCommand.js +22 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_3.js +4 -10
- package/dist-es/models/models_4.js +10 -0
- package/dist-es/protocols/Aws_restJson1.js +61 -7
- package/dist-types/QuickSight.d.ts +14 -0
- package/dist-types/QuickSightClient.d.ts +4 -2
- package/dist-types/commands/DescribeQPersonalizationConfigurationCommand.d.ts +94 -0
- package/dist-types/commands/DescribeUserCommand.d.ts +2 -1
- package/dist-types/commands/UpdateQPersonalizationConfigurationCommand.d.ts +98 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_3.d.ts +42 -152
- package/dist-types/models/models_4.d.ts +188 -1
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/ts3.4/QuickSight.d.ts +46 -0
- package/dist-types/ts3.4/QuickSightClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/DescribeQPersonalizationConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/UpdateQPersonalizationConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_3.d.ts +14 -29
- package/dist-types/ts3.4/models/models_4.d.ts +39 -2
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/package.json +12 -12
|
@@ -1,8 +1,160 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { AccountCustomization, ActiveIAMPolicyAssignment, ResourceStatus } from "./models_0";
|
|
3
3
|
import { _Parameters, AnalysisDefinition, AnalysisSearchFilter, AnalysisSourceEntity, AnalysisSummary, AnonymousUserEmbeddingExperienceConfiguration, AssetBundleCloudFormationOverridePropertyConfiguration, AssetBundleExportFormat, AssetBundleExportJobSummary, AssetBundleExportJobValidationStrategy, AssetBundleImportFailureAction, AssetBundleImportJobOverrideParameters, AssetBundleImportJobOverridePermissions, AssetBundleImportJobOverrideTags, AssetBundleImportJobOverrideValidationStrategy, AssetBundleImportJobSummary, AssetBundleImportSource, AssignmentStatus, AuthorizedTargetsByService, BookmarksConfigurations, ColumnGroup, ColumnLevelPermissionRule, DashboardPublishOptions, DashboardSourceEntity, DashboardVersionDefinition, DashboardVisualId, DataSetImportMode, DatasetParameter, DataSetUsageConfiguration, DataSourceParameters, FieldFolder, FilterOperator, LinkSharingConfiguration, LogicalTable, PhysicalTable, ResourcePermission, RowLevelPermissionDataSet, RowLevelPermissionTagConfiguration, ServiceType, SharedViewConfigurations, SslProperties, Tag, TopicIR, TopicTemplate, ValidationStrategy, VisualRole, VpcConnectionProperties } from "./models_2";
|
|
4
|
-
import { DashboardSearchFilter, DashboardSummary, DashboardVersionSummary, DataSetRefreshProperties, DataSetSearchFilter, DataSetSummary, DataSource, DataSourceCredentials, DataSourceSearchFilter, DataSourceSummary, FolderType, Group, GroupMember, IdentityType, Ingestion, NamespaceInfoV2, RefreshSchedule, RegisteredCustomerManagedKey, Role, SharingModel, SnapshotConfiguration, TemplateAlias, TemplateSourceEntity, TemplateVersionDefinition, ThemeAlias, ThemeConfiguration, ThemeType, TopicDetails, TopicRefreshSchedule, TopicUserExperienceVersion,
|
|
4
|
+
import { DashboardSearchFilter, DashboardSummary, DashboardVersionSummary, DataSetRefreshProperties, DataSetSearchFilter, DataSetSummary, DataSource, DataSourceCredentials, DataSourceSearchFilter, DataSourceSummary, FolderType, Group, GroupMember, IdentityType, Ingestion, NamespaceInfoV2, PersonalizationMode, RefreshSchedule, RegisteredCustomerManagedKey, Role, SharingModel, SnapshotConfiguration, TemplateAlias, TemplateSourceEntity, TemplateVersionDefinition, ThemeAlias, ThemeConfiguration, ThemeType, TopicDetails, TopicRefreshSchedule, TopicUserExperienceVersion, VPCConnectionAvailabilityStatus, VPCConnectionResourceStatus } from "./models_3";
|
|
5
5
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
* @enum
|
|
9
|
+
*/
|
|
10
|
+
export declare const UserRole: {
|
|
11
|
+
readonly ADMIN: "ADMIN";
|
|
12
|
+
readonly ADMIN_PRO: "ADMIN_PRO";
|
|
13
|
+
readonly AUTHOR: "AUTHOR";
|
|
14
|
+
readonly AUTHOR_PRO: "AUTHOR_PRO";
|
|
15
|
+
readonly READER: "READER";
|
|
16
|
+
readonly READER_PRO: "READER_PRO";
|
|
17
|
+
readonly RESTRICTED_AUTHOR: "RESTRICTED_AUTHOR";
|
|
18
|
+
readonly RESTRICTED_READER: "RESTRICTED_READER";
|
|
19
|
+
};
|
|
20
|
+
/**
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
export type UserRole = (typeof UserRole)[keyof typeof UserRole];
|
|
24
|
+
/**
|
|
25
|
+
* <p>A registered user of Amazon QuickSight. </p>
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
export interface User {
|
|
29
|
+
/**
|
|
30
|
+
* <p>The Amazon Resource Name (ARN) for the user.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
Arn?: string;
|
|
34
|
+
/**
|
|
35
|
+
* <p>The user's user name. This value is required if you are registering a user that will be managed in Amazon QuickSight. In the output, the value for <code>UserName</code> is
|
|
36
|
+
* <code>N/A</code> when the value for <code>IdentityType</code> is <code>IAM</code>
|
|
37
|
+
* and the corresponding IAM user is deleted.</p>
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
UserName?: string;
|
|
41
|
+
/**
|
|
42
|
+
* <p>The user's email address.</p>
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
Email?: string;
|
|
46
|
+
/**
|
|
47
|
+
* <p>The Amazon QuickSight role for the user. The user role can be one of the
|
|
48
|
+
* following:.</p>
|
|
49
|
+
* <ul>
|
|
50
|
+
* <li>
|
|
51
|
+
* <p>
|
|
52
|
+
* <code>READER</code>: A user who has read-only access to dashboards.</p>
|
|
53
|
+
* </li>
|
|
54
|
+
* <li>
|
|
55
|
+
* <p>
|
|
56
|
+
* <code>AUTHOR</code>: A user who can create data sources, datasets, analyses,
|
|
57
|
+
* and dashboards.</p>
|
|
58
|
+
* </li>
|
|
59
|
+
* <li>
|
|
60
|
+
* <p>
|
|
61
|
+
* <code>ADMIN</code>: A user who is an author, who can also manage Amazon
|
|
62
|
+
* Amazon QuickSight settings.</p>
|
|
63
|
+
* </li>
|
|
64
|
+
* <li>
|
|
65
|
+
* <p>
|
|
66
|
+
* <code>READER_PRO</code>: Reader Pro adds Generative BI capabilities to the Reader role. Reader Pros have access to Amazon Q in Amazon QuickSight, can build stories with Amazon Q, and can generate executive summaries from dashboards.</p>
|
|
67
|
+
* </li>
|
|
68
|
+
* <li>
|
|
69
|
+
* <p>
|
|
70
|
+
* <code>AUTHOR_PRO</code>: Author Pro adds Generative BI capabilities to the Author role. Author Pros can author dashboards with natural language with Amazon Q, build stories with Amazon Q, create Topics for Q&A, and generate executive summaries from dashboards.</p>
|
|
71
|
+
* </li>
|
|
72
|
+
* <li>
|
|
73
|
+
* <p>
|
|
74
|
+
* <code>ADMIN_PRO</code>: Admin Pros are Author Pros who can also manage Amazon QuickSight administrative settings. Admin Pro users are billed at Author Pro pricing.</p>
|
|
75
|
+
* </li>
|
|
76
|
+
* <li>
|
|
77
|
+
* <p>
|
|
78
|
+
* <code>RESTRICTED_READER</code>: This role isn't currently available for
|
|
79
|
+
* use.</p>
|
|
80
|
+
* </li>
|
|
81
|
+
* <li>
|
|
82
|
+
* <p>
|
|
83
|
+
* <code>RESTRICTED_AUTHOR</code>: This role isn't currently available for
|
|
84
|
+
* use.</p>
|
|
85
|
+
* </li>
|
|
86
|
+
* </ul>
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
89
|
+
Role?: UserRole;
|
|
90
|
+
/**
|
|
91
|
+
* <p>The type of identity authentication used by the user.</p>
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
94
|
+
IdentityType?: IdentityType;
|
|
95
|
+
/**
|
|
96
|
+
* <p>The active status of user. When you create an Amazon QuickSight user that's not an IAM user or an Active Directory user, that user is inactive until they sign in and provide a
|
|
97
|
+
* password.</p>
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
100
|
+
Active?: boolean;
|
|
101
|
+
/**
|
|
102
|
+
* <p>The principal ID of the user.</p>
|
|
103
|
+
* @public
|
|
104
|
+
*/
|
|
105
|
+
PrincipalId?: string;
|
|
106
|
+
/**
|
|
107
|
+
* <p>The custom permissions profile associated with this user.</p>
|
|
108
|
+
* @public
|
|
109
|
+
*/
|
|
110
|
+
CustomPermissionsName?: string;
|
|
111
|
+
/**
|
|
112
|
+
* <p>The type of supported external login provider that provides identity to let the user
|
|
113
|
+
* federate into Amazon QuickSight with an associated IAM role. The type can be one of the following.</p>
|
|
114
|
+
* <ul>
|
|
115
|
+
* <li>
|
|
116
|
+
* <p>
|
|
117
|
+
* <code>COGNITO</code>: Amazon Cognito. The provider URL is cognito-identity.amazonaws.com.</p>
|
|
118
|
+
* </li>
|
|
119
|
+
* <li>
|
|
120
|
+
* <p>
|
|
121
|
+
* <code>CUSTOM_OIDC</code>: Custom OpenID Connect (OIDC) provider.</p>
|
|
122
|
+
* </li>
|
|
123
|
+
* </ul>
|
|
124
|
+
* @public
|
|
125
|
+
*/
|
|
126
|
+
ExternalLoginFederationProviderType?: string;
|
|
127
|
+
/**
|
|
128
|
+
* <p>The URL of the external login provider.</p>
|
|
129
|
+
* @public
|
|
130
|
+
*/
|
|
131
|
+
ExternalLoginFederationProviderUrl?: string;
|
|
132
|
+
/**
|
|
133
|
+
* <p>The identity ID for the user in the external login provider.</p>
|
|
134
|
+
* @public
|
|
135
|
+
*/
|
|
136
|
+
ExternalLoginId?: string;
|
|
137
|
+
}
|
|
138
|
+
/**
|
|
139
|
+
* @public
|
|
140
|
+
*/
|
|
141
|
+
export interface DescribeUserResponse {
|
|
142
|
+
/**
|
|
143
|
+
* <p>The user name.</p>
|
|
144
|
+
* @public
|
|
145
|
+
*/
|
|
146
|
+
User?: User;
|
|
147
|
+
/**
|
|
148
|
+
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
149
|
+
* @public
|
|
150
|
+
*/
|
|
151
|
+
RequestId?: string;
|
|
152
|
+
/**
|
|
153
|
+
* <p>The HTTP status of the request.</p>
|
|
154
|
+
* @public
|
|
155
|
+
*/
|
|
156
|
+
Status?: number;
|
|
157
|
+
}
|
|
6
158
|
/**
|
|
7
159
|
* @public
|
|
8
160
|
*/
|
|
@@ -5034,6 +5186,41 @@ export interface UpdatePublicSharingSettingsResponse {
|
|
|
5034
5186
|
*/
|
|
5035
5187
|
Status?: number;
|
|
5036
5188
|
}
|
|
5189
|
+
/**
|
|
5190
|
+
* @public
|
|
5191
|
+
*/
|
|
5192
|
+
export interface UpdateQPersonalizationConfigurationRequest {
|
|
5193
|
+
/**
|
|
5194
|
+
* <p>The ID of the Amazon Web Services account account that contains the personalization configuration that the user wants to update.</p>
|
|
5195
|
+
* @public
|
|
5196
|
+
*/
|
|
5197
|
+
AwsAccountId: string | undefined;
|
|
5198
|
+
/**
|
|
5199
|
+
* <p>An option to allow Amazon QuickSight to customize data stories with user specific metadata, specifically location and job information, in your IAM Identity Center instance.</p>
|
|
5200
|
+
* @public
|
|
5201
|
+
*/
|
|
5202
|
+
PersonalizationMode: PersonalizationMode | undefined;
|
|
5203
|
+
}
|
|
5204
|
+
/**
|
|
5205
|
+
* @public
|
|
5206
|
+
*/
|
|
5207
|
+
export interface UpdateQPersonalizationConfigurationResponse {
|
|
5208
|
+
/**
|
|
5209
|
+
* <p>The personalization mode that is used for the personalization configuration.</p>
|
|
5210
|
+
* @public
|
|
5211
|
+
*/
|
|
5212
|
+
PersonalizationMode?: PersonalizationMode;
|
|
5213
|
+
/**
|
|
5214
|
+
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
5215
|
+
* @public
|
|
5216
|
+
*/
|
|
5217
|
+
RequestId?: string;
|
|
5218
|
+
/**
|
|
5219
|
+
* <p>The HTTP status of the request.</p>
|
|
5220
|
+
* @public
|
|
5221
|
+
*/
|
|
5222
|
+
Status?: number;
|
|
5223
|
+
}
|
|
5037
5224
|
/**
|
|
5038
5225
|
* @public
|
|
5039
5226
|
*/
|
|
@@ -79,6 +79,7 @@ import { DescribeIngestionCommandInput, DescribeIngestionCommandOutput } from ".
|
|
|
79
79
|
import { DescribeIpRestrictionCommandInput, DescribeIpRestrictionCommandOutput } from "../commands/DescribeIpRestrictionCommand";
|
|
80
80
|
import { DescribeKeyRegistrationCommandInput, DescribeKeyRegistrationCommandOutput } from "../commands/DescribeKeyRegistrationCommand";
|
|
81
81
|
import { DescribeNamespaceCommandInput, DescribeNamespaceCommandOutput } from "../commands/DescribeNamespaceCommand";
|
|
82
|
+
import { DescribeQPersonalizationConfigurationCommandInput, DescribeQPersonalizationConfigurationCommandOutput } from "../commands/DescribeQPersonalizationConfigurationCommand";
|
|
82
83
|
import { DescribeRefreshScheduleCommandInput, DescribeRefreshScheduleCommandOutput } from "../commands/DescribeRefreshScheduleCommand";
|
|
83
84
|
import { DescribeRoleCustomPermissionCommandInput, DescribeRoleCustomPermissionCommandOutput } from "../commands/DescribeRoleCustomPermissionCommand";
|
|
84
85
|
import { DescribeTemplateAliasCommandInput, DescribeTemplateAliasCommandOutput } from "../commands/DescribeTemplateAliasCommand";
|
|
@@ -164,6 +165,7 @@ import { UpdateIdentityPropagationConfigCommandInput, UpdateIdentityPropagationC
|
|
|
164
165
|
import { UpdateIpRestrictionCommandInput, UpdateIpRestrictionCommandOutput } from "../commands/UpdateIpRestrictionCommand";
|
|
165
166
|
import { UpdateKeyRegistrationCommandInput, UpdateKeyRegistrationCommandOutput } from "../commands/UpdateKeyRegistrationCommand";
|
|
166
167
|
import { UpdatePublicSharingSettingsCommandInput, UpdatePublicSharingSettingsCommandOutput } from "../commands/UpdatePublicSharingSettingsCommand";
|
|
168
|
+
import { UpdateQPersonalizationConfigurationCommandInput, UpdateQPersonalizationConfigurationCommandOutput } from "../commands/UpdateQPersonalizationConfigurationCommand";
|
|
167
169
|
import { UpdateRefreshScheduleCommandInput, UpdateRefreshScheduleCommandOutput } from "../commands/UpdateRefreshScheduleCommand";
|
|
168
170
|
import { UpdateRoleCustomPermissionCommandInput, UpdateRoleCustomPermissionCommandOutput } from "../commands/UpdateRoleCustomPermissionCommand";
|
|
169
171
|
import { UpdateSPICECapacityConfigurationCommandInput, UpdateSPICECapacityConfigurationCommandOutput } from "../commands/UpdateSPICECapacityConfigurationCommand";
|
|
@@ -494,6 +496,10 @@ export declare const se_DescribeKeyRegistrationCommand: (input: DescribeKeyRegis
|
|
|
494
496
|
* serializeAws_restJson1DescribeNamespaceCommand
|
|
495
497
|
*/
|
|
496
498
|
export declare const se_DescribeNamespaceCommand: (input: DescribeNamespaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
499
|
+
/**
|
|
500
|
+
* serializeAws_restJson1DescribeQPersonalizationConfigurationCommand
|
|
501
|
+
*/
|
|
502
|
+
export declare const se_DescribeQPersonalizationConfigurationCommand: (input: DescribeQPersonalizationConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
497
503
|
/**
|
|
498
504
|
* serializeAws_restJson1DescribeRefreshScheduleCommand
|
|
499
505
|
*/
|
|
@@ -834,6 +840,10 @@ export declare const se_UpdateKeyRegistrationCommand: (input: UpdateKeyRegistrat
|
|
|
834
840
|
* serializeAws_restJson1UpdatePublicSharingSettingsCommand
|
|
835
841
|
*/
|
|
836
842
|
export declare const se_UpdatePublicSharingSettingsCommand: (input: UpdatePublicSharingSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
843
|
+
/**
|
|
844
|
+
* serializeAws_restJson1UpdateQPersonalizationConfigurationCommand
|
|
845
|
+
*/
|
|
846
|
+
export declare const se_UpdateQPersonalizationConfigurationCommand: (input: UpdateQPersonalizationConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
837
847
|
/**
|
|
838
848
|
* serializeAws_restJson1UpdateRefreshScheduleCommand
|
|
839
849
|
*/
|
|
@@ -1206,6 +1216,10 @@ export declare const de_DescribeKeyRegistrationCommand: (output: __HttpResponse,
|
|
|
1206
1216
|
* deserializeAws_restJson1DescribeNamespaceCommand
|
|
1207
1217
|
*/
|
|
1208
1218
|
export declare const de_DescribeNamespaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeNamespaceCommandOutput>;
|
|
1219
|
+
/**
|
|
1220
|
+
* deserializeAws_restJson1DescribeQPersonalizationConfigurationCommand
|
|
1221
|
+
*/
|
|
1222
|
+
export declare const de_DescribeQPersonalizationConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeQPersonalizationConfigurationCommandOutput>;
|
|
1209
1223
|
/**
|
|
1210
1224
|
* deserializeAws_restJson1DescribeRefreshScheduleCommand
|
|
1211
1225
|
*/
|
|
@@ -1546,6 +1560,10 @@ export declare const de_UpdateKeyRegistrationCommand: (output: __HttpResponse, c
|
|
|
1546
1560
|
* deserializeAws_restJson1UpdatePublicSharingSettingsCommand
|
|
1547
1561
|
*/
|
|
1548
1562
|
export declare const de_UpdatePublicSharingSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdatePublicSharingSettingsCommandOutput>;
|
|
1563
|
+
/**
|
|
1564
|
+
* deserializeAws_restJson1UpdateQPersonalizationConfigurationCommand
|
|
1565
|
+
*/
|
|
1566
|
+
export declare const de_UpdateQPersonalizationConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateQPersonalizationConfigurationCommandOutput>;
|
|
1549
1567
|
/**
|
|
1550
1568
|
* deserializeAws_restJson1UpdateRefreshScheduleCommand
|
|
1551
1569
|
*/
|
|
@@ -315,6 +315,10 @@ import {
|
|
|
315
315
|
DescribeNamespaceCommandInput,
|
|
316
316
|
DescribeNamespaceCommandOutput,
|
|
317
317
|
} from "./commands/DescribeNamespaceCommand";
|
|
318
|
+
import {
|
|
319
|
+
DescribeQPersonalizationConfigurationCommandInput,
|
|
320
|
+
DescribeQPersonalizationConfigurationCommandOutput,
|
|
321
|
+
} from "./commands/DescribeQPersonalizationConfigurationCommand";
|
|
318
322
|
import {
|
|
319
323
|
DescribeRefreshScheduleCommandInput,
|
|
320
324
|
DescribeRefreshScheduleCommandOutput,
|
|
@@ -655,6 +659,10 @@ import {
|
|
|
655
659
|
UpdatePublicSharingSettingsCommandInput,
|
|
656
660
|
UpdatePublicSharingSettingsCommandOutput,
|
|
657
661
|
} from "./commands/UpdatePublicSharingSettingsCommand";
|
|
662
|
+
import {
|
|
663
|
+
UpdateQPersonalizationConfigurationCommandInput,
|
|
664
|
+
UpdateQPersonalizationConfigurationCommandOutput,
|
|
665
|
+
} from "./commands/UpdateQPersonalizationConfigurationCommand";
|
|
658
666
|
import {
|
|
659
667
|
UpdateRefreshScheduleCommandInput,
|
|
660
668
|
UpdateRefreshScheduleCommandOutput,
|
|
@@ -1752,6 +1760,25 @@ export interface QuickSight {
|
|
|
1752
1760
|
options: __HttpHandlerOptions,
|
|
1753
1761
|
cb: (err: any, data?: DescribeNamespaceCommandOutput) => void
|
|
1754
1762
|
): void;
|
|
1763
|
+
describeQPersonalizationConfiguration(
|
|
1764
|
+
args: DescribeQPersonalizationConfigurationCommandInput,
|
|
1765
|
+
options?: __HttpHandlerOptions
|
|
1766
|
+
): Promise<DescribeQPersonalizationConfigurationCommandOutput>;
|
|
1767
|
+
describeQPersonalizationConfiguration(
|
|
1768
|
+
args: DescribeQPersonalizationConfigurationCommandInput,
|
|
1769
|
+
cb: (
|
|
1770
|
+
err: any,
|
|
1771
|
+
data?: DescribeQPersonalizationConfigurationCommandOutput
|
|
1772
|
+
) => void
|
|
1773
|
+
): void;
|
|
1774
|
+
describeQPersonalizationConfiguration(
|
|
1775
|
+
args: DescribeQPersonalizationConfigurationCommandInput,
|
|
1776
|
+
options: __HttpHandlerOptions,
|
|
1777
|
+
cb: (
|
|
1778
|
+
err: any,
|
|
1779
|
+
data?: DescribeQPersonalizationConfigurationCommandOutput
|
|
1780
|
+
) => void
|
|
1781
|
+
): void;
|
|
1755
1782
|
describeRefreshSchedule(
|
|
1756
1783
|
args: DescribeRefreshScheduleCommandInput,
|
|
1757
1784
|
options?: __HttpHandlerOptions
|
|
@@ -2863,6 +2890,25 @@ export interface QuickSight {
|
|
|
2863
2890
|
options: __HttpHandlerOptions,
|
|
2864
2891
|
cb: (err: any, data?: UpdatePublicSharingSettingsCommandOutput) => void
|
|
2865
2892
|
): void;
|
|
2893
|
+
updateQPersonalizationConfiguration(
|
|
2894
|
+
args: UpdateQPersonalizationConfigurationCommandInput,
|
|
2895
|
+
options?: __HttpHandlerOptions
|
|
2896
|
+
): Promise<UpdateQPersonalizationConfigurationCommandOutput>;
|
|
2897
|
+
updateQPersonalizationConfiguration(
|
|
2898
|
+
args: UpdateQPersonalizationConfigurationCommandInput,
|
|
2899
|
+
cb: (
|
|
2900
|
+
err: any,
|
|
2901
|
+
data?: UpdateQPersonalizationConfigurationCommandOutput
|
|
2902
|
+
) => void
|
|
2903
|
+
): void;
|
|
2904
|
+
updateQPersonalizationConfiguration(
|
|
2905
|
+
args: UpdateQPersonalizationConfigurationCommandInput,
|
|
2906
|
+
options: __HttpHandlerOptions,
|
|
2907
|
+
cb: (
|
|
2908
|
+
err: any,
|
|
2909
|
+
data?: UpdateQPersonalizationConfigurationCommandOutput
|
|
2910
|
+
) => void
|
|
2911
|
+
): void;
|
|
2866
2912
|
updateRefreshSchedule(
|
|
2867
2913
|
args: UpdateRefreshScheduleCommandInput,
|
|
2868
2914
|
options?: __HttpHandlerOptions
|
|
@@ -361,6 +361,10 @@ import {
|
|
|
361
361
|
DescribeNamespaceCommandInput,
|
|
362
362
|
DescribeNamespaceCommandOutput,
|
|
363
363
|
} from "./commands/DescribeNamespaceCommand";
|
|
364
|
+
import {
|
|
365
|
+
DescribeQPersonalizationConfigurationCommandInput,
|
|
366
|
+
DescribeQPersonalizationConfigurationCommandOutput,
|
|
367
|
+
} from "./commands/DescribeQPersonalizationConfigurationCommand";
|
|
364
368
|
import {
|
|
365
369
|
DescribeRefreshScheduleCommandInput,
|
|
366
370
|
DescribeRefreshScheduleCommandOutput,
|
|
@@ -701,6 +705,10 @@ import {
|
|
|
701
705
|
UpdatePublicSharingSettingsCommandInput,
|
|
702
706
|
UpdatePublicSharingSettingsCommandOutput,
|
|
703
707
|
} from "./commands/UpdatePublicSharingSettingsCommand";
|
|
708
|
+
import {
|
|
709
|
+
UpdateQPersonalizationConfigurationCommandInput,
|
|
710
|
+
UpdateQPersonalizationConfigurationCommandOutput,
|
|
711
|
+
} from "./commands/UpdateQPersonalizationConfigurationCommand";
|
|
704
712
|
import {
|
|
705
713
|
UpdateRefreshScheduleCommandInput,
|
|
706
714
|
UpdateRefreshScheduleCommandOutput,
|
|
@@ -844,6 +852,7 @@ export type ServiceInputTypes =
|
|
|
844
852
|
| DescribeIpRestrictionCommandInput
|
|
845
853
|
| DescribeKeyRegistrationCommandInput
|
|
846
854
|
| DescribeNamespaceCommandInput
|
|
855
|
+
| DescribeQPersonalizationConfigurationCommandInput
|
|
847
856
|
| DescribeRefreshScheduleCommandInput
|
|
848
857
|
| DescribeRoleCustomPermissionCommandInput
|
|
849
858
|
| DescribeTemplateAliasCommandInput
|
|
@@ -929,6 +938,7 @@ export type ServiceInputTypes =
|
|
|
929
938
|
| UpdateIpRestrictionCommandInput
|
|
930
939
|
| UpdateKeyRegistrationCommandInput
|
|
931
940
|
| UpdatePublicSharingSettingsCommandInput
|
|
941
|
+
| UpdateQPersonalizationConfigurationCommandInput
|
|
932
942
|
| UpdateRefreshScheduleCommandInput
|
|
933
943
|
| UpdateRoleCustomPermissionCommandInput
|
|
934
944
|
| UpdateSPICECapacityConfigurationCommandInput
|
|
@@ -1023,6 +1033,7 @@ export type ServiceOutputTypes =
|
|
|
1023
1033
|
| DescribeIpRestrictionCommandOutput
|
|
1024
1034
|
| DescribeKeyRegistrationCommandOutput
|
|
1025
1035
|
| DescribeNamespaceCommandOutput
|
|
1036
|
+
| DescribeQPersonalizationConfigurationCommandOutput
|
|
1026
1037
|
| DescribeRefreshScheduleCommandOutput
|
|
1027
1038
|
| DescribeRoleCustomPermissionCommandOutput
|
|
1028
1039
|
| DescribeTemplateAliasCommandOutput
|
|
@@ -1108,6 +1119,7 @@ export type ServiceOutputTypes =
|
|
|
1108
1119
|
| UpdateIpRestrictionCommandOutput
|
|
1109
1120
|
| UpdateKeyRegistrationCommandOutput
|
|
1110
1121
|
| UpdatePublicSharingSettingsCommandOutput
|
|
1122
|
+
| UpdateQPersonalizationConfigurationCommandOutput
|
|
1111
1123
|
| UpdateRefreshScheduleCommandOutput
|
|
1112
1124
|
| UpdateRoleCustomPermissionCommandOutput
|
|
1113
1125
|
| UpdateSPICECapacityConfigurationCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DescribeQPersonalizationConfigurationRequest,
|
|
5
|
+
DescribeQPersonalizationConfigurationResponse,
|
|
6
|
+
} from "../models/models_3";
|
|
7
|
+
import {
|
|
8
|
+
QuickSightClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../QuickSightClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeQPersonalizationConfigurationCommandInput
|
|
15
|
+
extends DescribeQPersonalizationConfigurationRequest {}
|
|
16
|
+
export interface DescribeQPersonalizationConfigurationCommandOutput
|
|
17
|
+
extends DescribeQPersonalizationConfigurationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeQPersonalizationConfigurationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeQPersonalizationConfigurationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeQPersonalizationConfigurationCommandInput,
|
|
24
|
+
DescribeQPersonalizationConfigurationCommandOutput,
|
|
25
|
+
QuickSightClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DescribeQPersonalizationConfigurationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeQPersonalizationConfigurationCommandInput,
|
|
33
|
+
DescribeQPersonalizationConfigurationCommandOutput,
|
|
34
|
+
QuickSightClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeQPersonalizationConfigurationCommand extends DescribeQPersonalizationConfigurationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DescribeQPersonalizationConfigurationRequest;
|
|
44
|
+
output: DescribeQPersonalizationConfigurationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DescribeQPersonalizationConfigurationCommandInput;
|
|
48
|
+
output: DescribeQPersonalizationConfigurationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { DescribeUserRequest
|
|
3
|
+
import { DescribeUserRequest } from "../models/models_3";
|
|
4
|
+
import { DescribeUserResponse } from "../models/models_4";
|
|
4
5
|
import {
|
|
5
6
|
QuickSightClientResolvedConfig,
|
|
6
7
|
ServiceInputTypes,
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
UpdateQPersonalizationConfigurationRequest,
|
|
5
|
+
UpdateQPersonalizationConfigurationResponse,
|
|
6
|
+
} from "../models/models_4";
|
|
7
|
+
import {
|
|
8
|
+
QuickSightClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../QuickSightClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateQPersonalizationConfigurationCommandInput
|
|
15
|
+
extends UpdateQPersonalizationConfigurationRequest {}
|
|
16
|
+
export interface UpdateQPersonalizationConfigurationCommandOutput
|
|
17
|
+
extends UpdateQPersonalizationConfigurationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateQPersonalizationConfigurationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateQPersonalizationConfigurationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateQPersonalizationConfigurationCommandInput,
|
|
24
|
+
UpdateQPersonalizationConfigurationCommandOutput,
|
|
25
|
+
QuickSightClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: UpdateQPersonalizationConfigurationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateQPersonalizationConfigurationCommandInput,
|
|
33
|
+
UpdateQPersonalizationConfigurationCommandOutput,
|
|
34
|
+
QuickSightClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateQPersonalizationConfigurationCommand extends UpdateQPersonalizationConfigurationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateQPersonalizationConfigurationRequest;
|
|
44
|
+
output: UpdateQPersonalizationConfigurationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateQPersonalizationConfigurationCommandInput;
|
|
48
|
+
output: UpdateQPersonalizationConfigurationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -77,6 +77,7 @@ export * from "./DescribeIngestionCommand";
|
|
|
77
77
|
export * from "./DescribeIpRestrictionCommand";
|
|
78
78
|
export * from "./DescribeKeyRegistrationCommand";
|
|
79
79
|
export * from "./DescribeNamespaceCommand";
|
|
80
|
+
export * from "./DescribeQPersonalizationConfigurationCommand";
|
|
80
81
|
export * from "./DescribeRefreshScheduleCommand";
|
|
81
82
|
export * from "./DescribeRoleCustomPermissionCommand";
|
|
82
83
|
export * from "./DescribeTemplateAliasCommand";
|
|
@@ -162,6 +163,7 @@ export * from "./UpdateIdentityPropagationConfigCommand";
|
|
|
162
163
|
export * from "./UpdateIpRestrictionCommand";
|
|
163
164
|
export * from "./UpdateKeyRegistrationCommand";
|
|
164
165
|
export * from "./UpdatePublicSharingSettingsCommand";
|
|
166
|
+
export * from "./UpdateQPersonalizationConfigurationCommand";
|
|
165
167
|
export * from "./UpdateRefreshScheduleCommand";
|
|
166
168
|
export * from "./UpdateRoleCustomPermissionCommand";
|
|
167
169
|
export * from "./UpdateSPICECapacityConfigurationCommand";
|
|
@@ -1804,6 +1804,20 @@ export interface DescribeNamespaceResponse {
|
|
|
1804
1804
|
RequestId?: string;
|
|
1805
1805
|
Status?: number;
|
|
1806
1806
|
}
|
|
1807
|
+
export interface DescribeQPersonalizationConfigurationRequest {
|
|
1808
|
+
AwsAccountId: string | undefined;
|
|
1809
|
+
}
|
|
1810
|
+
export declare const PersonalizationMode: {
|
|
1811
|
+
readonly DISABLED: "DISABLED";
|
|
1812
|
+
readonly ENABLED: "ENABLED";
|
|
1813
|
+
};
|
|
1814
|
+
export type PersonalizationMode =
|
|
1815
|
+
(typeof PersonalizationMode)[keyof typeof PersonalizationMode];
|
|
1816
|
+
export interface DescribeQPersonalizationConfigurationResponse {
|
|
1817
|
+
PersonalizationMode?: PersonalizationMode;
|
|
1818
|
+
RequestId?: string;
|
|
1819
|
+
Status?: number;
|
|
1820
|
+
}
|
|
1807
1821
|
export interface DescribeRefreshScheduleRequest {
|
|
1808
1822
|
AwsAccountId: string | undefined;
|
|
1809
1823
|
DataSetId: string | undefined;
|
|
@@ -2041,35 +2055,6 @@ export declare const IdentityType: {
|
|
|
2041
2055
|
readonly QUICKSIGHT: "QUICKSIGHT";
|
|
2042
2056
|
};
|
|
2043
2057
|
export type IdentityType = (typeof IdentityType)[keyof typeof IdentityType];
|
|
2044
|
-
export declare const UserRole: {
|
|
2045
|
-
readonly ADMIN: "ADMIN";
|
|
2046
|
-
readonly ADMIN_PRO: "ADMIN_PRO";
|
|
2047
|
-
readonly AUTHOR: "AUTHOR";
|
|
2048
|
-
readonly AUTHOR_PRO: "AUTHOR_PRO";
|
|
2049
|
-
readonly READER: "READER";
|
|
2050
|
-
readonly READER_PRO: "READER_PRO";
|
|
2051
|
-
readonly RESTRICTED_AUTHOR: "RESTRICTED_AUTHOR";
|
|
2052
|
-
readonly RESTRICTED_READER: "RESTRICTED_READER";
|
|
2053
|
-
};
|
|
2054
|
-
export type UserRole = (typeof UserRole)[keyof typeof UserRole];
|
|
2055
|
-
export interface User {
|
|
2056
|
-
Arn?: string;
|
|
2057
|
-
UserName?: string;
|
|
2058
|
-
Email?: string;
|
|
2059
|
-
Role?: UserRole;
|
|
2060
|
-
IdentityType?: IdentityType;
|
|
2061
|
-
Active?: boolean;
|
|
2062
|
-
PrincipalId?: string;
|
|
2063
|
-
CustomPermissionsName?: string;
|
|
2064
|
-
ExternalLoginFederationProviderType?: string;
|
|
2065
|
-
ExternalLoginFederationProviderUrl?: string;
|
|
2066
|
-
ExternalLoginId?: string;
|
|
2067
|
-
}
|
|
2068
|
-
export interface DescribeUserResponse {
|
|
2069
|
-
User?: User;
|
|
2070
|
-
RequestId?: string;
|
|
2071
|
-
Status?: number;
|
|
2072
|
-
}
|
|
2073
2058
|
export declare const DataSourceCredentialsFilterSensitiveLog: (
|
|
2074
2059
|
obj: DataSourceCredentials
|
|
2075
2060
|
) => any;
|
|
@@ -70,6 +70,7 @@ import {
|
|
|
70
70
|
IdentityType,
|
|
71
71
|
Ingestion,
|
|
72
72
|
NamespaceInfoV2,
|
|
73
|
+
PersonalizationMode,
|
|
73
74
|
RefreshSchedule,
|
|
74
75
|
RegisteredCustomerManagedKey,
|
|
75
76
|
Role,
|
|
@@ -84,12 +85,39 @@ import {
|
|
|
84
85
|
TopicDetails,
|
|
85
86
|
TopicRefreshSchedule,
|
|
86
87
|
TopicUserExperienceVersion,
|
|
87
|
-
User,
|
|
88
|
-
UserRole,
|
|
89
88
|
VPCConnectionAvailabilityStatus,
|
|
90
89
|
VPCConnectionResourceStatus,
|
|
91
90
|
} from "./models_3";
|
|
92
91
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
92
|
+
export declare const UserRole: {
|
|
93
|
+
readonly ADMIN: "ADMIN";
|
|
94
|
+
readonly ADMIN_PRO: "ADMIN_PRO";
|
|
95
|
+
readonly AUTHOR: "AUTHOR";
|
|
96
|
+
readonly AUTHOR_PRO: "AUTHOR_PRO";
|
|
97
|
+
readonly READER: "READER";
|
|
98
|
+
readonly READER_PRO: "READER_PRO";
|
|
99
|
+
readonly RESTRICTED_AUTHOR: "RESTRICTED_AUTHOR";
|
|
100
|
+
readonly RESTRICTED_READER: "RESTRICTED_READER";
|
|
101
|
+
};
|
|
102
|
+
export type UserRole = (typeof UserRole)[keyof typeof UserRole];
|
|
103
|
+
export interface User {
|
|
104
|
+
Arn?: string;
|
|
105
|
+
UserName?: string;
|
|
106
|
+
Email?: string;
|
|
107
|
+
Role?: UserRole;
|
|
108
|
+
IdentityType?: IdentityType;
|
|
109
|
+
Active?: boolean;
|
|
110
|
+
PrincipalId?: string;
|
|
111
|
+
CustomPermissionsName?: string;
|
|
112
|
+
ExternalLoginFederationProviderType?: string;
|
|
113
|
+
ExternalLoginFederationProviderUrl?: string;
|
|
114
|
+
ExternalLoginId?: string;
|
|
115
|
+
}
|
|
116
|
+
export interface DescribeUserResponse {
|
|
117
|
+
User?: User;
|
|
118
|
+
RequestId?: string;
|
|
119
|
+
Status?: number;
|
|
120
|
+
}
|
|
93
121
|
export interface DescribeVPCConnectionRequest {
|
|
94
122
|
AwsAccountId: string | undefined;
|
|
95
123
|
VPCConnectionId: string | undefined;
|
|
@@ -1231,6 +1259,15 @@ export interface UpdatePublicSharingSettingsResponse {
|
|
|
1231
1259
|
RequestId?: string;
|
|
1232
1260
|
Status?: number;
|
|
1233
1261
|
}
|
|
1262
|
+
export interface UpdateQPersonalizationConfigurationRequest {
|
|
1263
|
+
AwsAccountId: string | undefined;
|
|
1264
|
+
PersonalizationMode: PersonalizationMode | undefined;
|
|
1265
|
+
}
|
|
1266
|
+
export interface UpdateQPersonalizationConfigurationResponse {
|
|
1267
|
+
PersonalizationMode?: PersonalizationMode;
|
|
1268
|
+
RequestId?: string;
|
|
1269
|
+
Status?: number;
|
|
1270
|
+
}
|
|
1234
1271
|
export interface UpdateRefreshScheduleRequest {
|
|
1235
1272
|
DataSetId: string | undefined;
|
|
1236
1273
|
AwsAccountId: string | undefined;
|