aws-sdk-core 2.10.29 → 2.10.30

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: e2e282d360c3d05bb9cd6f642d61495e5e471d69
4
- data.tar.gz: da7045442db70d9e5d283f0b50e65416600f6787
3
+ metadata.gz: a21577bbdae1514256f11edecf2ff62b60d588c6
4
+ data.tar.gz: 8a8bc545cc5b7fde59ef6792b1313c2438833c46
5
5
  SHA512:
6
- metadata.gz: 89de06815fdcead74f905b8105c0d0fd53b6b42926e2bbaba1526a1f5fd8e1c94d6eee54ee9ea08180f257fc21fc24837dca791d9f40240d0143319fe5919e00
7
- data.tar.gz: 48a3ef2777ad3bf0f766be815eb6a93a43cd35d0c709eb56734b48d604a071a6983e03cbed56ca573201f1c0331688dfd365b76f978d29879d269d8c9034a3d1
6
+ metadata.gz: d286c91824235860e2aac1006f5da6102ccde8bca31ac61b5e86d0ad0a28faa834d4b3c0edf6371301064333d74cd21c5ad5a11735b7f71f98d21c1d2b9435c3
7
+ data.tar.gz: 67bad715ecea9e30d8980b9362d2472073ede94f62c7f0cff71b5c3af5fec1eaf73ef79ebb17d176f9615cc26e11192730254e3fc5543a74700f17bdfff742dc
@@ -51,6 +51,21 @@
51
51
  {"shape":"ResourceNotFoundException"}
52
52
  ]
53
53
  },
54
+ "GetKinesisStream":{
55
+ "name":"GetKinesisStream",
56
+ "http":{
57
+ "method":"POST",
58
+ "requestUri":"/"
59
+ },
60
+ "input":{"shape":"GetKinesisStreamInput"},
61
+ "output":{"shape":"GetKinesisStreamOutput"},
62
+ "errors":[
63
+ {"shape":"ResourceNotFoundException"},
64
+ {"shape":"InvalidArgumentException"},
65
+ {"shape":"InvalidStreamTypeException"}
66
+ ],
67
+ "internalonly":true
68
+ },
54
69
  "ListDeliveryStreams":{
55
70
  "name":"ListDeliveryStreams",
56
71
  "http":{
@@ -111,6 +126,7 @@
111
126
  "min":1,
112
127
  "pattern":"arn:.*"
113
128
  },
129
+ "AccessKeyId":{"type":"string"},
114
130
  "BooleanObject":{"type":"boolean"},
115
131
  "BucketARN":{
116
132
  "type":"string",
@@ -169,6 +185,8 @@
169
185
  "required":["DeliveryStreamName"],
170
186
  "members":{
171
187
  "DeliveryStreamName":{"shape":"DeliveryStreamName"},
188
+ "DeliveryStreamType":{"shape":"DeliveryStreamType"},
189
+ "KinesisStreamSourceConfiguration":{"shape":"KinesisStreamSourceConfiguration"},
172
190
  "S3DestinationConfiguration":{
173
191
  "shape":"S3DestinationConfiguration",
174
192
  "deprecated":true
@@ -206,6 +224,7 @@
206
224
  "members":{
207
225
  }
208
226
  },
227
+ "DeliveryStartTimestamp":{"type":"timestamp"},
209
228
  "DeliveryStreamARN":{
210
229
  "type":"string",
211
230
  "max":512,
@@ -218,6 +237,7 @@
218
237
  "DeliveryStreamName",
219
238
  "DeliveryStreamARN",
220
239
  "DeliveryStreamStatus",
240
+ "DeliveryStreamType",
221
241
  "VersionId",
222
242
  "Destinations",
223
243
  "HasMoreDestinations"
@@ -226,9 +246,11 @@
226
246
  "DeliveryStreamName":{"shape":"DeliveryStreamName"},
227
247
  "DeliveryStreamARN":{"shape":"DeliveryStreamARN"},
228
248
  "DeliveryStreamStatus":{"shape":"DeliveryStreamStatus"},
249
+ "DeliveryStreamType":{"shape":"DeliveryStreamType"},
229
250
  "VersionId":{"shape":"DeliveryStreamVersionId"},
230
251
  "CreateTimestamp":{"shape":"Timestamp"},
231
252
  "LastUpdateTimestamp":{"shape":"Timestamp"},
253
+ "Source":{"shape":"SourceDescription"},
232
254
  "Destinations":{"shape":"DestinationDescriptionList"},
233
255
  "HasMoreDestinations":{"shape":"BooleanObject"}
234
256
  }
@@ -251,6 +273,13 @@
251
273
  "ACTIVE"
252
274
  ]
253
275
  },
276
+ "DeliveryStreamType":{
277
+ "type":"string",
278
+ "enum":[
279
+ "DirectPut",
280
+ "KinesisStreamAsSource"
281
+ ]
282
+ },
254
283
  "DeliveryStreamVersionId":{
255
284
  "type":"string",
256
285
  "max":50,
@@ -478,6 +507,21 @@
478
507
  "S3BackupUpdate":{"shape":"S3DestinationUpdate"}
479
508
  }
480
509
  },
510
+ "FirehoseSource":{"type":"string"},
511
+ "GetKinesisStreamInput":{
512
+ "type":"structure",
513
+ "required":["DeliveryStreamARN"],
514
+ "members":{
515
+ "DeliveryStreamARN":{"shape":"DeliveryStreamARN"}
516
+ }
517
+ },
518
+ "GetKinesisStreamOutput":{
519
+ "type":"structure",
520
+ "members":{
521
+ "KinesisStreamARN":{"shape":"KinesisStreamARN"},
522
+ "CredentialsForReadingKinesisStream":{"shape":"SessionCredentials"}
523
+ }
524
+ },
481
525
  "IntervalInSeconds":{
482
526
  "type":"integer",
483
527
  "max":900,
@@ -490,6 +534,14 @@
490
534
  },
491
535
  "exception":true
492
536
  },
537
+ "InvalidStreamTypeException":{
538
+ "type":"structure",
539
+ "members":{
540
+ "message":{"shape":"ErrorMessage"},
541
+ "source":{"shape":"FirehoseSource"}
542
+ },
543
+ "exception":true
544
+ },
493
545
  "KMSEncryptionConfig":{
494
546
  "type":"structure",
495
547
  "required":["AWSKMSKeyARN"],
@@ -497,6 +549,31 @@
497
549
  "AWSKMSKeyARN":{"shape":"AWSKMSKeyARN"}
498
550
  }
499
551
  },
552
+ "KinesisStreamARN":{
553
+ "type":"string",
554
+ "max":512,
555
+ "min":1,
556
+ "pattern":"arn:.*"
557
+ },
558
+ "KinesisStreamSourceConfiguration":{
559
+ "type":"structure",
560
+ "required":[
561
+ "KinesisStreamARN",
562
+ "RoleARN"
563
+ ],
564
+ "members":{
565
+ "KinesisStreamARN":{"shape":"KinesisStreamARN"},
566
+ "RoleARN":{"shape":"RoleARN"}
567
+ }
568
+ },
569
+ "KinesisStreamSourceDescription":{
570
+ "type":"structure",
571
+ "members":{
572
+ "KinesisStreamARN":{"shape":"KinesisStreamARN"},
573
+ "RoleARN":{"shape":"RoleARN"},
574
+ "DeliveryStartTimestamp":{"shape":"DeliveryStartTimestamp"}
575
+ }
576
+ },
500
577
  "LimitExceededException":{
501
578
  "type":"structure",
502
579
  "members":{
@@ -508,6 +585,7 @@
508
585
  "type":"structure",
509
586
  "members":{
510
587
  "Limit":{"shape":"ListDeliveryStreamsInputLimit"},
588
+ "DeliveryStreamType":{"shape":"DeliveryStreamType"},
511
589
  "ExclusiveStartDeliveryStreamName":{"shape":"DeliveryStreamName"}
512
590
  }
513
591
  },
@@ -818,6 +896,7 @@
818
896
  "CloudWatchLoggingOptions":{"shape":"CloudWatchLoggingOptions"}
819
897
  }
820
898
  },
899
+ "SecretAccessKey":{"type":"string"},
821
900
  "ServiceUnavailableException":{
822
901
  "type":"structure",
823
902
  "members":{
@@ -826,11 +905,33 @@
826
905
  "exception":true,
827
906
  "fault":true
828
907
  },
908
+ "SessionCredentials":{
909
+ "type":"structure",
910
+ "required":[
911
+ "AccessKeyId",
912
+ "SecretAccessKey",
913
+ "SessionToken",
914
+ "Expiration"
915
+ ],
916
+ "members":{
917
+ "AccessKeyId":{"shape":"AccessKeyId"},
918
+ "SecretAccessKey":{"shape":"SecretAccessKey"},
919
+ "SessionToken":{"shape":"SessionToken"},
920
+ "Expiration":{"shape":"Timestamp"}
921
+ }
922
+ },
923
+ "SessionToken":{"type":"string"},
829
924
  "SizeInMBs":{
830
925
  "type":"integer",
831
926
  "max":128,
832
927
  "min":1
833
928
  },
929
+ "SourceDescription":{
930
+ "type":"structure",
931
+ "members":{
932
+ "KinesisStreamSourceDescription":{"shape":"KinesisStreamSourceDescription"}
933
+ }
934
+ },
834
935
  "Timestamp":{"type":"timestamp"},
835
936
  "UpdateDestinationInput":{
836
937
  "type":"structure",
@@ -0,0 +1,4 @@
1
+ {
2
+ "pagination": {
3
+ }
4
+ }
@@ -1803,6 +1803,7 @@
1803
1803
  "members":{
1804
1804
  "message":{"shape":"ErrorMessage"}
1805
1805
  },
1806
+ "deprecated":true,
1806
1807
  "error":{"httpStatusCode":400},
1807
1808
  "exception":true
1808
1809
  },
@@ -2682,7 +2683,8 @@
2682
2683
  "PTR",
2683
2684
  "SRV",
2684
2685
  "SPF",
2685
- "AAAA"
2686
+ "AAAA",
2687
+ "CAA"
2686
2688
  ]
2687
2689
  },
2688
2690
  "RecordData":{
@@ -2,4 +2,5 @@ Aws.add_service(:Firehose, {
2
2
  api: "#{Aws::API_DIR}/firehose/2015-08-04/api-2.json",
3
3
  docs: "#{Aws::API_DIR}/firehose/2015-08-04/docs-2.json",
4
4
  examples: "#{Aws::API_DIR}/firehose/2015-08-04/examples-1.json",
5
+ paginators: "#{Aws::API_DIR}/firehose/2015-08-04/paginators-1.json",
5
6
  })
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.10.29'
2
+ VERSION = '2.10.30'
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.29
4
+ version: 2.10.30
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-18 00:00:00.000000000 Z
11
+ date: 2017-08-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -250,6 +250,7 @@ files:
250
250
  - apis/events/2015-10-07/paginators-1.json
251
251
  - apis/firehose/2015-08-04/api-2.json
252
252
  - apis/firehose/2015-08-04/examples-1.json
253
+ - apis/firehose/2015-08-04/paginators-1.json
253
254
  - apis/gamelift/2015-10-01/api-2.json
254
255
  - apis/gamelift/2015-10-01/examples-1.json
255
256
  - apis/gamelift/2015-10-01/paginators-1.json