Skip to content

Commit 32e0058

Browse files
Release v1.50.5 (2024-01-26) (#5154)
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.
1 parent d5e1369 commit 32e0058

File tree

10 files changed

+508
-192
lines changed

10 files changed

+508
-192
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
Release v1.50.5 (2024-01-26)
2+
===
3+
4+
### Service Client Updates
5+
* `service/connect`: Updates service API
6+
* `service/inspector2`: Updates service API and documentation
7+
* `service/sagemaker`: Updates service API and documentation
8+
* Amazon SageMaker Automatic Model Tuning now provides an API to programmatically delete tuning jobs.
9+
110
Release v1.50.4 (2024-01-25)
211
===
312

aws/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ package aws
55
const SDKName = "aws-sdk-go"
66

77
// SDKVersion is the version of this SDK
8-
const SDKVersion = "1.50.4"
8+
const SDKVersion = "1.50.5"

models/apis/connect/2017-08-08/api-2.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11460,7 +11460,7 @@
1146011460
},
1146111461
"PredefinedAttributeName":{
1146211462
"type":"string",
11463-
"max":128,
11463+
"max":64,
1146411464
"min":1
1146511465
},
1146611466
"PredefinedAttributeSearchConditionList":{
@@ -11481,13 +11481,13 @@
1148111481
},
1148211482
"PredefinedAttributeStringValue":{
1148311483
"type":"string",
11484-
"max":128,
11484+
"max":64,
1148511485
"min":1
1148611486
},
1148711487
"PredefinedAttributeStringValuesList":{
1148811488
"type":"list",
1148911489
"member":{"shape":"PredefinedAttributeStringValue"},
11490-
"max":75,
11490+
"max":128,
1149111491
"min":1
1149211492
},
1149311493
"PredefinedAttributeSummary":{

models/apis/inspector2/2020-06-08/api-2.json

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1894,7 +1894,7 @@
18941894
"CisSessionMessages":{
18951895
"type":"list",
18961896
"member":{"shape":"CisSessionMessage"},
1897-
"max":50,
1897+
"max":150,
18981898
"min":1
18991899
},
19001900
"CisSortOrder":{
@@ -2173,6 +2173,7 @@
21732173
"ec2InstanceTags":{"shape":"CoverageMapFilterList"},
21742174
"ecrImageTags":{"shape":"CoverageStringFilterList"},
21752175
"ecrRepositoryName":{"shape":"CoverageStringFilterList"},
2176+
"imagePulledAt":{"shape":"CoverageDateFilterList"},
21762177
"lambdaFunctionName":{"shape":"CoverageStringFilterList"},
21772178
"lambdaFunctionRuntime":{"shape":"CoverageStringFilterList"},
21782179
"lambdaFunctionTags":{"shape":"CoverageMapFilterList"},
@@ -2698,6 +2699,7 @@
26982699
"type":"structure",
26992700
"required":["rescanDuration"],
27002701
"members":{
2702+
"pullDateRescanDuration":{"shape":"EcrPullDateRescanDuration"},
27012703
"rescanDuration":{"shape":"EcrRescanDuration"}
27022704
}
27032705
},
@@ -2710,9 +2712,20 @@
27102712
"EcrContainerImageMetadata":{
27112713
"type":"structure",
27122714
"members":{
2715+
"imagePulledAt":{"shape":"DateTimeTimestamp"},
27132716
"tags":{"shape":"TagList"}
27142717
}
27152718
},
2719+
"EcrPullDateRescanDuration":{
2720+
"type":"string",
2721+
"enum":[
2722+
"DAYS_14",
2723+
"DAYS_30",
2724+
"DAYS_60",
2725+
"DAYS_90",
2726+
"DAYS_180"
2727+
]
2728+
},
27162729
"EcrRepositoryMetadata":{
27172730
"type":"structure",
27182731
"members":{
@@ -2725,12 +2738,16 @@
27252738
"enum":[
27262739
"LIFETIME",
27272740
"DAYS_30",
2728-
"DAYS_180"
2741+
"DAYS_180",
2742+
"DAYS_14",
2743+
"DAYS_60",
2744+
"DAYS_90"
27292745
]
27302746
},
27312747
"EcrRescanDurationState":{
27322748
"type":"structure",
27332749
"members":{
2750+
"pullDateRescanDuration":{"shape":"EcrPullDateRescanDuration"},
27342751
"rescanDuration":{"shape":"EcrRescanDuration"},
27352752
"status":{"shape":"EcrRescanDurationStatus"},
27362753
"updatedAt":{"shape":"DateTimeTimestamp"}

models/apis/inspector2/2020-06-08/docs-2.json

Lines changed: 66 additions & 57 deletions
Large diffs are not rendered by default.

models/apis/sagemaker/2017-07-24/api-2.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1012,6 +1012,14 @@
10121012
{"shape":"ResourceNotFound"}
10131013
]
10141014
},
1015+
"DeleteHyperParameterTuningJob":{
1016+
"name":"DeleteHyperParameterTuningJob",
1017+
"http":{
1018+
"method":"POST",
1019+
"requestUri":"/"
1020+
},
1021+
"input":{"shape":"DeleteHyperParameterTuningJobRequest"}
1022+
},
10151023
"DeleteImage":{
10161024
"name":"DeleteImage",
10171025
"http":{
@@ -8090,6 +8098,13 @@
80908098
"members":{
80918099
}
80928100
},
8101+
"DeleteHyperParameterTuningJobRequest":{
8102+
"type":"structure",
8103+
"required":["HyperParameterTuningJobName"],
8104+
"members":{
8105+
"HyperParameterTuningJobName":{"shape":"HyperParameterTuningJobName"}
8106+
}
8107+
},
80938108
"DeleteImageRequest":{
80948109
"type":"structure",
80958110
"required":["ImageName"],

models/apis/sagemaker/2017-07-24/docs-2.json

Lines changed: 16 additions & 9 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)