aws-sdk-core 2.10.36 → 2.10.37

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dd7d0ec8e9239154146d27947cae11f1e6756f8b
4
- data.tar.gz: 1687bfe710f8ab6d696cd4349382a6f92002c230
3
+ metadata.gz: 6c6d94f4de4f21f25dff430cf42e0a24463934b6
4
+ data.tar.gz: 5703223201063511d5609a36a85ed644f0d85b35
5
5
  SHA512:
6
- metadata.gz: 964bbdd945b3fd9696bea23247809ddfcf4b51878b835712b286aa03347cb9b073434e84603ec57774b40a70fcdfe4f5885e0f56cb4e53297714aa0966550645
7
- data.tar.gz: 9437eebe8ba2460e088778087e7ac767458df65e700884fc210dc27bac010e33fbf8595e7bfb10ce1ed059d089914bca86f50461c485540ed95ff3e9e7af1c42
6
+ metadata.gz: a6bc52c1e0931a629691d75c837b36aa31bcb2c518f1defe28024c15db9ba6aa2135e6ffbdf08b2cf28ee5f959db34ebe89329434faa0345060af95b0e07e4f2
7
+ data.tar.gz: ecc6a52053e27881f786d8ac8a3c95164543342599d178a5623ea4dbed2f25c289d001a888f79f523bd81d7c071c8d35426a5a6e43d9cc274c068bec09225085
@@ -11,6 +11,18 @@
11
11
  "uid":"codebuild-2016-10-06"
12
12
  },
13
13
  "operations":{
14
+ "BatchDeleteBuilds":{
15
+ "name":"BatchDeleteBuilds",
16
+ "http":{
17
+ "method":"POST",
18
+ "requestUri":"/"
19
+ },
20
+ "input":{"shape":"BatchDeleteBuildsInput"},
21
+ "output":{"shape":"BatchDeleteBuildsOutput"},
22
+ "errors":[
23
+ {"shape":"InvalidInputException"}
24
+ ]
25
+ },
14
26
  "BatchGetBuilds":{
15
27
  "name":"BatchGetBuilds",
16
28
  "http":{
@@ -177,6 +189,20 @@
177
189
  "NO_ARTIFACTS"
178
190
  ]
179
191
  },
192
+ "BatchDeleteBuildsInput":{
193
+ "type":"structure",
194
+ "required":["ids"],
195
+ "members":{
196
+ "ids":{"shape":"BuildIds"}
197
+ }
198
+ },
199
+ "BatchDeleteBuildsOutput":{
200
+ "type":"structure",
201
+ "members":{
202
+ "buildsDeleted":{"shape":"BuildIds"},
203
+ "buildsNotDeleted":{"shape":"BuildsNotDeleted"}
204
+ }
205
+ },
180
206
  "BatchGetBuildsInput":{
181
207
  "type":"structure",
182
208
  "required":["ids"],
@@ -241,6 +267,13 @@
241
267
  "max":100,
242
268
  "min":1
243
269
  },
270
+ "BuildNotDeleted":{
271
+ "type":"structure",
272
+ "members":{
273
+ "id":{"shape":"NonEmptyString"},
274
+ "statusCode":{"shape":"String"}
275
+ }
276
+ },
244
277
  "BuildPhase":{
245
278
  "type":"structure",
246
279
  "members":{
@@ -275,6 +308,10 @@
275
308
  "type":"list",
276
309
  "member":{"shape":"Build"}
277
310
  },
311
+ "BuildsNotDeleted":{
312
+ "type":"list",
313
+ "member":{"shape":"BuildNotDeleted"}
314
+ },
278
315
  "ComputeType":{
279
316
  "type":"string",
280
317
  "enum":[
@@ -1,5 +1,281 @@
1
1
  {
2
2
  "version": "1.0",
3
3
  "examples": {
4
+ "BatchGetBuilds": [
5
+ {
6
+ "input": {
7
+ "ids": [
8
+ "codebuild-demo-project:9b0ac37f-d19e-4254-9079-f47e9a389eEX",
9
+ "codebuild-demo-project:b79a46f7-1473-4636-a23f-da9c45c208EX"
10
+ ]
11
+ },
12
+ "output": {
13
+ "builds": [
14
+ {
15
+ "arn": "arn:aws:codebuild:us-east-1:123456789012:build/codebuild-demo-project:9b0ac37f-d19e-4254-9079-f47e9a389eEX",
16
+ "artifacts": {
17
+ "location": "arn:aws:s3:::codebuild-123456789012-output-bucket/codebuild-demo-project"
18
+ },
19
+ "buildComplete": true,
20
+ "buildStatus": "SUCCEEDED",
21
+ "currentPhase": "COMPLETED",
22
+ "endTime": 1479832474.764,
23
+ "environment": {
24
+ "type": "LINUX_CONTAINER",
25
+ "computeType": "BUILD_GENERAL1_SMALL",
26
+ "environmentVariables": [
27
+
28
+ ],
29
+ "image": "aws/codebuild/java:openjdk-8",
30
+ "privilegedMode": false
31
+ },
32
+ "id": "codebuild-demo-project:9b0ac37f-d19e-4254-9079-f47e9a389eEX",
33
+ "initiator": "MyDemoUser",
34
+ "logs": {
35
+ "deepLink": "https://console.aws.amazon.com/cloudwatch/home?region=us-east-1#logEvent:group=/aws/codebuild/codebuild-demo-project;stream=9b0ac37f-d19e-4254-9079-f47e9a389eEX",
36
+ "groupName": "/aws/codebuild/codebuild-demo-project",
37
+ "streamName": "9b0ac37f-d19e-4254-9079-f47e9a389eEX"
38
+ },
39
+ "phases": [
40
+ {
41
+ "durationInSeconds": 0,
42
+ "endTime": 1479832342.23,
43
+ "phaseStatus": "SUCCEEDED",
44
+ "phaseType": "SUBMITTED",
45
+ "startTime": 1479832341.854
46
+ },
47
+ {
48
+ "contexts": [
49
+
50
+ ],
51
+ "durationInSeconds": 72,
52
+ "endTime": 1479832415.064,
53
+ "phaseStatus": "SUCCEEDED",
54
+ "phaseType": "PROVISIONING",
55
+ "startTime": 1479832342.23
56
+ },
57
+ {
58
+ "contexts": [
59
+
60
+ ],
61
+ "durationInSeconds": 46,
62
+ "endTime": 1479832461.261,
63
+ "phaseStatus": "SUCCEEDED",
64
+ "phaseType": "DOWNLOAD_SOURCE",
65
+ "startTime": 1479832415.064
66
+ },
67
+ {
68
+ "contexts": [
69
+
70
+ ],
71
+ "durationInSeconds": 0,
72
+ "endTime": 1479832461.354,
73
+ "phaseStatus": "SUCCEEDED",
74
+ "phaseType": "INSTALL",
75
+ "startTime": 1479832461.261
76
+ },
77
+ {
78
+ "contexts": [
79
+
80
+ ],
81
+ "durationInSeconds": 0,
82
+ "endTime": 1479832461.448,
83
+ "phaseStatus": "SUCCEEDED",
84
+ "phaseType": "PRE_BUILD",
85
+ "startTime": 1479832461.354
86
+ },
87
+ {
88
+ "contexts": [
89
+
90
+ ],
91
+ "durationInSeconds": 9,
92
+ "endTime": 1479832471.115,
93
+ "phaseStatus": "SUCCEEDED",
94
+ "phaseType": "BUILD",
95
+ "startTime": 1479832461.448
96
+ },
97
+ {
98
+ "contexts": [
99
+
100
+ ],
101
+ "durationInSeconds": 0,
102
+ "endTime": 1479832471.224,
103
+ "phaseStatus": "SUCCEEDED",
104
+ "phaseType": "POST_BUILD",
105
+ "startTime": 1479832471.115
106
+ },
107
+ {
108
+ "contexts": [
109
+
110
+ ],
111
+ "durationInSeconds": 0,
112
+ "endTime": 1479832471.791,
113
+ "phaseStatus": "SUCCEEDED",
114
+ "phaseType": "UPLOAD_ARTIFACTS",
115
+ "startTime": 1479832471.224
116
+ },
117
+ {
118
+ "contexts": [
119
+
120
+ ],
121
+ "durationInSeconds": 2,
122
+ "endTime": 1479832474.764,
123
+ "phaseStatus": "SUCCEEDED",
124
+ "phaseType": "FINALIZING",
125
+ "startTime": 1479832471.791
126
+ },
127
+ {
128
+ "phaseType": "COMPLETED",
129
+ "startTime": 1479832474.764
130
+ }
131
+ ],
132
+ "projectName": "codebuild-demo-project",
133
+ "source": {
134
+ "type": "S3",
135
+ "buildspec": "",
136
+ "location": "arn:aws:s3:::codebuild-123456789012-input-bucket/MessageUtil.zip"
137
+ },
138
+ "startTime": 1479832341.854,
139
+ "timeoutInMinutes": 60
140
+ },
141
+ {
142
+ "arn": "arn:aws:codebuild:us-east-1:123456789012:build/codebuild-demo-project:b79a46f7-1473-4636-a23f-da9c45c208EX",
143
+ "artifacts": {
144
+ "location": "arn:aws:s3:::codebuild-123456789012-output-bucket/codebuild-demo-project"
145
+ },
146
+ "buildComplete": true,
147
+ "buildStatus": "SUCCEEDED",
148
+ "currentPhase": "COMPLETED",
149
+ "endTime": 1479401214.239,
150
+ "environment": {
151
+ "type": "LINUX_CONTAINER",
152
+ "computeType": "BUILD_GENERAL1_SMALL",
153
+ "environmentVariables": [
154
+
155
+ ],
156
+ "image": "aws/codebuild/java:openjdk-8",
157
+ "privilegedMode": false
158
+ },
159
+ "id": "codebuild-demo-project:b79a46f7-1473-4636-a23f-da9c45c208EX",
160
+ "initiator": "MyDemoUser",
161
+ "logs": {
162
+ "deepLink": "https://console.aws.amazon.com/cloudwatch/home?region=us-east-1#logEvent:group=/aws/codebuild/codebuild-demo-project;stream=b79a46f7-1473-4636-a23f-da9c45c208EX",
163
+ "groupName": "/aws/codebuild/codebuild-demo-project",
164
+ "streamName": "b79a46f7-1473-4636-a23f-da9c45c208EX"
165
+ },
166
+ "phases": [
167
+ {
168
+ "durationInSeconds": 0,
169
+ "endTime": 1479401082.342,
170
+ "phaseStatus": "SUCCEEDED",
171
+ "phaseType": "SUBMITTED",
172
+ "startTime": 1479401081.869
173
+ },
174
+ {
175
+ "contexts": [
176
+
177
+ ],
178
+ "durationInSeconds": 71,
179
+ "endTime": 1479401154.129,
180
+ "phaseStatus": "SUCCEEDED",
181
+ "phaseType": "PROVISIONING",
182
+ "startTime": 1479401082.342
183
+ },
184
+ {
185
+ "contexts": [
186
+
187
+ ],
188
+ "durationInSeconds": 45,
189
+ "endTime": 1479401199.136,
190
+ "phaseStatus": "SUCCEEDED",
191
+ "phaseType": "DOWNLOAD_SOURCE",
192
+ "startTime": 1479401154.129
193
+ },
194
+ {
195
+ "contexts": [
196
+
197
+ ],
198
+ "durationInSeconds": 0,
199
+ "endTime": 1479401199.236,
200
+ "phaseStatus": "SUCCEEDED",
201
+ "phaseType": "INSTALL",
202
+ "startTime": 1479401199.136
203
+ },
204
+ {
205
+ "contexts": [
206
+
207
+ ],
208
+ "durationInSeconds": 0,
209
+ "endTime": 1479401199.345,
210
+ "phaseStatus": "SUCCEEDED",
211
+ "phaseType": "PRE_BUILD",
212
+ "startTime": 1479401199.236
213
+ },
214
+ {
215
+ "contexts": [
216
+
217
+ ],
218
+ "durationInSeconds": 9,
219
+ "endTime": 1479401208.68,
220
+ "phaseStatus": "SUCCEEDED",
221
+ "phaseType": "BUILD",
222
+ "startTime": 1479401199.345
223
+ },
224
+ {
225
+ "contexts": [
226
+
227
+ ],
228
+ "durationInSeconds": 0,
229
+ "endTime": 1479401208.783,
230
+ "phaseStatus": "SUCCEEDED",
231
+ "phaseType": "POST_BUILD",
232
+ "startTime": 1479401208.68
233
+ },
234
+ {
235
+ "contexts": [
236
+
237
+ ],
238
+ "durationInSeconds": 0,
239
+ "endTime": 1479401209.463,
240
+ "phaseStatus": "SUCCEEDED",
241
+ "phaseType": "UPLOAD_ARTIFACTS",
242
+ "startTime": 1479401208.783
243
+ },
244
+ {
245
+ "contexts": [
246
+
247
+ ],
248
+ "durationInSeconds": 4,
249
+ "endTime": 1479401214.239,
250
+ "phaseStatus": "SUCCEEDED",
251
+ "phaseType": "FINALIZING",
252
+ "startTime": 1479401209.463
253
+ },
254
+ {
255
+ "phaseType": "COMPLETED",
256
+ "startTime": 1479401214.239
257
+ }
258
+ ],
259
+ "projectName": "codebuild-demo-project",
260
+ "source": {
261
+ "type": "S3",
262
+ "location": "arn:aws:s3:::codebuild-123456789012-input-bucket/MessageUtil.zip"
263
+ },
264
+ "startTime": 1479401081.869,
265
+ "timeoutInMinutes": 60
266
+ }
267
+ ]
268
+ },
269
+ "comments": {
270
+ "input": {
271
+ },
272
+ "output": {
273
+ }
274
+ },
275
+ "description": "The following example gets information about builds with the specified build IDs.",
276
+ "id": "to-get-information-about-builds-1501187184588",
277
+ "title": "To get information about builds"
278
+ }
279
+ ]
4
280
  }
5
281
  }
@@ -2055,6 +2055,24 @@
2055
2055
  },
2056
2056
  "input":{"shape":"UnmonitorInstancesRequest"},
2057
2057
  "output":{"shape":"UnmonitorInstancesResult"}
2058
+ },
2059
+ "UpdateSecurityGroupRuleDescriptionsEgress":{
2060
+ "name":"UpdateSecurityGroupRuleDescriptionsEgress",
2061
+ "http":{
2062
+ "method":"POST",
2063
+ "requestUri":"/"
2064
+ },
2065
+ "input":{"shape":"UpdateSecurityGroupRuleDescriptionsEgressRequest"},
2066
+ "output":{"shape":"UpdateSecurityGroupRuleDescriptionsEgressResult"}
2067
+ },
2068
+ "UpdateSecurityGroupRuleDescriptionsIngress":{
2069
+ "name":"UpdateSecurityGroupRuleDescriptionsIngress",
2070
+ "http":{
2071
+ "method":"POST",
2072
+ "requestUri":"/"
2073
+ },
2074
+ "input":{"shape":"UpdateSecurityGroupRuleDescriptionsIngressRequest"},
2075
+ "output":{"shape":"UpdateSecurityGroupRuleDescriptionsIngressResult"}
2058
2076
  }
2059
2077
  },
2060
2078
  "shapes":{
@@ -10022,6 +10040,10 @@
10022
10040
  "CidrIp":{
10023
10041
  "shape":"String",
10024
10042
  "locationName":"cidrIp"
10043
+ },
10044
+ "Description":{
10045
+ "shape":"String",
10046
+ "locationName":"description"
10025
10047
  }
10026
10048
  }
10027
10049
  },
@@ -10069,6 +10091,10 @@
10069
10091
  "CidrIpv6":{
10070
10092
  "shape":"String",
10071
10093
  "locationName":"cidrIpv6"
10094
+ },
10095
+ "Description":{
10096
+ "shape":"String",
10097
+ "locationName":"description"
10072
10098
  }
10073
10099
  }
10074
10100
  },
@@ -11465,6 +11491,10 @@
11465
11491
  "PrefixListId":{
11466
11492
  "type":"structure",
11467
11493
  "members":{
11494
+ "Description":{
11495
+ "shape":"String",
11496
+ "locationName":"description"
11497
+ },
11468
11498
  "PrefixListId":{
11469
11499
  "shape":"String",
11470
11500
  "locationName":"prefixListId"
@@ -15009,6 +15039,44 @@
15009
15039
  "locationName":"item"
15010
15040
  }
15011
15041
  },
15042
+ "UpdateSecurityGroupRuleDescriptionsEgressRequest":{
15043
+ "type":"structure",
15044
+ "required":["IpPermissions"],
15045
+ "members":{
15046
+ "DryRun":{"shape":"Boolean"},
15047
+ "GroupId":{"shape":"String"},
15048
+ "GroupName":{"shape":"String"},
15049
+ "IpPermissions":{"shape":"IpPermissionList"}
15050
+ }
15051
+ },
15052
+ "UpdateSecurityGroupRuleDescriptionsEgressResult":{
15053
+ "type":"structure",
15054
+ "members":{
15055
+ "Return":{
15056
+ "shape":"Boolean",
15057
+ "locationName":"return"
15058
+ }
15059
+ }
15060
+ },
15061
+ "UpdateSecurityGroupRuleDescriptionsIngressRequest":{
15062
+ "type":"structure",
15063
+ "required":["IpPermissions"],
15064
+ "members":{
15065
+ "DryRun":{"shape":"Boolean"},
15066
+ "GroupId":{"shape":"String"},
15067
+ "GroupName":{"shape":"String"},
15068
+ "IpPermissions":{"shape":"IpPermissionList"}
15069
+ }
15070
+ },
15071
+ "UpdateSecurityGroupRuleDescriptionsIngressResult":{
15072
+ "type":"structure",
15073
+ "members":{
15074
+ "Return":{
15075
+ "shape":"Boolean",
15076
+ "locationName":"return"
15077
+ }
15078
+ }
15079
+ },
15012
15080
  "UserBucket":{
15013
15081
  "type":"structure",
15014
15082
  "members":{
@@ -15048,6 +15116,10 @@
15048
15116
  "UserIdGroupPair":{
15049
15117
  "type":"structure",
15050
15118
  "members":{
15119
+ "Description":{
15120
+ "shape":"String",
15121
+ "locationName":"description"
15122
+ },
15051
15123
  "GroupId":{
15052
15124
  "shape":"String",
15053
15125
  "locationName":"groupId"
@@ -720,7 +720,8 @@
720
720
  "HealthCheckTimeoutSeconds":{"shape":"HealthCheckTimeoutSeconds"},
721
721
  "HealthyThresholdCount":{"shape":"HealthCheckThresholdCount"},
722
722
  "UnhealthyThresholdCount":{"shape":"HealthCheckThresholdCount"},
723
- "Matcher":{"shape":"Matcher"}
723
+ "Matcher":{"shape":"Matcher"},
724
+ "TargetType":{"shape":"TargetTypeEnum"}
724
725
  }
725
726
  },
726
727
  "CreateTargetGroupOutput":{
@@ -1637,7 +1638,8 @@
1637
1638
  "required":["Id"],
1638
1639
  "members":{
1639
1640
  "Id":{"shape":"TargetId"},
1640
- "Port":{"shape":"Port"}
1641
+ "Port":{"shape":"Port"},
1642
+ "AvailabilityZone":{"shape":"ZoneName"}
1641
1643
  }
1642
1644
  },
1643
1645
  "TargetDescriptions":{
@@ -1660,7 +1662,8 @@
1660
1662
  "UnhealthyThresholdCount":{"shape":"HealthCheckThresholdCount"},
1661
1663
  "HealthCheckPath":{"shape":"Path"},
1662
1664
  "Matcher":{"shape":"Matcher"},
1663
- "LoadBalancerArns":{"shape":"LoadBalancerArns"}
1665
+ "LoadBalancerArns":{"shape":"LoadBalancerArns"},
1666
+ "TargetType":{"shape":"TargetTypeEnum"}
1664
1667
  }
1665
1668
  },
1666
1669
  "TargetGroupArn":{"type":"string"},
@@ -1748,6 +1751,7 @@
1748
1751
  "Target.NotInUse",
1749
1752
  "Target.DeregistrationInProgress",
1750
1753
  "Target.InvalidState",
1754
+ "Target.IpUnusable",
1751
1755
  "Elb.InternalError"
1752
1756
  ]
1753
1757
  },
@@ -1762,6 +1766,13 @@
1762
1766
  ]
1763
1767
  },
1764
1768
  "TargetId":{"type":"string"},
1769
+ "TargetTypeEnum":{
1770
+ "type":"string",
1771
+ "enum":[
1772
+ "instance",
1773
+ "ip"
1774
+ ]
1775
+ },
1765
1776
  "TooManyCertificatesException":{
1766
1777
  "type":"structure",
1767
1778
  "members":{
@@ -677,7 +677,8 @@
677
677
  "key":{"shape":"String"},
678
678
  "value":{"shape":"String"},
679
679
  "max":10,
680
- "min":1
680
+ "min":1,
681
+ "sensitive":true
681
682
  },
682
683
  "ChannelType":{
683
684
  "type":"string",
@@ -804,7 +805,8 @@
804
805
  "lastUpdatedDate":{"shape":"Timestamp"},
805
806
  "createdDate":{"shape":"Timestamp"},
806
807
  "version":{"shape":"Version"},
807
- "checksum":{"shape":"String"}
808
+ "checksum":{"shape":"String"},
809
+ "valueSelectionStrategy":{"shape":"SlotValueSelectionStrategy"}
808
810
  }
809
811
  },
810
812
  "CustomOrBuiltinSlotTypeName":{
@@ -975,7 +977,8 @@
975
977
  "type":"structure",
976
978
  "required":["value"],
977
979
  "members":{
978
- "value":{"shape":"Value"}
980
+ "value":{"shape":"Value"},
981
+ "synonyms":{"shape":"SynonymList"}
979
982
  }
980
983
  },
981
984
  "EnumerationValues":{
@@ -1451,7 +1454,8 @@
1451
1454
  "lastUpdatedDate":{"shape":"Timestamp"},
1452
1455
  "createdDate":{"shape":"Timestamp"},
1453
1456
  "version":{"shape":"Version"},
1454
- "checksum":{"shape":"String"}
1457
+ "checksum":{"shape":"String"},
1458
+ "valueSelectionStrategy":{"shape":"SlotValueSelectionStrategy"}
1455
1459
  }
1456
1460
  },
1457
1461
  "GetSlotTypeVersionsRequest":{
@@ -1847,7 +1851,8 @@
1847
1851
  },
1848
1852
  "description":{"shape":"Description"},
1849
1853
  "enumerationValues":{"shape":"EnumerationValues"},
1850
- "checksum":{"shape":"String"}
1854
+ "checksum":{"shape":"String"},
1855
+ "valueSelectionStrategy":{"shape":"SlotValueSelectionStrategy"}
1851
1856
  }
1852
1857
  },
1853
1858
  "PutSlotTypeResponse":{
@@ -1859,7 +1864,8 @@
1859
1864
  "lastUpdatedDate":{"shape":"Timestamp"},
1860
1865
  "createdDate":{"shape":"Timestamp"},
1861
1866
  "version":{"shape":"Version"},
1862
- "checksum":{"shape":"String"}
1867
+ "checksum":{"shape":"String"},
1868
+ "valueSelectionStrategy":{"shape":"SlotValueSelectionStrategy"}
1863
1869
  }
1864
1870
  },
1865
1871
  "ReferenceType":{
@@ -1960,6 +1966,13 @@
1960
1966
  "max":10,
1961
1967
  "min":0
1962
1968
  },
1969
+ "SlotValueSelectionStrategy":{
1970
+ "type":"string",
1971
+ "enum":[
1972
+ "ORIGINAL_VALUE",
1973
+ "TOP_RESOLUTION"
1974
+ ]
1975
+ },
1963
1976
  "Statement":{
1964
1977
  "type":"structure",
1965
1978
  "required":["messages"],
@@ -1985,6 +1998,10 @@
1985
1998
  ]
1986
1999
  },
1987
2000
  "String":{"type":"string"},
2001
+ "SynonymList":{
2002
+ "type":"list",
2003
+ "member":{"shape":"Value"}
2004
+ },
1988
2005
  "Timestamp":{"type":"timestamp"},
1989
2006
  "UserId":{
1990
2007
  "type":"string",
@@ -770,10 +770,15 @@
770
770
  "ap-northeast-2" : { },
771
771
  "ap-south-1" : { },
772
772
  "ap-southeast-1" : { },
773
+ "ap-southeast-2" : { },
774
+ "ca-central-1" : { },
773
775
  "eu-central-1" : { },
774
776
  "eu-west-1" : { },
777
+ "eu-west-2" : { },
775
778
  "sa-east-1" : { },
776
779
  "us-east-1" : { },
780
+ "us-east-2" : { },
781
+ "us-west-1" : { },
777
782
  "us-west-2" : { }
778
783
  }
779
784
  },
@@ -1254,6 +1259,7 @@
1254
1259
  "servicecatalog" : {
1255
1260
  "endpoints" : {
1256
1261
  "ap-northeast-1" : { },
1262
+ "ap-northeast-2" : { },
1257
1263
  "ap-southeast-1" : { },
1258
1264
  "ap-southeast-2" : { },
1259
1265
  "ca-central-1" : { },
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.10.36'
2
+ VERSION = '2.10.37'
3
3
  end
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.10.36
4
+ version: 2.10.37
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: 2017-08-30 00:00:00.000000000 Z
11
+ date: 2017-08-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath