Skip to content

Commit

Permalink
Release v1.50.5 (2024-01-26) (#5154)
Browse files Browse the repository at this point in the history
Release v1.50.5 (2024-01-26)
===

### Service Client Updates
* `service/connect`: Updates service API
* `service/inspector2`: Updates service API and documentation
* `service/sagemaker`: Updates service API and documentation
  * Amazon SageMaker Automatic Model Tuning now provides an API to programmatically delete tuning jobs.
  • Loading branch information
aws-sdk-go-automation committed Jan 26, 2024
1 parent d5e1369 commit 32e0058
Show file tree
Hide file tree
Showing 10 changed files with 508 additions and 192 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,12 @@
Release v1.50.5 (2024-01-26)
===

### Service Client Updates
* `service/connect`: Updates service API
* `service/inspector2`: Updates service API and documentation
* `service/sagemaker`: Updates service API and documentation
* Amazon SageMaker Automatic Model Tuning now provides an API to programmatically delete tuning jobs.

Release v1.50.4 (2024-01-25)
===

Expand Down
2 changes: 1 addition & 1 deletion aws/version.go
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.50.4"
const SDKVersion = "1.50.5"
6 changes: 3 additions & 3 deletions models/apis/connect/2017-08-08/api-2.json
Expand Up @@ -11460,7 +11460,7 @@
},
"PredefinedAttributeName":{
"type":"string",
"max":128,
"max":64,
"min":1
},
"PredefinedAttributeSearchConditionList":{
Expand All @@ -11481,13 +11481,13 @@
},
"PredefinedAttributeStringValue":{
"type":"string",
"max":128,
"max":64,
"min":1
},
"PredefinedAttributeStringValuesList":{
"type":"list",
"member":{"shape":"PredefinedAttributeStringValue"},
"max":75,
"max":128,
"min":1
},
"PredefinedAttributeSummary":{
Expand Down
21 changes: 19 additions & 2 deletions models/apis/inspector2/2020-06-08/api-2.json
Expand Up @@ -1894,7 +1894,7 @@
"CisSessionMessages":{
"type":"list",
"member":{"shape":"CisSessionMessage"},
"max":50,
"max":150,
"min":1
},
"CisSortOrder":{
Expand Down Expand Up @@ -2173,6 +2173,7 @@
"ec2InstanceTags":{"shape":"CoverageMapFilterList"},
"ecrImageTags":{"shape":"CoverageStringFilterList"},
"ecrRepositoryName":{"shape":"CoverageStringFilterList"},
"imagePulledAt":{"shape":"CoverageDateFilterList"},
"lambdaFunctionName":{"shape":"CoverageStringFilterList"},
"lambdaFunctionRuntime":{"shape":"CoverageStringFilterList"},
"lambdaFunctionTags":{"shape":"CoverageMapFilterList"},
Expand Down Expand Up @@ -2698,6 +2699,7 @@
"type":"structure",
"required":["rescanDuration"],
"members":{
"pullDateRescanDuration":{"shape":"EcrPullDateRescanDuration"},
"rescanDuration":{"shape":"EcrRescanDuration"}
}
},
Expand All @@ -2710,9 +2712,20 @@
"EcrContainerImageMetadata":{
"type":"structure",
"members":{
"imagePulledAt":{"shape":"DateTimeTimestamp"},
"tags":{"shape":"TagList"}
}
},
"EcrPullDateRescanDuration":{
"type":"string",
"enum":[
"DAYS_14",
"DAYS_30",
"DAYS_60",
"DAYS_90",
"DAYS_180"
]
},
"EcrRepositoryMetadata":{
"type":"structure",
"members":{
Expand All @@ -2725,12 +2738,16 @@
"enum":[
"LIFETIME",
"DAYS_30",
"DAYS_180"
"DAYS_180",
"DAYS_14",
"DAYS_60",
"DAYS_90"
]
},
"EcrRescanDurationState":{
"type":"structure",
"members":{
"pullDateRescanDuration":{"shape":"EcrPullDateRescanDuration"},
"rescanDuration":{"shape":"EcrRescanDuration"},
"status":{"shape":"EcrRescanDurationStatus"},
"updatedAt":{"shape":"DateTimeTimestamp"}
Expand Down
123 changes: 66 additions & 57 deletions models/apis/inspector2/2020-06-08/docs-2.json

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions models/apis/sagemaker/2017-07-24/api-2.json
Expand Up @@ -1012,6 +1012,14 @@
{"shape":"ResourceNotFound"}
]
},
"DeleteHyperParameterTuningJob":{
"name":"DeleteHyperParameterTuningJob",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DeleteHyperParameterTuningJobRequest"}
},
"DeleteImage":{
"name":"DeleteImage",
"http":{
Expand Down Expand Up @@ -8090,6 +8098,13 @@
"members":{
}
},
"DeleteHyperParameterTuningJobRequest":{
"type":"structure",
"required":["HyperParameterTuningJobName"],
"members":{
"HyperParameterTuningJobName":{"shape":"HyperParameterTuningJobName"}
}
},
"DeleteImageRequest":{
"type":"structure",
"required":["ImageName"],
Expand Down
25 changes: 16 additions & 9 deletions models/apis/sagemaker/2017-07-24/docs-2.json

Large diffs are not rendered by default.

0 comments on commit 32e0058

Please sign in to comment.