Skip to content

Commit

Permalink
Merge branch 'release-1.27.38' into develop
Browse files Browse the repository at this point in the history
* release-1.27.38:
  Bumping version to 1.27.38
  Update to latest models
  • Loading branch information
aws-sdk-python-automation committed Jul 26, 2022
2 parents 4d1f115 + e5a6890 commit cd4e3ee
Show file tree
Hide file tree
Showing 16 changed files with 3,526 additions and 155 deletions.
47 changes: 47 additions & 0 deletions .changes/1.27.38.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
[
{
"category": "``appsync``",
"description": "Adds support for a new API to evaluate mapping templates with mock data, allowing you to remotely unit test your AppSync resolvers and functions.",
"type": "api-change"
},
{
"category": "``detective``",
"description": "Added the ability to get data source package information for the behavior graph. Graph administrators can now start (or stop) optional datasources on the behavior graph.",
"type": "api-change"
},
{
"category": "``guardduty``",
"description": "Amazon GuardDuty introduces a new Malware Protection feature that triggers malware scan on selected EC2 instance resources, after the service detects a potentially malicious activity.",
"type": "api-change"
},
{
"category": "``lookoutvision``",
"description": "This release introduces support for the automatic scaling of inference units used by Amazon Lookout for Vision models.",
"type": "api-change"
},
{
"category": "``macie2``",
"description": "This release adds support for retrieving (revealing) sample occurrences of sensitive data that Amazon Macie detects and reports in findings.",
"type": "api-change"
},
{
"category": "``rds``",
"description": "Adds support for using RDS Proxies with RDS for MariaDB databases.",
"type": "api-change"
},
{
"category": "``rekognition``",
"description": "This release introduces support for the automatic scaling of inference units used by Amazon Rekognition Custom Labels models.",
"type": "api-change"
},
{
"category": "``securityhub``",
"description": "Documentation updates for AWS Security Hub",
"type": "api-change"
},
{
"category": "``transfer``",
"description": "AWS Transfer Family now supports Applicability Statement 2 (AS2), a network protocol used for the secure and reliable transfer of critical Business-to-Business (B2B) data over the public internet using HTTP/HTTPS as the transport mechanism.",
"type": "api-change"
}
]
14 changes: 14 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@
CHANGELOG
=========

1.27.38
=======

* api-change:``appsync``: Adds support for a new API to evaluate mapping templates with mock data, allowing you to remotely unit test your AppSync resolvers and functions.
* api-change:``detective``: Added the ability to get data source package information for the behavior graph. Graph administrators can now start (or stop) optional datasources on the behavior graph.
* api-change:``guardduty``: Amazon GuardDuty introduces a new Malware Protection feature that triggers malware scan on selected EC2 instance resources, after the service detects a potentially malicious activity.
* api-change:``lookoutvision``: This release introduces support for the automatic scaling of inference units used by Amazon Lookout for Vision models.
* api-change:``macie2``: This release adds support for retrieving (revealing) sample occurrences of sensitive data that Amazon Macie detects and reports in findings.
* api-change:``rds``: Adds support for using RDS Proxies with RDS for MariaDB databases.
* api-change:``rekognition``: This release introduces support for the automatic scaling of inference units used by Amazon Rekognition Custom Labels models.
* api-change:``securityhub``: Documentation updates for AWS Security Hub
* api-change:``transfer``: AWS Transfer Family now supports Applicability Statement 2 (AS2), a network protocol used for the secure and reliable transfer of critical Business-to-Business (B2B) data over the public internet using HTTP/HTTPS as the transport mechanism.


1.27.37
=======

Expand Down
2 changes: 1 addition & 1 deletion botocore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import os
import re

__version__ = '1.27.37'
__version__ = '1.27.38'


class NullHandler(logging.Handler):
Expand Down
78 changes: 76 additions & 2 deletions botocore/data/appsync/2017-07-25/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,21 @@
],
"documentation":"<p>Removes an <code>ApiAssociation</code> object from a custom domain.</p>"
},
"EvaluateMappingTemplate":{
"name":"EvaluateMappingTemplate",
"http":{
"method":"POST",
"requestUri":"/v1/dataplane-evaluatetemplate"
},
"input":{"shape":"EvaluateMappingTemplateRequest"},
"output":{"shape":"EvaluateMappingTemplateResponse"},
"errors":[
{"shape":"AccessDeniedException"},
{"shape":"InternalFailureException"},
{"shape":"BadRequestException"}
],
"documentation":"<p>Evaluates a given template and returns the response. The mapping template can be a request or response template.</p> <p>Request templates take the incoming request after a GraphQL operation is parsed and convert it into a request configuration for the selected data source operation. Response templates interpret responses from the data source and map it to the shape of the GraphQL field output type.</p> <p>Mapping templates are written in the Apache Velocity Template Language (VTL).</p>"
},
"FlushApiCache":{
"name":"FlushApiCache",
"http":{
Expand Down Expand Up @@ -1101,6 +1116,7 @@
"BooleanValue":{"type":"boolean"},
"CachingConfig":{
"type":"structure",
"required":["ttl"],
"members":{
"ttl":{
"shape":"Long",
Expand Down Expand Up @@ -1140,7 +1156,7 @@
},
"appIdClientRegex":{
"shape":"String",
"documentation":"<p>A regular expression for validating the incoming Amazon Cognito user pool app client ID.</p>"
"documentation":"<p>A regular expression for validating the incoming Amazon Cognito user pool app client ID. If this value isn't set, no filtering is applied.</p>"
}
},
"documentation":"<p>Describes an Amazon Cognito user pool configuration.</p>"
Expand Down Expand Up @@ -1170,6 +1186,12 @@
"NONE"
]
},
"Context":{
"type":"string",
"max":28000,
"min":2,
"pattern":"^[\\s\\S]*$"
},
"CreateApiCacheRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -1939,7 +1961,53 @@
},
"documentation":"<p>Describes an OpenSearch data source configuration.</p> <p>As of September 2021, Amazon Elasticsearch service is Amazon OpenSearch Service. This configuration is deprecated. For new data sources, use <a>OpenSearchServiceDataSourceConfig</a> to specify an OpenSearch data source.</p>"
},
"ErrorDetail":{
"type":"structure",
"members":{
"message":{
"shape":"ErrorMessage",
"documentation":"<p>The error payload.</p>"
}
},
"documentation":"<p>Contains the list of errors generated when attempting to evaluate a mapping template.</p>"
},
"ErrorMessage":{"type":"string"},
"EvaluateMappingTemplateRequest":{
"type":"structure",
"required":[
"template",
"context"
],
"members":{
"template":{
"shape":"Template",
"documentation":"<p>The mapping template; this can be a request or response template. A <code>template</code> is required for this action.</p>"
},
"context":{
"shape":"Context",
"documentation":"<p>The map that holds all of the contextual information for your resolver invocation. A <code>context</code> is required for this action.</p>"
}
}
},
"EvaluateMappingTemplateResponse":{
"type":"structure",
"members":{
"evaluationResult":{
"shape":"EvaluationResult",
"documentation":"<p>The mapping template; this can be a request or response template.</p>"
},
"error":{
"shape":"ErrorDetail",
"documentation":"<p>The <code>ErrorDetail</code> object.</p>"
}
}
},
"EvaluationResult":{
"type":"string",
"max":65536,
"min":0,
"pattern":"^[\\s\\S]*$"
},
"FieldLogLevel":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -3122,6 +3190,12 @@
"max":256,
"pattern":"^[\\s\\w+-=\\.:/@]*$"
},
"Template":{
"type":"string",
"max":65536,
"min":2,
"pattern":"^[\\s\\S]*$"
},
"Type":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -3612,7 +3686,7 @@
},
"appIdClientRegex":{
"shape":"String",
"documentation":"<p>A regular expression for validating the incoming Amazon Cognito user pool app client ID.</p>"
"documentation":"<p>A regular expression for validating the incoming Amazon Cognito user pool app client ID. If this value isn't set, no filtering is applied.</p>"
}
},
"documentation":"<p>Describes an Amazon Cognito user pool configuration.</p>"
Expand Down
Loading

0 comments on commit cd4e3ee

Please sign in to comment.