cdk-docker-image-deployment 0.0.190 → 0.0.192
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/.jsii +4 -4
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/@types/aws-lambda/README.md +1 -1
- package/node_modules/@types/aws-lambda/package.json +2 -2
- package/node_modules/@types/aws-lambda/trigger/api-gateway-authorizer.d.ts +1 -0
- package/node_modules/aws-sdk/CHANGELOG.md +14 -1
- package/node_modules/aws-sdk/README.md +14 -1
- package/node_modules/aws-sdk/apis/appintegrations-2020-07-29.min.json +64 -10
- package/node_modules/aws-sdk/apis/application-autoscaling-2016-02-06.min.json +56 -12
- package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.min.json +42 -24
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +8 -1
- package/node_modules/aws-sdk/apis/keyspaces-2022-02-10.min.json +18 -0
- package/node_modules/aws-sdk/apis/s3control-2018-08-20.min.json +335 -49
- package/node_modules/aws-sdk/apis/tnb-2008-10-21.min.json +21 -3
- package/node_modules/aws-sdk/apis/wisdom-2020-10-19.min.json +1 -2
- package/node_modules/aws-sdk/clients/appintegrations.d.ts +61 -21
- package/node_modules/aws-sdk/clients/applicationautoscaling.d.ts +80 -3
- package/node_modules/aws-sdk/clients/dataexchange.d.ts +16 -0
- package/node_modules/aws-sdk/clients/directconnect.d.ts +6 -6
- package/node_modules/aws-sdk/clients/ec2.d.ts +8 -0
- package/node_modules/aws-sdk/clients/iam.d.ts +14 -14
- package/node_modules/aws-sdk/clients/keyspaces.d.ts +40 -21
- package/node_modules/aws-sdk/clients/lakeformation.d.ts +3 -0
- package/node_modules/aws-sdk/clients/s3control.d.ts +298 -36
- package/node_modules/aws-sdk/clients/tnb.d.ts +31 -7
- package/node_modules/aws-sdk/clients/wisdom.d.ts +11 -11
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +8 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +16 -9
- package/node_modules/aws-sdk/dist/aws-sdk.js +74 -16
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +92 -92
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/maintenance_mode_message.js +7 -0
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
|
@@ -281,7 +281,7 @@ declare namespace Tnb {
|
|
|
281
281
|
export type Boolean = boolean;
|
|
282
282
|
export interface CancelSolNetworkOperationInput {
|
|
283
283
|
/**
|
|
284
|
-
* The
|
|
284
|
+
* The identifier of the network operation.
|
|
285
285
|
*/
|
|
286
286
|
nsLcmOpOccId: NsLcmOpOccId;
|
|
287
287
|
}
|
|
@@ -653,7 +653,7 @@ declare namespace Tnb {
|
|
|
653
653
|
}
|
|
654
654
|
export interface GetSolNetworkOperationInput {
|
|
655
655
|
/**
|
|
656
|
-
* The identifier of the operation
|
|
656
|
+
* The identifier of the network operation.
|
|
657
657
|
*/
|
|
658
658
|
nsLcmOpOccId: NsLcmOpOccId;
|
|
659
659
|
}
|
|
@@ -673,7 +673,7 @@ declare namespace Tnb {
|
|
|
673
673
|
*/
|
|
674
674
|
arn: NsLcmOpOccArn;
|
|
675
675
|
/**
|
|
676
|
-
* Error related to this specific network operation
|
|
676
|
+
* Error related to this specific network operation occurrence.
|
|
677
677
|
*/
|
|
678
678
|
error?: ProblemDetails;
|
|
679
679
|
/**
|
|
@@ -875,16 +875,24 @@ declare namespace Tnb {
|
|
|
875
875
|
* ID of the network instance.
|
|
876
876
|
*/
|
|
877
877
|
nsInstanceId: NsInstanceId;
|
|
878
|
+
/**
|
|
879
|
+
* A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are transferred to the network operation that is created. Use tags to search and filter your resources or track your Amazon Web Services costs.
|
|
880
|
+
*/
|
|
881
|
+
tags?: TagMap;
|
|
878
882
|
}
|
|
879
883
|
export interface InstantiateSolNetworkInstanceOutput {
|
|
880
884
|
/**
|
|
881
|
-
* The identifier of the network
|
|
885
|
+
* The identifier of the network operation.
|
|
882
886
|
*/
|
|
883
887
|
nsLcmOpOccId: NsLcmOpOccId;
|
|
888
|
+
/**
|
|
889
|
+
* A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are transferred to the network operation that is created. Use tags to search and filter your resources or track your Amazon Web Services costs.
|
|
890
|
+
*/
|
|
891
|
+
tags?: TagMap;
|
|
884
892
|
}
|
|
885
893
|
export interface LcmOperationInfo {
|
|
886
894
|
/**
|
|
887
|
-
* The identifier of the
|
|
895
|
+
* The identifier of the network operation.
|
|
888
896
|
*/
|
|
889
897
|
nsLcmOpOccId: NsLcmOpOccId;
|
|
890
898
|
}
|
|
@@ -1397,12 +1405,20 @@ declare namespace Tnb {
|
|
|
1397
1405
|
* ID of the network instance.
|
|
1398
1406
|
*/
|
|
1399
1407
|
nsInstanceId: NsInstanceId;
|
|
1408
|
+
/**
|
|
1409
|
+
* A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are transferred to the network operation that is created. Use tags to search and filter your resources or track your Amazon Web Services costs.
|
|
1410
|
+
*/
|
|
1411
|
+
tags?: TagMap;
|
|
1400
1412
|
}
|
|
1401
1413
|
export interface TerminateSolNetworkInstanceOutput {
|
|
1402
1414
|
/**
|
|
1403
|
-
* The identifier of the operation
|
|
1415
|
+
* The identifier of the network operation.
|
|
1404
1416
|
*/
|
|
1405
1417
|
nsLcmOpOccId?: NsLcmOpOccId;
|
|
1418
|
+
/**
|
|
1419
|
+
* A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are transferred to the network operation that is created. Use tags to search and filter your resources or track your Amazon Web Services costs.
|
|
1420
|
+
*/
|
|
1421
|
+
tags?: TagMap;
|
|
1406
1422
|
}
|
|
1407
1423
|
export interface ToscaOverride {
|
|
1408
1424
|
/**
|
|
@@ -1451,6 +1467,10 @@ declare namespace Tnb {
|
|
|
1451
1467
|
* ID of the network instance.
|
|
1452
1468
|
*/
|
|
1453
1469
|
nsInstanceId: NsInstanceId;
|
|
1470
|
+
/**
|
|
1471
|
+
* A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are transferred to the network operation that is created. Use tags to search and filter your resources or track your Amazon Web Services costs.
|
|
1472
|
+
*/
|
|
1473
|
+
tags?: TagMap;
|
|
1454
1474
|
/**
|
|
1455
1475
|
* The type of update.
|
|
1456
1476
|
*/
|
|
@@ -1458,9 +1478,13 @@ declare namespace Tnb {
|
|
|
1458
1478
|
}
|
|
1459
1479
|
export interface UpdateSolNetworkInstanceOutput {
|
|
1460
1480
|
/**
|
|
1461
|
-
* The identifier of the network
|
|
1481
|
+
* The identifier of the network operation.
|
|
1462
1482
|
*/
|
|
1463
1483
|
nsLcmOpOccId?: NsLcmOpOccId;
|
|
1484
|
+
/**
|
|
1485
|
+
* A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are transferred to the network operation that is created. Use tags to search and filter your resources or track your Amazon Web Services costs.
|
|
1486
|
+
*/
|
|
1487
|
+
tags?: TagMap;
|
|
1464
1488
|
}
|
|
1465
1489
|
export interface UpdateSolNetworkModify {
|
|
1466
1490
|
/**
|
|
@@ -36,11 +36,11 @@ declare class Wisdom extends Service {
|
|
|
36
36
|
*/
|
|
37
37
|
createContent(callback?: (err: AWSError, data: Wisdom.Types.CreateContentResponse) => void): Request<Wisdom.Types.CreateContentResponse, AWSError>;
|
|
38
38
|
/**
|
|
39
|
-
* Creates a knowledge base. When using this API, you cannot reuse Amazon AppIntegrations DataIntegrations with external knowledge bases such as Salesforce and ServiceNow. If you do, you'll get an InvalidRequestException error.
|
|
39
|
+
* Creates a knowledge base. When using this API, you cannot reuse Amazon AppIntegrations DataIntegrations with external knowledge bases such as Salesforce and ServiceNow. If you do, you'll get an InvalidRequestException error. For example, you're programmatically managing your external knowledge base, and you want to add or remove one of the fields that is being ingested from Salesforce. Do the following: Call DeleteKnowledgeBase. Call DeleteDataIntegration. Call CreateDataIntegration to recreate the DataIntegration or a create different one. Call CreateKnowledgeBase.
|
|
40
40
|
*/
|
|
41
41
|
createKnowledgeBase(params: Wisdom.Types.CreateKnowledgeBaseRequest, callback?: (err: AWSError, data: Wisdom.Types.CreateKnowledgeBaseResponse) => void): Request<Wisdom.Types.CreateKnowledgeBaseResponse, AWSError>;
|
|
42
42
|
/**
|
|
43
|
-
* Creates a knowledge base. When using this API, you cannot reuse Amazon AppIntegrations DataIntegrations with external knowledge bases such as Salesforce and ServiceNow. If you do, you'll get an InvalidRequestException error.
|
|
43
|
+
* Creates a knowledge base. When using this API, you cannot reuse Amazon AppIntegrations DataIntegrations with external knowledge bases such as Salesforce and ServiceNow. If you do, you'll get an InvalidRequestException error. For example, you're programmatically managing your external knowledge base, and you want to add or remove one of the fields that is being ingested from Salesforce. Do the following: Call DeleteKnowledgeBase. Call DeleteDataIntegration. Call CreateDataIntegration to recreate the DataIntegration or a create different one. Call CreateKnowledgeBase.
|
|
44
44
|
*/
|
|
45
45
|
createKnowledgeBase(callback?: (err: AWSError, data: Wisdom.Types.CreateKnowledgeBaseResponse) => void): Request<Wisdom.Types.CreateKnowledgeBaseResponse, AWSError>;
|
|
46
46
|
/**
|
|
@@ -263,13 +263,13 @@ declare class Wisdom extends Service {
|
|
|
263
263
|
declare namespace Wisdom {
|
|
264
264
|
export interface AppIntegrationsConfiguration {
|
|
265
265
|
/**
|
|
266
|
-
* The Amazon Resource Name (ARN) of the AppIntegrations DataIntegration to use for ingesting content.
|
|
266
|
+
* The Amazon Resource Name (ARN) of the AppIntegrations DataIntegration to use for ingesting content. For Salesforce, your AppIntegrations DataIntegration must have an ObjectConfiguration if objectFields is not provided, including at least Id, ArticleNumber, VersionNumber, Title, PublishStatus, and IsDeleted as source fields. For ServiceNow, your AppIntegrations DataIntegration must have an ObjectConfiguration if objectFields is not provided, including at least number, short_description, sys_mod_count, workflow_state, and active as source fields. For Zendesk, your AppIntegrations DataIntegration must have an ObjectConfiguration if objectFields is not provided, including at least id, title, updated_at, and draft as source fields. For SharePoint, your AppIntegrations DataIntegration must have a FileConfiguration, including only file extensions that are among docx, pdf, html, htm, and txt.
|
|
267
267
|
*/
|
|
268
268
|
appIntegrationArn: GenericArn;
|
|
269
269
|
/**
|
|
270
|
-
* The fields from the source that are made available to your agents in Wisdom. For Salesforce, you must include at least Id, ArticleNumber, VersionNumber, Title, PublishStatus, and IsDeleted. For ServiceNow, you must include at least number, short_description, sys_mod_count, workflow_state, and active. Make sure to include additional fields. These fields are indexed and used to source recommendations.
|
|
270
|
+
* The fields from the source that are made available to your agents in Wisdom. Optional if ObjectConfiguration is included in the provided DataIntegration. For Salesforce, you must include at least Id, ArticleNumber, VersionNumber, Title, PublishStatus, and IsDeleted. For ServiceNow, you must include at least number, short_description, sys_mod_count, workflow_state, and active. For Zendesk, you must include at least id, title, updated_at, and draft. Make sure to include additional fields. These fields are indexed and used to source recommendations.
|
|
271
271
|
*/
|
|
272
|
-
objectFields
|
|
272
|
+
objectFields?: ObjectFieldsList;
|
|
273
273
|
}
|
|
274
274
|
export type Arn = string;
|
|
275
275
|
export interface AssistantAssociationData {
|
|
@@ -560,7 +560,7 @@ declare namespace Wisdom {
|
|
|
560
560
|
*/
|
|
561
561
|
associationType: AssociationType;
|
|
562
562
|
/**
|
|
563
|
-
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
|
|
563
|
+
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.
|
|
564
564
|
*/
|
|
565
565
|
clientToken?: ClientToken;
|
|
566
566
|
/**
|
|
@@ -576,7 +576,7 @@ declare namespace Wisdom {
|
|
|
576
576
|
}
|
|
577
577
|
export interface CreateAssistantRequest {
|
|
578
578
|
/**
|
|
579
|
-
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
|
|
579
|
+
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.
|
|
580
580
|
*/
|
|
581
581
|
clientToken?: ClientToken;
|
|
582
582
|
/**
|
|
@@ -608,7 +608,7 @@ declare namespace Wisdom {
|
|
|
608
608
|
}
|
|
609
609
|
export interface CreateContentRequest {
|
|
610
610
|
/**
|
|
611
|
-
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
|
|
611
|
+
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.
|
|
612
612
|
*/
|
|
613
613
|
clientToken?: NonEmptyString;
|
|
614
614
|
/**
|
|
@@ -648,7 +648,7 @@ declare namespace Wisdom {
|
|
|
648
648
|
}
|
|
649
649
|
export interface CreateKnowledgeBaseRequest {
|
|
650
650
|
/**
|
|
651
|
-
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
|
|
651
|
+
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.
|
|
652
652
|
*/
|
|
653
653
|
clientToken?: NonEmptyString;
|
|
654
654
|
/**
|
|
@@ -692,7 +692,7 @@ declare namespace Wisdom {
|
|
|
692
692
|
*/
|
|
693
693
|
assistantId: UuidOrArn;
|
|
694
694
|
/**
|
|
695
|
-
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
|
|
695
|
+
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.
|
|
696
696
|
*/
|
|
697
697
|
clientToken?: ClientToken;
|
|
698
698
|
/**
|
|
@@ -1272,7 +1272,7 @@ declare namespace Wisdom {
|
|
|
1272
1272
|
}
|
|
1273
1273
|
export interface RenderingConfiguration {
|
|
1274
1274
|
/**
|
|
1275
|
-
* A URI template containing exactly one variable in ${variableName} format. This can only be set for EXTERNAL knowledge bases. For Salesforce and
|
|
1275
|
+
* A URI template containing exactly one variable in ${variableName} format. This can only be set for EXTERNAL knowledge bases. For Salesforce, ServiceNow, and Zendesk, the variable must be one of the following: Salesforce: Id, ArticleNumber, VersionNumber, Title, PublishStatus, or IsDeleted ServiceNow: number, short_description, sys_mod_count, workflow_state, or active Zendesk: id, title, updated_at, or draft The variable is replaced with the actual value for a piece of content when calling GetContent.
|
|
1276
1276
|
*/
|
|
1277
1277
|
templateUri?: Uri;
|
|
1278
1278
|
}
|
|
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
83
83
|
/**
|
|
84
84
|
* @constant
|
|
85
85
|
*/
|
|
86
|
-
VERSION: '2.
|
|
86
|
+
VERSION: '2.1335.0',
|
|
87
87
|
|
|
88
88
|
/**
|
|
89
89
|
* @api private
|
|
@@ -14526,6 +14526,13 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
14526
14526
|
return;
|
|
14527
14527
|
}
|
|
14528
14528
|
|
|
14529
|
+
if (
|
|
14530
|
+
typeof process.env === 'object' &&
|
|
14531
|
+
typeof process.env.AWS_SDK_JS_SUPPRESS_MAINTENANCE_MODE_MESSAGE !== 'undefined'
|
|
14532
|
+
) {
|
|
14533
|
+
return;
|
|
14534
|
+
}
|
|
14535
|
+
|
|
14529
14536
|
if (typeof process.emitWarning === 'function') {
|
|
14530
14537
|
process.emitWarning(warning, {
|
|
14531
14538
|
type: 'NOTE'
|