Skip to content

Commit

Permalink
Merge branch 'release-1.34.160'
Browse files Browse the repository at this point in the history
* release-1.34.160:
  Bumping version to 1.34.160
  Update to latest models
  • Loading branch information
aws-sdk-python-automation committed Aug 13, 2024
2 parents 3b88d71 + 95a2ca4 commit 5f351ef
Show file tree
Hide file tree
Showing 9 changed files with 465 additions and 9 deletions.
27 changes: 27 additions & 0 deletions .changes/1.34.160.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"category": "``amplify``",
"description": "Add a new field \"cacheConfig\" that enables users to configure the CDN cache settings for an App",
"type": "api-change"
},
{
"category": "``appstream``",
"description": "This release includes following new APIs: CreateThemeForStack, DescribeThemeForStack, UpdateThemeForStack, DeleteThemeForStack to support custom branding programmatically.",
"type": "api-change"
},
{
"category": "``fis``",
"description": "This release adds support for additional error information on experiment failure. It adds the error code, location, and account id on relevant failures to the GetExperiment and ListExperiment API responses.",
"type": "api-change"
},
{
"category": "``glue``",
"description": "Add AttributesToGet parameter support for Glue GetTables",
"type": "api-change"
},
{
"category": "``neptune-graph``",
"description": "Amazon Neptune Analytics provides a new option for customers to load data into a graph using the RDF (Resource Description Framework) NTRIPLES format. When loading NTRIPLES files, use the value `convertToIri` for the `blankNodeHandling` parameter.",
"type": "api-change"
}
]
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
CHANGELOG
=========

1.34.160
========

* api-change:``amplify``: Add a new field "cacheConfig" that enables users to configure the CDN cache settings for an App
* api-change:``appstream``: This release includes following new APIs: CreateThemeForStack, DescribeThemeForStack, UpdateThemeForStack, DeleteThemeForStack to support custom branding programmatically.
* api-change:``fis``: This release adds support for additional error information on experiment failure. It adds the error code, location, and account id on relevant failures to the GetExperiment and ListExperiment API responses.
* api-change:``glue``: Add AttributesToGet parameter support for Glue GetTables
* api-change:``neptune-graph``: Amazon Neptune Analytics provides a new option for customers to load data into a graph using the RDF (Resource Description Framework) NTRIPLES format. When loading NTRIPLES files, use the value `convertToIri` for the `blankNodeHandling` parameter.


1.34.159
========

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.159'
__version__ = '1.34.160'


class NullHandler(logging.Handler):
Expand Down
35 changes: 33 additions & 2 deletions botocore/data/amplify/2017-07-25/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"serviceId":"Amplify",
"signatureVersion":"v4",
"signingName":"amplify",
"uid":"amplify-2017-07-25"
"uid":"amplify-2017-07-25",
"auth":["aws.auth#sigv4"]
},
"operations":{
"CreateApp":{
Expand Down Expand Up @@ -747,6 +748,10 @@
"repositoryCloneMethod":{
"shape":"RepositoryCloneMethod",
"documentation":"<note> <p>This is for internal use.</p> </note> <p>The Amplify service uses this parameter to specify the authentication protocol to use to access the Git repository for an Amplify app. Amplify specifies <code>TOKEN</code> for a GitHub repository, <code>SIGV4</code> for an Amazon Web Services CodeCommit repository, and <code>SSH</code> for GitLab and Bitbucket repositories.</p>"
},
"cacheConfig":{
"shape":"CacheConfig",
"documentation":"<p>The cache configuration for the Amplify app. If you don't specify the cache configuration <code>type</code>, Amplify uses the default <code>AMPLIFY_MANAGED</code> setting.</p>"
}
},
"documentation":"<p>Represents the different branches of a repository for building, deploying, and hosting an Amplify app. </p>"
Expand Down Expand Up @@ -1113,13 +1118,31 @@
"pattern":"(?s).+",
"sensitive":true
},
"CacheConfig":{
"type":"structure",
"required":["type"],
"members":{
"type":{
"shape":"CacheConfigType",
"documentation":"<p>The type of cache configuration to use for an Amplify app.</p> <p>The <code>AMPLIFY_MANAGED</code> cache configuration automatically applies an optimized cache configuration for your app based on its platform, routing rules, and rewrite rules. This is the default setting.</p> <p>The <code>AMPLIFY_MANAGED_NO_COOKIES</code> cache configuration type is the same as <code>AMPLIFY_MANAGED</code>, except that it excludes all cookies from the cache key.</p>"
}
},
"documentation":"<p>Describes the cache configuration for an Amplify app.</p> <p>For more information about how Amplify applies an optimal cache configuration for your app based on the type of content that is being served, see <a href=\"https://docs.aws.amazon.com/amplify/latest/userguide/managing-cache-configuration\">Managing cache configuration</a> in the <i>Amplify User guide</i>.</p>"
},
"CacheConfigType":{
"type":"string",
"enum":[
"AMPLIFY_MANAGED",
"AMPLIFY_MANAGED_NO_COOKIES"
]
},
"Certificate":{
"type":"structure",
"required":["type"],
"members":{
"type":{
"shape":"CertificateType",
"documentation":"<p>The type of SSL/TLS certificate that you want to use.</p> <p>Specify <code>AMPLIFY_MANAGED</code> to use the default certificate that Amplify provisions for you.</p> <p>Specify <code>CUSTOM</code> to use your own certificate that you have already added to Certificate Manager in your Amazon Web Services account. Make sure you request (or import) the certificate in the US East (N. Virginia) Region (us-east-1). For more information about using ACM, see <a href=\"https://docs.aws.amazon.com/acm/latest/userguide/import-certificate.html\">Importing certificates into Certificate Manager</a> in the <i>ACM User guide</i> .</p>"
"documentation":"<p>The type of SSL/TLS certificate that you want to use.</p> <p>Specify <code>AMPLIFY_MANAGED</code> to use the default certificate that Amplify provisions for you.</p> <p>Specify <code>CUSTOM</code> to use your own certificate that you have already added to Certificate Manager in your Amazon Web Services account. Make sure you request (or import) the certificate in the US East (N. Virginia) Region (us-east-1). For more information about using ACM, see <a href=\"https://docs.aws.amazon.com/acm/latest/userguide/import-certificate.html\">Importing certificates into Certificate Manager</a> in the <i>ACM User guide</i>.</p>"
},
"customCertificateArn":{
"shape":"CertificateArn",
Expand Down Expand Up @@ -1262,6 +1285,10 @@
"autoBranchCreationConfig":{
"shape":"AutoBranchCreationConfig",
"documentation":"<p>The automated branch creation configuration for an Amplify app. </p>"
},
"cacheConfig":{
"shape":"CacheConfig",
"documentation":"<p>The cache configuration for the Amplify app.</p>"
}
},
"documentation":"<p>The request structure used to create apps in Amplify. </p>"
Expand Down Expand Up @@ -3275,6 +3302,10 @@
"accessToken":{
"shape":"AccessToken",
"documentation":"<p>The personal access token for a GitHub repository for an Amplify app. The personal access token is used to authorize access to a GitHub repository using the Amplify GitHub App. The token is not stored.</p> <p>Use <code>accessToken</code> for GitHub repositories only. To authorize access to a repository provider such as Bitbucket or CodeCommit, use <code>oauthToken</code>.</p> <p>You must specify either <code>accessToken</code> or <code>oauthToken</code> when you update an app.</p> <p>Existing Amplify apps deployed from a GitHub repository using OAuth continue to work with CI/CD. However, we strongly recommend that you migrate these apps to use the GitHub App. For more information, see <a href=\"https://docs.aws.amazon.com/amplify/latest/userguide/setting-up-GitHub-access.html#migrating-to-github-app-auth\">Migrating an existing OAuth app to the Amplify GitHub App</a> in the <i>Amplify User Guide</i> .</p>"
},
"cacheConfig":{
"shape":"CacheConfig",
"documentation":"<p>The cache configuration for the Amplify app.</p>"
}
},
"documentation":"<p>The request structure for the update app request. </p>"
Expand Down
Loading

0 comments on commit 5f351ef

Please sign in to comment.