aws-sdk 2.1690.0 → 2.1692.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 +4 -10
- package/apis/qapps-2023-11-27.examples.json +23 -0
- package/apis/qapps-2023-11-27.min.json +60 -21
- package/apis/s3-2006-03-01.examples.json +100 -100
- package/apis/s3-2006-03-01.min.json +167 -102
- package/clients/qapps.d.ts +44 -2
- package/clients/s3.d.ts +192 -128
- package/dist/aws-sdk-core-react-native.js +4 -4
- package/dist/aws-sdk-react-native.js +6 -6
- package/dist/aws-sdk.js +173 -108
- package/dist/aws-sdk.min.js +24 -24
- package/lib/core.js +1 -1
- package/lib/maintenance_mode_message.js +3 -3
- package/package.json +1 -1
package/clients/qapps.d.ts
CHANGED
@@ -172,13 +172,21 @@ declare class QApps extends Service {
|
|
172
172
|
*/
|
173
173
|
untagResource(callback?: (err: AWSError, data: QApps.Types.UntagResourceResponse) => void): Request<QApps.Types.UntagResourceResponse, AWSError>;
|
174
174
|
/**
|
175
|
-
* Updates the
|
175
|
+
* Updates the library item for an Amazon Q App.
|
176
176
|
*/
|
177
177
|
updateLibraryItem(params: QApps.Types.UpdateLibraryItemInput, callback?: (err: AWSError, data: QApps.Types.UpdateLibraryItemOutput) => void): Request<QApps.Types.UpdateLibraryItemOutput, AWSError>;
|
178
178
|
/**
|
179
|
-
* Updates the
|
179
|
+
* Updates the library item for an Amazon Q App.
|
180
180
|
*/
|
181
181
|
updateLibraryItem(callback?: (err: AWSError, data: QApps.Types.UpdateLibraryItemOutput) => void): Request<QApps.Types.UpdateLibraryItemOutput, AWSError>;
|
182
|
+
/**
|
183
|
+
* Updates the verification status of a library item for an Amazon Q App.
|
184
|
+
*/
|
185
|
+
updateLibraryItemMetadata(params: QApps.Types.UpdateLibraryItemMetadataInput, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
186
|
+
/**
|
187
|
+
* Updates the verification status of a library item for an Amazon Q App.
|
188
|
+
*/
|
189
|
+
updateLibraryItemMetadata(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
182
190
|
/**
|
183
191
|
* Updates an existing Amazon Q App, allowing modifications to its title, description, and definition.
|
184
192
|
*/
|
@@ -424,6 +432,10 @@ declare namespace QApps {
|
|
424
432
|
* The number of ratings the library item has received from users.
|
425
433
|
*/
|
426
434
|
ratingCount: Integer;
|
435
|
+
/**
|
436
|
+
* Indicates whether the library item has been verified.
|
437
|
+
*/
|
438
|
+
isVerified?: Boolean;
|
427
439
|
}
|
428
440
|
export interface CreateQAppInput {
|
429
441
|
/**
|
@@ -693,6 +705,10 @@ declare namespace QApps {
|
|
693
705
|
* The number of users who have associated the Q App with their account.
|
694
706
|
*/
|
695
707
|
userCount?: Integer;
|
708
|
+
/**
|
709
|
+
* Indicates whether the library item has been verified.
|
710
|
+
*/
|
711
|
+
isVerified?: Boolean;
|
696
712
|
}
|
697
713
|
export interface GetQAppInput {
|
698
714
|
/**
|
@@ -875,6 +891,10 @@ declare namespace QApps {
|
|
875
891
|
* The number of users who have the associated Q App.
|
876
892
|
*/
|
877
893
|
userCount?: Integer;
|
894
|
+
/**
|
895
|
+
* Indicates whether the library item has been verified.
|
896
|
+
*/
|
897
|
+
isVerified?: Boolean;
|
878
898
|
}
|
879
899
|
export type LibraryItemStatus = "PUBLISHED"|"DISABLED"|string;
|
880
900
|
export interface ListLibraryItemsInput {
|
@@ -1246,6 +1266,20 @@ declare namespace QApps {
|
|
1246
1266
|
*/
|
1247
1267
|
categories?: CategoryIdList;
|
1248
1268
|
}
|
1269
|
+
export interface UpdateLibraryItemMetadataInput {
|
1270
|
+
/**
|
1271
|
+
* The unique identifier of the Amazon Q Business application environment instance.
|
1272
|
+
*/
|
1273
|
+
instanceId: InstanceId;
|
1274
|
+
/**
|
1275
|
+
* The unique identifier of the updated library item.
|
1276
|
+
*/
|
1277
|
+
libraryItemId: UUID;
|
1278
|
+
/**
|
1279
|
+
* The verification status of the library item
|
1280
|
+
*/
|
1281
|
+
isVerified?: Boolean;
|
1282
|
+
}
|
1249
1283
|
export interface UpdateLibraryItemOutput {
|
1250
1284
|
/**
|
1251
1285
|
* The unique identifier of the updated library item.
|
@@ -1295,6 +1329,10 @@ declare namespace QApps {
|
|
1295
1329
|
* The number of users who have the associated Q App.
|
1296
1330
|
*/
|
1297
1331
|
userCount?: Integer;
|
1332
|
+
/**
|
1333
|
+
* Indicates whether the library item has been verified.
|
1334
|
+
*/
|
1335
|
+
isVerified?: Boolean;
|
1298
1336
|
}
|
1299
1337
|
export interface UpdateQAppInput {
|
1300
1338
|
/**
|
@@ -1421,6 +1459,10 @@ declare namespace QApps {
|
|
1421
1459
|
* The status of the user's association with the Q App.
|
1422
1460
|
*/
|
1423
1461
|
status?: String;
|
1462
|
+
/**
|
1463
|
+
* Indicates whether the Q App has been verified.
|
1464
|
+
*/
|
1465
|
+
isVerified?: Boolean;
|
1424
1466
|
}
|
1425
1467
|
export type UserAppsList = UserAppItem[];
|
1426
1468
|
/**
|