@aws-sdk/client-quicksight 3.691.0 → 3.692.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 +143 -7
- package/dist-cjs/index.js +1116 -216
- package/dist-es/QuickSight.js +34 -0
- package/dist-es/commands/CreateBrandCommand.js +22 -0
- package/dist-es/commands/CreateCustomPermissionsCommand.js +22 -0
- package/dist-es/commands/DeleteBrandAssignmentCommand.js +22 -0
- package/dist-es/commands/DeleteBrandCommand.js +22 -0
- package/dist-es/commands/DeleteCustomPermissionsCommand.js +22 -0
- package/dist-es/commands/DeleteUserCustomPermissionCommand.js +22 -0
- package/dist-es/commands/DescribeBrandAssignmentCommand.js +22 -0
- package/dist-es/commands/DescribeBrandCommand.js +22 -0
- package/dist-es/commands/DescribeBrandPublishedVersionCommand.js +22 -0
- package/dist-es/commands/DescribeCustomPermissionsCommand.js +22 -0
- package/dist-es/commands/DescribeTemplateDefinitionCommand.js +1 -1
- package/dist-es/commands/DescribeTopicCommand.js +1 -1
- package/dist-es/commands/ListBrandsCommand.js +22 -0
- package/dist-es/commands/ListCustomPermissionsCommand.js +22 -0
- package/dist-es/commands/UpdateBrandAssignmentCommand.js +22 -0
- package/dist-es/commands/UpdateBrandCommand.js +22 -0
- package/dist-es/commands/UpdateBrandPublishedVersionCommand.js +22 -0
- package/dist-es/commands/UpdateCustomPermissionsCommand.js +22 -0
- package/dist-es/commands/UpdateUserCustomPermissionCommand.js +22 -0
- package/dist-es/commands/index.js +17 -0
- package/dist-es/models/models_2.js +52 -107
- package/dist-es/models/models_3.js +108 -29
- package/dist-es/models/models_4.js +30 -16
- package/dist-es/pagination/ListBrandsPaginator.js +4 -0
- package/dist-es/pagination/ListCustomPermissionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +540 -6
- package/dist-types/QuickSight.d.ts +119 -0
- package/dist-types/QuickSightClient.d.ts +19 -2
- package/dist-types/commands/CreateBrandCommand.d.ts +268 -0
- package/dist-types/commands/CreateCustomPermissionsCommand.d.ts +132 -0
- package/dist-types/commands/DeleteBrandAssignmentCommand.d.ts +92 -0
- package/dist-types/commands/DeleteBrandCommand.d.ts +93 -0
- package/dist-types/commands/DeleteCustomPermissionsCommand.d.ts +104 -0
- package/dist-types/commands/DeleteUserCustomPermissionCommand.d.ts +101 -0
- package/dist-types/commands/DescribeBrandAssignmentCommand.d.ts +93 -0
- package/dist-types/commands/DescribeBrandCommand.d.ts +204 -0
- package/dist-types/commands/DescribeBrandPublishedVersionCommand.d.ts +203 -0
- package/dist-types/commands/DescribeCustomPermissionsCommand.d.ts +120 -0
- package/dist-types/commands/DescribeIngestionCommand.d.ts +2 -1
- package/dist-types/commands/DescribeIpRestrictionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeKeyRegistrationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeNamespaceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeQPersonalizationConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeRefreshScheduleCommand.d.ts +1 -1
- package/dist-types/commands/DescribeRoleCustomPermissionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTemplateAliasCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTemplateCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTemplatePermissionsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeThemeAliasCommand.d.ts +1 -1
- package/dist-types/commands/DescribeThemeCommand.d.ts +1 -1
- package/dist-types/commands/DescribeThemePermissionsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTopicCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTopicPermissionsCommand.d.ts +1 -2
- package/dist-types/commands/ListBrandsCommand.d.ts +99 -0
- package/dist-types/commands/ListCustomPermissionsCommand.d.ts +124 -0
- package/dist-types/commands/UpdateBrandAssignmentCommand.d.ts +94 -0
- package/dist-types/commands/UpdateBrandCommand.d.ts +262 -0
- package/dist-types/commands/UpdateBrandPublishedVersionCommand.d.ts +95 -0
- package/dist-types/commands/UpdateCustomPermissionsCommand.d.ts +120 -0
- package/dist-types/commands/UpdateUserCustomPermissionCommand.d.ts +102 -0
- package/dist-types/commands/index.d.ts +17 -0
- package/dist-types/models/models_2.d.ts +1343 -1408
- package/dist-types/models/models_3.d.ts +4131 -4269
- package/dist-types/models/models_4.d.ts +1387 -21
- package/dist-types/pagination/ListBrandsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListCustomPermissionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +153 -0
- package/dist-types/ts3.4/QuickSight.d.ts +289 -0
- package/dist-types/ts3.4/QuickSightClient.d.ts +102 -0
- package/dist-types/ts3.4/commands/CreateBrandCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateCustomPermissionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteBrandAssignmentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteBrandCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteCustomPermissionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteUserCustomPermissionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeBrandAssignmentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeBrandCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DescribeBrandPublishedVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeCustomPermissionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeIngestionCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeIpRestrictionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeKeyRegistrationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeNamespaceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeQPersonalizationConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeRefreshScheduleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeRoleCustomPermissionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTemplateAliasCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTemplateCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTemplateDefinitionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTemplatePermissionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeThemeAliasCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeThemeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeThemePermissionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTopicCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTopicPermissionsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListBrandsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListCustomPermissionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateBrandAssignmentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateBrandCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateBrandPublishedVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateCustomPermissionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateUserCustomPermissionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +17 -0
- package/dist-types/ts3.4/models/models_2.d.ts +188 -311
- package/dist-types/ts3.4/models/models_3.d.ts +389 -267
- package/dist-types/ts3.4/models/models_4.d.ts +342 -18
- package/dist-types/ts3.4/pagination/ListBrandsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCustomPermissionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +204 -0
- package/package.json +35 -35
|
@@ -2,7 +2,9 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-cli
|
|
|
2
2
|
import {
|
|
3
3
|
AccountCustomization,
|
|
4
4
|
ActiveIAMPolicyAssignment,
|
|
5
|
+
Entity,
|
|
5
6
|
ResourceStatus,
|
|
7
|
+
Sheet,
|
|
6
8
|
} from "./models_0";
|
|
7
9
|
import {
|
|
8
10
|
_Parameters,
|
|
@@ -25,21 +27,20 @@ import {
|
|
|
25
27
|
AssignmentStatus,
|
|
26
28
|
AuthorizedTargetsByService,
|
|
27
29
|
BookmarksConfigurations,
|
|
30
|
+
BrandDefinition,
|
|
31
|
+
BrandDetail,
|
|
32
|
+
BrandSummary,
|
|
33
|
+
Capabilities,
|
|
28
34
|
ColumnGroup,
|
|
29
35
|
ColumnLevelPermissionRule,
|
|
30
36
|
DashboardPublishOptions,
|
|
31
37
|
DashboardSourceEntity,
|
|
32
38
|
DashboardVersionDefinition,
|
|
33
39
|
DashboardVisualId,
|
|
34
|
-
DataSetImportMode,
|
|
35
40
|
DatasetParameter,
|
|
36
|
-
DataSetUsageConfiguration,
|
|
37
41
|
DataSourceParameters,
|
|
38
|
-
FieldFolder,
|
|
39
42
|
FilterOperator,
|
|
40
43
|
LinkSharingConfiguration,
|
|
41
|
-
LogicalTable,
|
|
42
|
-
PhysicalTable,
|
|
43
44
|
ResourcePermission,
|
|
44
45
|
ServiceType,
|
|
45
46
|
SharedViewConfigurations,
|
|
@@ -52,25 +53,31 @@ import {
|
|
|
52
53
|
VpcConnectionProperties,
|
|
53
54
|
} from "./models_2";
|
|
54
55
|
import {
|
|
56
|
+
CustomPermissions,
|
|
55
57
|
DashboardSearchFilter,
|
|
56
58
|
DashboardSummary,
|
|
57
59
|
DashboardVersionSummary,
|
|
60
|
+
DataSetConfiguration,
|
|
61
|
+
DataSetImportMode,
|
|
58
62
|
DataSetRefreshProperties,
|
|
59
63
|
DataSetSearchFilter,
|
|
60
64
|
DataSetSummary,
|
|
65
|
+
DataSetUsageConfiguration,
|
|
61
66
|
DataSource,
|
|
62
67
|
DataSourceCredentials,
|
|
63
68
|
DataSourceSearchFilter,
|
|
64
69
|
DataSourceSummary,
|
|
70
|
+
FieldFolder,
|
|
65
71
|
FolderType,
|
|
66
72
|
Group,
|
|
67
73
|
GroupMember,
|
|
74
|
+
IdentityStore,
|
|
68
75
|
IncludeFolderMembers,
|
|
69
76
|
Ingestion,
|
|
70
|
-
|
|
71
|
-
|
|
77
|
+
LogicalTable,
|
|
78
|
+
NamespaceStatus,
|
|
79
|
+
PhysicalTable,
|
|
72
80
|
RefreshSchedule,
|
|
73
|
-
RegisteredCustomerManagedKey,
|
|
74
81
|
Role,
|
|
75
82
|
RowLevelPermissionDataSet,
|
|
76
83
|
RowLevelPermissionTagConfiguration,
|
|
@@ -81,7 +88,6 @@ import {
|
|
|
81
88
|
TemplateVersionDefinition,
|
|
82
89
|
ThemeAlias,
|
|
83
90
|
ThemeConfiguration,
|
|
84
|
-
ThemeType,
|
|
85
91
|
TopicDetails,
|
|
86
92
|
TopicRefreshSchedule,
|
|
87
93
|
TopicUserExperienceVersion,
|
|
@@ -89,6 +95,260 @@ import {
|
|
|
89
95
|
VPCConnectionResourceStatus,
|
|
90
96
|
} from "./models_3";
|
|
91
97
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
98
|
+
export interface DescribeIngestionResponse {
|
|
99
|
+
Ingestion?: Ingestion | undefined;
|
|
100
|
+
RequestId?: string | undefined;
|
|
101
|
+
Status?: number | undefined;
|
|
102
|
+
}
|
|
103
|
+
export interface DescribeIpRestrictionRequest {
|
|
104
|
+
AwsAccountId: string | undefined;
|
|
105
|
+
}
|
|
106
|
+
export interface DescribeIpRestrictionResponse {
|
|
107
|
+
AwsAccountId?: string | undefined;
|
|
108
|
+
IpRestrictionRuleMap?: Record<string, string> | undefined;
|
|
109
|
+
VpcIdRestrictionRuleMap?: Record<string, string> | undefined;
|
|
110
|
+
VpcEndpointIdRestrictionRuleMap?: Record<string, string> | undefined;
|
|
111
|
+
Enabled?: boolean | undefined;
|
|
112
|
+
RequestId?: string | undefined;
|
|
113
|
+
Status?: number | undefined;
|
|
114
|
+
}
|
|
115
|
+
export interface DescribeKeyRegistrationRequest {
|
|
116
|
+
AwsAccountId: string | undefined;
|
|
117
|
+
DefaultKeyOnly?: boolean | undefined;
|
|
118
|
+
}
|
|
119
|
+
export interface RegisteredCustomerManagedKey {
|
|
120
|
+
KeyArn?: string | undefined;
|
|
121
|
+
DefaultKey?: boolean | undefined;
|
|
122
|
+
}
|
|
123
|
+
export interface DescribeKeyRegistrationResponse {
|
|
124
|
+
AwsAccountId?: string | undefined;
|
|
125
|
+
KeyRegistration?: RegisteredCustomerManagedKey[] | undefined;
|
|
126
|
+
RequestId?: string | undefined;
|
|
127
|
+
Status?: number | undefined;
|
|
128
|
+
}
|
|
129
|
+
export interface DescribeNamespaceRequest {
|
|
130
|
+
AwsAccountId: string | undefined;
|
|
131
|
+
Namespace: string | undefined;
|
|
132
|
+
}
|
|
133
|
+
export declare const NamespaceErrorType: {
|
|
134
|
+
readonly INTERNAL_SERVICE_ERROR: "INTERNAL_SERVICE_ERROR";
|
|
135
|
+
readonly PERMISSION_DENIED: "PERMISSION_DENIED";
|
|
136
|
+
};
|
|
137
|
+
export type NamespaceErrorType =
|
|
138
|
+
(typeof NamespaceErrorType)[keyof typeof NamespaceErrorType];
|
|
139
|
+
export interface NamespaceError {
|
|
140
|
+
Type?: NamespaceErrorType | undefined;
|
|
141
|
+
Message?: string | undefined;
|
|
142
|
+
}
|
|
143
|
+
export interface NamespaceInfoV2 {
|
|
144
|
+
Name?: string | undefined;
|
|
145
|
+
Arn?: string | undefined;
|
|
146
|
+
CapacityRegion?: string | undefined;
|
|
147
|
+
CreationStatus?: NamespaceStatus | undefined;
|
|
148
|
+
IdentityStore?: IdentityStore | undefined;
|
|
149
|
+
NamespaceError?: NamespaceError | undefined;
|
|
150
|
+
}
|
|
151
|
+
export interface DescribeNamespaceResponse {
|
|
152
|
+
Namespace?: NamespaceInfoV2 | undefined;
|
|
153
|
+
RequestId?: string | undefined;
|
|
154
|
+
Status?: number | undefined;
|
|
155
|
+
}
|
|
156
|
+
export interface DescribeQPersonalizationConfigurationRequest {
|
|
157
|
+
AwsAccountId: string | undefined;
|
|
158
|
+
}
|
|
159
|
+
export declare const PersonalizationMode: {
|
|
160
|
+
readonly DISABLED: "DISABLED";
|
|
161
|
+
readonly ENABLED: "ENABLED";
|
|
162
|
+
};
|
|
163
|
+
export type PersonalizationMode =
|
|
164
|
+
(typeof PersonalizationMode)[keyof typeof PersonalizationMode];
|
|
165
|
+
export interface DescribeQPersonalizationConfigurationResponse {
|
|
166
|
+
PersonalizationMode?: PersonalizationMode | undefined;
|
|
167
|
+
RequestId?: string | undefined;
|
|
168
|
+
Status?: number | undefined;
|
|
169
|
+
}
|
|
170
|
+
export interface DescribeRefreshScheduleRequest {
|
|
171
|
+
AwsAccountId: string | undefined;
|
|
172
|
+
DataSetId: string | undefined;
|
|
173
|
+
ScheduleId: string | undefined;
|
|
174
|
+
}
|
|
175
|
+
export interface DescribeRefreshScheduleResponse {
|
|
176
|
+
RefreshSchedule?: RefreshSchedule | undefined;
|
|
177
|
+
Status?: number | undefined;
|
|
178
|
+
RequestId?: string | undefined;
|
|
179
|
+
Arn?: string | undefined;
|
|
180
|
+
}
|
|
181
|
+
export interface DescribeRoleCustomPermissionRequest {
|
|
182
|
+
Role: Role | undefined;
|
|
183
|
+
AwsAccountId: string | undefined;
|
|
184
|
+
Namespace: string | undefined;
|
|
185
|
+
}
|
|
186
|
+
export interface DescribeRoleCustomPermissionResponse {
|
|
187
|
+
CustomPermissionsName?: string | undefined;
|
|
188
|
+
RequestId?: string | undefined;
|
|
189
|
+
Status?: number | undefined;
|
|
190
|
+
}
|
|
191
|
+
export interface DescribeTemplateRequest {
|
|
192
|
+
AwsAccountId: string | undefined;
|
|
193
|
+
TemplateId: string | undefined;
|
|
194
|
+
VersionNumber?: number | undefined;
|
|
195
|
+
AliasName?: string | undefined;
|
|
196
|
+
}
|
|
197
|
+
export declare const TemplateErrorType: {
|
|
198
|
+
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
199
|
+
readonly DATA_SET_NOT_FOUND: "DATA_SET_NOT_FOUND";
|
|
200
|
+
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
201
|
+
readonly SOURCE_NOT_FOUND: "SOURCE_NOT_FOUND";
|
|
202
|
+
};
|
|
203
|
+
export type TemplateErrorType =
|
|
204
|
+
(typeof TemplateErrorType)[keyof typeof TemplateErrorType];
|
|
205
|
+
export interface TemplateError {
|
|
206
|
+
Type?: TemplateErrorType | undefined;
|
|
207
|
+
Message?: string | undefined;
|
|
208
|
+
ViolatedEntities?: Entity[] | undefined;
|
|
209
|
+
}
|
|
210
|
+
export interface TemplateVersion {
|
|
211
|
+
CreatedTime?: Date | undefined;
|
|
212
|
+
Errors?: TemplateError[] | undefined;
|
|
213
|
+
VersionNumber?: number | undefined;
|
|
214
|
+
Status?: ResourceStatus | undefined;
|
|
215
|
+
DataSetConfigurations?: DataSetConfiguration[] | undefined;
|
|
216
|
+
Description?: string | undefined;
|
|
217
|
+
SourceEntityArn?: string | undefined;
|
|
218
|
+
ThemeArn?: string | undefined;
|
|
219
|
+
Sheets?: Sheet[] | undefined;
|
|
220
|
+
}
|
|
221
|
+
export interface Template {
|
|
222
|
+
Arn?: string | undefined;
|
|
223
|
+
Name?: string | undefined;
|
|
224
|
+
Version?: TemplateVersion | undefined;
|
|
225
|
+
TemplateId?: string | undefined;
|
|
226
|
+
LastUpdatedTime?: Date | undefined;
|
|
227
|
+
CreatedTime?: Date | undefined;
|
|
228
|
+
}
|
|
229
|
+
export interface DescribeTemplateResponse {
|
|
230
|
+
Template?: Template | undefined;
|
|
231
|
+
Status?: number | undefined;
|
|
232
|
+
RequestId?: string | undefined;
|
|
233
|
+
}
|
|
234
|
+
export interface DescribeTemplateAliasRequest {
|
|
235
|
+
AwsAccountId: string | undefined;
|
|
236
|
+
TemplateId: string | undefined;
|
|
237
|
+
AliasName: string | undefined;
|
|
238
|
+
}
|
|
239
|
+
export interface DescribeTemplateAliasResponse {
|
|
240
|
+
TemplateAlias?: TemplateAlias | undefined;
|
|
241
|
+
Status?: number | undefined;
|
|
242
|
+
RequestId?: string | undefined;
|
|
243
|
+
}
|
|
244
|
+
export interface DescribeTemplateDefinitionRequest {
|
|
245
|
+
AwsAccountId: string | undefined;
|
|
246
|
+
TemplateId: string | undefined;
|
|
247
|
+
VersionNumber?: number | undefined;
|
|
248
|
+
AliasName?: string | undefined;
|
|
249
|
+
}
|
|
250
|
+
export interface DescribeTemplateDefinitionResponse {
|
|
251
|
+
Name?: string | undefined;
|
|
252
|
+
TemplateId?: string | undefined;
|
|
253
|
+
Errors?: TemplateError[] | undefined;
|
|
254
|
+
ResourceStatus?: ResourceStatus | undefined;
|
|
255
|
+
ThemeArn?: string | undefined;
|
|
256
|
+
Definition?: TemplateVersionDefinition | undefined;
|
|
257
|
+
Status?: number | undefined;
|
|
258
|
+
RequestId?: string | undefined;
|
|
259
|
+
}
|
|
260
|
+
export interface DescribeTemplatePermissionsRequest {
|
|
261
|
+
AwsAccountId: string | undefined;
|
|
262
|
+
TemplateId: string | undefined;
|
|
263
|
+
}
|
|
264
|
+
export interface DescribeTemplatePermissionsResponse {
|
|
265
|
+
TemplateId?: string | undefined;
|
|
266
|
+
TemplateArn?: string | undefined;
|
|
267
|
+
Permissions?: ResourcePermission[] | undefined;
|
|
268
|
+
RequestId?: string | undefined;
|
|
269
|
+
Status?: number | undefined;
|
|
270
|
+
}
|
|
271
|
+
export interface DescribeThemeRequest {
|
|
272
|
+
AwsAccountId: string | undefined;
|
|
273
|
+
ThemeId: string | undefined;
|
|
274
|
+
VersionNumber?: number | undefined;
|
|
275
|
+
AliasName?: string | undefined;
|
|
276
|
+
}
|
|
277
|
+
export declare const ThemeType: {
|
|
278
|
+
readonly ALL: "ALL";
|
|
279
|
+
readonly CUSTOM: "CUSTOM";
|
|
280
|
+
readonly QUICKSIGHT: "QUICKSIGHT";
|
|
281
|
+
};
|
|
282
|
+
export type ThemeType = (typeof ThemeType)[keyof typeof ThemeType];
|
|
283
|
+
export declare const ThemeErrorType: {
|
|
284
|
+
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
285
|
+
};
|
|
286
|
+
export type ThemeErrorType =
|
|
287
|
+
(typeof ThemeErrorType)[keyof typeof ThemeErrorType];
|
|
288
|
+
export interface ThemeError {
|
|
289
|
+
Type?: ThemeErrorType | undefined;
|
|
290
|
+
Message?: string | undefined;
|
|
291
|
+
}
|
|
292
|
+
export interface ThemeVersion {
|
|
293
|
+
VersionNumber?: number | undefined;
|
|
294
|
+
Arn?: string | undefined;
|
|
295
|
+
Description?: string | undefined;
|
|
296
|
+
BaseThemeId?: string | undefined;
|
|
297
|
+
CreatedTime?: Date | undefined;
|
|
298
|
+
Configuration?: ThemeConfiguration | undefined;
|
|
299
|
+
Errors?: ThemeError[] | undefined;
|
|
300
|
+
Status?: ResourceStatus | undefined;
|
|
301
|
+
}
|
|
302
|
+
export interface Theme {
|
|
303
|
+
Arn?: string | undefined;
|
|
304
|
+
Name?: string | undefined;
|
|
305
|
+
ThemeId?: string | undefined;
|
|
306
|
+
Version?: ThemeVersion | undefined;
|
|
307
|
+
CreatedTime?: Date | undefined;
|
|
308
|
+
LastUpdatedTime?: Date | undefined;
|
|
309
|
+
Type?: ThemeType | undefined;
|
|
310
|
+
}
|
|
311
|
+
export interface DescribeThemeResponse {
|
|
312
|
+
Theme?: Theme | undefined;
|
|
313
|
+
Status?: number | undefined;
|
|
314
|
+
RequestId?: string | undefined;
|
|
315
|
+
}
|
|
316
|
+
export interface DescribeThemeAliasRequest {
|
|
317
|
+
AwsAccountId: string | undefined;
|
|
318
|
+
ThemeId: string | undefined;
|
|
319
|
+
AliasName: string | undefined;
|
|
320
|
+
}
|
|
321
|
+
export interface DescribeThemeAliasResponse {
|
|
322
|
+
ThemeAlias?: ThemeAlias | undefined;
|
|
323
|
+
Status?: number | undefined;
|
|
324
|
+
RequestId?: string | undefined;
|
|
325
|
+
}
|
|
326
|
+
export interface DescribeThemePermissionsRequest {
|
|
327
|
+
AwsAccountId: string | undefined;
|
|
328
|
+
ThemeId: string | undefined;
|
|
329
|
+
}
|
|
330
|
+
export interface DescribeThemePermissionsResponse {
|
|
331
|
+
ThemeId?: string | undefined;
|
|
332
|
+
ThemeArn?: string | undefined;
|
|
333
|
+
Permissions?: ResourcePermission[] | undefined;
|
|
334
|
+
RequestId?: string | undefined;
|
|
335
|
+
Status?: number | undefined;
|
|
336
|
+
}
|
|
337
|
+
export interface DescribeTopicRequest {
|
|
338
|
+
AwsAccountId: string | undefined;
|
|
339
|
+
TopicId: string | undefined;
|
|
340
|
+
}
|
|
341
|
+
export interface DescribeTopicResponse {
|
|
342
|
+
Arn?: string | undefined;
|
|
343
|
+
TopicId?: string | undefined;
|
|
344
|
+
Topic?: TopicDetails | undefined;
|
|
345
|
+
RequestId?: string | undefined;
|
|
346
|
+
Status?: number | undefined;
|
|
347
|
+
}
|
|
348
|
+
export interface DescribeTopicPermissionsRequest {
|
|
349
|
+
AwsAccountId: string | undefined;
|
|
350
|
+
TopicId: string | undefined;
|
|
351
|
+
}
|
|
92
352
|
export interface DescribeTopicPermissionsResponse {
|
|
93
353
|
TopicId?: string | undefined;
|
|
94
354
|
TopicArn?: string | undefined;
|
|
@@ -442,15 +702,6 @@ export interface IAMPolicyAssignmentSummary {
|
|
|
442
702
|
AssignmentName?: string | undefined;
|
|
443
703
|
AssignmentStatus?: AssignmentStatus | undefined;
|
|
444
704
|
}
|
|
445
|
-
export declare class InvalidRequestException extends __BaseException {
|
|
446
|
-
readonly name: "InvalidRequestException";
|
|
447
|
-
readonly $fault: "client";
|
|
448
|
-
Message?: string | undefined;
|
|
449
|
-
RequestId?: string | undefined;
|
|
450
|
-
constructor(
|
|
451
|
-
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
452
|
-
);
|
|
453
|
-
}
|
|
454
705
|
export interface ListAnalysesRequest {
|
|
455
706
|
AwsAccountId: string | undefined;
|
|
456
707
|
NextToken?: string | undefined;
|
|
@@ -484,6 +735,26 @@ export interface ListAssetBundleImportJobsResponse {
|
|
|
484
735
|
RequestId?: string | undefined;
|
|
485
736
|
Status?: number | undefined;
|
|
486
737
|
}
|
|
738
|
+
export interface ListBrandsRequest {
|
|
739
|
+
AwsAccountId: string | undefined;
|
|
740
|
+
MaxResults?: number | undefined;
|
|
741
|
+
NextToken?: string | undefined;
|
|
742
|
+
}
|
|
743
|
+
export interface ListBrandsResponse {
|
|
744
|
+
NextToken?: string | undefined;
|
|
745
|
+
Brands?: BrandSummary[] | undefined;
|
|
746
|
+
}
|
|
747
|
+
export interface ListCustomPermissionsRequest {
|
|
748
|
+
AwsAccountId: string | undefined;
|
|
749
|
+
MaxResults?: number | undefined;
|
|
750
|
+
NextToken?: string | undefined;
|
|
751
|
+
}
|
|
752
|
+
export interface ListCustomPermissionsResponse {
|
|
753
|
+
Status?: number | undefined;
|
|
754
|
+
CustomPermissionsList?: CustomPermissions[] | undefined;
|
|
755
|
+
NextToken?: string | undefined;
|
|
756
|
+
RequestId?: string | undefined;
|
|
757
|
+
}
|
|
487
758
|
export interface ListDashboardsRequest {
|
|
488
759
|
AwsAccountId: string | undefined;
|
|
489
760
|
NextToken?: string | undefined;
|
|
@@ -1124,6 +1395,43 @@ export interface UpdateAnalysisPermissionsResponse {
|
|
|
1124
1395
|
RequestId?: string | undefined;
|
|
1125
1396
|
Status?: number | undefined;
|
|
1126
1397
|
}
|
|
1398
|
+
export interface UpdateBrandRequest {
|
|
1399
|
+
AwsAccountId: string | undefined;
|
|
1400
|
+
BrandId: string | undefined;
|
|
1401
|
+
BrandDefinition?: BrandDefinition | undefined;
|
|
1402
|
+
}
|
|
1403
|
+
export interface UpdateBrandResponse {
|
|
1404
|
+
RequestId?: string | undefined;
|
|
1405
|
+
BrandDetail?: BrandDetail | undefined;
|
|
1406
|
+
BrandDefinition?: BrandDefinition | undefined;
|
|
1407
|
+
}
|
|
1408
|
+
export interface UpdateBrandAssignmentRequest {
|
|
1409
|
+
AwsAccountId: string | undefined;
|
|
1410
|
+
BrandArn: string | undefined;
|
|
1411
|
+
}
|
|
1412
|
+
export interface UpdateBrandAssignmentResponse {
|
|
1413
|
+
RequestId?: string | undefined;
|
|
1414
|
+
BrandArn?: string | undefined;
|
|
1415
|
+
}
|
|
1416
|
+
export interface UpdateBrandPublishedVersionRequest {
|
|
1417
|
+
AwsAccountId: string | undefined;
|
|
1418
|
+
BrandId: string | undefined;
|
|
1419
|
+
VersionId: string | undefined;
|
|
1420
|
+
}
|
|
1421
|
+
export interface UpdateBrandPublishedVersionResponse {
|
|
1422
|
+
RequestId?: string | undefined;
|
|
1423
|
+
VersionId?: string | undefined;
|
|
1424
|
+
}
|
|
1425
|
+
export interface UpdateCustomPermissionsRequest {
|
|
1426
|
+
AwsAccountId: string | undefined;
|
|
1427
|
+
CustomPermissionsName: string | undefined;
|
|
1428
|
+
Capabilities?: Capabilities | undefined;
|
|
1429
|
+
}
|
|
1430
|
+
export interface UpdateCustomPermissionsResponse {
|
|
1431
|
+
Status?: number | undefined;
|
|
1432
|
+
Arn?: string | undefined;
|
|
1433
|
+
RequestId?: string | undefined;
|
|
1434
|
+
}
|
|
1127
1435
|
export interface UpdateDashboardRequest {
|
|
1128
1436
|
AwsAccountId: string | undefined;
|
|
1129
1437
|
DashboardId: string | undefined;
|
|
@@ -1515,6 +1823,16 @@ export interface UpdateUserResponse {
|
|
|
1515
1823
|
RequestId?: string | undefined;
|
|
1516
1824
|
Status?: number | undefined;
|
|
1517
1825
|
}
|
|
1826
|
+
export interface UpdateUserCustomPermissionRequest {
|
|
1827
|
+
UserName: string | undefined;
|
|
1828
|
+
AwsAccountId: string | undefined;
|
|
1829
|
+
Namespace: string | undefined;
|
|
1830
|
+
CustomPermissionsName: string | undefined;
|
|
1831
|
+
}
|
|
1832
|
+
export interface UpdateUserCustomPermissionResponse {
|
|
1833
|
+
RequestId?: string | undefined;
|
|
1834
|
+
Status?: number | undefined;
|
|
1835
|
+
}
|
|
1518
1836
|
export interface UpdateVPCConnectionRequest {
|
|
1519
1837
|
AwsAccountId: string | undefined;
|
|
1520
1838
|
VPCConnectionId: string | undefined;
|
|
@@ -1567,6 +1885,12 @@ export interface ListTopicReviewedAnswersResponse {
|
|
|
1567
1885
|
Status?: number | undefined;
|
|
1568
1886
|
RequestId?: string | undefined;
|
|
1569
1887
|
}
|
|
1888
|
+
export declare const DescribeTemplateDefinitionResponseFilterSensitiveLog: (
|
|
1889
|
+
obj: DescribeTemplateDefinitionResponse
|
|
1890
|
+
) => any;
|
|
1891
|
+
export declare const DescribeTopicResponseFilterSensitiveLog: (
|
|
1892
|
+
obj: DescribeTopicResponse
|
|
1893
|
+
) => any;
|
|
1570
1894
|
export declare const SessionTagFilterSensitiveLog: (obj: SessionTag) => any;
|
|
1571
1895
|
export declare const GenerateEmbedUrlForAnonymousUserRequestFilterSensitiveLog: (
|
|
1572
1896
|
obj: GenerateEmbedUrlForAnonymousUserRequest
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListBrandsCommandInput,
|
|
4
|
+
ListBrandsCommandOutput,
|
|
5
|
+
} from "../commands/ListBrandsCommand";
|
|
6
|
+
import { QuickSightPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListBrands: (
|
|
8
|
+
config: QuickSightPaginationConfiguration,
|
|
9
|
+
input: ListBrandsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListBrandsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListCustomPermissionsCommandInput,
|
|
4
|
+
ListCustomPermissionsCommandOutput,
|
|
5
|
+
} from "../commands/ListCustomPermissionsCommand";
|
|
6
|
+
import { QuickSightPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListCustomPermissions: (
|
|
8
|
+
config: QuickSightPaginationConfiguration,
|
|
9
|
+
input: ListCustomPermissionsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListCustomPermissionsCommandOutput>;
|
|
@@ -4,6 +4,8 @@ export * from "./Interfaces";
|
|
|
4
4
|
export * from "./ListAnalysesPaginator";
|
|
5
5
|
export * from "./ListAssetBundleExportJobsPaginator";
|
|
6
6
|
export * from "./ListAssetBundleImportJobsPaginator";
|
|
7
|
+
export * from "./ListBrandsPaginator";
|
|
8
|
+
export * from "./ListCustomPermissionsPaginator";
|
|
7
9
|
export * from "./ListDashboardVersionsPaginator";
|
|
8
10
|
export * from "./ListDashboardsPaginator";
|
|
9
11
|
export * from "./ListDataSetsPaginator";
|