Skip to content

Commit

Permalink
Release v1.44.268 (2023-05-23) (#4852)
Browse files Browse the repository at this point in the history
Release v1.44.268 (2023-05-23)
===

### Service Client Updates
* `service/fms`: Updates service API
* `service/sagemaker`: Updates service API and documentation
  * Added ModelNameEquals, ModelPackageVersionArnEquals in request and ModelName, SamplePayloadUrl, ModelPackageVersionArn in response of ListInferenceRecommendationsJobs API. Added Invocation timestamps in response of DescribeInferenceRecommendationsJob API & ListInferenceRecommendationsJobSteps API.
* `service/translate`: Updates service API and documentation
  • Loading branch information
aws-sdk-go-automation committed May 23, 2023
1 parent 4b1b9ad commit b7c0f67
Show file tree
Hide file tree
Showing 16 changed files with 1,200 additions and 863 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.44.268 (2023-05-23)
===

### Service Client Updates
* `service/fms`: Updates service API
* `service/sagemaker`: Updates service API and documentation
* Added ModelNameEquals, ModelPackageVersionArnEquals in request and ModelName, SamplePayloadUrl, ModelPackageVersionArn in response of ListInferenceRecommendationsJobs API. Added Invocation timestamps in response of DescribeInferenceRecommendationsJob API & ListInferenceRecommendationsJobSteps API.
* `service/translate`: Updates service API and documentation

Release v1.44.267 (2023-05-22)
===

Expand Down
101 changes: 59 additions & 42 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.44.267"
const SDKVersion = "1.44.268"
6 changes: 4 additions & 2 deletions models/apis/fms/2018-01-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,8 @@
{"shape":"InvalidOperationException"},
{"shape":"InvalidInputException"},
{"shape":"ResourceNotFoundException"},
{"shape":"InternalErrorException"}
{"shape":"InternalErrorException"},
{"shape":"LimitExceededException"}
]
},
"GetAppsList":{
Expand Down Expand Up @@ -340,7 +341,8 @@
"errors":[
{"shape":"InvalidOperationException"},
{"shape":"ResourceNotFoundException"},
{"shape":"InternalErrorException"}
{"shape":"InternalErrorException"},
{"shape":"LimitExceededException"}
]
},
"ListAdminsManagingAccount":{
Expand Down
19 changes: 15 additions & 4 deletions models/apis/sagemaker/2017-07-24/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -11879,7 +11879,9 @@
"Metrics":{"shape":"RecommendationMetrics"},
"EndpointConfiguration":{"shape":"EndpointOutputConfiguration"},
"ModelConfiguration":{"shape":"ModelConfiguration"},
"RecommendationId":{"shape":"String"}
"RecommendationId":{"shape":"String"},
"InvocationEndTime":{"shape":"InvocationEndTime"},
"InvocationStartTime":{"shape":"InvocationStartTime"}
}
},
"InferenceRecommendations":{
Expand Down Expand Up @@ -11910,7 +11912,10 @@
"CompletionTime":{"shape":"Timestamp"},
"RoleArn":{"shape":"RoleArn"},
"LastModifiedTime":{"shape":"LastModifiedTime"},
"FailureReason":{"shape":"FailureReason"}
"FailureReason":{"shape":"FailureReason"},
"ModelName":{"shape":"ModelName"},
"SamplePayloadUrl":{"shape":"S3Uri"},
"ModelPackageVersionArn":{"shape":"ModelPackageArn"}
}
},
"InferenceRecommendationsJobStep":{
Expand Down Expand Up @@ -12139,6 +12144,8 @@
"min":0
},
"IntegerValue":{"type":"integer"},
"InvocationEndTime":{"type":"timestamp"},
"InvocationStartTime":{"type":"timestamp"},
"InvocationsMaxRetries":{
"type":"integer",
"max":3,
Expand Down Expand Up @@ -13272,7 +13279,9 @@
"SortBy":{"shape":"ListInferenceRecommendationsJobsSortBy"},
"SortOrder":{"shape":"SortOrder"},
"NextToken":{"shape":"NextToken"},
"MaxResults":{"shape":"MaxResults"}
"MaxResults":{"shape":"MaxResults"},
"ModelNameEquals":{"shape":"ModelName"},
"ModelPackageVersionArnEquals":{"shape":"ModelPackageArn"}
}
},
"ListInferenceRecommendationsJobsResponse":{
Expand Down Expand Up @@ -17450,7 +17459,9 @@
"EndpointConfiguration":{"shape":"EndpointOutputConfiguration"},
"ModelConfiguration":{"shape":"ModelConfiguration"},
"FailureReason":{"shape":"RecommendationFailureReason"},
"EndpointMetrics":{"shape":"InferenceMetrics"}
"EndpointMetrics":{"shape":"InferenceMetrics"},
"InvocationEndTime":{"shape":"InvocationEndTime"},
"InvocationStartTime":{"shape":"InvocationStartTime"}
}
},
"RecommendationJobInputConfig":{
Expand Down

0 comments on commit b7c0f67

Please sign in to comment.