Skip to content

Commit

Permalink
Release v1.37.16 (2021-02-22) (#3795)
Browse files Browse the repository at this point in the history
Release v1.37.16 (2021-02-22)
===

### Service Client Updates
* `service/runtime.sagemaker`: Updates service API and documentation
* `service/sagemaker`: Updates service API and documentation
  * Amazon SageMaker now supports core dump for SageMaker Endpoints and direct invocation of a single container in a SageMaker Endpoint that hosts multiple containers.
  • Loading branch information
aws-sdk-go-automation committed Feb 22, 2021
1 parent 8dfbe6f commit f3f7488
Show file tree
Hide file tree
Showing 8 changed files with 263 additions and 10 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
Release v1.37.16 (2021-02-22)
===

### Service Client Updates
* `service/runtime.sagemaker`: Updates service API and documentation
* `service/sagemaker`: Updates service API and documentation
* Amazon SageMaker now supports core dump for SageMaker Endpoints and direct invocation of a single container in a SageMaker Endpoint that hosts multiple containers.

Release v1.37.15 (2021-02-19)
===

Expand Down
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.37.15"
const SDKVersion = "1.37.16"
10 changes: 10 additions & 0 deletions models/apis/runtime.sagemaker/2017-05-13/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,11 @@
"location":"header",
"locationName":"X-Amzn-SageMaker-Target-Variant"
},
"TargetContainerHostname":{
"shape":"TargetContainerHostnameHeader",
"location":"header",
"locationName":"X-Amzn-SageMaker-Target-Container-Hostname"
},
"InferenceId":{
"shape":"InferenceId",
"location":"header",
Expand Down Expand Up @@ -162,6 +167,11 @@
"synthetic":true
},
"StatusCode":{"type":"integer"},
"TargetContainerHostnameHeader":{
"type":"string",
"max":63,
"pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*"
},
"TargetModelHeader":{
"type":"string",
"max":1024,
Expand Down
6 changes: 6 additions & 0 deletions models/apis/runtime.sagemaker/2017-05-13/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,12 @@
"ModelError$OriginalStatusCode": "<p> Original status code. </p>"
}
},
"TargetContainerHostnameHeader": {
"base": null,
"refs": {
"InvokeEndpointInput$TargetContainerHostname": "<p>If the endpoint hosts multiple containers and is configured to use direct invocation, this parameter specifies the host name of the container to invoke.</p>"
}
},
"TargetModelHeader": {
"base": null,
"refs": {
Expand Down
27 changes: 26 additions & 1 deletion models/apis/sagemaker/2017-07-24/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -4624,6 +4624,7 @@
"ModelName":{"shape":"ModelName"},
"PrimaryContainer":{"shape":"ContainerDefinition"},
"Containers":{"shape":"ContainerDefinitionList"},
"InferenceExecutionConfig":{"shape":"InferenceExecutionConfig"},
"ExecutionRoleArn":{"shape":"RoleArn"},
"Tags":{"shape":"TagList"},
"VpcConfig":{"shape":"VpcConfig"},
Expand Down Expand Up @@ -6460,6 +6461,7 @@
"ModelName":{"shape":"ModelName"},
"PrimaryContainer":{"shape":"ContainerDefinition"},
"Containers":{"shape":"ContainerDefinitionList"},
"InferenceExecutionConfig":{"shape":"InferenceExecutionConfig"},
"ExecutionRoleArn":{"shape":"RoleArn"},
"VpcConfig":{"shape":"VpcConfig"},
"CreationTime":{"shape":"Timestamp"},
Expand Down Expand Up @@ -8569,6 +8571,20 @@
"type":"list",
"member":{"shape":"Image"}
},
"InferenceExecutionConfig":{
"type":"structure",
"required":["Mode"],
"members":{
"Mode":{"shape":"InferenceExecutionMode"}
}
},
"InferenceExecutionMode":{
"type":"string",
"enum":[
"Serial",
"Direct"
]
},
"InferenceSpecification":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -11999,7 +12015,8 @@
"InitialInstanceCount":{"shape":"TaskCount"},
"InstanceType":{"shape":"ProductionVariantInstanceType"},
"InitialVariantWeight":{"shape":"VariantWeight"},
"AcceleratorType":{"shape":"ProductionVariantAcceleratorType"}
"AcceleratorType":{"shape":"ProductionVariantAcceleratorType"},
"CoreDumpConfig":{"shape":"ProductionVariantCoreDumpConfig"}
}
},
"ProductionVariantAcceleratorType":{
Expand All @@ -12013,6 +12030,14 @@
"ml.eia2.xlarge"
]
},
"ProductionVariantCoreDumpConfig":{
"type":"structure",
"required":["DestinationS3Uri"],
"members":{
"DestinationS3Uri":{"shape":"DestinationS3Uri"},
"KmsKeyId":{"shape":"KmsKeyId"}
}
},
"ProductionVariantInstanceType":{
"type":"string",
"enum":[
Expand Down
29 changes: 25 additions & 4 deletions models/apis/sagemaker/2017-07-24/docs-2.json

Large diffs are not rendered by default.

181 changes: 177 additions & 4 deletions service/sagemaker/api.go

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

Loading

0 comments on commit f3f7488

Please sign in to comment.