aws-sdk 1.16.1 → 1.17.0

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: 0f244ef626a3e99adac1958ad099b5a4c510a94c
4
- data.tar.gz: 850c152372a0487984fe6a27612acf1c8fdc364a
3
+ metadata.gz: cfa7ad3c4cd9323dcff9fbe929ed06ecf5d4e9b3
4
+ data.tar.gz: dca56fc5cf17f37524a67e0d1fcf873dcf3c062a
5
5
  SHA512:
6
- metadata.gz: ba5863c608c9c3a4be552799a73aa849fb3f16d47b8a7da23ad23a81160039e4c74a01e4826be88adac127e0e2ff055fca9334bf1a6f96874bf4aee19d5778d2
7
- data.tar.gz: 46c2f0037accbd35f3a228ea4ec26e841a40081eca9a3c098686d169faca68754f4d05e57c5b17f94e58504fc0d1b3d0bc813d913e4b4121e769c75365a5d678
6
+ metadata.gz: ca1d78ff14270f1bf41e358718c1f76aa2e0f99527200566cbbc0515d6641120c0f7725e2d6b79f46c6cb851afd6382cc3e2b05c98fbfb168ff22df370aaf982
7
+ data.tar.gz: 55d6dfcd5fed9b4ff3c1ba821c960db5572c0c9ab83309c3139b789a99ae5dc3c2be4bfb75e1c4cf735086b09f49d49ac53c6b4551d4c6cdcea94bcb9122ebd5
data/README.md CHANGED
@@ -121,12 +121,12 @@ The SDK currently supports the following services:
121
121
  </tr>
122
122
  <tr>
123
123
  <td>AWS::EC2</td>
124
- <td>2013-02-01</td>
124
+ <td>2013-07-15</td>
125
125
  <td>Amazon Elastic Compute Cloud</td>
126
126
  </tr>
127
127
  <tr>
128
128
  <td>AWS::ElastiCache</td>
129
- <td>2012-11-15</td>
129
+ <td>2013-06-15</td>
130
130
  <td>Amazon ElastiCache</td>
131
131
  </tr>
132
132
  <tr>
@@ -12,7 +12,7 @@
12
12
  # language governing permissions and limitations under the License.
13
13
 
14
14
  ---
15
- :api_version: '2012-11-15'
15
+ :api_version: '2013-06-15'
16
16
  :operations:
17
17
  - :name: AuthorizeCacheSecurityGroupIngress
18
18
  :method: :authorize_cache_security_group_ingress
@@ -46,6 +46,8 @@
46
46
  CacheClusterId:
47
47
  - :string
48
48
  - :required
49
+ ReplicationGroupId:
50
+ - :string
49
51
  NumCacheNodes:
50
52
  - :integer
51
53
  - :required
@@ -65,6 +67,9 @@
65
67
  - :membered_list:
66
68
  - :string
67
69
  SecurityGroupIds:
70
+ - :membered_list:
71
+ - :string
72
+ SnapshotArns:
68
73
  - :membered_list:
69
74
  - :string
70
75
  PreferredAvailabilityZone:
@@ -207,6 +212,54 @@
207
212
  :rename: :subnets
208
213
  :list: true
209
214
  :ignore: true
215
+ - :name: CreateReplicationGroup
216
+ :method: :create_replication_group
217
+ :inputs:
218
+ ReplicationGroupId:
219
+ - :string
220
+ - :required
221
+ PrimaryClusterId:
222
+ - :string
223
+ - :required
224
+ ReplicationGroupDescription:
225
+ - :string
226
+ - :required
227
+ :outputs:
228
+ :children:
229
+ CreateReplicationGroupResult:
230
+ :ignore: true
231
+ :children:
232
+ ReplicationGroup:
233
+ :children:
234
+ MemberClusters:
235
+ :ignore: true
236
+ :children:
237
+ ClusterId:
238
+ :rename: :member_clusters
239
+ :list: true
240
+ NodeGroups:
241
+ :ignore: true
242
+ :children:
243
+ NodeGroup:
244
+ :rename: :node_groups
245
+ :list: true
246
+ :children:
247
+ PrimaryEndpoint:
248
+ :children:
249
+ Port:
250
+ :type: :integer
251
+ NodeGroupMembers:
252
+ :ignore: true
253
+ :children:
254
+ NodeGroupMember:
255
+ :rename: :node_group_members
256
+ :list: true
257
+ :children:
258
+ ReadEndpoint:
259
+ :children:
260
+ Port:
261
+ :type: :integer
262
+ :ignore: true
210
263
  - :name: DeleteCacheCluster
211
264
  :method: :delete_cache_cluster
212
265
  :inputs:
@@ -304,6 +357,48 @@
304
357
  :children:
305
358
  DeleteCacheSubnetGroupResult:
306
359
  :ignore: true
360
+ - :name: DeleteReplicationGroup
361
+ :method: :delete_replication_group
362
+ :inputs:
363
+ ReplicationGroupId:
364
+ - :string
365
+ - :required
366
+ :outputs:
367
+ :children:
368
+ DeleteReplicationGroupResult:
369
+ :ignore: true
370
+ :children:
371
+ ReplicationGroup:
372
+ :children:
373
+ MemberClusters:
374
+ :ignore: true
375
+ :children:
376
+ ClusterId:
377
+ :rename: :member_clusters
378
+ :list: true
379
+ NodeGroups:
380
+ :ignore: true
381
+ :children:
382
+ NodeGroup:
383
+ :rename: :node_groups
384
+ :list: true
385
+ :children:
386
+ PrimaryEndpoint:
387
+ :children:
388
+ Port:
389
+ :type: :integer
390
+ NodeGroupMembers:
391
+ :ignore: true
392
+ :children:
393
+ NodeGroupMember:
394
+ :rename: :node_group_members
395
+ :list: true
396
+ :children:
397
+ ReadEndpoint:
398
+ :children:
399
+ Port:
400
+ :type: :integer
401
+ :ignore: true
307
402
  - :name: DescribeCacheClusters
308
403
  :method: :describe_cache_clusters
309
404
  :inputs:
@@ -594,6 +689,55 @@
594
689
  :children:
595
690
  Date:
596
691
  :type: :time
692
+ - :name: DescribeReplicationGroups
693
+ :method: :describe_replication_groups
694
+ :inputs:
695
+ ReplicationGroupId:
696
+ - :string
697
+ MaxRecords:
698
+ - :integer
699
+ Marker:
700
+ - :string
701
+ :outputs:
702
+ :children:
703
+ DescribeReplicationGroupsResult:
704
+ :ignore: true
705
+ :children:
706
+ ReplicationGroups:
707
+ :ignore: true
708
+ :children:
709
+ ReplicationGroup:
710
+ :rename: :replication_groups
711
+ :list: true
712
+ :children:
713
+ MemberClusters:
714
+ :ignore: true
715
+ :children:
716
+ ClusterId:
717
+ :rename: :member_clusters
718
+ :list: true
719
+ NodeGroups:
720
+ :ignore: true
721
+ :children:
722
+ NodeGroup:
723
+ :rename: :node_groups
724
+ :list: true
725
+ :children:
726
+ PrimaryEndpoint:
727
+ :children:
728
+ Port:
729
+ :type: :integer
730
+ NodeGroupMembers:
731
+ :ignore: true
732
+ :children:
733
+ NodeGroupMember:
734
+ :rename: :node_group_members
735
+ :list: true
736
+ :children:
737
+ ReadEndpoint:
738
+ :children:
739
+ Port:
740
+ :type: :integer
597
741
  - :name: DescribeReservedCacheNodes
598
742
  :method: :describe_reserved_cache_nodes
599
743
  :inputs:
@@ -823,6 +967,72 @@
823
967
  :rename: :subnets
824
968
  :list: true
825
969
  :ignore: true
970
+ - :name: ModifyReplicationGroup
971
+ :method: :modify_replication_group
972
+ :inputs:
973
+ ReplicationGroupId:
974
+ - :string
975
+ - :required
976
+ ReplicationGroupDescription:
977
+ - :string
978
+ CacheSecurityGroupNames:
979
+ - :membered_list:
980
+ - :string
981
+ SecurityGroupIds:
982
+ - :membered_list:
983
+ - :string
984
+ PreferredMaintenanceWindow:
985
+ - :string
986
+ NotificationTopicArn:
987
+ - :string
988
+ CacheParameterGroupName:
989
+ - :string
990
+ NotificationTopicStatus:
991
+ - :string
992
+ ApplyImmediately:
993
+ - :boolean
994
+ EngineVersion:
995
+ - :string
996
+ AutoMinorVersionUpgrade:
997
+ - :boolean
998
+ PrimaryClusterId:
999
+ - :string
1000
+ :outputs:
1001
+ :children:
1002
+ ModifyReplicationGroupResult:
1003
+ :ignore: true
1004
+ :children:
1005
+ ReplicationGroup:
1006
+ :children:
1007
+ MemberClusters:
1008
+ :ignore: true
1009
+ :children:
1010
+ ClusterId:
1011
+ :rename: :member_clusters
1012
+ :list: true
1013
+ NodeGroups:
1014
+ :ignore: true
1015
+ :children:
1016
+ NodeGroup:
1017
+ :rename: :node_groups
1018
+ :list: true
1019
+ :children:
1020
+ PrimaryEndpoint:
1021
+ :children:
1022
+ Port:
1023
+ :type: :integer
1024
+ NodeGroupMembers:
1025
+ :ignore: true
1026
+ :children:
1027
+ NodeGroupMember:
1028
+ :rename: :node_group_members
1029
+ :list: true
1030
+ :children:
1031
+ ReadEndpoint:
1032
+ :children:
1033
+ Port:
1034
+ :type: :integer
1035
+ :ignore: true
826
1036
  - :name: PurchaseReservedCacheNodesOffering
827
1037
  :method: :purchase_reserved_cache_nodes_offering
828
1038
  :inputs:
@@ -17,16 +17,16 @@ module AWS
17
17
  # Client class for Amazon ElastiCache.
18
18
  class Client < Core::QueryClient
19
19
 
20
- API_VERSION = '2012-11-15'
20
+ API_VERSION = '2013-06-15'
21
21
 
22
22
  # @api private
23
23
  CACHEABLE_REQUESTS = Set[]
24
24
 
25
25
  end
26
26
 
27
- class Client::V20121115 < Client
27
+ class Client::V20130615 < Client
28
28
 
29
- define_client_methods('2012-11-15')
29
+ define_client_methods('2013-06-15')
30
30
 
31
31
  end
32
32
  end
@@ -250,7 +250,7 @@ module AWS
250
250
  # then you must also specify the character set. Examples include
251
251
  # UTF-8, ISO-8859-1, and Shift_JIS. Defaults to 7-bit ASCII.
252
252
  # @option options [String] :body_html
253
- # @return [nil]
253
+ # @return [Core::Response] the SendEmail response
254
254
  def send_email options = {}
255
255
 
256
256
  require_each(options, :subject, :from)
@@ -281,8 +281,6 @@ module AWS
281
281
  }
282
282
 
283
283
  client.send_email(nest_options(options, accepted_options))
284
- nil
285
-
286
284
  end
287
285
 
288
286
  # Sends a raw email (email message, with header and content specified).
@@ -329,7 +327,7 @@ module AWS
329
327
  # complaints will be sent to this email address. This takes
330
328
  # precedence over any Return-Path header that you might include in
331
329
  # the `raw_message`.
332
- # @return [nil]
330
+ # @return [Core::Response] the SendRawEmail response
333
331
  def send_raw_email raw_message, options = {}
334
332
 
335
333
  send_opts = {}
@@ -343,11 +341,12 @@ module AWS
343
341
  send_opts[:destinations] = [options[:to]].flatten if options[:to]
344
342
 
345
343
  response = client.send_raw_email(send_opts)
344
+
346
345
  if raw_message.respond_to?(:message_id=)
347
346
  raw_message.message_id = "#{response.data[:message_id]}@email.amazonses.com"
348
347
  end
349
348
 
350
- nil
349
+ response
351
350
  end
352
351
 
353
352
  # for compatability with ActionMailer
@@ -13,5 +13,5 @@
13
13
 
14
14
  module AWS
15
15
  # Current version of the AWS SDK for Ruby
16
- VERSION = '1.16.1'
16
+ VERSION = '1.17.0'
17
17
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.16.1
4
+ version: 1.17.0
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: 2013-08-31 00:00:00.000000000 Z
11
+ date: 2013-09-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: uuidtools
@@ -592,7 +592,7 @@ files:
592
592
  - lib/aws/api_config/DynamoDB-2011-12-05.yml
593
593
  - lib/aws/api_config/DynamoDB-2012-08-10.yml
594
594
  - lib/aws/api_config/EC2-2013-07-15.yml
595
- - lib/aws/api_config/ElastiCache-2012-11-15.yml
595
+ - lib/aws/api_config/ElastiCache-2013-06-15.yml
596
596
  - lib/aws/api_config/ElasticBeanstalk-2010-12-01.yml
597
597
  - lib/aws/api_config/ElasticTranscoder-2012-09-25.yml
598
598
  - lib/aws/api_config/ELB-2012-06-01.yml