Skip to content

Commit

Permalink
Merge branch 'release-1.34.36' into develop
Browse files Browse the repository at this point in the history
* release-1.34.36:
  Bumping version to 1.34.36
  Update to latest models
  • Loading branch information
aws-sdk-python-automation committed Feb 6, 2024
2 parents 739ff16 + 859b94b commit 08841cb
Show file tree
Hide file tree
Showing 10 changed files with 570 additions and 19 deletions.
32 changes: 32 additions & 0 deletions .changes/1.34.36.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
[
{
"category": "``appsync``",
"description": "Support for environment variables in AppSync GraphQL APIs",
"type": "api-change"
},
{
"category": "``ecs``",
"description": "This release is a documentation only update to address customer issues.",
"type": "api-change"
},
{
"category": "``es``",
"description": "This release adds clear visibility to the customers on the changes that they make on the domain.",
"type": "api-change"
},
{
"category": "``logs``",
"description": "This release adds a new field, logGroupArn, to the response of the logs:DescribeLogGroups action.",
"type": "api-change"
},
{
"category": "``opensearch``",
"description": "This release adds clear visibility to the customers on the changes that they make on the domain.",
"type": "api-change"
},
{
"category": "``wafv2``",
"description": "You can now delete an API key that you've created for use with your CAPTCHA JavaScript integration API.",
"type": "api-change"
}
]
11 changes: 11 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
CHANGELOG
=========

1.34.36
=======

* api-change:``appsync``: Support for environment variables in AppSync GraphQL APIs
* api-change:``ecs``: This release is a documentation only update to address customer issues.
* api-change:``es``: This release adds clear visibility to the customers on the changes that they make on the domain.
* api-change:``logs``: This release adds a new field, logGroupArn, to the response of the logs:DescribeLogGroups action.
* api-change:``opensearch``: This release adds clear visibility to the customers on the changes that they make on the domain.
* api-change:``wafv2``: You can now delete an API key that you've created for use with your CAPTCHA JavaScript integration API.


1.34.35
=======

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.34.35'
__version__ = '1.34.36'


class NullHandler(logging.Handler):
Expand Down
102 changes: 102 additions & 0 deletions botocore/data/appsync/2017-07-25/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -548,6 +548,23 @@
],
"documentation":"<p>Retrieves a <code>GraphqlApi</code> object.</p>"
},
"GetGraphqlApiEnvironmentVariables":{
"name":"GetGraphqlApiEnvironmentVariables",
"http":{
"method":"GET",
"requestUri":"/v1/apis/{apiId}/environmentVariables"
},
"input":{"shape":"GetGraphqlApiEnvironmentVariablesRequest"},
"output":{"shape":"GetGraphqlApiEnvironmentVariablesResponse"},
"errors":[
{"shape":"BadRequestException"},
{"shape":"NotFoundException"},
{"shape":"UnauthorizedException"},
{"shape":"InternalFailureException"},
{"shape":"AccessDeniedException"}
],
"documentation":"<p>Retrieves the list of environmental variable key-value pairs associated with an API by its ID value.</p>"
},
"GetIntrospectionSchema":{
"name":"GetIntrospectionSchema",
"http":{
Expand Down Expand Up @@ -806,6 +823,24 @@
],
"documentation":"<p>Lists <code>Type</code> objects by the source API association ID.</p>"
},
"PutGraphqlApiEnvironmentVariables":{
"name":"PutGraphqlApiEnvironmentVariables",
"http":{
"method":"PUT",
"requestUri":"/v1/apis/{apiId}/environmentVariables"
},
"input":{"shape":"PutGraphqlApiEnvironmentVariablesRequest"},
"output":{"shape":"PutGraphqlApiEnvironmentVariablesResponse"},
"errors":[
{"shape":"BadRequestException"},
{"shape":"ConcurrentModificationException"},
{"shape":"NotFoundException"},
{"shape":"UnauthorizedException"},
{"shape":"InternalFailureException"},
{"shape":"AccessDeniedException"}
],
"documentation":"<p>Creates a list of environmental variables in an API by its ID value. </p> <p>When creating an environmental variable, it must follow the constraints below:</p> <ul> <li> <p>Both JavaScript and VTL templates support environmental variables.</p> </li> <li> <p>Environmental variables are not evaluated before function invocation.</p> </li> <li> <p>Environmental variables only support string values.</p> </li> <li> <p>Any defined value in an environmental variable is considered a string literal and not expanded.</p> </li> <li> <p>Variable evaluations should ideally be performed in the function code.</p> </li> </ul> <p>When creating an environmental variable key-value pair, it must follow the additional constraints below:</p> <ul> <li> <p>Keys must begin with a letter.</p> </li> <li> <p>Keys must be at least two characters long.</p> </li> <li> <p>Keys can only contain letters, numbers, and the underscore character (_).</p> </li> <li> <p>Values can be up to 512 characters long.</p> </li> <li> <p>You can configure up to 50 key-value pairs in a GraphQL API.</p> </li> </ul> <p>You can create a list of environmental variables by adding it to the <code>environmentVariables</code> payload as a list in the format <code>{\"key1\":\"value1\",\"key2\":\"value2\", …}</code>. Note that each call of the <code>PutGraphqlApiEnvironmentVariables</code> action will result in the overwriting of the existing environmental variable list of that API. This means the existing environmental variables will be lost. To avoid this, you must include all existing and new environmental variables in the list each time you call this action.</p>"
},
"StartDataSourceIntrospection":{
"name":"StartDataSourceIntrospection",
"http":{
Expand Down Expand Up @@ -2547,6 +2582,24 @@
},
"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>"
},
"EnvironmentVariableKey":{
"type":"string",
"max":64,
"min":2,
"pattern":"^[A-Za-z]+\\w*$"
},
"EnvironmentVariableMap":{
"type":"map",
"key":{"shape":"EnvironmentVariableKey"},
"value":{"shape":"EnvironmentVariableValue"},
"max":50,
"min":0
},
"EnvironmentVariableValue":{
"type":"string",
"max":512,
"min":0
},
"ErrorDetail":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -2925,6 +2978,27 @@
}
}
},
"GetGraphqlApiEnvironmentVariablesRequest":{
"type":"structure",
"required":["apiId"],
"members":{
"apiId":{
"shape":"String",
"documentation":"<p>The ID of the API from which the environmental variable list will be retrieved.</p>",
"location":"uri",
"locationName":"apiId"
}
}
},
"GetGraphqlApiEnvironmentVariablesResponse":{
"type":"structure",
"members":{
"environmentVariables":{
"shape":"EnvironmentVariableMap",
"documentation":"<p>The payload containing each environmental variable in the <code>\"key\" : \"value\"</code> format.</p>"
}
}
},
"GetGraphqlApiRequest":{
"type":"structure",
"required":["apiId"],
Expand Down Expand Up @@ -3880,6 +3954,34 @@
},
"documentation":"<p>The pipeline configuration for a resolver of kind <code>PIPELINE</code>.</p>"
},
"PutGraphqlApiEnvironmentVariablesRequest":{
"type":"structure",
"required":[
"apiId",
"environmentVariables"
],
"members":{
"apiId":{
"shape":"String",
"documentation":"<p>The ID of the API to which the environmental variable list will be written.</p>",
"location":"uri",
"locationName":"apiId"
},
"environmentVariables":{
"shape":"EnvironmentVariableMap",
"documentation":"<p>The list of environmental variables to add to the API.</p> <p>When creating an environmental variable key-value pair, it must follow the additional constraints below:</p> <ul> <li> <p>Keys must begin with a letter.</p> </li> <li> <p>Keys must be at least two characters long.</p> </li> <li> <p>Keys can only contain letters, numbers, and the underscore character (_).</p> </li> <li> <p>Values can be up to 512 characters long.</p> </li> <li> <p>You can configure up to 50 key-value pairs in a GraphQL API.</p> </li> </ul> <p>You can create a list of environmental variables by adding it to the <code>environmentVariables</code> payload as a list in the format <code>{\"key1\":\"value1\",\"key2\":\"value2\", …}</code>. Note that each call of the <code>PutGraphqlApiEnvironmentVariables</code> action will result in the overwriting of the existing environmental variable list of that API. This means the existing environmental variables will be lost. To avoid this, you must include all existing and new environmental variables in the list each time you call this action.</p>"
}
}
},
"PutGraphqlApiEnvironmentVariablesResponse":{
"type":"structure",
"members":{
"environmentVariables":{
"shape":"EnvironmentVariableMap",
"documentation":"<p>The payload containing each environmental variable in the <code>\"key\" : \"value\"</code> format.</p>"
}
}
},
"QueryDepthLimit":{
"type":"integer",
"max":75,
Expand Down
Loading

0 comments on commit 08841cb

Please sign in to comment.