fog-aws 0.8.1 → 0.9.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.
Files changed (58) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.travis.yml +4 -0
  4. data/README.md +1 -1
  5. data/gemfiles/Gemfile-edge +5 -0
  6. data/lib/fog/aws/models/compute/security_group.rb +4 -4
  7. data/lib/fog/aws/models/rds/cluster.rb +93 -0
  8. data/lib/fog/aws/models/rds/cluster_snapshots.rb +48 -0
  9. data/lib/fog/aws/models/rds/clusters.rb +23 -0
  10. data/lib/fog/aws/models/rds/parameters.rb +15 -0
  11. data/lib/fog/aws/models/rds/server.rb +29 -11
  12. data/lib/fog/aws/models/rds/servers.rb +4 -0
  13. data/lib/fog/aws/models/rds/snapshot.rb +36 -17
  14. data/lib/fog/aws/parsers/rds/create_db_cluster.rb +32 -0
  15. data/lib/fog/aws/parsers/rds/create_db_cluster_snapshot.rb +33 -0
  16. data/lib/fog/aws/parsers/rds/db_cluster_parser.rb +71 -0
  17. data/lib/fog/aws/parsers/rds/db_cluster_snapshot_parser.rb +32 -0
  18. data/lib/fog/aws/parsers/rds/db_parameter_parser.rb +30 -0
  19. data/lib/fog/aws/parsers/rds/db_parser.rb +2 -1
  20. data/lib/fog/aws/parsers/rds/delete_db_cluster.rb +32 -0
  21. data/lib/fog/aws/parsers/rds/delete_db_cluster_snapshot.rb +32 -0
  22. data/lib/fog/aws/parsers/rds/describe_db_cluster_snapshots.rb +34 -0
  23. data/lib/fog/aws/parsers/rds/describe_db_clusters.rb +34 -0
  24. data/lib/fog/aws/parsers/rds/describe_engine_default_parameters.rb +34 -0
  25. data/lib/fog/aws/parsers/rds/restore_db_instance_from_db_snapshot.rb +2 -2
  26. data/lib/fog/aws/parsers/rds/snapshot_parser.rb +6 -13
  27. data/lib/fog/aws/rds.rb +25 -0
  28. data/lib/fog/aws/requests/compute/describe_availability_zones.rb +5 -2
  29. data/lib/fog/aws/requests/rds/create_db_cluster.rb +98 -0
  30. data/lib/fog/aws/requests/rds/create_db_cluster_snapshot.rb +68 -0
  31. data/lib/fog/aws/requests/rds/create_db_instance.rb +42 -4
  32. data/lib/fog/aws/requests/rds/create_db_snapshot.rb +1 -1
  33. data/lib/fog/aws/requests/rds/delete_db_cluster.rb +55 -0
  34. data/lib/fog/aws/requests/rds/delete_db_cluster_snapshot.rb +43 -0
  35. data/lib/fog/aws/requests/rds/delete_db_instance.rb +9 -0
  36. data/lib/fog/aws/requests/rds/delete_db_snapshot.rb +2 -1
  37. data/lib/fog/aws/requests/rds/describe_db_cluster_snapshots.rb +66 -0
  38. data/lib/fog/aws/requests/rds/describe_db_clusters.rb +54 -0
  39. data/lib/fog/aws/requests/rds/describe_db_instances.rb +4 -0
  40. data/lib/fog/aws/requests/rds/describe_db_parameters.rb +15 -1
  41. data/lib/fog/aws/requests/rds/describe_engine_default_parameters.rb +40 -0
  42. data/lib/fog/aws/requests/rds/modify_db_instance.rb +52 -49
  43. data/lib/fog/aws/requests/rds/modify_db_parameter_group.rb +28 -1
  44. data/lib/fog/aws/requests/rds/restore_db_instance_from_db_snapshot.rb +63 -2
  45. data/lib/fog/aws/version.rb +1 -1
  46. data/tests/models/rds/cluster_tests.rb +54 -0
  47. data/tests/models/rds/clusters_tests.rb +5 -0
  48. data/tests/models/rds/helper.rb +13 -0
  49. data/tests/models/rds/server_tests.rb +3 -3
  50. data/tests/models/rds/servers_tests.rb +18 -0
  51. data/tests/requests/compute/instance_tests.rb +2 -3
  52. data/tests/requests/rds/cluster_snapshot_tests.rb +43 -0
  53. data/tests/requests/rds/cluster_tests.rb +37 -0
  54. data/tests/requests/rds/helper.rb +84 -0
  55. data/tests/requests/rds/instance_tests.rb +16 -4
  56. data/tests/requests/rds/parameter_group_tests.rb +1 -1
  57. data/tests/requests/rds/parameter_request_tests.rb +0 -2
  58. metadata +27 -3
@@ -3,4 +3,22 @@ Shindo.tests("AWS::RDS | servers", ['aws', 'rds']) do
3
3
  collection_tests(Fog::AWS[:rds].servers, rds_default_server_params) do
4
4
  @instance.wait_for { ready? }
5
5
  end
6
+
7
+ tests("#restore").succeeds do
8
+ instance = Fog::AWS[:rds].servers.create(rds_default_server_params.merge(:id => uniq_id("fog-snapshot-test")))
9
+
10
+ snapshot_id = uniq_id('fog-snapshot-test')
11
+ @snapshot = instance.snapshots.create(:id => snapshot_id )
12
+ instance.destroy
13
+
14
+ db_name = uniq_id('fog-db-name')
15
+ @restore_instance = Fog::AWS[:rds].servers.restore('master_username' => instance.master_username, 'flavor_id' => 'db.m3.medium', 'source_snapshot_id' => snapshot_id, 'id' => uniq_id('restored-instance'))
16
+ end
17
+
18
+ if Fog.mocking? && @restore_instance.respond_to?(:ready?)
19
+ @restore_instance.wait_for { ready? }
20
+ end
21
+
22
+ @snapshot.destroy
23
+ @restore_instance.destroy
6
24
  end
@@ -229,7 +229,7 @@ Shindo.tests('Fog::Compute[:aws] | instance requests', ['aws']) do
229
229
  "App" => "test1",
230
230
  },
231
231
  :image_id => 'ami-3d7e2e54',
232
- :flavor_id => 't1.micro',
232
+ :flavor_id => 't1.micro'
233
233
  )
234
234
  svr2 = Fog::Compute[:aws].servers.create(
235
235
  :availability_zone => 'eu-west-1b',
@@ -240,10 +240,9 @@ Shindo.tests('Fog::Compute[:aws] | instance requests', ['aws']) do
240
240
  "App" => "test2",
241
241
  },
242
242
  :image_id => 'ami-3d7e2e54',
243
- :flavor_id => 't1.micro',
243
+ :flavor_id => 't1.micro'
244
244
  )
245
245
 
246
- filters = {'tag:App' => ['test1', 'test2']}
247
246
  body = Fog::Compute[:aws].describe_instances('tag:App' => ['test1', 'test2']).body
248
247
  tests("returns 2 hosts").returns(2) { body['reservationSet'].size }
249
248
  svr1.destroy
@@ -0,0 +1,43 @@
1
+ Shindo.tests('AWS::RDS | cluster snapshot requests', ['aws', 'rds']) do
2
+ @cluster_id = uniq_id("fog-test")
3
+ @snapshot_id = uniq_id("cluster-db-snapshot")
4
+ @cluster = Fog::AWS[:rds].clusters.create(rds_default_cluster_params.merge(:id => @cluster_id))
5
+ @snapshot_count = Fog::AWS[:rds].describe_db_cluster_snapshots.body['DescribeDBClusterSnapshotsResult']['DBClusterSnapshots'].count
6
+
7
+ tests("success") do
8
+ tests("#create_db_cluster_snapshot").formats(AWS::RDS::Formats::CREATE_DB_CLUSTER_SNAPSHOT) do
9
+ result = Fog::AWS[:rds].create_db_cluster_snapshot(@cluster_id, @snapshot_id).body
10
+
11
+ snapshot = result['CreateDBClusterSnapshotResult']['DBClusterSnapshot']
12
+ returns(@snapshot_id) { snapshot["DBClusterSnapshotIdentifier"] }
13
+ returns(@cluster.engine) { snapshot["Engine"] }
14
+ returns(@cluster.id) { snapshot["DBClusterIdentifier"] }
15
+ returns(@cluster.engine_version) { snapshot["EngineVersion"] }
16
+ returns(@cluster.allocated_storage) { snapshot["AllocatedStorage"].to_i }
17
+ returns(@cluster.master_username) { snapshot["MasterUsername"] }
18
+
19
+ result
20
+ end
21
+
22
+ second_snapshot = Fog::AWS[:rds].create_db_cluster_snapshot(@cluster_id, uniq_id("second-snapshot")).body['CreateDBClusterSnapshotResult']['DBClusterSnapshot']
23
+
24
+ tests("#describe_db_cluster_snapshots").formats(AWS::RDS::Formats::DESCRIBE_DB_CLUSTER_SNAPSHOTS) do
25
+ result = Fog::AWS[:rds].describe_db_cluster_snapshots.body
26
+ snapshots = result['DescribeDBClusterSnapshotsResult']['DBClusterSnapshots']
27
+ returns(@snapshot_count + 2) { snapshots.count }
28
+
29
+ single_result = Fog::AWS[:rds].describe_db_cluster_snapshots(:snapshot_id => second_snapshot['DBClusterSnapshotIdentifier']).body['DescribeDBClusterSnapshotsResult']['DBClusterSnapshots']
30
+ returns([second_snapshot['DBClusterSnapshotIdentifier']]) { single_result.map { |s| s['DBClusterSnapshotIdentifier'] } }
31
+
32
+ result
33
+ end
34
+
35
+ tests("delete_db_cluster_snapshot").formats(AWS::RDS::Formats::DELETE_DB_CLUSTER_SNAPSHOT) do
36
+ result = Fog::AWS[:rds].delete_db_cluster_snapshot(@snapshot_id).body
37
+
38
+ raises(Fog::AWS::RDS::NotFound) { Fog::AWS[:rds].describe_db_cluster_snapshots(:snapshot_id => @snapshot_id) }
39
+
40
+ result
41
+ end
42
+ end
43
+ end
@@ -0,0 +1,37 @@
1
+ Shindo.tests('AWS::RDS | cluster requests', ['aws', 'rds']) do
2
+ suffix = rand(65535).to_s(16)
3
+
4
+ @cluster_id = "fog-test-#{suffix}"
5
+ @master_id = "fog-master-#{suffix}"
6
+ @final_snapshot_id = "fog-snapshot-#{suffix}"
7
+
8
+ tests("success") do
9
+ tests("#create_db_cluster").formats(AWS::RDS::Formats::CREATE_DB_CLUSTER) do
10
+ result = Fog::AWS[:rds].create_db_cluster(@cluster_id,
11
+ 'Engine' => 'aurora',
12
+ 'MasterUsername' => "fog-#{suffix}",
13
+ 'MasterUserPassword' => "fog-#{suffix}"
14
+ ).body
15
+
16
+ cluster = result['CreateDBClusterResult']['DBCluster']
17
+ returns("1") { cluster['AllocatedStorage'] }
18
+ returns('aurora') { cluster['Engine'] }
19
+ returns("fog-#{suffix}") { cluster['MasterUsername'] }
20
+ result
21
+ end
22
+
23
+ tests("#describe_db_clusters").formats(AWS::RDS::Formats::DESCRIBE_DB_CLUSTERS) do
24
+ Fog::AWS[:rds].describe_db_clusters.body
25
+ end
26
+
27
+ tests("#delete_db_cluster").formats(AWS::RDS::Formats::DELETE_DB_CLUSTER) do
28
+ body = Fog::AWS[:rds].delete_db_cluster(@cluster_id, @final_snapshot_id).body
29
+
30
+ tests('final snapshot') do
31
+ returns('creating') { Fog::AWS[:rds].describe_db_cluster_snapshots(:snapshot_id => @final_snapshot_id).body['DescribeDBClusterSnapshotsResult']['DBClusterSnapshots'].first['Status'] }
32
+ end
33
+
34
+ body
35
+ end
36
+ end
37
+ end
@@ -159,6 +159,7 @@ class AWS
159
159
  'BackupRetentionPeriod' => Integer,
160
160
  'CACertificateIdentifier' => String,
161
161
  'CharacterSetName' => Fog::Nullable::String,
162
+ 'DBClusterIndentifier' => Fog::Nullable::String,
162
163
  'DbiResourceId' => Fog::Nullable::String,
163
164
  'DBInstanceClass' => String,
164
165
  'DBInstanceIdentifier' => String,
@@ -311,6 +312,89 @@ class AWS
311
312
  'DBEngineVersions' => [DB_ENGINE_VERSION]
312
313
  }
313
314
  )
315
+
316
+ DB_CLUSTER = {
317
+ 'AllocatedStorage' => String,
318
+ 'BackupRetentionPeriod' => String,
319
+ 'DBClusterIdentifier' => String,
320
+ 'DBClusterMembers' => [{
321
+ "master" => Fog::Nullable::Boolean,
322
+ "DBInstanceIdentifier" => Fog::Nullable::String,
323
+ }],
324
+ 'DBClusterParameterGroup' => String,
325
+ 'DBSubnetGroup' => String,
326
+ 'Endpoint' => String,
327
+ 'Engine' => String,
328
+ 'EngineVersion' => String,
329
+ 'MasterUsername' => String,
330
+ 'Port' => String,
331
+ 'PreferredBackupWindow' => String,
332
+ 'PreferredMaintenanceWindow' => String,
333
+ 'Status' => String,
334
+ 'VpcSecurityGroups' => [{
335
+ "VpcSecurityGroupId" => Fog::Nullable::String,
336
+ }]
337
+ }
338
+
339
+ DESCRIBE_DB_CLUSTERS = BASIC.merge({
340
+ 'DescribeDBClustersResult' => {
341
+ 'Marker' => Fog::Nullable::String,
342
+ 'DBClusters' => [DB_CLUSTER]
343
+ }
344
+ })
345
+
346
+ CREATE_DB_CLUSTER = BASIC.merge(
347
+ 'CreateDBClusterResult' => {
348
+ 'DBCluster' => DB_CLUSTER
349
+ }
350
+ )
351
+
352
+ DELETE_DB_CLUSTER = BASIC.merge(
353
+ 'DeleteDBClusterResult' => {
354
+ 'DBCluster' => DB_CLUSTER
355
+ }
356
+ )
357
+
358
+ DB_CLUSTER_SNAPSHOT = {
359
+ 'AllocatedStorage' => Fog::Nullable::Integer,
360
+ 'ClusterCreateTime' => Fog::Nullable::Time,
361
+ 'DBClusterIdentifier' => String,
362
+ 'DBClusterSnapshotIdentifier' => String,
363
+ 'Engine' => String,
364
+ 'LicenseModel' => String,
365
+ 'MasterUsername' => String,
366
+ 'PercentProgress' => Fog::Nullable::Integer,
367
+ 'Port' => Fog::Nullable::Integer,
368
+ 'SnapshotCreateTime' => Fog::Nullable::Time,
369
+ 'SnapshotType' => String,
370
+ 'Status' => String,
371
+ 'VpcId' => Fog::Nullable::String
372
+ }
373
+
374
+ CREATE_DB_CLUSTER_SNAPSHOT = BASIC.merge(
375
+ 'CreateDBClusterSnapshotResult' => {
376
+ 'DBClusterSnapshot' => DB_CLUSTER_SNAPSHOT
377
+ }
378
+ )
379
+
380
+ DESCRIBE_DB_CLUSTER_SNAPSHOTS = BASIC.merge(
381
+ 'DescribeDBClusterSnapshotsResult' => {
382
+ 'Marker' => Fog::Nullable::String,
383
+ 'DBClusterSnapshots' => [DB_CLUSTER_SNAPSHOT],
384
+ }
385
+ )
386
+
387
+ DELETE_DB_CLUSTER_SNAPSHOT = BASIC.merge(
388
+ 'DeleteDBClusterSnapshotResult' => {
389
+ 'DBClusterSnapshot' => DB_CLUSTER_SNAPSHOT,
390
+ }
391
+ )
392
+
393
+ RESTORE_DB_INSTANCE_FROM_DB_SNAPSHOT = BASIC.merge({
394
+ 'RestoreDBInstanceFromDBSnapshotResult' => {
395
+ 'DBInstance' => INSTANCE
396
+ }
397
+ })
314
398
  end
315
399
  end
316
400
  end
@@ -5,10 +5,11 @@ Shindo.tests('AWS::RDS | instance requests', ['aws', 'rds']) do
5
5
  # serveral minutes for deleted servers to disappear
6
6
  suffix = rand(65536).to_s(16)
7
7
 
8
- @db_instance_id = "fog-test-#{suffix}"
9
- @db_replica_id = "fog-replica-#{suffix}"
10
- @db_snapshot_id = "fog-snapshot-#{suffix}"
11
- @db_final_snapshot_id = "fog-final-snapshot-#{suffix}"
8
+ @db_instance_id = "fog-test-#{suffix}"
9
+ @db_replica_id = "fog-replica-#{suffix}"
10
+ @db_snapshot_id = "fog-snapshot-#{suffix}"
11
+ @db_final_snapshot_id = "fog-final-snapshot-#{suffix}"
12
+ @db_instance_restore_id = "fog-test-#{suffix}"
12
13
 
13
14
  tests('success') do
14
15
 
@@ -109,6 +110,17 @@ Shindo.tests('AWS::RDS | instance requests', ['aws', 'rds']) do
109
110
  body
110
111
  end
111
112
 
113
+ tests("#restore_db_instance_from_db_snapshot").formats(AWS::RDS::Formats::RESTORE_DB_INSTANCE_FROM_DB_SNAPSHOT) do
114
+ snapshot = Fog::AWS[:rds].snapshots.get(@db_final_snapshot_id)
115
+ snapshot.wait_for { state == 'available' }
116
+ result = Fog::AWS[:rds].restore_db_instance_from_db_snapshot(@db_final_snapshot_id, @db_instance_restore_id).body
117
+ instance = result['RestoreDBInstanceFromDBSnapshotResult']['DBInstance']
118
+ returns('creating') { instance['DBInstanceStatus'] }
119
+ result
120
+ end
121
+ restore_server = Fog::AWS[:rds].servers.get(@db_instance_restore_id)
122
+ restore_server.wait_for { state == 'available' }
123
+
112
124
  tests("#delete_db_snapshot").formats(AWS::RDS::Formats::DELETE_DB_SNAPSHOT) do
113
125
  Fog::AWS[:rds].snapshots.get(@db_snapshot_id).wait_for { ready? }
114
126
  Fog::AWS[:rds].delete_db_snapshot(@db_snapshot_id).body
@@ -21,7 +21,7 @@ Shindo.tests('AWS::RDS | parameter group requests', ['aws', 'rds']) do
21
21
  body
22
22
  end
23
23
 
24
- tests("#describe_db_parameter_groups('fog-group)").formats(AWS::RDS::Formats::DESCRIBE_DB_PARAMETER_GROUP) do
24
+ tests("#describe_db_parameter_groups('fog-group')").formats(AWS::RDS::Formats::DESCRIBE_DB_PARAMETER_GROUP) do
25
25
 
26
26
  body = Fog::AWS[:rds].describe_db_parameter_groups('fog-group').body
27
27
 
@@ -1,7 +1,5 @@
1
1
  Shindo.tests('AWS::RDS | parameter requests', ['aws', 'rds']) do
2
2
  tests('success') do
3
- pending if Fog.mocking?
4
-
5
3
  Fog::AWS[:rds].create_db_parameter_group('fog-group', 'MySQL5.1', 'Some description')
6
4
 
7
5
  tests('#modify_db_parameter_group').formats(AWS::RDS::Formats::MODIFY_PARAMETER_GROUP) do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fog-aws
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.1
4
+ version: 0.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Lane
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-01-08 00:00:00.000000000 Z
12
+ date: 2016-03-03 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -287,6 +287,9 @@ files:
287
287
  - lib/fog/aws/models/iam/users.rb
288
288
  - lib/fog/aws/models/kms/key.rb
289
289
  - lib/fog/aws/models/kms/keys.rb
290
+ - lib/fog/aws/models/rds/cluster.rb
291
+ - lib/fog/aws/models/rds/cluster_snapshots.rb
292
+ - lib/fog/aws/models/rds/clusters.rb
290
293
  - lib/fog/aws/models/rds/event_subscription.rb
291
294
  - lib/fog/aws/models/rds/event_subscriptions.rb
292
295
  - lib/fog/aws/models/rds/instance_option.rb
@@ -574,6 +577,8 @@ files:
574
577
  - lib/fog/aws/parsers/lambda/base.rb
575
578
  - lib/fog/aws/parsers/rds/authorize_db_security_group_ingress.rb
576
579
  - lib/fog/aws/parsers/rds/base.rb
580
+ - lib/fog/aws/parsers/rds/create_db_cluster.rb
581
+ - lib/fog/aws/parsers/rds/create_db_cluster_snapshot.rb
577
582
  - lib/fog/aws/parsers/rds/create_db_instance.rb
578
583
  - lib/fog/aws/parsers/rds/create_db_instance_read_replica.rb
579
584
  - lib/fog/aws/parsers/rds/create_db_parameter_group.rb
@@ -581,14 +586,21 @@ files:
581
586
  - lib/fog/aws/parsers/rds/create_db_snapshot.rb
582
587
  - lib/fog/aws/parsers/rds/create_db_subnet_group.rb
583
588
  - lib/fog/aws/parsers/rds/create_event_subscription.rb
589
+ - lib/fog/aws/parsers/rds/db_cluster_parser.rb
590
+ - lib/fog/aws/parsers/rds/db_cluster_snapshot_parser.rb
584
591
  - lib/fog/aws/parsers/rds/db_engine_version_parser.rb
592
+ - lib/fog/aws/parsers/rds/db_parameter_parser.rb
585
593
  - lib/fog/aws/parsers/rds/db_parser.rb
594
+ - lib/fog/aws/parsers/rds/delete_db_cluster.rb
595
+ - lib/fog/aws/parsers/rds/delete_db_cluster_snapshot.rb
586
596
  - lib/fog/aws/parsers/rds/delete_db_instance.rb
587
597
  - lib/fog/aws/parsers/rds/delete_db_parameter_group.rb
588
598
  - lib/fog/aws/parsers/rds/delete_db_security_group.rb
589
599
  - lib/fog/aws/parsers/rds/delete_db_snapshot.rb
590
600
  - lib/fog/aws/parsers/rds/delete_db_subnet_group.rb
591
601
  - lib/fog/aws/parsers/rds/delete_event_subscription.rb
602
+ - lib/fog/aws/parsers/rds/describe_db_cluster_snapshots.rb
603
+ - lib/fog/aws/parsers/rds/describe_db_clusters.rb
592
604
  - lib/fog/aws/parsers/rds/describe_db_engine_versions.rb
593
605
  - lib/fog/aws/parsers/rds/describe_db_instances.rb
594
606
  - lib/fog/aws/parsers/rds/describe_db_log_files.rb
@@ -598,6 +610,7 @@ files:
598
610
  - lib/fog/aws/parsers/rds/describe_db_security_groups.rb
599
611
  - lib/fog/aws/parsers/rds/describe_db_snapshots.rb
600
612
  - lib/fog/aws/parsers/rds/describe_db_subnet_groups.rb
613
+ - lib/fog/aws/parsers/rds/describe_engine_default_parameters.rb
601
614
  - lib/fog/aws/parsers/rds/describe_event_subscriptions.rb
602
615
  - lib/fog/aws/parsers/rds/describe_orderable_db_instance_options.rb
603
616
  - lib/fog/aws/parsers/rds/download_db_logfile_portion.rb
@@ -1145,6 +1158,8 @@ files:
1145
1158
  - lib/fog/aws/requests/lambda/update_function_configuration.rb
1146
1159
  - lib/fog/aws/requests/rds/add_tags_to_resource.rb
1147
1160
  - lib/fog/aws/requests/rds/authorize_db_security_group_ingress.rb
1161
+ - lib/fog/aws/requests/rds/create_db_cluster.rb
1162
+ - lib/fog/aws/requests/rds/create_db_cluster_snapshot.rb
1148
1163
  - lib/fog/aws/requests/rds/create_db_instance.rb
1149
1164
  - lib/fog/aws/requests/rds/create_db_instance_read_replica.rb
1150
1165
  - lib/fog/aws/requests/rds/create_db_parameter_group.rb
@@ -1152,12 +1167,16 @@ files:
1152
1167
  - lib/fog/aws/requests/rds/create_db_snapshot.rb
1153
1168
  - lib/fog/aws/requests/rds/create_db_subnet_group.rb
1154
1169
  - lib/fog/aws/requests/rds/create_event_subscription.rb
1170
+ - lib/fog/aws/requests/rds/delete_db_cluster.rb
1171
+ - lib/fog/aws/requests/rds/delete_db_cluster_snapshot.rb
1155
1172
  - lib/fog/aws/requests/rds/delete_db_instance.rb
1156
1173
  - lib/fog/aws/requests/rds/delete_db_parameter_group.rb
1157
1174
  - lib/fog/aws/requests/rds/delete_db_security_group.rb
1158
1175
  - lib/fog/aws/requests/rds/delete_db_snapshot.rb
1159
1176
  - lib/fog/aws/requests/rds/delete_db_subnet_group.rb
1160
1177
  - lib/fog/aws/requests/rds/delete_event_subscription.rb
1178
+ - lib/fog/aws/requests/rds/describe_db_cluster_snapshots.rb
1179
+ - lib/fog/aws/requests/rds/describe_db_clusters.rb
1161
1180
  - lib/fog/aws/requests/rds/describe_db_engine_versions.rb
1162
1181
  - lib/fog/aws/requests/rds/describe_db_instances.rb
1163
1182
  - lib/fog/aws/requests/rds/describe_db_log_files.rb
@@ -1167,6 +1186,7 @@ files:
1167
1186
  - lib/fog/aws/requests/rds/describe_db_security_groups.rb
1168
1187
  - lib/fog/aws/requests/rds/describe_db_snapshots.rb
1169
1188
  - lib/fog/aws/requests/rds/describe_db_subnet_groups.rb
1189
+ - lib/fog/aws/requests/rds/describe_engine_default_parameters.rb
1170
1190
  - lib/fog/aws/requests/rds/describe_event_subscriptions.rb
1171
1191
  - lib/fog/aws/requests/rds/describe_events.rb
1172
1192
  - lib/fog/aws/requests/rds/describe_orderable_db_instance_options.rb
@@ -1406,6 +1426,8 @@ files:
1406
1426
  - tests/models/iam/policies_tests.rb
1407
1427
  - tests/models/iam/roles_tests.rb
1408
1428
  - tests/models/iam/users_tests.rb
1429
+ - tests/models/rds/cluster_tests.rb
1430
+ - tests/models/rds/clusters_tests.rb
1409
1431
  - tests/models/rds/event_subscription_tests.rb
1410
1432
  - tests/models/rds/event_subscriptions_tests.rb
1411
1433
  - tests/models/rds/helper.rb
@@ -1521,6 +1543,8 @@ files:
1521
1543
  - tests/requests/lambda/function_sample_2.js
1522
1544
  - tests/requests/lambda/function_tests.rb
1523
1545
  - tests/requests/lambda/helper.rb
1546
+ - tests/requests/rds/cluster_snapshot_tests.rb
1547
+ - tests/requests/rds/cluster_tests.rb
1524
1548
  - tests/requests/rds/db_engine_versions.rb
1525
1549
  - tests/requests/rds/describe_events.rb
1526
1550
  - tests/requests/rds/event_subscription_tests.rb
@@ -1584,7 +1608,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1584
1608
  version: '0'
1585
1609
  requirements: []
1586
1610
  rubyforge_project:
1587
- rubygems_version: 2.4.5.1
1611
+ rubygems_version: 2.5.2
1588
1612
  signing_key:
1589
1613
  specification_version: 4
1590
1614
  summary: Module for the 'fog' gem to support Amazon Web Services.