aws-sdk-core 2.0.27 → 2.0.28

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: e3cfbb5b7b17d2bebe6e006d78719bc33dbad8e9
4
+ data.tar.gz: 9a5b488cacfd5c9f0cdfc9eaefd8d9c392501a06
5
+ SHA512:
6
+ metadata.gz: 6c122bf52707fdee948de78659c4648e665df12d5d35d2ee42d3175176593c3bfd6265656ec0c86cf11269e438b4a51c7d1b013cda9243b69fe19f9bfdcac23c
7
+ data.tar.gz: be5fb833901eebe2669c680a1722229953863156eab96e904848c84897c890dd1e2c628caf221a3e61e66b3f1d7198356d4576083fd396b98efc6b27d7fe3ea3
@@ -1,4 +1,5 @@
1
1
  {
2
+ "version":"2.0",
2
3
  "metadata":{
3
4
  "apiVersion":"2012-10-29",
4
5
  "endpointPrefix":"datapipeline",
@@ -37,6 +38,34 @@
37
38
  }
38
39
  ]
39
40
  },
41
+ "AddTags":{
42
+ "name":"AddTags",
43
+ "http":{
44
+ "method":"POST",
45
+ "requestUri":"/"
46
+ },
47
+ "input":{"shape":"AddTagsInput"},
48
+ "output":{"shape":"AddTagsOutput"},
49
+ "errors":[
50
+ {
51
+ "shape":"InternalServiceError",
52
+ "exception":true,
53
+ "fault":true
54
+ },
55
+ {
56
+ "shape":"InvalidRequestException",
57
+ "exception":true
58
+ },
59
+ {
60
+ "shape":"PipelineNotFoundException",
61
+ "exception":true
62
+ },
63
+ {
64
+ "shape":"PipelineDeletedException",
65
+ "exception":true
66
+ }
67
+ ]
68
+ },
40
69
  "CreatePipeline":{
41
70
  "name":"CreatePipeline",
42
71
  "http":{
@@ -296,6 +325,34 @@
296
325
  }
297
326
  ]
298
327
  },
328
+ "RemoveTags":{
329
+ "name":"RemoveTags",
330
+ "http":{
331
+ "method":"POST",
332
+ "requestUri":"/"
333
+ },
334
+ "input":{"shape":"RemoveTagsInput"},
335
+ "output":{"shape":"RemoveTagsOutput"},
336
+ "errors":[
337
+ {
338
+ "shape":"InternalServiceError",
339
+ "exception":true,
340
+ "fault":true
341
+ },
342
+ {
343
+ "shape":"InvalidRequestException",
344
+ "exception":true
345
+ },
346
+ {
347
+ "shape":"PipelineNotFoundException",
348
+ "exception":true
349
+ },
350
+ {
351
+ "shape":"PipelineDeletedException",
352
+ "exception":true
353
+ }
354
+ ]
355
+ },
299
356
  "ReportTaskProgress":{
300
357
  "name":"ReportTaskProgress",
301
358
  "http":{
@@ -450,6 +507,22 @@
450
507
  "members":{
451
508
  }
452
509
  },
510
+ "AddTagsInput":{
511
+ "type":"structure",
512
+ "required":[
513
+ "pipelineId",
514
+ "tags"
515
+ ],
516
+ "members":{
517
+ "pipelineId":{"shape":"id"},
518
+ "tags":{"shape":"tagList"}
519
+ }
520
+ },
521
+ "AddTagsOutput":{
522
+ "type":"structure",
523
+ "members":{
524
+ }
525
+ },
453
526
  "CreatePipelineInput":{
454
527
  "type":"structure",
455
528
  "required":[
@@ -459,7 +532,8 @@
459
532
  "members":{
460
533
  "name":{"shape":"id"},
461
534
  "uniqueId":{"shape":"id"},
462
- "description":{"shape":"string"}
535
+ "description":{"shape":"string"},
536
+ "tags":{"shape":"tagList"}
463
537
  }
464
538
  },
465
539
  "CreatePipelineOutput":{
@@ -674,7 +748,8 @@
674
748
  "pipelineId":{"shape":"id"},
675
749
  "name":{"shape":"id"},
676
750
  "fields":{"shape":"fieldList"},
677
- "description":{"shape":"string"}
751
+ "description":{"shape":"string"},
752
+ "tags":{"shape":"tagList"}
678
753
  }
679
754
  },
680
755
  "PipelineDescriptionList":{
@@ -782,6 +857,22 @@
782
857
  "hasMoreResults":{"shape":"boolean"}
783
858
  }
784
859
  },
860
+ "RemoveTagsInput":{
861
+ "type":"structure",
862
+ "required":[
863
+ "pipelineId",
864
+ "tagKeys"
865
+ ],
866
+ "members":{
867
+ "pipelineId":{"shape":"id"},
868
+ "tagKeys":{"shape":"stringList"}
869
+ }
870
+ },
871
+ "RemoveTagsOutput":{
872
+ "type":"structure",
873
+ "members":{
874
+ }
875
+ },
785
876
  "ReportTaskProgressInput":{
786
877
  "type":"structure",
787
878
  "required":["taskId"],
@@ -856,6 +947,17 @@
856
947
  "members":{
857
948
  }
858
949
  },
950
+ "Tag":{
951
+ "type":"structure",
952
+ "required":[
953
+ "key",
954
+ "value"
955
+ ],
956
+ "members":{
957
+ "key":{"shape":"tagKey"},
958
+ "value":{"shape":"tagValue"}
959
+ }
960
+ },
859
961
  "TaskNotFoundException":{
860
962
  "type":"structure",
861
963
  "members":{
@@ -985,6 +1087,22 @@
985
1087
  "type":"list",
986
1088
  "member":{"shape":"string"}
987
1089
  },
1090
+ "tagKey":{
1091
+ "type":"string",
1092
+ "min":1,
1093
+ "max":128
1094
+ },
1095
+ "tagList":{
1096
+ "type":"list",
1097
+ "member":{"shape":"Tag"},
1098
+ "min":0,
1099
+ "max":10
1100
+ },
1101
+ "tagValue":{
1102
+ "type":"string",
1103
+ "min":0,
1104
+ "max":256
1105
+ },
988
1106
  "taskId":{
989
1107
  "type":"string",
990
1108
  "min":1,
@@ -0,0 +1,71 @@
1
+ {
2
+ "service": {
3
+ "actions": {
4
+ "CreateDBInstance": {
5
+ "request": { "operation": "CreateDBInstance" },
6
+ "resource": {
7
+ "type": "DBInstance",
8
+ "identifiers": [
9
+ { "target": "Id", "source": "requestParameter", "path": "DBInstanceIdentifier" }
10
+ ]
11
+ }
12
+ }
13
+ },
14
+ "has": {
15
+ "DBInstance": {
16
+ "resource": {
17
+ "type": "DBInstance",
18
+ "identifiers": [
19
+ { "target": "Id", "source": "input" }
20
+ ]
21
+ }
22
+ }
23
+ },
24
+ "hasMany": {
25
+ "DBInstances": {
26
+ "request": { "operation": "DescribeDBInstances" },
27
+ "resource": {
28
+ "type": "DBInstance",
29
+ "identifiers": [
30
+ { "target": "Id", "source": "response", "path": "DBInstances[].DBInstanceIdentifier" }
31
+ ]
32
+ }
33
+ }
34
+ }
35
+ },
36
+ "resources": {
37
+ "DBInstance": {
38
+ "identifiers": [
39
+ { "name": "Id" }
40
+ ],
41
+ "shape": "DBInstance",
42
+ "load": {
43
+ "request": {
44
+ "operation": "DescribeDBInstances",
45
+ "params": [
46
+ { "target": "DBInstanceIdentifier", "source": "identifier", "name": "Id" }
47
+ ]
48
+ },
49
+ "path": "DBInstances[0]"
50
+ },
51
+ "actions": {
52
+ "Delete": {
53
+ "request": {
54
+ "operation": "DeleteDBInstance",
55
+ "params": [
56
+ { "target": "DBInstanceIdentifier", "source": "identifier", "name": "Id" }
57
+ ]
58
+ }
59
+ },
60
+ "Modify": {
61
+ "request": {
62
+ "operation": "ModifyDBInstance",
63
+ "params": [
64
+ { "target": "DBInstanceIdentifier", "source": "identifier", "name": "Id" }
65
+ ]
66
+ }
67
+ }
68
+ }
69
+ }
70
+ }
71
+ }
@@ -1,4 +1,5 @@
1
1
  {
2
+ "version":"2.0",
2
3
  "metadata":{
3
4
  "apiVersion":"2013-04-01",
4
5
  "endpointPrefix":"route53",
@@ -523,6 +524,22 @@
523
524
  }
524
525
  ]
525
526
  },
527
+ "GetHostedZoneCount":{
528
+ "name":"GetHostedZoneCount",
529
+ "http":{
530
+ "method":"GET",
531
+ "requestUri":"/2013-04-01/hostedzonecount"
532
+ },
533
+ "input":{"shape":"GetHostedZoneCountRequest"},
534
+ "output":{"shape":"GetHostedZoneCountResponse"},
535
+ "errors":[
536
+ {
537
+ "shape":"InvalidInput",
538
+ "error":{"httpStatusCode":400},
539
+ "exception":true
540
+ }
541
+ ]
542
+ },
526
543
  "GetReusableDelegationSet":{
527
544
  "name":"GetReusableDelegationSet",
528
545
  "http":{
@@ -608,6 +625,27 @@
608
625
  }
609
626
  ]
610
627
  },
628
+ "ListHostedZonesByName":{
629
+ "name":"ListHostedZonesByName",
630
+ "http":{
631
+ "method":"GET",
632
+ "requestUri":"/2013-04-01/hostedzonesbyname"
633
+ },
634
+ "input":{"shape":"ListHostedZonesByNameRequest"},
635
+ "output":{"shape":"ListHostedZonesByNameResponse"},
636
+ "errors":[
637
+ {
638
+ "shape":"InvalidInput",
639
+ "error":{"httpStatusCode":400},
640
+ "exception":true
641
+ },
642
+ {
643
+ "shape":"InvalidDomainName",
644
+ "error":{"httpStatusCode":400},
645
+ "exception":true
646
+ }
647
+ ]
648
+ },
611
649
  "ListResourceRecordSets":{
612
650
  "name":"ListResourceRecordSets",
613
651
  "http":{
@@ -1347,6 +1385,18 @@
1347
1385
  "HealthCheckObservations":{"shape":"HealthCheckObservations"}
1348
1386
  }
1349
1387
  },
1388
+ "GetHostedZoneCountRequest":{
1389
+ "type":"structure",
1390
+ "members":{
1391
+ }
1392
+ },
1393
+ "GetHostedZoneCountResponse":{
1394
+ "type":"structure",
1395
+ "required":["HostedZoneCount"],
1396
+ "members":{
1397
+ "HostedZoneCount":{"shape":"HostedZoneCount"}
1398
+ }
1399
+ },
1350
1400
  "GetHostedZoneRequest":{
1351
1401
  "type":"structure",
1352
1402
  "required":["Id"],
@@ -1513,6 +1563,7 @@
1513
1563
  "PrivateZone":{"shape":"IsPrivateZone"}
1514
1564
  }
1515
1565
  },
1566
+ "HostedZoneCount":{"type":"long"},
1516
1567
  "HostedZoneNotEmpty":{
1517
1568
  "type":"structure",
1518
1569
  "members":{
@@ -1676,6 +1727,43 @@
1676
1727
  "MaxItems":{"shape":"PageMaxItems"}
1677
1728
  }
1678
1729
  },
1730
+ "ListHostedZonesByNameRequest":{
1731
+ "type":"structure",
1732
+ "members":{
1733
+ "DNSName":{
1734
+ "shape":"DNSName",
1735
+ "location":"querystring",
1736
+ "locationName":"dnsname"
1737
+ },
1738
+ "HostedZoneId":{
1739
+ "shape":"ResourceId",
1740
+ "location":"querystring",
1741
+ "locationName":"hostedzoneid"
1742
+ },
1743
+ "MaxItems":{
1744
+ "shape":"PageMaxItems",
1745
+ "location":"querystring",
1746
+ "locationName":"maxitems"
1747
+ }
1748
+ }
1749
+ },
1750
+ "ListHostedZonesByNameResponse":{
1751
+ "type":"structure",
1752
+ "required":[
1753
+ "HostedZones",
1754
+ "IsTruncated",
1755
+ "MaxItems"
1756
+ ],
1757
+ "members":{
1758
+ "HostedZones":{"shape":"HostedZones"},
1759
+ "DNSName":{"shape":"DNSName"},
1760
+ "HostedZoneId":{"shape":"ResourceId"},
1761
+ "IsTruncated":{"shape":"PageTruncated"},
1762
+ "NextDNSName":{"shape":"DNSName"},
1763
+ "NextHostedZoneId":{"shape":"ResourceId"},
1764
+ "MaxItems":{"shape":"PageMaxItems"}
1765
+ }
1766
+ },
1679
1767
  "ListHostedZonesRequest":{
1680
1768
  "type":"structure",
1681
1769
  "members":{
@@ -18,6 +18,9 @@ module Aws
18
18
  docs['shapes'].each do |shape_name, shape|
19
19
  api['shapes'][shape_name]['documentation'] = shape['base']
20
20
  shape['refs'].each do |ref,doc|
21
+ if doc.nil?
22
+ doc = shape['base']
23
+ end
21
24
  target_shape_name, member = ref.split('$')
22
25
  target_shape = api['shapes'][target_shape_name]
23
26
  case target_shape['type']
@@ -2,5 +2,6 @@ Aws.add_service(:RDS, {
2
2
  api: File.join(Aws::API_DIR, 'RDS.api.json'),
3
3
  docs: File.join(Aws::API_DIR, 'RDS.docs.json'),
4
4
  paginators: File.join(Aws::API_DIR, 'RDS.paginators.json'),
5
+ resources: File.join(Aws::API_DIR, 'RDS.resources.json'),
5
6
  waiters: File.join(Aws::API_DIR, 'RDS.waiters.json'),
6
7
  })
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.0.27'
2
+ VERSION = '2.0.28'
3
3
  end
metadata CHANGED
@@ -1,78 +1,69 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.27
5
- prerelease:
4
+ version: 2.0.28
6
5
  platform: ruby
7
6
  authors:
8
7
  - Amazon Web Services
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2015-02-20 00:00:00.000000000 Z
11
+ date: 2015-02-24 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: multi_json
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ~>
17
+ - - "~>"
20
18
  - !ruby/object:Gem::Version
21
19
  version: '1.0'
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ~>
24
+ - - "~>"
28
25
  - !ruby/object:Gem::Version
29
26
  version: '1.0'
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: multi_xml
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ~>
31
+ - - "~>"
36
32
  - !ruby/object:Gem::Version
37
33
  version: '0.5'
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ~>
38
+ - - "~>"
44
39
  - !ruby/object:Gem::Version
45
40
  version: '0.5'
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: builder
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
- - - ~>
45
+ - - "~>"
52
46
  - !ruby/object:Gem::Version
53
47
  version: '3.0'
54
48
  type: :runtime
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
- - - ~>
52
+ - - "~>"
60
53
  - !ruby/object:Gem::Version
61
54
  version: '3.0'
62
55
  - !ruby/object:Gem::Dependency
63
56
  name: jmespath
64
57
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
58
  requirements:
67
- - - ~>
59
+ - - "~>"
68
60
  - !ruby/object:Gem::Version
69
61
  version: '1.0'
70
62
  type: :runtime
71
63
  prerelease: false
72
64
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
65
  requirements:
75
- - - ~>
66
+ - - "~>"
76
67
  - !ruby/object:Gem::Version
77
68
  version: '1.0'
78
69
  description: Provides API clients for AWS. This gem is part of the official AWS SDK
@@ -84,319 +75,312 @@ executables:
84
75
  extensions: []
85
76
  extra_rdoc_files: []
86
77
  files:
78
+ - apis/AutoScaling.api.json
79
+ - apis/AutoScaling.paginators.json
80
+ - apis/CloudFormation.api.json
81
+ - apis/CloudFormation.paginators.json
82
+ - apis/CloudFormation.resources.json
83
+ - apis/CloudFront.api.json
84
+ - apis/CloudFront.paginators.json
85
+ - apis/CloudFront.waiters.json
86
+ - apis/CloudHSM.api.json
87
+ - apis/CloudSearch.api.json
88
+ - apis/CloudSearch.paginators.json
89
+ - apis/CloudSearchDomain.api.json
90
+ - apis/CloudTrail.api.json
91
+ - apis/CloudTrail.paginators.json
92
+ - apis/CloudWatch.api.json
93
+ - apis/CloudWatch.paginators.json
94
+ - apis/CloudWatchLogs.api.json
95
+ - apis/CloudWatchLogs.paginators.json
96
+ - apis/CodeDeploy.api.json
97
+ - apis/CodeDeploy.paginators.json
98
+ - apis/CognitoIdentity.api.json
99
+ - apis/CognitoSync.api.json
100
+ - apis/ConfigService.api.json
101
+ - apis/ConfigService.paginators.json
102
+ - apis/DataPipeline.api.json
103
+ - apis/DataPipeline.paginators.json
104
+ - apis/DirectConnect.api.json
105
+ - apis/DirectConnect.paginators.json
106
+ - apis/DynamoDB.api.json
107
+ - apis/DynamoDB.paginators.json
108
+ - apis/DynamoDB.waiters.json
109
+ - apis/EC2.api.json
110
+ - apis/EC2.paginators.json
111
+ - apis/EC2.resources.json
112
+ - apis/EC2.waiters.json
113
+ - apis/ECS.api.json
114
+ - apis/EMR.api.json
115
+ - apis/EMR.paginators.json
116
+ - apis/EMR.waiters.json
117
+ - apis/ElastiCache.api.json
118
+ - apis/ElastiCache.paginators.json
119
+ - apis/ElasticBeanstalk.api.json
120
+ - apis/ElasticBeanstalk.paginators.json
121
+ - apis/ElasticLoadBalancing.api.json
122
+ - apis/ElasticLoadBalancing.paginators.json
123
+ - apis/ElasticTranscoder.api.json
124
+ - apis/ElasticTranscoder.paginators.json
125
+ - apis/ElasticTranscoder.waiters.json
126
+ - apis/Glacier.api.json
127
+ - apis/Glacier.paginators.json
128
+ - apis/Glacier.resources.json
129
+ - apis/Glacier.waiters.json
130
+ - apis/IAM.api.json
131
+ - apis/IAM.paginators.json
132
+ - apis/IAM.resources.json
133
+ - apis/ImportExport.api.json
134
+ - apis/ImportExport.paginators.json
135
+ - apis/KMS.api.json
136
+ - apis/KMS.paginators.json
137
+ - apis/Kinesis.api.json
138
+ - apis/Kinesis.paginators.json
139
+ - apis/Kinesis.waiters.json
140
+ - apis/Lambda.api.json
141
+ - apis/Lambda.paginators.json
142
+ - apis/OpsWorks.api.json
143
+ - apis/OpsWorks.paginators.json
144
+ - apis/OpsWorks.resources.json
145
+ - apis/RDS.api.json
146
+ - apis/RDS.paginators.json
147
+ - apis/RDS.resources.json
148
+ - apis/RDS.waiters.json
149
+ - apis/Redshift.api.json
150
+ - apis/Redshift.paginators.json
151
+ - apis/Redshift.waiters.json
152
+ - apis/Route53.api.json
153
+ - apis/Route53.paginators.json
154
+ - apis/Route53Domains.api.json
155
+ - apis/Route53Domains.paginators.json
156
+ - apis/S3.api.json
157
+ - apis/S3.paginators.json
158
+ - apis/S3.resources.json
159
+ - apis/S3.waiters.json
160
+ - apis/SES.api.json
161
+ - apis/SES.paginators.json
162
+ - apis/SES.waiters.json
163
+ - apis/SNS.api.json
164
+ - apis/SNS.paginators.json
165
+ - apis/SNS.resources.json
166
+ - apis/SQS.api.json
167
+ - apis/SQS.paginators.json
168
+ - apis/SSM.api.json
169
+ - apis/STS.api.json
170
+ - apis/SWF.api.json
171
+ - apis/SWF.paginators.json
172
+ - apis/SimpleDB.api.json
173
+ - apis/SimpleDB.paginators.json
174
+ - apis/StorageGateway.api.json
175
+ - apis/StorageGateway.paginators.json
176
+ - apis/Support.api.json
177
+ - apis/Support.paginators.json
178
+ - bin/aws.rb
87
179
  - endpoints.json
88
- - lib/seahorse/client/param_validator.rb
89
- - lib/seahorse/client/logging/formatter.rb
90
- - lib/seahorse/client/logging/handler.rb
91
- - lib/seahorse/client/request.rb
92
- - lib/seahorse/client/managed_file.rb
93
- - lib/seahorse/client/request_context.rb
94
- - lib/seahorse/client/handler_builder.rb
95
- - lib/seahorse/client/block_io.rb
96
- - lib/seahorse/client/handler_list_entry.rb
97
- - lib/seahorse/client/response.rb
98
- - lib/seahorse/client/configuration.rb
99
- - lib/seahorse/client/param_converter.rb
100
- - lib/seahorse/client/base.rb
101
- - lib/seahorse/client/events.rb
102
- - lib/seahorse/client/networking_error.rb
103
- - lib/seahorse/client/plugins/logging.rb
104
- - lib/seahorse/client/plugins/restful_bindings.rb
105
- - lib/seahorse/client/plugins/net_http.rb
106
- - lib/seahorse/client/plugins/param_conversion.rb
107
- - lib/seahorse/client/plugins/param_validation.rb
108
- - lib/seahorse/client/plugins/json_simple.rb
109
- - lib/seahorse/client/plugins/operation_methods.rb
110
- - lib/seahorse/client/plugins/raise_response_errors.rb
111
- - lib/seahorse/client/plugins/content_length.rb
112
- - lib/seahorse/client/plugins/response_target.rb
113
- - lib/seahorse/client/plugins/endpoint.rb
114
- - lib/seahorse/client/handler_list.rb
115
- - lib/seahorse/client/net_http/connection_pool.rb
116
- - lib/seahorse/client/net_http/patches.rb
117
- - lib/seahorse/client/net_http/handler.rb
118
- - lib/seahorse/client/plugin_list.rb
119
- - lib/seahorse/client/http/request.rb
120
- - lib/seahorse/client/http/headers.rb
121
- - lib/seahorse/client/http/response.rb
122
- - lib/seahorse/client/handler.rb
123
- - lib/seahorse/client/plugin.rb
124
- - lib/seahorse/client/xml/builder.rb
125
- - lib/seahorse/model/api.rb
126
- - lib/seahorse/model/shapes.rb
127
- - lib/seahorse/model/shape_map.rb
128
- - lib/seahorse/model/operation.rb
129
- - lib/seahorse/util.rb
130
- - lib/seahorse/version.rb
131
- - lib/seahorse.rb
132
180
  - lib/aws-sdk-core.rb
133
- - lib/aws-sdk-core/lambda.rb
134
- - lib/aws-sdk-core/client_stubs.rb
135
- - lib/aws-sdk-core/json/builder.rb
136
- - lib/aws-sdk-core/json/rest_handler.rb
137
- - lib/aws-sdk-core/json/simple_body_handler.rb
138
- - lib/aws-sdk-core/json/parser.rb
139
- - lib/aws-sdk-core/json/error_handler.rb
140
- - lib/aws-sdk-core/json/rpc_body_handler.rb
141
- - lib/aws-sdk-core/json/rpc_headers_handler.rb
142
- - lib/aws-sdk-core/cloudfront.rb
143
- - lib/aws-sdk-core/kms.rb
144
- - lib/aws-sdk-core/s3.rb
145
- - lib/aws-sdk-core/rest_body_handler.rb
146
- - lib/aws-sdk-core/api/service_customizations.rb
147
- - lib/aws-sdk-core/api/documenter.rb
181
+ - lib/aws-sdk-core/api/customizer.rb
148
182
  - lib/aws-sdk-core/api/docstrings.rb
183
+ - lib/aws-sdk-core/api/documenter.rb
149
184
  - lib/aws-sdk-core/api/operation_documenter.rb
150
- - lib/aws-sdk-core/api/customizer.rb
151
185
  - lib/aws-sdk-core/api/operation_example.rb
152
- - lib/aws-sdk-core/elastictranscoder.rb
153
- - lib/aws-sdk-core/credentials.rb
154
- - lib/aws-sdk-core/cloudhsm.rb
155
- - lib/aws-sdk-core/datapipeline.rb
156
- - lib/aws-sdk-core/glacier.rb
157
- - lib/aws-sdk-core/configservice.rb
186
+ - lib/aws-sdk-core/api/service_customizations.rb
187
+ - lib/aws-sdk-core/assume_role_credentials.rb
188
+ - lib/aws-sdk-core/autoscaling.rb
158
189
  - lib/aws-sdk-core/client.rb
159
- - lib/aws-sdk-core/query/param_builder.rb
160
- - lib/aws-sdk-core/query/ec2_param_builder.rb
161
- - lib/aws-sdk-core/query/handler.rb
162
- - lib/aws-sdk-core/query/param.rb
163
- - lib/aws-sdk-core/query/param_list.rb
190
+ - lib/aws-sdk-core/client_paging.rb
191
+ - lib/aws-sdk-core/client_stubs.rb
192
+ - lib/aws-sdk-core/client_waiters.rb
193
+ - lib/aws-sdk-core/cloudformation.rb
194
+ - lib/aws-sdk-core/cloudfront.rb
195
+ - lib/aws-sdk-core/cloudhsm.rb
196
+ - lib/aws-sdk-core/cloudsearch.rb
164
197
  - lib/aws-sdk-core/cloudsearchdomain.rb
165
- - lib/aws-sdk-core/sqs.rb
198
+ - lib/aws-sdk-core/cloudtrail.rb
199
+ - lib/aws-sdk-core/cloudwatch.rb
166
200
  - lib/aws-sdk-core/cloudwatchlogs.rb
201
+ - lib/aws-sdk-core/codedeploy.rb
167
202
  - lib/aws-sdk-core/cognitoidentity.rb
168
- - lib/aws-sdk-core/refreshing_credentials.rb
169
- - lib/aws-sdk-core/sts.rb
170
- - lib/aws-sdk-core/storagegateway.rb
171
- - lib/aws-sdk-core/pageable_response.rb
172
- - lib/aws-sdk-core/sns.rb
173
- - lib/aws-sdk-core/ssm.rb
174
- - lib/aws-sdk-core/autoscaling.rb
175
- - lib/aws-sdk-core/tree_hash.rb
176
- - lib/aws-sdk-core/simpledb.rb
177
- - lib/aws-sdk-core/rds.rb
178
- - lib/aws-sdk-core/client_paging.rb
203
+ - lib/aws-sdk-core/cognitosync.rb
204
+ - lib/aws-sdk-core/configservice.rb
205
+ - lib/aws-sdk-core/credential_provider_chain.rb
206
+ - lib/aws-sdk-core/credentials.rb
207
+ - lib/aws-sdk-core/datapipeline.rb
208
+ - lib/aws-sdk-core/directconnect.rb
209
+ - lib/aws-sdk-core/dynamodb.rb
179
210
  - lib/aws-sdk-core/dynamodb/attribute_value.rb
180
- - lib/aws-sdk-core/plugins/stub_responses.rb
181
- - lib/aws-sdk-core/plugins/response_paging.rb
182
- - lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb
183
- - lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb
184
- - lib/aws-sdk-core/plugins/s3_md5s.rb
185
- - lib/aws-sdk-core/plugins/s3_bucket_dns.rb
186
- - lib/aws-sdk-core/plugins/swf_read_timeouts.rb
187
- - lib/aws-sdk-core/plugins/s3_expect_100_continue.rb
188
- - lib/aws-sdk-core/plugins/s3_request_signer.rb
211
+ - lib/aws-sdk-core/ec2.rb
212
+ - lib/aws-sdk-core/ecs.rb
213
+ - lib/aws-sdk-core/elasticache.rb
214
+ - lib/aws-sdk-core/elasticbeanstalk.rb
215
+ - lib/aws-sdk-core/elasticloadbalancing.rb
216
+ - lib/aws-sdk-core/elastictranscoder.rb
217
+ - lib/aws-sdk-core/empty_structure.rb
218
+ - lib/aws-sdk-core/emr.rb
219
+ - lib/aws-sdk-core/endpoint_provider.rb
220
+ - lib/aws-sdk-core/errors.rb
221
+ - lib/aws-sdk-core/glacier.rb
222
+ - lib/aws-sdk-core/iam.rb
223
+ - lib/aws-sdk-core/importexport.rb
224
+ - lib/aws-sdk-core/instance_profile_credentials.rb
225
+ - lib/aws-sdk-core/json/builder.rb
226
+ - lib/aws-sdk-core/json/error_handler.rb
227
+ - lib/aws-sdk-core/json/parser.rb
228
+ - lib/aws-sdk-core/json/rest_handler.rb
229
+ - lib/aws-sdk-core/json/rpc_body_handler.rb
230
+ - lib/aws-sdk-core/json/rpc_headers_handler.rb
231
+ - lib/aws-sdk-core/json/simple_body_handler.rb
232
+ - lib/aws-sdk-core/kinesis.rb
233
+ - lib/aws-sdk-core/kms.rb
234
+ - lib/aws-sdk-core/lambda.rb
235
+ - lib/aws-sdk-core/opsworks.rb
236
+ - lib/aws-sdk-core/pageable_response.rb
237
+ - lib/aws-sdk-core/paging/null_pager.rb
238
+ - lib/aws-sdk-core/paging/null_provider.rb
239
+ - lib/aws-sdk-core/paging/pager.rb
240
+ - lib/aws-sdk-core/paging/provider.rb
189
241
  - lib/aws-sdk-core/plugins/csd_conditional_signing.rb
190
- - lib/aws-sdk-core/plugins/s3_redirects.rb
191
- - lib/aws-sdk-core/plugins/regional_endpoint.rb
242
+ - lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb
243
+ - lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb
244
+ - lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb
245
+ - lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb
192
246
  - lib/aws-sdk-core/plugins/glacier_account_id.rb
193
- - lib/aws-sdk-core/plugins/sqs_queue_urls.rb
194
- - lib/aws-sdk-core/plugins/route_53_id_fix.rb
195
247
  - lib/aws-sdk-core/plugins/glacier_api_version.rb
196
- - lib/aws-sdk-core/plugins/protocols/rest_xml.rb
248
+ - lib/aws-sdk-core/plugins/glacier_checksums.rb
249
+ - lib/aws-sdk-core/plugins/global_configuration.rb
250
+ - lib/aws-sdk-core/plugins/protocols/ec2.rb
251
+ - lib/aws-sdk-core/plugins/protocols/json_rpc.rb
197
252
  - lib/aws-sdk-core/plugins/protocols/query.rb
198
253
  - lib/aws-sdk-core/plugins/protocols/rest_json.rb
199
- - lib/aws-sdk-core/plugins/protocols/json_rpc.rb
200
- - lib/aws-sdk-core/plugins/protocols/ec2.rb
254
+ - lib/aws-sdk-core/plugins/protocols/rest_xml.rb
255
+ - lib/aws-sdk-core/plugins/regional_endpoint.rb
201
256
  - lib/aws-sdk-core/plugins/request_signer.rb
202
- - lib/aws-sdk-core/plugins/glacier_checksums.rb
203
- - lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb
204
- - lib/aws-sdk-core/plugins/user_agent.rb
257
+ - lib/aws-sdk-core/plugins/response_paging.rb
205
258
  - lib/aws-sdk-core/plugins/retry_errors.rb
259
+ - lib/aws-sdk-core/plugins/route_53_id_fix.rb
260
+ - lib/aws-sdk-core/plugins/s3_bucket_dns.rb
206
261
  - lib/aws-sdk-core/plugins/s3_complete_multipart_upload_fix.rb
262
+ - lib/aws-sdk-core/plugins/s3_expect_100_continue.rb
263
+ - lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb
207
264
  - lib/aws-sdk-core/plugins/s3_location_constraint.rb
265
+ - lib/aws-sdk-core/plugins/s3_md5s.rb
266
+ - lib/aws-sdk-core/plugins/s3_redirects.rb
267
+ - lib/aws-sdk-core/plugins/s3_request_signer.rb
208
268
  - lib/aws-sdk-core/plugins/s3_sse_cpk.rb
209
269
  - lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb
210
- - lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb
211
- - lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb
212
- - lib/aws-sdk-core/plugins/global_configuration.rb
213
- - lib/aws-sdk-core/assume_role_credentials.rb
214
- - lib/aws-sdk-core/endpoint_provider.rb
215
- - lib/aws-sdk-core/swf.rb
216
- - lib/aws-sdk-core/structure.rb
270
+ - lib/aws-sdk-core/plugins/sqs_queue_urls.rb
271
+ - lib/aws-sdk-core/plugins/stub_responses.rb
272
+ - lib/aws-sdk-core/plugins/swf_read_timeouts.rb
273
+ - lib/aws-sdk-core/plugins/user_agent.rb
274
+ - lib/aws-sdk-core/query/ec2_param_builder.rb
275
+ - lib/aws-sdk-core/query/handler.rb
276
+ - lib/aws-sdk-core/query/param.rb
277
+ - lib/aws-sdk-core/query/param_builder.rb
278
+ - lib/aws-sdk-core/query/param_list.rb
279
+ - lib/aws-sdk-core/rds.rb
280
+ - lib/aws-sdk-core/redshift.rb
281
+ - lib/aws-sdk-core/refreshing_credentials.rb
282
+ - lib/aws-sdk-core/rest_body_handler.rb
283
+ - lib/aws-sdk-core/route53.rb
284
+ - lib/aws-sdk-core/route53domains.rb
285
+ - lib/aws-sdk-core/s3.rb
217
286
  - lib/aws-sdk-core/s3/bucket_region_cache.rb
218
287
  - lib/aws-sdk-core/s3/presigner.rb
219
- - lib/aws-sdk-core/empty_structure.rb
220
288
  - lib/aws-sdk-core/service.rb
221
- - lib/aws-sdk-core/version.rb
222
- - lib/aws-sdk-core/dynamodb.rb
223
289
  - lib/aws-sdk-core/ses.rb
224
- - lib/aws-sdk-core/cloudsearch.rb
225
- - lib/aws-sdk-core/elasticache.rb
226
290
  - lib/aws-sdk-core/shared_credentials.rb
227
- - lib/aws-sdk-core/redshift.rb
228
- - lib/aws-sdk-core/cloudwatch.rb
229
- - lib/aws-sdk-core/cognitosync.rb
230
- - lib/aws-sdk-core/elasticbeanstalk.rb
231
- - lib/aws-sdk-core/directconnect.rb
232
- - lib/aws-sdk-core/codedeploy.rb
233
- - lib/aws-sdk-core/cloudformation.rb
234
- - lib/aws-sdk-core/elasticloadbalancing.rb
235
- - lib/aws-sdk-core/paging/null_provider.rb
236
- - lib/aws-sdk-core/paging/provider.rb
237
- - lib/aws-sdk-core/paging/null_pager.rb
238
- - lib/aws-sdk-core/paging/pager.rb
239
- - lib/aws-sdk-core/client_waiters.rb
240
- - lib/aws-sdk-core/importexport.rb
241
- - lib/aws-sdk-core/ec2.rb
242
- - lib/aws-sdk-core/instance_profile_credentials.rb
243
- - lib/aws-sdk-core/kinesis.rb
244
- - lib/aws-sdk-core/support.rb
245
- - lib/aws-sdk-core/ecs.rb
246
- - lib/aws-sdk-core/route53.rb
247
- - lib/aws-sdk-core/errors.rb
248
- - lib/aws-sdk-core/opsworks.rb
249
- - lib/aws-sdk-core/cloudtrail.rb
250
- - lib/aws-sdk-core/emr.rb
251
- - lib/aws-sdk-core/xml/default_list.rb
252
- - lib/aws-sdk-core/xml/builder.rb
253
- - lib/aws-sdk-core/xml/rest_handler.rb
254
- - lib/aws-sdk-core/xml/parser.rb
255
- - lib/aws-sdk-core/xml/error_handler.rb
256
- - lib/aws-sdk-core/signers/s3.rb
257
- - lib/aws-sdk-core/signers/v2.rb
258
291
  - lib/aws-sdk-core/signers/base.rb
259
- - lib/aws-sdk-core/signers/v4.rb
260
292
  - lib/aws-sdk-core/signers/handler.rb
293
+ - lib/aws-sdk-core/signers/s3.rb
294
+ - lib/aws-sdk-core/signers/v2.rb
261
295
  - lib/aws-sdk-core/signers/v3.rb
262
- - lib/aws-sdk-core/route53domains.rb
296
+ - lib/aws-sdk-core/signers/v4.rb
297
+ - lib/aws-sdk-core/simpledb.rb
298
+ - lib/aws-sdk-core/sns.rb
299
+ - lib/aws-sdk-core/sqs.rb
300
+ - lib/aws-sdk-core/ssm.rb
301
+ - lib/aws-sdk-core/storagegateway.rb
302
+ - lib/aws-sdk-core/structure.rb
303
+ - lib/aws-sdk-core/sts.rb
304
+ - lib/aws-sdk-core/support.rb
305
+ - lib/aws-sdk-core/swf.rb
306
+ - lib/aws-sdk-core/tree_hash.rb
307
+ - lib/aws-sdk-core/version.rb
308
+ - lib/aws-sdk-core/waiters/errors.rb
263
309
  - lib/aws-sdk-core/waiters/null_provider.rb
310
+ - lib/aws-sdk-core/waiters/poller.rb
264
311
  - lib/aws-sdk-core/waiters/provider.rb
265
312
  - lib/aws-sdk-core/waiters/waiter.rb
266
- - lib/aws-sdk-core/waiters/errors.rb
267
- - lib/aws-sdk-core/waiters/poller.rb
268
- - lib/aws-sdk-core/iam.rb
269
- - lib/aws-sdk-core/credential_provider_chain.rb
270
- - apis/CloudWatchLogs.paginators.json
271
- - apis/SNS.api.json
272
- - apis/CloudHSM.api.json
273
- - apis/StorageGateway.api.json
274
- - apis/CloudWatchLogs.api.json
275
- - apis/OpsWorks.api.json
276
- - apis/Lambda.api.json
277
- - apis/EC2.paginators.json
278
- - apis/OpsWorks.resources.json
279
- - apis/EMR.api.json
280
- - apis/EC2.waiters.json
281
- - apis/EC2.resources.json
282
- - apis/Route53Domains.paginators.json
283
- - apis/Redshift.api.json
284
- - apis/SES.waiters.json
285
- - apis/EMR.waiters.json
286
- - apis/CloudSearch.api.json
287
- - apis/KMS.api.json
288
- - apis/ElasticBeanstalk.api.json
289
- - apis/KMS.paginators.json
290
- - apis/ElasticTranscoder.waiters.json
291
- - apis/CloudFront.waiters.json
292
- - apis/CloudFormation.paginators.json
293
- - apis/Kinesis.paginators.json
294
- - apis/DynamoDB.paginators.json
295
- - apis/Route53.api.json
296
- - apis/Redshift.waiters.json
297
- - apis/ElasticLoadBalancing.api.json
298
- - apis/SES.api.json
299
- - apis/ConfigService.api.json
300
- - apis/ECS.api.json
301
- - apis/CodeDeploy.paginators.json
302
- - apis/Support.paginators.json
303
- - apis/Glacier.resources.json
304
- - apis/CloudSearchDomain.api.json
305
- - apis/DirectConnect.api.json
306
- - apis/SimpleDB.paginators.json
307
- - apis/Support.api.json
308
- - apis/ImportExport.paginators.json
309
- - apis/DirectConnect.paginators.json
310
- - apis/AutoScaling.api.json
311
- - apis/ElasticBeanstalk.paginators.json
312
- - apis/Glacier.api.json
313
- - apis/CloudSearch.paginators.json
314
- - apis/OpsWorks.paginators.json
315
- - apis/Kinesis.waiters.json
316
- - apis/CloudTrail.api.json
317
- - apis/Route53Domains.api.json
318
- - apis/STS.api.json
319
- - apis/CloudTrail.paginators.json
320
- - apis/DynamoDB.waiters.json
321
- - apis/Lambda.paginators.json
322
- - apis/SQS.api.json
323
- - apis/SES.paginators.json
324
- - apis/IAM.resources.json
325
- - apis/EMR.paginators.json
326
- - apis/ElasticLoadBalancing.paginators.json
327
- - apis/CloudFormation.api.json
328
- - apis/S3.waiters.json
329
- - apis/Route53.paginators.json
330
- - apis/AutoScaling.paginators.json
331
- - apis/DynamoDB.api.json
332
- - apis/S3.api.json
333
- - apis/CloudWatch.paginators.json
334
- - apis/SSM.api.json
335
- - apis/ElasticTranscoder.api.json
336
- - apis/Glacier.waiters.json
337
- - apis/RDS.waiters.json
338
- - apis/CognitoIdentity.api.json
339
- - apis/RDS.api.json
340
- - apis/ElastiCache.paginators.json
341
- - apis/Glacier.paginators.json
342
- - apis/DataPipeline.api.json
343
- - apis/SWF.api.json
344
- - apis/ElastiCache.api.json
345
- - apis/SQS.paginators.json
346
- - apis/StorageGateway.paginators.json
347
- - apis/IAM.api.json
348
- - apis/IAM.paginators.json
349
- - apis/SWF.paginators.json
350
- - apis/CloudFront.paginators.json
351
- - apis/CloudFormation.resources.json
352
- - apis/CloudWatch.api.json
353
- - apis/ImportExport.api.json
354
- - apis/SNS.paginators.json
355
- - apis/CloudFront.api.json
356
- - apis/S3.resources.json
357
- - apis/SimpleDB.api.json
358
- - apis/ConfigService.paginators.json
359
- - apis/SNS.resources.json
360
- - apis/DataPipeline.paginators.json
361
- - apis/Redshift.paginators.json
362
- - apis/S3.paginators.json
363
- - apis/Kinesis.api.json
364
- - apis/ElasticTranscoder.paginators.json
365
- - apis/CognitoSync.api.json
366
- - apis/RDS.paginators.json
367
- - apis/CodeDeploy.api.json
368
- - apis/EC2.api.json
369
- - bin/aws.rb
313
+ - lib/aws-sdk-core/xml/builder.rb
314
+ - lib/aws-sdk-core/xml/default_list.rb
315
+ - lib/aws-sdk-core/xml/error_handler.rb
316
+ - lib/aws-sdk-core/xml/parser.rb
317
+ - lib/aws-sdk-core/xml/rest_handler.rb
318
+ - lib/seahorse.rb
319
+ - lib/seahorse/client/base.rb
320
+ - lib/seahorse/client/block_io.rb
321
+ - lib/seahorse/client/configuration.rb
322
+ - lib/seahorse/client/events.rb
323
+ - lib/seahorse/client/handler.rb
324
+ - lib/seahorse/client/handler_builder.rb
325
+ - lib/seahorse/client/handler_list.rb
326
+ - lib/seahorse/client/handler_list_entry.rb
327
+ - lib/seahorse/client/http/headers.rb
328
+ - lib/seahorse/client/http/request.rb
329
+ - lib/seahorse/client/http/response.rb
330
+ - lib/seahorse/client/logging/formatter.rb
331
+ - lib/seahorse/client/logging/handler.rb
332
+ - lib/seahorse/client/managed_file.rb
333
+ - lib/seahorse/client/net_http/connection_pool.rb
334
+ - lib/seahorse/client/net_http/handler.rb
335
+ - lib/seahorse/client/net_http/patches.rb
336
+ - lib/seahorse/client/networking_error.rb
337
+ - lib/seahorse/client/param_converter.rb
338
+ - lib/seahorse/client/param_validator.rb
339
+ - lib/seahorse/client/plugin.rb
340
+ - lib/seahorse/client/plugin_list.rb
341
+ - lib/seahorse/client/plugins/content_length.rb
342
+ - lib/seahorse/client/plugins/endpoint.rb
343
+ - lib/seahorse/client/plugins/json_simple.rb
344
+ - lib/seahorse/client/plugins/logging.rb
345
+ - lib/seahorse/client/plugins/net_http.rb
346
+ - lib/seahorse/client/plugins/operation_methods.rb
347
+ - lib/seahorse/client/plugins/param_conversion.rb
348
+ - lib/seahorse/client/plugins/param_validation.rb
349
+ - lib/seahorse/client/plugins/raise_response_errors.rb
350
+ - lib/seahorse/client/plugins/response_target.rb
351
+ - lib/seahorse/client/plugins/restful_bindings.rb
352
+ - lib/seahorse/client/request.rb
353
+ - lib/seahorse/client/request_context.rb
354
+ - lib/seahorse/client/response.rb
355
+ - lib/seahorse/client/xml/builder.rb
356
+ - lib/seahorse/model/api.rb
357
+ - lib/seahorse/model/operation.rb
358
+ - lib/seahorse/model/shape_map.rb
359
+ - lib/seahorse/model/shapes.rb
360
+ - lib/seahorse/util.rb
361
+ - lib/seahorse/version.rb
370
362
  homepage: http://github.com/aws/aws-sdk-ruby
371
363
  licenses:
372
364
  - Apache 2.0
365
+ metadata: {}
373
366
  post_install_message:
374
367
  rdoc_options: []
375
368
  require_paths:
376
369
  - lib
377
370
  required_ruby_version: !ruby/object:Gem::Requirement
378
- none: false
379
371
  requirements:
380
- - - ! '>='
372
+ - - ">="
381
373
  - !ruby/object:Gem::Version
382
374
  version: '0'
383
- segments:
384
- - 0
385
- hash: 2249350360312065350
386
375
  required_rubygems_version: !ruby/object:Gem::Requirement
387
- none: false
388
376
  requirements:
389
- - - ! '>='
377
+ - - ">="
390
378
  - !ruby/object:Gem::Version
391
379
  version: '0'
392
- segments:
393
- - 0
394
- hash: 2249350360312065350
395
380
  requirements: []
396
381
  rubyforge_project:
397
- rubygems_version: 1.8.24
382
+ rubygems_version: 2.4.5
398
383
  signing_key:
399
- specification_version: 3
384
+ specification_version: 4
400
385
  summary: AWS SDK for Ruby - Core
401
386
  test_files: []
402
- has_rdoc: