aws-sdk-core 2.11.212 → 2.11.213
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 283ffee9d53c5eb2c803afeb30667f557eab724c
|
4
|
+
data.tar.gz: 364c4868162ce296e2c0026d0c5c572d8cf44080
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eb228077a8b29b5af4ee315012845140ae2d1a3deed80bcc4f8f7bc840e6c1ba736fd411582eee8f7827d273f930e1a14bad4db3ac60e3d0ff66f2dd83d306d1
|
7
|
+
data.tar.gz: be33454a93f6f5a3b5fee27b10f652d83c3c19dc253fc3bed5d27e0f1446eddde34424a9ffa483fbb04187f42665710d09f0e098bbc3b2bf14d0c6363fe32ea5
|
@@ -594,6 +594,7 @@
|
|
594
594
|
{"shape":"TipOfSourceReferenceIsDifferentException"},
|
595
595
|
{"shape":"ReferenceDoesNotExistException"},
|
596
596
|
{"shape":"InvalidCommitIdException"},
|
597
|
+
{"shape":"RepositoryNotAssociatedWithPullRequestException"},
|
597
598
|
{"shape":"RepositoryNameRequiredException"},
|
598
599
|
{"shape":"InvalidRepositoryNameException"},
|
599
600
|
{"shape":"RepositoryDoesNotExistException"},
|
@@ -764,7 +764,11 @@
|
|
764
764
|
"reason":{"shape":"String"},
|
765
765
|
"networkBindings":{"shape":"NetworkBindings"},
|
766
766
|
"networkInterfaces":{"shape":"NetworkInterfaces"},
|
767
|
-
"healthStatus":{"shape":"HealthStatus"}
|
767
|
+
"healthStatus":{"shape":"HealthStatus"},
|
768
|
+
"cpu":{"shape":"String"},
|
769
|
+
"memory":{"shape":"String"},
|
770
|
+
"memoryReservation":{"shape":"String"},
|
771
|
+
"gpuIds":{"shape":"GpuIds"}
|
768
772
|
}
|
769
773
|
},
|
770
774
|
"ContainerDefinition":{
|
@@ -802,7 +806,8 @@
|
|
802
806
|
"ulimits":{"shape":"UlimitList"},
|
803
807
|
"logConfiguration":{"shape":"LogConfiguration"},
|
804
808
|
"healthCheck":{"shape":"HealthCheck"},
|
805
|
-
"systemControls":{"shape":"SystemControls"}
|
809
|
+
"systemControls":{"shape":"SystemControls"},
|
810
|
+
"resourceRequirements":{"shape":"ResourceRequirements"}
|
806
811
|
}
|
807
812
|
},
|
808
813
|
"ContainerDefinitions":{
|
@@ -856,7 +861,8 @@
|
|
856
861
|
"environment":{"shape":"EnvironmentVariables"},
|
857
862
|
"cpu":{"shape":"BoxedInteger"},
|
858
863
|
"memory":{"shape":"BoxedInteger"},
|
859
|
-
"memoryReservation":{"shape":"BoxedInteger"}
|
864
|
+
"memoryReservation":{"shape":"BoxedInteger"},
|
865
|
+
"resourceRequirements":{"shape":"ResourceRequirements"}
|
860
866
|
}
|
861
867
|
},
|
862
868
|
"ContainerOverrides":{
|
@@ -1209,6 +1215,10 @@
|
|
1209
1215
|
"type":"list",
|
1210
1216
|
"member":{"shape":"Failure"}
|
1211
1217
|
},
|
1218
|
+
"GpuIds":{
|
1219
|
+
"type":"list",
|
1220
|
+
"member":{"shape":"String"}
|
1221
|
+
},
|
1212
1222
|
"HealthCheck":{
|
1213
1223
|
"type":"structure",
|
1214
1224
|
"required":["command"],
|
@@ -1594,6 +1604,25 @@
|
|
1594
1604
|
"binpack"
|
1595
1605
|
]
|
1596
1606
|
},
|
1607
|
+
"PlatformDevice":{
|
1608
|
+
"type":"structure",
|
1609
|
+
"required":[
|
1610
|
+
"id",
|
1611
|
+
"type"
|
1612
|
+
],
|
1613
|
+
"members":{
|
1614
|
+
"id":{"shape":"String"},
|
1615
|
+
"type":{"shape":"PlatformDeviceType"}
|
1616
|
+
}
|
1617
|
+
},
|
1618
|
+
"PlatformDeviceType":{
|
1619
|
+
"type":"string",
|
1620
|
+
"enum":["GPU"]
|
1621
|
+
},
|
1622
|
+
"PlatformDevices":{
|
1623
|
+
"type":"list",
|
1624
|
+
"member":{"shape":"PlatformDevice"}
|
1625
|
+
},
|
1597
1626
|
"PlatformTaskDefinitionIncompatibilityException":{
|
1598
1627
|
"type":"structure",
|
1599
1628
|
"members":{
|
@@ -1667,6 +1696,7 @@
|
|
1667
1696
|
"versionInfo":{"shape":"VersionInfo"},
|
1668
1697
|
"containerInstanceArn":{"shape":"String"},
|
1669
1698
|
"attributes":{"shape":"Attributes"},
|
1699
|
+
"platformDevices":{"shape":"PlatformDevices"},
|
1670
1700
|
"tags":{"shape":"Tags"}
|
1671
1701
|
}
|
1672
1702
|
},
|
@@ -1733,6 +1763,25 @@
|
|
1733
1763
|
},
|
1734
1764
|
"exception":true
|
1735
1765
|
},
|
1766
|
+
"ResourceRequirement":{
|
1767
|
+
"type":"structure",
|
1768
|
+
"required":[
|
1769
|
+
"value",
|
1770
|
+
"type"
|
1771
|
+
],
|
1772
|
+
"members":{
|
1773
|
+
"value":{"shape":"String"},
|
1774
|
+
"type":{"shape":"ResourceType"}
|
1775
|
+
}
|
1776
|
+
},
|
1777
|
+
"ResourceRequirements":{
|
1778
|
+
"type":"list",
|
1779
|
+
"member":{"shape":"ResourceRequirement"}
|
1780
|
+
},
|
1781
|
+
"ResourceType":{
|
1782
|
+
"type":"string",
|
1783
|
+
"enum":["GPU"]
|
1784
|
+
},
|
1736
1785
|
"Resources":{
|
1737
1786
|
"type":"list",
|
1738
1787
|
"member":{"shape":"Resource"}
|
@@ -1037,7 +1037,10 @@
|
|
1037
1037
|
},
|
1038
1038
|
"ModifyClientPropertiesRequest":{
|
1039
1039
|
"type":"structure",
|
1040
|
-
"required":[
|
1040
|
+
"required":[
|
1041
|
+
"ResourceId",
|
1042
|
+
"ClientProperties"
|
1043
|
+
],
|
1041
1044
|
"members":{
|
1042
1045
|
"ResourceId":{"shape":"NonEmptyString"},
|
1043
1046
|
"ClientProperties":{"shape":"ClientProperties"}
|
data/lib/aws-sdk-core/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.11.
|
4
|
+
version: 2.11.213
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-02-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jmespath
|