cdk-lambda-subminute 2.0.476 → 2.0.478
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 +47 -16
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/Crashpad/settings.dat +0 -0
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +308 -279
- package/node_modules/aws-sdk/apis/email-2010-12-01.min.json +55 -53
- package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +308 -292
- package/node_modules/aws-sdk/apis/lambda-2015-03-31.min.json +134 -124
- package/node_modules/aws-sdk/apis/opensearchserverless-2021-11-01.min.json +11 -1
- package/node_modules/aws-sdk/apis/s3-2006-03-01.examples.json +79 -79
- package/node_modules/aws-sdk/apis/s3-2006-03-01.min.json +188 -180
- package/node_modules/aws-sdk/apis/securityhub-2018-10-26.min.json +3 -3
- package/node_modules/aws-sdk/clients/ec2.d.ts +47 -18
- package/node_modules/aws-sdk/clients/ecs.d.ts +54 -54
- package/node_modules/aws-sdk/clients/glue.d.ts +25 -0
- package/node_modules/aws-sdk/clients/lambda.d.ts +42 -14
- package/node_modules/aws-sdk/clients/opensearchserverless.d.ts +16 -0
- package/node_modules/aws-sdk/clients/s3.d.ts +25 -17
- package/node_modules/aws-sdk/clients/securityhub.d.ts +22 -22
- package/node_modules/aws-sdk/clients/ses.d.ts +7 -2
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +8 -8
- package/node_modules/aws-sdk/dist/aws-sdk.js +688 -639
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +70 -70
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +2 -2
@@ -23,11 +23,11 @@ declare class Lambda extends Service {
|
|
23
23
|
*/
|
24
24
|
addLayerVersionPermission(callback?: (err: AWSError, data: Lambda.Types.AddLayerVersionPermissionResponse) => void): Request<Lambda.Types.AddLayerVersionPermissionResponse, AWSError>;
|
25
25
|
/**
|
26
|
-
* Grants an Amazon Web
|
26
|
+
* Grants an Amazon Web Servicesservice, Amazon Web Services account, or Amazon Web Services organization permission to use a function. You can apply the policy at the function level, or specify a qualifier to restrict access to a single version or alias. If you use a qualifier, the invoker must use the full Amazon Resource Name (ARN) of that version or alias to invoke the function. Note: Lambda does not support adding policies to version $LATEST. To grant permission to another account, specify the account ID as the Principal. To grant permission to an organization defined in Organizations, specify the organization ID as the PrincipalOrgID. For Amazon Web Servicesservices, the principal is a domain-style identifier that the service defines, such as s3.amazonaws.com or sns.amazonaws.com. For Amazon Web Servicesservices, you can also specify the ARN of the associated resource as the SourceArn. If you grant permission to a service principal without specifying the source, other accounts could potentially configure resources in their account to invoke your Lambda function. This operation adds a statement to a resource-based permissions policy for the function. For more information about function policies, see Using resource-based policies for Lambda.
|
27
27
|
*/
|
28
28
|
addPermission(params: Lambda.Types.AddPermissionRequest, callback?: (err: AWSError, data: Lambda.Types.AddPermissionResponse) => void): Request<Lambda.Types.AddPermissionResponse, AWSError>;
|
29
29
|
/**
|
30
|
-
* Grants an Amazon Web
|
30
|
+
* Grants an Amazon Web Servicesservice, Amazon Web Services account, or Amazon Web Services organization permission to use a function. You can apply the policy at the function level, or specify a qualifier to restrict access to a single version or alias. If you use a qualifier, the invoker must use the full Amazon Resource Name (ARN) of that version or alias to invoke the function. Note: Lambda does not support adding policies to version $LATEST. To grant permission to another account, specify the account ID as the Principal. To grant permission to an organization defined in Organizations, specify the organization ID as the PrincipalOrgID. For Amazon Web Servicesservices, the principal is a domain-style identifier that the service defines, such as s3.amazonaws.com or sns.amazonaws.com. For Amazon Web Servicesservices, you can also specify the ARN of the associated resource as the SourceArn. If you grant permission to a service principal without specifying the source, other accounts could potentially configure resources in their account to invoke your Lambda function. This operation adds a statement to a resource-based permissions policy for the function. For more information about function policies, see Using resource-based policies for Lambda.
|
31
31
|
*/
|
32
32
|
addPermission(callback?: (err: AWSError, data: Lambda.Types.AddPermissionResponse) => void): Request<Lambda.Types.AddPermissionResponse, AWSError>;
|
33
33
|
/**
|
@@ -55,11 +55,11 @@ declare class Lambda extends Service {
|
|
55
55
|
*/
|
56
56
|
createEventSourceMapping(callback?: (err: AWSError, data: Lambda.Types.EventSourceMappingConfiguration) => void): Request<Lambda.Types.EventSourceMappingConfiguration, AWSError>;
|
57
57
|
/**
|
58
|
-
* Creates a Lambda function. To create a function, you need a deployment package and an execution role. The deployment package is a .zip file archive or container image that contains your function code. The execution role grants the function permission to use Amazon Web
|
58
|
+
* Creates a Lambda function. To create a function, you need a deployment package and an execution role. The deployment package is a .zip file archive or container image that contains your function code. The execution role grants the function permission to use Amazon Web Servicesservices, such as Amazon CloudWatch Logs for log streaming and X-Ray for request tracing. If the deployment package is a container image, then you set the package type to Image. For a container image, the code property must include the URI of a container image in the Amazon ECR registry. You do not need to specify the handler and runtime properties. If the deployment package is a .zip file archive, then you set the package type to Zip. For a .zip file archive, the code property specifies the location of the .zip file. You must also specify the handler and runtime properties. The code in the deployment package must be compatible with the target instruction set architecture of the function (x86-64 or arm64). If you do not specify the architecture, then the default value is x86-64. When you create a function, Lambda provisions an instance of the function and its supporting resources. If your function connects to a VPC, this process can take a minute or so. During this time, you can't invoke or modify the function. The State, StateReason, and StateReasonCode fields in the response from GetFunctionConfiguration indicate when the function is ready to invoke. For more information, see Lambda function states. A function has an unpublished version, and can have published versions and aliases. The unpublished version changes when you update your function's code and configuration. A published version is a snapshot of your function code and configuration that can't be changed. An alias is a named resource that maps to a version, and can be changed to map to a different version. Use the Publish parameter to create version 1 of your function from its initial configuration. The other parameters let you configure version-specific and function-level settings. You can modify version-specific settings later with UpdateFunctionConfiguration. Function-level settings apply to both the unpublished and published versions of the function, and include tags (TagResource) and per-function concurrency limits (PutFunctionConcurrency). You can use code signing if your deployment package is a .zip file archive. To enable code signing for this function, specify the ARN of a code-signing configuration. When a user attempts to deploy a code package with UpdateFunctionCode, Lambda checks that the code package has a valid signature from a trusted publisher. The code-signing configuration includes set of signing profiles, which define the trusted publishers for this function. If another Amazon Web Services account or an Amazon Web Servicesservice invokes your function, use AddPermission to grant permission by creating a resource-based Identity and Access Management (IAM) policy. You can grant permissions at the function level, on a version, or on an alias. To invoke your function directly, use Invoke. To invoke your function in response to events in other Amazon Web Servicesservices, create an event source mapping (CreateEventSourceMapping), or configure a function trigger in the other service. For more information, see Invoking Lambda functions.
|
59
59
|
*/
|
60
60
|
createFunction(params: Lambda.Types.CreateFunctionRequest, callback?: (err: AWSError, data: Lambda.Types.FunctionConfiguration) => void): Request<Lambda.Types.FunctionConfiguration, AWSError>;
|
61
61
|
/**
|
62
|
-
* Creates a Lambda function. To create a function, you need a deployment package and an execution role. The deployment package is a .zip file archive or container image that contains your function code. The execution role grants the function permission to use Amazon Web
|
62
|
+
* Creates a Lambda function. To create a function, you need a deployment package and an execution role. The deployment package is a .zip file archive or container image that contains your function code. The execution role grants the function permission to use Amazon Web Servicesservices, such as Amazon CloudWatch Logs for log streaming and X-Ray for request tracing. If the deployment package is a container image, then you set the package type to Image. For a container image, the code property must include the URI of a container image in the Amazon ECR registry. You do not need to specify the handler and runtime properties. If the deployment package is a .zip file archive, then you set the package type to Zip. For a .zip file archive, the code property specifies the location of the .zip file. You must also specify the handler and runtime properties. The code in the deployment package must be compatible with the target instruction set architecture of the function (x86-64 or arm64). If you do not specify the architecture, then the default value is x86-64. When you create a function, Lambda provisions an instance of the function and its supporting resources. If your function connects to a VPC, this process can take a minute or so. During this time, you can't invoke or modify the function. The State, StateReason, and StateReasonCode fields in the response from GetFunctionConfiguration indicate when the function is ready to invoke. For more information, see Lambda function states. A function has an unpublished version, and can have published versions and aliases. The unpublished version changes when you update your function's code and configuration. A published version is a snapshot of your function code and configuration that can't be changed. An alias is a named resource that maps to a version, and can be changed to map to a different version. Use the Publish parameter to create version 1 of your function from its initial configuration. The other parameters let you configure version-specific and function-level settings. You can modify version-specific settings later with UpdateFunctionConfiguration. Function-level settings apply to both the unpublished and published versions of the function, and include tags (TagResource) and per-function concurrency limits (PutFunctionConcurrency). You can use code signing if your deployment package is a .zip file archive. To enable code signing for this function, specify the ARN of a code-signing configuration. When a user attempts to deploy a code package with UpdateFunctionCode, Lambda checks that the code package has a valid signature from a trusted publisher. The code-signing configuration includes set of signing profiles, which define the trusted publishers for this function. If another Amazon Web Services account or an Amazon Web Servicesservice invokes your function, use AddPermission to grant permission by creating a resource-based Identity and Access Management (IAM) policy. You can grant permissions at the function level, on a version, or on an alias. To invoke your function directly, use Invoke. To invoke your function in response to events in other Amazon Web Servicesservices, create an event source mapping (CreateEventSourceMapping), or configure a function trigger in the other service. For more information, see Invoking Lambda functions.
|
63
63
|
*/
|
64
64
|
createFunction(callback?: (err: AWSError, data: Lambda.Types.FunctionConfiguration) => void): Request<Lambda.Types.FunctionConfiguration, AWSError>;
|
65
65
|
/**
|
@@ -95,11 +95,11 @@ declare class Lambda extends Service {
|
|
95
95
|
*/
|
96
96
|
deleteEventSourceMapping(callback?: (err: AWSError, data: Lambda.Types.EventSourceMappingConfiguration) => void): Request<Lambda.Types.EventSourceMappingConfiguration, AWSError>;
|
97
97
|
/**
|
98
|
-
* Deletes a Lambda function. To delete a specific function version, use the Qualifier parameter. Otherwise, all versions and aliases are deleted. This doesn't require the user to have explicit permissions for DeleteAlias. To delete Lambda event source mappings that invoke a function, use DeleteEventSourceMapping. For Amazon Web
|
98
|
+
* Deletes a Lambda function. To delete a specific function version, use the Qualifier parameter. Otherwise, all versions and aliases are deleted. This doesn't require the user to have explicit permissions for DeleteAlias. To delete Lambda event source mappings that invoke a function, use DeleteEventSourceMapping. For Amazon Web Servicesservices and resources that invoke your function directly, delete the trigger in the service where you originally configured it.
|
99
99
|
*/
|
100
100
|
deleteFunction(params: Lambda.Types.DeleteFunctionRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
101
101
|
/**
|
102
|
-
* Deletes a Lambda function. To delete a specific function version, use the Qualifier parameter. Otherwise, all versions and aliases are deleted. This doesn't require the user to have explicit permissions for DeleteAlias. To delete Lambda event source mappings that invoke a function, use DeleteEventSourceMapping. For Amazon Web
|
102
|
+
* Deletes a Lambda function. To delete a specific function version, use the Qualifier parameter. Otherwise, all versions and aliases are deleted. This doesn't require the user to have explicit permissions for DeleteAlias. To delete Lambda event source mappings that invoke a function, use DeleteEventSourceMapping. For Amazon Web Servicesservices and resources that invoke your function directly, delete the trigger in the service where you originally configured it.
|
103
103
|
*/
|
104
104
|
deleteFunction(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
105
105
|
/**
|
@@ -479,11 +479,11 @@ declare class Lambda extends Service {
|
|
479
479
|
*/
|
480
480
|
removeLayerVersionPermission(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
481
481
|
/**
|
482
|
-
* Revokes function-use permission from an Amazon Web
|
482
|
+
* Revokes function-use permission from an Amazon Web Servicesservice or another Amazon Web Services account. You can get the ID of the statement from the output of GetPolicy.
|
483
483
|
*/
|
484
484
|
removePermission(params: Lambda.Types.RemovePermissionRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
485
485
|
/**
|
486
|
-
* Revokes function-use permission from an Amazon Web
|
486
|
+
* Revokes function-use permission from an Amazon Web Servicesservice or another Amazon Web Services account. You can get the ID of the statement from the output of GetPolicy.
|
487
487
|
*/
|
488
488
|
removePermission(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
489
489
|
/**
|
@@ -535,11 +535,11 @@ declare class Lambda extends Service {
|
|
535
535
|
*/
|
536
536
|
updateFunctionCode(callback?: (err: AWSError, data: Lambda.Types.FunctionConfiguration) => void): Request<Lambda.Types.FunctionConfiguration, AWSError>;
|
537
537
|
/**
|
538
|
-
* Modify the version-specific settings of a Lambda function. When you update a function, Lambda provisions an instance of the function and its supporting resources. If your function connects to a VPC, this process can take a minute. During this time, you can't modify the function, but you can still invoke it. The LastUpdateStatus, LastUpdateStatusReason, and LastUpdateStatusReasonCode fields in the response from GetFunctionConfiguration indicate when the update is complete and the function is processing events with the new configuration. For more information, see Lambda function states. These settings can vary between versions of a function and are locked when you publish a version. You can't modify the configuration of a published version, only the unpublished version. To configure function concurrency, use PutFunctionConcurrency. To grant invoke permissions to an Amazon Web Services account or Amazon Web
|
538
|
+
* Modify the version-specific settings of a Lambda function. When you update a function, Lambda provisions an instance of the function and its supporting resources. If your function connects to a VPC, this process can take a minute. During this time, you can't modify the function, but you can still invoke it. The LastUpdateStatus, LastUpdateStatusReason, and LastUpdateStatusReasonCode fields in the response from GetFunctionConfiguration indicate when the update is complete and the function is processing events with the new configuration. For more information, see Lambda function states. These settings can vary between versions of a function and are locked when you publish a version. You can't modify the configuration of a published version, only the unpublished version. To configure function concurrency, use PutFunctionConcurrency. To grant invoke permissions to an Amazon Web Services account or Amazon Web Servicesservice, use AddPermission.
|
539
539
|
*/
|
540
540
|
updateFunctionConfiguration(params: Lambda.Types.UpdateFunctionConfigurationRequest, callback?: (err: AWSError, data: Lambda.Types.FunctionConfiguration) => void): Request<Lambda.Types.FunctionConfiguration, AWSError>;
|
541
541
|
/**
|
542
|
-
* Modify the version-specific settings of a Lambda function. When you update a function, Lambda provisions an instance of the function and its supporting resources. If your function connects to a VPC, this process can take a minute. During this time, you can't modify the function, but you can still invoke it. The LastUpdateStatus, LastUpdateStatusReason, and LastUpdateStatusReasonCode fields in the response from GetFunctionConfiguration indicate when the update is complete and the function is processing events with the new configuration. For more information, see Lambda function states. These settings can vary between versions of a function and are locked when you publish a version. You can't modify the configuration of a published version, only the unpublished version. To configure function concurrency, use PutFunctionConcurrency. To grant invoke permissions to an Amazon Web Services account or Amazon Web
|
542
|
+
* Modify the version-specific settings of a Lambda function. When you update a function, Lambda provisions an instance of the function and its supporting resources. If your function connects to a VPC, this process can take a minute. During this time, you can't modify the function, but you can still invoke it. The LastUpdateStatus, LastUpdateStatusReason, and LastUpdateStatusReasonCode fields in the response from GetFunctionConfiguration indicate when the update is complete and the function is processing events with the new configuration. For more information, see Lambda function states. These settings can vary between versions of a function and are locked when you publish a version. You can't modify the configuration of a published version, only the unpublished version. To configure function concurrency, use PutFunctionConcurrency. To grant invoke permissions to an Amazon Web Services account or Amazon Web Servicesservice, use AddPermission.
|
543
543
|
*/
|
544
544
|
updateFunctionConfiguration(callback?: (err: AWSError, data: Lambda.Types.FunctionConfiguration) => void): Request<Lambda.Types.FunctionConfiguration, AWSError>;
|
545
545
|
/**
|
@@ -695,15 +695,15 @@ declare namespace Lambda {
|
|
695
695
|
*/
|
696
696
|
Action: Action;
|
697
697
|
/**
|
698
|
-
* The Amazon Web
|
698
|
+
* The Amazon Web Servicesservice or Amazon Web Services account that invokes the function. If you specify a service, use SourceArn or SourceAccount to limit who can invoke the function through that service.
|
699
699
|
*/
|
700
700
|
Principal: Principal;
|
701
701
|
/**
|
702
|
-
* For Amazon Web
|
702
|
+
* For Amazon Web Servicesservices, the ARN of the Amazon Web Services resource that invokes the function. For example, an Amazon S3 bucket or Amazon SNS topic. Note that Lambda configures the comparison using the StringLike operator.
|
703
703
|
*/
|
704
704
|
SourceArn?: Arn;
|
705
705
|
/**
|
706
|
-
* For Amazon Web
|
706
|
+
* For Amazon Web Servicesservice, the ID of the Amazon Web Services account that owns the resource. Use this together with SourceArn to ensure that the specified account owns the resource. It is possible for an Amazon S3 bucket to be deleted by its owner and recreated by another account.
|
707
707
|
*/
|
708
708
|
SourceAccount?: SourceOwner;
|
709
709
|
/**
|
@@ -999,6 +999,10 @@ declare namespace Lambda {
|
|
999
999
|
* Specific configuration settings for a DocumentDB event source.
|
1000
1000
|
*/
|
1001
1001
|
DocumentDBEventSourceConfig?: DocumentDBEventSourceConfig;
|
1002
|
+
/**
|
1003
|
+
* The ARN of the Key Management Service (KMS) customer managed key that Lambda uses to encrypt your function's filter criteria. By default, Lambda does not encrypt your filter criteria object. Specify this property to encrypt data using your own customer managed key.
|
1004
|
+
*/
|
1005
|
+
KMSKeyArn?: KMSKeyArn;
|
1002
1006
|
}
|
1003
1007
|
export interface CreateFunctionRequest {
|
1004
1008
|
/**
|
@@ -1337,7 +1341,7 @@ declare namespace Lambda {
|
|
1337
1341
|
*/
|
1338
1342
|
EventSourceArn?: Arn;
|
1339
1343
|
/**
|
1340
|
-
* An object that defines the filter criteria that determine whether Lambda should process an event. For more information, see Lambda event filtering.
|
1344
|
+
* An object that defines the filter criteria that determine whether Lambda should process an event. For more information, see Lambda event filtering. If filter criteria is encrypted, this field shows up as null in the response of ListEventSourceMapping API calls. You can view this field in plaintext in the response of GetEventSourceMapping and DeleteEventSourceMapping calls if you have kms:Decrypt permissions for the correct KMS key.
|
1341
1345
|
*/
|
1342
1346
|
FilterCriteria?: FilterCriteria;
|
1343
1347
|
/**
|
@@ -1416,6 +1420,14 @@ declare namespace Lambda {
|
|
1416
1420
|
* Specific configuration settings for a DocumentDB event source.
|
1417
1421
|
*/
|
1418
1422
|
DocumentDBEventSourceConfig?: DocumentDBEventSourceConfig;
|
1423
|
+
/**
|
1424
|
+
* The ARN of the Key Management Service (KMS) customer managed key that Lambda uses to encrypt your function's filter criteria.
|
1425
|
+
*/
|
1426
|
+
KMSKeyArn?: KMSKeyArn;
|
1427
|
+
/**
|
1428
|
+
* An object that contains details about an error related to filter criteria encryption.
|
1429
|
+
*/
|
1430
|
+
FilterCriteriaError?: FilterCriteriaError;
|
1419
1431
|
}
|
1420
1432
|
export type EventSourceMappingsList = EventSourceMappingConfiguration[];
|
1421
1433
|
export type EventSourcePosition = "TRIM_HORIZON"|"LATEST"|"AT_TIMESTAMP"|string;
|
@@ -1444,6 +1456,18 @@ declare namespace Lambda {
|
|
1444
1456
|
*/
|
1445
1457
|
Filters?: FilterList;
|
1446
1458
|
}
|
1459
|
+
export interface FilterCriteriaError {
|
1460
|
+
/**
|
1461
|
+
* The KMS exception that resulted from filter criteria encryption or decryption.
|
1462
|
+
*/
|
1463
|
+
ErrorCode?: FilterCriteriaErrorCode;
|
1464
|
+
/**
|
1465
|
+
* The error message.
|
1466
|
+
*/
|
1467
|
+
Message?: FilterCriteriaErrorMessage;
|
1468
|
+
}
|
1469
|
+
export type FilterCriteriaErrorCode = string;
|
1470
|
+
export type FilterCriteriaErrorMessage = string;
|
1447
1471
|
export type FilterList = Filter[];
|
1448
1472
|
export type FullDocument = "UpdateLookup"|"Default"|string;
|
1449
1473
|
export type FunctionArn = string;
|
@@ -3209,6 +3233,10 @@ declare namespace Lambda {
|
|
3209
3233
|
* Specific configuration settings for a DocumentDB event source.
|
3210
3234
|
*/
|
3211
3235
|
DocumentDBEventSourceConfig?: DocumentDBEventSourceConfig;
|
3236
|
+
/**
|
3237
|
+
* The ARN of the Key Management Service (KMS) customer managed key that Lambda uses to encrypt your function's filter criteria. By default, Lambda does not encrypt your filter criteria object. Specify this property to encrypt data using your own customer managed key.
|
3238
|
+
*/
|
3239
|
+
KMSKeyArn?: KMSKeyArn;
|
3212
3240
|
}
|
3213
3241
|
export interface UpdateFunctionCodeRequest {
|
3214
3242
|
/**
|
@@ -478,6 +478,14 @@ declare namespace OpenSearchServerless {
|
|
478
478
|
* A description of the collection.
|
479
479
|
*/
|
480
480
|
description?: String;
|
481
|
+
/**
|
482
|
+
* A failure code associated with the request.
|
483
|
+
*/
|
484
|
+
failureCode?: String;
|
485
|
+
/**
|
486
|
+
* A message associated with the failure code.
|
487
|
+
*/
|
488
|
+
failureMessage?: String;
|
481
489
|
/**
|
482
490
|
* A unique identifier for the collection.
|
483
491
|
*/
|
@@ -1778,6 +1786,14 @@ declare namespace OpenSearchServerless {
|
|
1778
1786
|
* The date the endpoint was created.
|
1779
1787
|
*/
|
1780
1788
|
createdDate?: Long;
|
1789
|
+
/**
|
1790
|
+
* A failure code associated with the request.
|
1791
|
+
*/
|
1792
|
+
failureCode?: String;
|
1793
|
+
/**
|
1794
|
+
* A message associated with the failure code.
|
1795
|
+
*/
|
1796
|
+
failureMessage?: String;
|
1781
1797
|
/**
|
1782
1798
|
* The unique identifier of the endpoint.
|
1783
1799
|
*/
|