Skip to content

Commit

Permalink
Merge branch 'release-1.34.19'
Browse files Browse the repository at this point in the history
* release-1.34.19:
  Bumping version to 1.34.19
  Update to latest models
  • Loading branch information
aws-sdk-python-automation committed Jan 14, 2024
2 parents 41b3d7d + 8772ddb commit b80c645
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 13 deletions.
7 changes: 7 additions & 0 deletions .changes/1.34.19.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[
{
"category": "``sagemaker``",
"description": "This release will have ValidationException thrown if certain invalid app types are provided. The release will also throw ValidationException if more than 10 account ids are provided in VpcOnlyTrustedAccounts.",
"type": "api-change"
}
]
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
CHANGELOG
=========

1.34.19
=======

* api-change:``sagemaker``: This release will have ValidationException thrown if certain invalid app types are provided. The release will also throw ValidationException if more than 10 account ids are provided in VpcOnlyTrustedAccounts.


1.34.18
=======

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.18'
__version__ = '1.34.19'


class NullHandler(logging.Handler):
Expand Down
18 changes: 7 additions & 11 deletions botocore/data/sagemaker/2017-07-24/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -4120,7 +4120,10 @@
},
"AdditionalS3DataSourceDataType":{
"type":"string",
"enum":["S3Object"]
"enum":[
"S3Object",
"S3Prefix"
]
},
"AgentVersion":{
"type":"structure",
Expand Down Expand Up @@ -4604,17 +4607,11 @@
"KernelGateway",
"DetailedProfiler",
"TensorBoard",
"VSCode",
"Savitur",
"CodeEditor",
"JupyterLab",
"RStudioServerPro",
"RSession",
"RSessionGateway",
"Canvas",
"DatasetManager",
"SageMakerLite",
"Local"
"Canvas"
]
},
"ApprovalDescription":{
Expand Down Expand Up @@ -33475,8 +33472,6 @@
"enum":[
"JupyterServer",
"KernelGateway",
"VSCode",
"Savitur",
"CodeEditor",
"JupyterLab"
]
Expand Down Expand Up @@ -37194,7 +37189,8 @@
},
"VpcOnlyTrustedAccounts":{
"type":"list",
"member":{"shape":"AccountId"}
"member":{"shape":"AccountId"},
"max":10
},
"VpcSecurityGroupIds":{
"type":"list",
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
# The short X.Y version.
version = '1.34.'
# The full version, including alpha/beta/rc tags.
release = '1.34.18'
release = '1.34.19'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down

0 comments on commit b80c645

Please sign in to comment.