Skip to content
This repository was archived by the owner on Jul 31, 2025. It is now read-only.

Commit f3f7488

Browse files
Release v1.37.16 (2021-02-22) (#3795)
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.
1 parent 8dfbe6f commit f3f7488

8 files changed

Lines changed: 263 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
Release v1.37.16 (2021-02-22)
2+
===
3+
4+
### Service Client Updates
5+
* `service/runtime.sagemaker`: Updates service API and documentation
6+
* `service/sagemaker`: Updates service API and documentation
7+
* Amazon SageMaker now supports core dump for SageMaker Endpoints and direct invocation of a single container in a SageMaker Endpoint that hosts multiple containers.
8+
19
Release v1.37.15 (2021-02-19)
210
===
311

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.37.15"
8+
const SDKVersion = "1.37.16"

models/apis/runtime.sagemaker/2017-05-13/api-2.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,11 @@
104104
"location":"header",
105105
"locationName":"X-Amzn-SageMaker-Target-Variant"
106106
},
107+
"TargetContainerHostname":{
108+
"shape":"TargetContainerHostnameHeader",
109+
"location":"header",
110+
"locationName":"X-Amzn-SageMaker-Target-Container-Hostname"
111+
},
107112
"InferenceId":{
108113
"shape":"InferenceId",
109114
"location":"header",
@@ -162,6 +167,11 @@
162167
"synthetic":true
163168
},
164169
"StatusCode":{"type":"integer"},
170+
"TargetContainerHostnameHeader":{
171+
"type":"string",
172+
"max":63,
173+
"pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*"
174+
},
165175
"TargetModelHeader":{
166176
"type":"string",
167177
"max":1024,

models/apis/runtime.sagemaker/2017-05-13/docs-2.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,12 @@
8787
"ModelError$OriginalStatusCode": "<p> Original status code. </p>"
8888
}
8989
},
90+
"TargetContainerHostnameHeader": {
91+
"base": null,
92+
"refs": {
93+
"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>"
94+
}
95+
},
9096
"TargetModelHeader": {
9197
"base": null,
9298
"refs": {

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

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4624,6 +4624,7 @@
46244624
"ModelName":{"shape":"ModelName"},
46254625
"PrimaryContainer":{"shape":"ContainerDefinition"},
46264626
"Containers":{"shape":"ContainerDefinitionList"},
4627+
"InferenceExecutionConfig":{"shape":"InferenceExecutionConfig"},
46274628
"ExecutionRoleArn":{"shape":"RoleArn"},
46284629
"Tags":{"shape":"TagList"},
46294630
"VpcConfig":{"shape":"VpcConfig"},
@@ -6460,6 +6461,7 @@
64606461
"ModelName":{"shape":"ModelName"},
64616462
"PrimaryContainer":{"shape":"ContainerDefinition"},
64626463
"Containers":{"shape":"ContainerDefinitionList"},
6464+
"InferenceExecutionConfig":{"shape":"InferenceExecutionConfig"},
64636465
"ExecutionRoleArn":{"shape":"RoleArn"},
64646466
"VpcConfig":{"shape":"VpcConfig"},
64656467
"CreationTime":{"shape":"Timestamp"},
@@ -8569,6 +8571,20 @@
85698571
"type":"list",
85708572
"member":{"shape":"Image"}
85718573
},
8574+
"InferenceExecutionConfig":{
8575+
"type":"structure",
8576+
"required":["Mode"],
8577+
"members":{
8578+
"Mode":{"shape":"InferenceExecutionMode"}
8579+
}
8580+
},
8581+
"InferenceExecutionMode":{
8582+
"type":"string",
8583+
"enum":[
8584+
"Serial",
8585+
"Direct"
8586+
]
8587+
},
85728588
"InferenceSpecification":{
85738589
"type":"structure",
85748590
"required":[
@@ -11999,7 +12015,8 @@
1199912015
"InitialInstanceCount":{"shape":"TaskCount"},
1200012016
"InstanceType":{"shape":"ProductionVariantInstanceType"},
1200112017
"InitialVariantWeight":{"shape":"VariantWeight"},
12002-
"AcceleratorType":{"shape":"ProductionVariantAcceleratorType"}
12018+
"AcceleratorType":{"shape":"ProductionVariantAcceleratorType"},
12019+
"CoreDumpConfig":{"shape":"ProductionVariantCoreDumpConfig"}
1200312020
}
1200412021
},
1200512022
"ProductionVariantAcceleratorType":{
@@ -12013,6 +12030,14 @@
1201312030
"ml.eia2.xlarge"
1201412031
]
1201512032
},
12033+
"ProductionVariantCoreDumpConfig":{
12034+
"type":"structure",
12035+
"required":["DestinationS3Uri"],
12036+
"members":{
12037+
"DestinationS3Uri":{"shape":"DestinationS3Uri"},
12038+
"KmsKeyId":{"shape":"KmsKeyId"}
12039+
}
12040+
},
1201612041
"ProductionVariantInstanceType":{
1201712042
"type":"string",
1201812043
"enum":[

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

Lines changed: 25 additions & 4 deletions
Large diffs are not rendered by default.

service/sagemaker/api.go

Lines changed: 177 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)