@aws-sdk/client-quicksight 3.936.0 → 3.938.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/dist-cjs/index.js +101 -23
- package/dist-es/models/enums.js +3 -0
- package/dist-es/schemas/schemas_0.js +97 -23
- package/dist-types/commands/CreateAnalysisCommand.d.ts +47 -1
- package/dist-types/commands/CreateDashboardCommand.d.ts +47 -1
- package/dist-types/commands/CreateDataSourceCommand.d.ts +1 -2
- package/dist-types/commands/CreateTemplateCommand.d.ts +47 -1
- package/dist-types/commands/CreateThemeCommand.d.ts +84 -0
- package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +47 -1
- package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +47 -1
- package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +47 -1
- package/dist-types/commands/DescribeThemeCommand.d.ts +84 -0
- package/dist-types/commands/DescribeVPCConnectionCommand.d.ts +1 -1
- package/dist-types/commands/GenerateEmbedUrlForRegisteredUserCommand.d.ts +1 -0
- package/dist-types/commands/GenerateEmbedUrlForRegisteredUserWithIdentityCommand.d.ts +1 -0
- package/dist-types/commands/UpdateAnalysisCommand.d.ts +47 -1
- package/dist-types/commands/UpdateDashboardCommand.d.ts +47 -1
- package/dist-types/commands/UpdateTemplateCommand.d.ts +47 -1
- package/dist-types/commands/UpdateThemeCommand.d.ts +84 -0
- package/dist-types/models/enums.d.ts +11 -0
- package/dist-types/models/models_0.d.ts +82 -33
- package/dist-types/models/models_1.d.ts +35 -78
- package/dist-types/models/models_2.d.ts +88 -104
- package/dist-types/models/models_3.d.ts +218 -167
- package/dist-types/models/models_4.d.ts +179 -4
- package/dist-types/schemas/schemas_0.d.ts +6 -0
- package/dist-types/ts3.4/commands/CreateDataSourceCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeVPCConnectionCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/enums.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +18 -8
- package/dist-types/ts3.4/models/models_1.d.ts +9 -21
- package/dist-types/ts3.4/models/models_2.d.ts +22 -22
- package/dist-types/ts3.4/models/models_3.d.ts +49 -37
- package/dist-types/ts3.4/models/models_4.d.ts +41 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +6 -0
- package/package.json +1 -1
|
@@ -17,6 +17,7 @@ import {
|
|
|
17
17
|
IncludeFolderMembers,
|
|
18
18
|
IncludeGeneratedAnswer,
|
|
19
19
|
IncludeQuickSightQIndex,
|
|
20
|
+
NetworkInterfaceStatus,
|
|
20
21
|
PersonalizationMode,
|
|
21
22
|
PurchaseMode,
|
|
22
23
|
QAResultType,
|
|
@@ -48,7 +49,6 @@ import {
|
|
|
48
49
|
AnalysisSearchFilter,
|
|
49
50
|
AnalysisSourceEntity,
|
|
50
51
|
AnalysisSummary,
|
|
51
|
-
DashboardVisualId,
|
|
52
52
|
SharedViewConfigurations,
|
|
53
53
|
} from "./models_1";
|
|
54
54
|
import {
|
|
@@ -75,11 +75,11 @@ import {
|
|
|
75
75
|
DashboardPublishOptions,
|
|
76
76
|
DashboardSourceEntity,
|
|
77
77
|
DashboardVersionDefinition,
|
|
78
|
+
DashboardVisualId,
|
|
78
79
|
DataPrepConfiguration,
|
|
79
80
|
DatasetParameter,
|
|
80
81
|
DataSetRefreshProperties,
|
|
81
82
|
DataSetUsageConfiguration,
|
|
82
|
-
DataSourceCredentials,
|
|
83
83
|
DataSourceParameters,
|
|
84
84
|
FieldFolder,
|
|
85
85
|
LinkSharingConfiguration,
|
|
@@ -107,14 +107,13 @@ import {
|
|
|
107
107
|
DataSetSearchFilter,
|
|
108
108
|
DataSetSummary,
|
|
109
109
|
DataSource,
|
|
110
|
+
DataSourceCredentials,
|
|
110
111
|
DataSourceSearchFilter,
|
|
111
112
|
DataSourceSummary,
|
|
112
|
-
FailedKeyRegistrationEntry,
|
|
113
113
|
Group,
|
|
114
114
|
GroupMember,
|
|
115
115
|
Ingestion,
|
|
116
116
|
NamespaceInfoV2,
|
|
117
|
-
NetworkInterface,
|
|
118
117
|
RefreshSchedule,
|
|
119
118
|
RegisteredCustomerManagedKey,
|
|
120
119
|
SnapshotConfiguration,
|
|
@@ -127,6 +126,42 @@ import {
|
|
|
127
126
|
TopicRefreshSchedule,
|
|
128
127
|
User,
|
|
129
128
|
} from "./models_3";
|
|
129
|
+
export interface DescribeVPCConnectionRequest {
|
|
130
|
+
AwsAccountId: string | undefined;
|
|
131
|
+
VPCConnectionId: string | undefined;
|
|
132
|
+
}
|
|
133
|
+
export interface NetworkInterface {
|
|
134
|
+
SubnetId?: string | undefined;
|
|
135
|
+
AvailabilityZone?: string | undefined;
|
|
136
|
+
ErrorMessage?: string | undefined;
|
|
137
|
+
Status?: NetworkInterfaceStatus | undefined;
|
|
138
|
+
NetworkInterfaceId?: string | undefined;
|
|
139
|
+
}
|
|
140
|
+
export interface VPCConnection {
|
|
141
|
+
VPCConnectionId?: string | undefined;
|
|
142
|
+
Arn?: string | undefined;
|
|
143
|
+
Name?: string | undefined;
|
|
144
|
+
VPCId?: string | undefined;
|
|
145
|
+
SecurityGroupIds?: string[] | undefined;
|
|
146
|
+
DnsResolvers?: string[] | undefined;
|
|
147
|
+
Status?: VPCConnectionResourceStatus | undefined;
|
|
148
|
+
AvailabilityStatus?: VPCConnectionAvailabilityStatus | undefined;
|
|
149
|
+
NetworkInterfaces?: NetworkInterface[] | undefined;
|
|
150
|
+
RoleArn?: string | undefined;
|
|
151
|
+
CreatedTime?: Date | undefined;
|
|
152
|
+
LastUpdatedTime?: Date | undefined;
|
|
153
|
+
}
|
|
154
|
+
export interface DescribeVPCConnectionResponse {
|
|
155
|
+
VPCConnection?: VPCConnection | undefined;
|
|
156
|
+
RequestId?: string | undefined;
|
|
157
|
+
Status?: number | undefined;
|
|
158
|
+
}
|
|
159
|
+
export interface FailedKeyRegistrationEntry {
|
|
160
|
+
KeyArn?: string | undefined;
|
|
161
|
+
Message: string | undefined;
|
|
162
|
+
StatusCode: number | undefined;
|
|
163
|
+
SenderFault: boolean | undefined;
|
|
164
|
+
}
|
|
130
165
|
export interface FlowSummary {
|
|
131
166
|
Arn: string | undefined;
|
|
132
167
|
FlowId: string | undefined;
|
|
@@ -227,6 +262,7 @@ export interface RegisteredUserGenerativeQnAEmbeddingConfiguration {
|
|
|
227
262
|
export interface RegisteredUserQSearchBarEmbeddingConfiguration {
|
|
228
263
|
InitialTopicId?: string | undefined;
|
|
229
264
|
}
|
|
265
|
+
export interface RegisteredUserQuickChatEmbeddingConfiguration {}
|
|
230
266
|
export interface RegisteredUserConsoleFeatureConfigurations {
|
|
231
267
|
StatePersistence?: StatePersistenceConfigurations | undefined;
|
|
232
268
|
SharedView?: SharedViewConfigurations | undefined;
|
|
@@ -251,6 +287,7 @@ export interface RegisteredUserEmbeddingExperienceConfiguration {
|
|
|
251
287
|
| RegisteredUserDashboardVisualEmbeddingConfiguration
|
|
252
288
|
| undefined;
|
|
253
289
|
GenerativeQnA?: RegisteredUserGenerativeQnAEmbeddingConfiguration | undefined;
|
|
290
|
+
QuickChat?: RegisteredUserQuickChatEmbeddingConfiguration | undefined;
|
|
254
291
|
}
|
|
255
292
|
export interface GenerateEmbedUrlForRegisteredUserRequest {
|
|
256
293
|
AwsAccountId: string | undefined;
|
|
@@ -752,6 +752,8 @@ export declare var GradientStop: StaticStructureSchema;
|
|
|
752
752
|
export declare var GridLayoutCanvasSizeOptions: StaticStructureSchema;
|
|
753
753
|
export declare var GridLayoutConfiguration: StaticStructureSchema;
|
|
754
754
|
export declare var GridLayoutElement: StaticStructureSchema;
|
|
755
|
+
export declare var GridLayoutElementBackgroundStyle: StaticStructureSchema;
|
|
756
|
+
export declare var GridLayoutElementBorderStyle: StaticStructureSchema;
|
|
755
757
|
export declare var GridLayoutScreenCanvasSizeOptions: StaticStructureSchema;
|
|
756
758
|
export declare var Group: StaticStructureSchema;
|
|
757
759
|
export declare var GroupMember: StaticStructureSchema;
|
|
@@ -1092,6 +1094,7 @@ export declare var RegisteredUserDashboardVisualEmbeddingConfiguration: StaticSt
|
|
|
1092
1094
|
export declare var RegisteredUserEmbeddingExperienceConfiguration: StaticStructureSchema;
|
|
1093
1095
|
export declare var RegisteredUserGenerativeQnAEmbeddingConfiguration: StaticStructureSchema;
|
|
1094
1096
|
export declare var RegisteredUserQSearchBarEmbeddingConfiguration: StaticStructureSchema;
|
|
1097
|
+
export declare var RegisteredUserQuickChatEmbeddingConfiguration: StaticStructureSchema;
|
|
1095
1098
|
export declare var RegisteredUserQuickSightConsoleEmbeddingConfiguration: StaticStructureSchema;
|
|
1096
1099
|
export declare var RegisterUserRequest: StaticStructureSchema;
|
|
1097
1100
|
export declare var RegisterUserResponse: StaticStructureSchema;
|
|
@@ -1173,6 +1176,7 @@ export declare var SetParameterValueConfiguration: StaticStructureSchema;
|
|
|
1173
1176
|
export declare var ShapeConditionalFormat: StaticStructureSchema;
|
|
1174
1177
|
export declare var SharedViewConfigurations: StaticStructureSchema;
|
|
1175
1178
|
export declare var Sheet: StaticStructureSchema;
|
|
1179
|
+
export declare var SheetBackgroundStyle: StaticStructureSchema;
|
|
1176
1180
|
export declare var SheetControlInfoIconLabelOptions: StaticStructureSchema;
|
|
1177
1181
|
export declare var SheetControlLayout: StaticStructureSchema;
|
|
1178
1182
|
export declare var SheetControlLayoutConfiguration: StaticStructureSchema;
|
|
@@ -1483,7 +1487,9 @@ export declare var VisualInteractionOptions: StaticStructureSchema;
|
|
|
1483
1487
|
export declare var VisualMenuOption: StaticStructureSchema;
|
|
1484
1488
|
export declare var VisualOptions: StaticStructureSchema;
|
|
1485
1489
|
export declare var VisualPalette: StaticStructureSchema;
|
|
1490
|
+
export declare var VisualSubtitleFontConfiguration: StaticStructureSchema;
|
|
1486
1491
|
export declare var VisualSubtitleLabelOptions: StaticStructureSchema;
|
|
1492
|
+
export declare var VisualTitleFontConfiguration: StaticStructureSchema;
|
|
1487
1493
|
export declare var VisualTitleLabelOptions: StaticStructureSchema;
|
|
1488
1494
|
export declare var VPCConnection: StaticStructureSchema;
|
|
1489
1495
|
export declare var VpcConnectionProperties: StaticStructureSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-quicksight",
|
|
3
3
|
"description": "AWS SDK for JavaScript Quicksight Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.938.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",
|