Skip to content

Commit

Permalink
Release v1.49.12 (2023-12-28) (#5128)
Browse files Browse the repository at this point in the history
Release v1.49.12 (2023-12-28)
===

### Service Client Updates
* `service/codestar-connections`: Updates service API
* `service/kinesis-video-archived-media`: Updates service API and documentation
* `service/sagemaker`: Updates service API and documentation
  * Amazon SageMaker Studio now supports Docker access from within app container
  • Loading branch information
aws-sdk-go-automation committed Dec 28, 2023
1 parent 87a19cc commit 8d4f0ae
Show file tree
Hide file tree
Showing 14 changed files with 310 additions and 227 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Release v1.49.12 (2023-12-28)
===

### Service Client Updates
* `service/codestar-connections`: Updates service API
* `service/kinesis-video-archived-media`: Updates service API and documentation
* `service/sagemaker`: Updates service API and documentation
* Amazon SageMaker Studio now supports Docker access from within app container

Release v1.49.11 (2023-12-27)
===

Expand Down
9 changes: 9 additions & 0 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.49.11"
const SDKVersion = "1.49.12"
3 changes: 2 additions & 1 deletion models/apis/codestar-connections/2019-12-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -981,7 +981,8 @@
"Bitbucket",
"GitHub",
"GitHubEnterpriseServer",
"GitLab"
"GitLab",
"GitLabSelfManaged"
]
},
"RepositoryLinkArn":{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@
{"shape":"ResourceNotFoundException"},
{"shape":"InvalidArgumentException"},
{"shape":"ClientLimitExceededException"},
{"shape":"NotAuthorizedException"}
{"shape":"NotAuthorizedException"},
{"shape":"NoDataRetentionException"}
]
},
"GetMediaForFragmentList":{
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

17 changes: 15 additions & 2 deletions models/apis/sagemaker/2017-07-24/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -10525,6 +10525,13 @@
"TrialArn":{"shape":"TrialArn"}
}
},
"DockerSettings":{
"type":"structure",
"members":{
"EnableDockerAccess":{"shape":"FeatureStatus"},
"VpcOnlyTrustedAccounts":{"shape":"VpcOnlyTrustedAccounts"}
}
},
"DocumentSchemaVersion":{
"type":"string",
"max":14,
Expand Down Expand Up @@ -10577,15 +10584,17 @@
"members":{
"SecurityGroupIds":{"shape":"DomainSecurityGroupIds"},
"RStudioServerProDomainSettings":{"shape":"RStudioServerProDomainSettings"},
"ExecutionRoleIdentityConfig":{"shape":"ExecutionRoleIdentityConfig"}
"ExecutionRoleIdentityConfig":{"shape":"ExecutionRoleIdentityConfig"},
"DockerSettings":{"shape":"DockerSettings"}
}
},
"DomainSettingsForUpdate":{
"type":"structure",
"members":{
"RStudioServerProDomainSettingsForUpdate":{"shape":"RStudioServerProDomainSettingsForUpdate"},
"ExecutionRoleIdentityConfig":{"shape":"ExecutionRoleIdentityConfig"},
"SecurityGroupIds":{"shape":"DomainSecurityGroupIds"}
"SecurityGroupIds":{"shape":"DomainSecurityGroupIds"},
"DockerSettings":{"shape":"DockerSettings"}
}
},
"DomainStatus":{
Expand Down Expand Up @@ -22835,6 +22844,10 @@
"max":32,
"pattern":"[-0-9a-zA-Z]+"
},
"VpcOnlyTrustedAccounts":{
"type":"list",
"member":{"shape":"AccountId"}
},
"VpcSecurityGroupIds":{
"type":"list",
"member":{"shape":"SecurityGroupId"},
Expand Down
17 changes: 16 additions & 1 deletion models/apis/sagemaker/2017-07-24/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,8 @@
"AccountId": {
"base": null,
"refs": {
"LabelingJobForWorkteamSummary$WorkRequesterAccountId": "<p>The Amazon Web Services account ID of the account used to start the labeling job.</p>"
"LabelingJobForWorkteamSummary$WorkRequesterAccountId": "<p>The Amazon Web Services account ID of the account used to start the labeling job.</p>",
"VpcOnlyTrustedAccounts$member": null
}
},
"ActionArn": {
Expand Down Expand Up @@ -4701,6 +4702,13 @@
"refs": {
}
},
"DockerSettings": {
"base": "<p>A collection of settings that configure the domain's Docker interaction.</p>",
"refs": {
"DomainSettings$DockerSettings": "<p>A collection of settings that configure the domain's Docker interaction.</p>",
"DomainSettingsForUpdate$DockerSettings": "<p>A collection of settings that configure the domain's Docker interaction.</p>"
}
},
"DocumentSchemaVersion": {
"base": null,
"refs": {
Expand Down Expand Up @@ -5929,6 +5937,7 @@
"base": null,
"refs": {
"DirectDeploySettings$Status": "<p>Describes whether model deployment permissions are enabled or disabled in the Canvas application.</p>",
"DockerSettings$EnableDockerAccess": "<p>Indicates whether the domain can access Docker.</p>",
"IdentityProviderOAuthSetting$Status": "<p>Describes whether OAuth for a data source is enabled or disabled in the Canvas application.</p>",
"KendraSettings$Status": "<p>Describes whether the document querying feature is enabled or disabled in the Canvas application.</p>",
"ModelRegisterSettings$Status": "<p>Describes whether the integration to the model registry is enabled or disabled in the Canvas application.</p>",
Expand Down Expand Up @@ -16312,6 +16321,12 @@
"DescribeDomainResponse$VpcId": "<p>The ID of the Amazon Virtual Private Cloud (VPC) that the domain uses for communication.</p>"
}
},
"VpcOnlyTrustedAccounts": {
"base": null,
"refs": {
"DockerSettings$VpcOnlyTrustedAccounts": "<p>The list of Amazon Web Services accounts that are trusted when the domain is created in VPC-only mode.</p>"
}
},
"VpcSecurityGroupIds": {
"base": null,
"refs": {
Expand Down
3 changes: 3 additions & 0 deletions models/endpoints/endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -11619,6 +11619,7 @@
"ap-south-1" : { },
"ap-southeast-1" : { },
"ap-southeast-2" : { },
"ap-southeast-4" : { },
"ca-central-1" : { },
"eu-central-1" : { },
"eu-north-1" : { },
Expand All @@ -11640,6 +11641,7 @@
"ap-south-1" : { },
"ap-southeast-1" : { },
"ap-southeast-2" : { },
"ap-southeast-4" : { },
"ca-central-1" : { },
"eu-central-1" : { },
"eu-north-1" : { },
Expand All @@ -11661,6 +11663,7 @@
"ap-south-1" : { },
"ap-southeast-1" : { },
"ap-southeast-2" : { },
"ap-southeast-4" : { },
"ca-central-1" : { },
"eu-central-1" : { },
"eu-north-1" : { },
Expand Down
4 changes: 4 additions & 0 deletions service/codestarconnections/api.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 18 additions & 14 deletions service/kinesisvideoarchivedmedia/api.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions service/kinesisvideoarchivedmedia/errors.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

60 changes: 60 additions & 0 deletions service/sagemaker/api.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8d4f0ae

Please sign in to comment.