aws-sdk-core 2.11.37 → 2.11.38

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: 56e3aee6b9ef5d046285718c739a43cb4f724e9b
4
- data.tar.gz: cbe8f4da32d3c19720fac5ca5b7351900529ddc2
3
+ metadata.gz: 566be688b461bcf183f1cf4cc6288862287a5683
4
+ data.tar.gz: bd0f4b455a76bdf629bd9061d1751d54dc4a2ed0
5
5
  SHA512:
6
- metadata.gz: b8b737fd268b188db397b5d89b689c88e2281da797d8384d31aa61f914da425062928e2bf928a12d6352dce8848e5e3ae07777fc2bb502afd7e7e9b88329be3f
7
- data.tar.gz: a0606709a277b47ff4a46508838b39783b8d04c57ca838c221d167e322a5d4138b23f7cd680ecbedbf2cfcd212c07fdc48c6df75e00f7a2adff6d937b3e45ed6
6
+ metadata.gz: d1690e25a9e2f41bc443825eb2166aae6253ab69df9e961aeab392348d88268e671ca89e869af203a82cbb9ddadb7295308ae6cd5da88fe72e3752384dd2e6f7
7
+ data.tar.gz: a0905ab7914fc6e1c1d26a76b2a0c2414acf4648d08800d3999be736c7ef15714fa3d346ec9b9815ff77e83f8c5a8bae327fbba4e107371bd5576d09ab7a3e98
@@ -187,7 +187,8 @@
187
187
  {"shape":"InvalidAutoScalingGroupException"},
188
188
  {"shape":"ThrottlingException"},
189
189
  {"shape":"InvalidUpdateOutdatedInstancesOnlyValueException"},
190
- {"shape":"InvalidIgnoreApplicationStopFailuresValueException"}
190
+ {"shape":"InvalidIgnoreApplicationStopFailuresValueException"},
191
+ {"shape":"InvalidGitHubAccountTokenException"}
191
192
  ]
192
193
  },
193
194
  "CreateDeploymentConfig":{
@@ -1881,6 +1882,12 @@
1881
1882
  },
1882
1883
  "exception":true
1883
1884
  },
1885
+ "InvalidGitHubAccountTokenException":{
1886
+ "type":"structure",
1887
+ "members":{
1888
+ },
1889
+ "exception":true
1890
+ },
1884
1891
  "InvalidGitHubAccountTokenNameException":{
1885
1892
  "type":"structure",
1886
1893
  "members":{
@@ -22,6 +22,19 @@
22
22
  {"shape":"ThrottledException"}
23
23
  ]
24
24
  },
25
+ "GetEncryptionConfig":{
26
+ "name":"GetEncryptionConfig",
27
+ "http":{
28
+ "method":"POST",
29
+ "requestUri":"/EncryptionConfig"
30
+ },
31
+ "input":{"shape":"GetEncryptionConfigRequest"},
32
+ "output":{"shape":"GetEncryptionConfigResult"},
33
+ "errors":[
34
+ {"shape":"InvalidRequestException"},
35
+ {"shape":"ThrottledException"}
36
+ ]
37
+ },
25
38
  "GetServiceGraph":{
26
39
  "name":"GetServiceGraph",
27
40
  "http":{
@@ -61,6 +74,19 @@
61
74
  {"shape":"ThrottledException"}
62
75
  ]
63
76
  },
77
+ "PutEncryptionConfig":{
78
+ "name":"PutEncryptionConfig",
79
+ "http":{
80
+ "method":"POST",
81
+ "requestUri":"/PutEncryptionConfig"
82
+ },
83
+ "input":{"shape":"PutEncryptionConfigRequest"},
84
+ "output":{"shape":"PutEncryptionConfigResult"},
85
+ "errors":[
86
+ {"shape":"InvalidRequestException"},
87
+ {"shape":"ThrottledException"}
88
+ ]
89
+ },
64
90
  "PutTelemetryRecords":{
65
91
  "name":"PutTelemetryRecords",
66
92
  "http":{
@@ -176,6 +202,33 @@
176
202
  "TotalResponseTime":{"shape":"NullableDouble"}
177
203
  }
178
204
  },
205
+ "EncryptionConfig":{
206
+ "type":"structure",
207
+ "members":{
208
+ "KeyId":{"shape":"String"},
209
+ "Status":{"shape":"EncryptionStatus"},
210
+ "Type":{"shape":"EncryptionType"}
211
+ }
212
+ },
213
+ "EncryptionKeyId":{
214
+ "type":"string",
215
+ "max":3000,
216
+ "min":1
217
+ },
218
+ "EncryptionStatus":{
219
+ "type":"string",
220
+ "enum":[
221
+ "UPDATING",
222
+ "ACTIVE"
223
+ ]
224
+ },
225
+ "EncryptionType":{
226
+ "type":"string",
227
+ "enum":[
228
+ "NONE",
229
+ "KMS"
230
+ ]
231
+ },
179
232
  "ErrorMessage":{"type":"string"},
180
233
  "ErrorStatistics":{
181
234
  "type":"structure",
@@ -197,6 +250,17 @@
197
250
  "max":2000,
198
251
  "min":1
199
252
  },
253
+ "GetEncryptionConfigRequest":{
254
+ "type":"structure",
255
+ "members":{
256
+ }
257
+ },
258
+ "GetEncryptionConfigResult":{
259
+ "type":"structure",
260
+ "members":{
261
+ "EncryptionConfig":{"shape":"EncryptionConfig"}
262
+ }
263
+ },
200
264
  "GetServiceGraphRequest":{
201
265
  "type":"structure",
202
266
  "required":[
@@ -293,6 +357,20 @@
293
357
  "NullableDouble":{"type":"double"},
294
358
  "NullableInteger":{"type":"integer"},
295
359
  "NullableLong":{"type":"long"},
360
+ "PutEncryptionConfigRequest":{
361
+ "type":"structure",
362
+ "required":["Type"],
363
+ "members":{
364
+ "KeyId":{"shape":"EncryptionKeyId"},
365
+ "Type":{"shape":"EncryptionType"}
366
+ }
367
+ },
368
+ "PutEncryptionConfigResult":{
369
+ "type":"structure",
370
+ "members":{
371
+ "EncryptionConfig":{"shape":"EncryptionConfig"}
372
+ }
373
+ },
296
374
  "PutTelemetryRecordsRequest":{
297
375
  "type":"structure",
298
376
  "required":["TelemetryRecords"],
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.37'
2
+ VERSION = '2.11.38'
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.11.37
4
+ version: 2.11.38
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: 2018-04-24 00:00:00.000000000 Z
11
+ date: 2018-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath