aws-sdk-core 2.1.22 → 2.1.23

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: 927236e19189222860215b607d5c6a881bc6107b
4
- data.tar.gz: f2ea6f950e6acee96c7173362c38e7751393bbd5
3
+ metadata.gz: 9b664e90a396fdafbd157b892a8d4a0170ddce9f
4
+ data.tar.gz: 440421bbe30202653a79b8e1eba29760da523d0a
5
5
  SHA512:
6
- metadata.gz: b2d8777f7b46f310120c7815725fe02bfa1ec2028bf3207b24b30196c9e5b08de160bfcbe3bc1cb01c37cfcbf15dcf3f5e900f5501f30a8eb7adbf1310e71914
7
- data.tar.gz: 73148dd23d3329937f26e026e2fbb38c4c846620956da8fe8cbfa06c377c6f39fd228a434824c0488b1a38d99e0b84a83d1bead174744d9da2b811afa9143622
6
+ metadata.gz: 3640eaf613b6b08544538d1aae9f6f351b5ade4f67424965dae7e678d05db872d4072451bf26533e74638f199f2b68e999c625bd9a5b740e7336aaa2d18fb1ed
7
+ data.tar.gz: 54eba748c17c0ef2a8fdc05c3ee109cb31038e1cad69dcd1547389a8e0c7f339af6c4d3e8e2c396ca7ff09b40494b02fe44734786f25719826da3c248c7ab783
@@ -10,6 +10,69 @@
10
10
  "protocol":"json"
11
11
  },
12
12
  "operations":{
13
+ "CancelExportTask":{
14
+ "name":"CancelExportTask",
15
+ "http":{
16
+ "method":"POST",
17
+ "requestUri":"/"
18
+ },
19
+ "input":{"shape":"CancelExportTaskRequest"},
20
+ "errors":[
21
+ {
22
+ "shape":"InvalidParameterException",
23
+ "exception":true
24
+ },
25
+ {
26
+ "shape":"ResourceNotFoundException",
27
+ "exception":true
28
+ },
29
+ {
30
+ "shape":"InvalidOperationException",
31
+ "exception":true
32
+ },
33
+ {
34
+ "shape":"ServiceUnavailableException",
35
+ "exception":true,
36
+ "fault":true
37
+ }
38
+ ]
39
+ },
40
+ "CreateExportTask":{
41
+ "name":"CreateExportTask",
42
+ "http":{
43
+ "method":"POST",
44
+ "requestUri":"/"
45
+ },
46
+ "input":{"shape":"CreateExportTaskRequest"},
47
+ "output":{"shape":"CreateExportTaskResponse"},
48
+ "errors":[
49
+ {
50
+ "shape":"InvalidParameterException",
51
+ "exception":true
52
+ },
53
+ {
54
+ "shape":"LimitExceededException",
55
+ "exception":true
56
+ },
57
+ {
58
+ "shape":"OperationAbortedException",
59
+ "exception":true
60
+ },
61
+ {
62
+ "shape":"ServiceUnavailableException",
63
+ "exception":true,
64
+ "fault":true
65
+ },
66
+ {
67
+ "shape":"ResourceNotFoundException",
68
+ "exception":true
69
+ },
70
+ {
71
+ "shape":"ResourceAlreadyExistsException",
72
+ "exception":true
73
+ }
74
+ ]
75
+ },
13
76
  "CreateLogGroup":{
14
77
  "name":"CreateLogGroup",
15
78
  "http":{
@@ -250,6 +313,26 @@
250
313
  }
251
314
  ]
252
315
  },
316
+ "DescribeExportTasks":{
317
+ "name":"DescribeExportTasks",
318
+ "http":{
319
+ "method":"POST",
320
+ "requestUri":"/"
321
+ },
322
+ "input":{"shape":"DescribeExportTasksRequest"},
323
+ "output":{"shape":"DescribeExportTasksResponse"},
324
+ "errors":[
325
+ {
326
+ "shape":"InvalidParameterException",
327
+ "exception":true
328
+ },
329
+ {
330
+ "shape":"ServiceUnavailableException",
331
+ "exception":true,
332
+ "fault":true
333
+ }
334
+ ]
335
+ },
253
336
  "DescribeLogGroups":{
254
337
  "name":"DescribeLogGroups",
255
338
  "http":{
@@ -589,6 +672,37 @@
589
672
  "min":1
590
673
  },
591
674
  "Arn":{"type":"string"},
675
+ "CancelExportTaskRequest":{
676
+ "type":"structure",
677
+ "required":["taskId"],
678
+ "members":{
679
+ "taskId":{"shape":"ExportTaskId"}
680
+ }
681
+ },
682
+ "CreateExportTaskRequest":{
683
+ "type":"structure",
684
+ "required":[
685
+ "logGroupName",
686
+ "from",
687
+ "to",
688
+ "destination"
689
+ ],
690
+ "members":{
691
+ "taskName":{"shape":"ExportTaskName"},
692
+ "logGroupName":{"shape":"LogGroupName"},
693
+ "logStreamNamePrefix":{"shape":"LogStreamName"},
694
+ "from":{"shape":"Timestamp"},
695
+ "to":{"shape":"Timestamp"},
696
+ "destination":{"shape":"ExportDestinationBucket"},
697
+ "destinationPrefix":{"shape":"ExportDestinationPrefix"}
698
+ }
699
+ },
700
+ "CreateExportTaskResponse":{
701
+ "type":"structure",
702
+ "members":{
703
+ "taskId":{"shape":"ExportTaskId"}
704
+ }
705
+ },
592
706
  "CreateLogGroupRequest":{
593
707
  "type":"structure",
594
708
  "required":["logGroupName"],
@@ -685,6 +799,22 @@
685
799
  "nextToken":{"shape":"NextToken"}
686
800
  }
687
801
  },
802
+ "DescribeExportTasksRequest":{
803
+ "type":"structure",
804
+ "members":{
805
+ "taskId":{"shape":"ExportTaskId"},
806
+ "statusCode":{"shape":"ExportTaskStatusCode"},
807
+ "nextToken":{"shape":"NextToken"},
808
+ "limit":{"shape":"DescribeLimit"}
809
+ }
810
+ },
811
+ "DescribeExportTasksResponse":{
812
+ "type":"structure",
813
+ "members":{
814
+ "exportTasks":{"shape":"ExportTasks"},
815
+ "nextToken":{"shape":"NextToken"}
816
+ }
817
+ },
688
818
  "DescribeLimit":{
689
819
  "type":"integer",
690
820
  "min":1,
@@ -794,6 +924,66 @@
794
924
  "min":1,
795
925
  "max":10000
796
926
  },
927
+ "ExportDestinationBucket":{
928
+ "type":"string",
929
+ "min":1,
930
+ "max":512
931
+ },
932
+ "ExportDestinationPrefix":{"type":"string"},
933
+ "ExportTask":{
934
+ "type":"structure",
935
+ "members":{
936
+ "taskId":{"shape":"ExportTaskId"},
937
+ "taskName":{"shape":"ExportTaskName"},
938
+ "logGroupName":{"shape":"LogGroupName"},
939
+ "from":{"shape":"Timestamp"},
940
+ "to":{"shape":"Timestamp"},
941
+ "destination":{"shape":"ExportDestinationBucket"},
942
+ "destinationPrefix":{"shape":"ExportDestinationPrefix"},
943
+ "status":{"shape":"ExportTaskStatus"},
944
+ "executionInfo":{"shape":"ExportTaskExecutionInfo"}
945
+ }
946
+ },
947
+ "ExportTaskExecutionInfo":{
948
+ "type":"structure",
949
+ "members":{
950
+ "creationTime":{"shape":"Timestamp"},
951
+ "completionTime":{"shape":"Timestamp"}
952
+ }
953
+ },
954
+ "ExportTaskId":{
955
+ "type":"string",
956
+ "min":1,
957
+ "max":512
958
+ },
959
+ "ExportTaskName":{
960
+ "type":"string",
961
+ "min":1,
962
+ "max":512
963
+ },
964
+ "ExportTaskStatus":{
965
+ "type":"structure",
966
+ "members":{
967
+ "code":{"shape":"ExportTaskStatusCode"},
968
+ "message":{"shape":"ExportTaskStatusMessage"}
969
+ }
970
+ },
971
+ "ExportTaskStatusCode":{
972
+ "type":"string",
973
+ "enum":[
974
+ "CANCELLED",
975
+ "COMPLETED",
976
+ "FAILED",
977
+ "PENDING",
978
+ "PENDING_CANCEL",
979
+ "RUNNING"
980
+ ]
981
+ },
982
+ "ExportTaskStatusMessage":{"type":"string"},
983
+ "ExportTasks":{
984
+ "type":"list",
985
+ "member":{"shape":"ExportTask"}
986
+ },
797
987
  "ExtractedValues":{
798
988
  "type":"map",
799
989
  "key":{"shape":"Token"},
@@ -895,6 +1085,12 @@
895
1085
  "max":100
896
1086
  },
897
1087
  "Interleaved":{"type":"boolean"},
1088
+ "InvalidOperationException":{
1089
+ "type":"structure",
1090
+ "members":{
1091
+ },
1092
+ "exception":true
1093
+ },
898
1094
  "InvalidParameterException":{
899
1095
  "type":"structure",
900
1096
  "members":{
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.1.22'
2
+ VERSION = '2.1.23'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.22
4
+ version: 2.1.23
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -404,7 +404,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
404
404
  version: '0'
405
405
  requirements: []
406
406
  rubyforge_project:
407
- rubygems_version: 2.5.0
407
+ rubygems_version: 2.4.6
408
408
  signing_key:
409
409
  specification_version: 4
410
410
  summary: AWS SDK for Ruby - Core