Skip to content

Commit 16ae84b

Browse files
AWS SDK for RubyNobody
authored andcommitted
Updated service API models for release.
1 parent f7744ee commit 16ae84b

File tree

6 files changed

+322
-13
lines changed

6 files changed

+322
-13
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Unreleased Changes
22
------------------
33

4+
* Feature - Aws::Batch - Updated the API, and documentation for AWS Batch.
5+
6+
* Feature - Aws::Comprehend - Updated the API, and documentation for Amazon Comprehend.
7+
48
2.11.253 (2019-04-02)
59
------------------
610

aws-sdk-core/apis/batch/2016-08-10/api-2.json

Lines changed: 26 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,8 @@
431431
"taskArn":{"shape":"String"},
432432
"logStreamName":{"shape":"String"},
433433
"instanceType":{"shape":"String"},
434-
"networkInterfaces":{"shape":"NetworkInterfaceList"}
434+
"networkInterfaces":{"shape":"NetworkInterfaceList"},
435+
"resourceRequirements":{"shape":"ResourceRequirements"}
435436
}
436437
},
437438
"ContainerOverrides":{
@@ -441,7 +442,8 @@
441442
"memory":{"shape":"Integer"},
442443
"command":{"shape":"StringList"},
443444
"instanceType":{"shape":"String"},
444-
"environment":{"shape":"EnvironmentVariables"}
445+
"environment":{"shape":"EnvironmentVariables"},
446+
"resourceRequirements":{"shape":"ResourceRequirements"}
445447
}
446448
},
447449
"ContainerProperties":{
@@ -459,7 +461,8 @@
459461
"privileged":{"shape":"Boolean"},
460462
"ulimits":{"shape":"Ulimits"},
461463
"user":{"shape":"String"},
462-
"instanceType":{"shape":"String"}
464+
"instanceType":{"shape":"String"},
465+
"resourceRequirements":{"shape":"ResourceRequirements"}
463466
}
464467
},
465468
"ContainerSummary":{
@@ -852,6 +855,7 @@
852855
"NodeOverrides":{
853856
"type":"structure",
854857
"members":{
858+
"numNodes":{"shape":"Integer"},
855859
"nodePropertyOverrides":{"shape":"NodePropertyOverrides"}
856860
}
857861
},
@@ -934,6 +938,25 @@
934938
"revision":{"shape":"Integer"}
935939
}
936940
},
941+
"ResourceRequirement":{
942+
"type":"structure",
943+
"required":[
944+
"value",
945+
"type"
946+
],
947+
"members":{
948+
"value":{"shape":"String"},
949+
"type":{"shape":"ResourceType"}
950+
}
951+
},
952+
"ResourceRequirements":{
953+
"type":"list",
954+
"member":{"shape":"ResourceRequirement"}
955+
},
956+
"ResourceType":{
957+
"type":"string",
958+
"enum":["GPU"]
959+
},
937960
"RetryStrategy":{
938961
"type":"structure",
939962
"members":{

0 commit comments

Comments
 (0)