aws-sdk 1.8.4 → 1.8.5
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.
- data/lib/aws/api_config/EC2-2013-02-01.yml +2 -3
- data/lib/aws/api_config/RDS-2013-02-12.yml +2377 -0
- data/lib/aws/core.rb +1 -1
- data/lib/aws/core/configuration.rb +1 -1
- data/lib/aws/ec2/client.rb +2 -3
- data/lib/aws/ec2/snapshot_collection.rb +3 -2
- data/lib/aws/rds/client.rb +471 -21
- data/lib/aws/s3/s3_object.rb +3 -0
- data/lib/aws/version.rb +1 -1
- metadata +3 -2
data/lib/aws/core.rb
CHANGED
@@ -244,7 +244,7 @@ module AWS
|
|
244
244
|
# @option options [String] :dynamo_db_endpoint ('dynamodb.amazonaws.com')
|
245
245
|
# The service endpoint for Amazon DynamoDB.
|
246
246
|
#
|
247
|
-
# @option options [
|
247
|
+
# @option options [Boolean] :dynamo_db_retry_throughput_errors (true) When
|
248
248
|
# true, AWS::DynamoDB::Errors::ProvisionedThroughputExceededException
|
249
249
|
# errors will be retried.
|
250
250
|
#
|
@@ -87,7 +87,7 @@ module AWS
|
|
87
87
|
# @attr_reader [String] dynamo_db_endpoint ('dynamodb.us-east-1.amazonaws.com')
|
88
88
|
# The service endpoint for Amazon DynamoDB.
|
89
89
|
#
|
90
|
-
# @attr_reader [
|
90
|
+
# @attr_reader [Boolean] dynamo_db_retry_throughput_errors (true) When
|
91
91
|
# true, AWS::DynamoDB::Errors::ProvisionedThroughputExceededException
|
92
92
|
# errors will be retried.
|
93
93
|
#
|
data/lib/aws/ec2/client.rb
CHANGED
@@ -2372,8 +2372,7 @@ module AWS
|
|
2372
2372
|
# Calls the DescribeVpcAttribute API operation.
|
2373
2373
|
# @param [Hash] options
|
2374
2374
|
# * +:vpc_id+ - *required* - (String)
|
2375
|
-
# * +:
|
2376
|
-
# * +:enable_dns_hostnames+ - (String)
|
2375
|
+
# * +:attribute+ - (String)
|
2377
2376
|
# @return [Core::Response]
|
2378
2377
|
# The #data method of the response object returns
|
2379
2378
|
# a hash with the following structure:
|
@@ -2888,7 +2887,7 @@ module AWS
|
|
2888
2887
|
# @!method modify_vpc_attribute(options = {})
|
2889
2888
|
# Calls the ModifyVpcAttribute API operation.
|
2890
2889
|
# @param [Hash] options
|
2891
|
-
# * +:vpc_id+ - (String)
|
2890
|
+
# * +:vpc_id+ - *required* - (String)
|
2892
2891
|
# * +:enable_dns_support+ - (Hash)
|
2893
2892
|
# * +:value+ - (Boolean) Boolean value
|
2894
2893
|
# * +:enable_dns_hostnames+ - (Hash)
|
@@ -50,8 +50,9 @@ module AWS
|
|
50
50
|
opts[:restorable_by_user_ids] = @restorable_by.map { |id| id.to_s } unless
|
51
51
|
@restorable_by.empty?
|
52
52
|
resp = filtered_request(:describe_snapshots, opts)
|
53
|
-
resp
|
54
|
-
snapshot = Snapshot.
|
53
|
+
resp[:snapshot_set].each do |details|
|
54
|
+
snapshot = Snapshot.new_from(:describe_snapshots, details,
|
55
|
+
details[:snapshot_id], :config => config)
|
55
56
|
yield(snapshot)
|
56
57
|
end
|
57
58
|
nil
|
data/lib/aws/rds/client.rb
CHANGED
@@ -22,6 +22,35 @@ module AWS
|
|
22
22
|
|
23
23
|
# client methods #
|
24
24
|
|
25
|
+
# @!method add_source_identifier_to_subscription(options = {})
|
26
|
+
# Calls the AddSourceIdentifierToSubscription API operation.
|
27
|
+
# @param [Hash] options
|
28
|
+
# * +:subscription_name+ - *required* - (String) The name of the RDS
|
29
|
+
# event notification subscription you want to add a source identifier
|
30
|
+
# to.
|
31
|
+
# * +:source_identifier+ - *required* - (String) The identifier of the
|
32
|
+
# event source to be added. An identifier must begin with a letter
|
33
|
+
# and must contain only ASCII letters, digits, and hyphens; it cannot
|
34
|
+
# end with a hyphen or contain two consecutive hyphens. Constraints:
|
35
|
+
# If the source type is a DB instance, then a DBInstanceIdentifier
|
36
|
+
# must be supplied. If the source type is a DB security group, a
|
37
|
+
# DBSecurityGroupName must be supplied. If the source type is a DB
|
38
|
+
# parameter group, a DBParameterGroupName must be supplied. If the
|
39
|
+
# source type is a DB Snapshot, a DBSnapshotIdentifier must be
|
40
|
+
# supplied.
|
41
|
+
# @return [Core::Response]
|
42
|
+
# The #data method of the response object returns
|
43
|
+
# a hash with the following structure:
|
44
|
+
# * +:customer_aws_id+ - (String)
|
45
|
+
# * +:cust_subscription_id+ - (String)
|
46
|
+
# * +:sns_topic_arn+ - (String)
|
47
|
+
# * +:status+ - (String)
|
48
|
+
# * +:subscription_creation_time+ - (String)
|
49
|
+
# * +:source_type+ - (String)
|
50
|
+
# * +:source_ids_list+ - (Array<String>)
|
51
|
+
# * +:event_categories_list+ - (Array<String>)
|
52
|
+
# * +:enabled+ - (Boolean)
|
53
|
+
|
25
54
|
# @!method add_tags_to_resource(options = {})
|
26
55
|
# Calls the AddTagsToResource API operation.
|
27
56
|
# @param [Hash] options
|
@@ -104,6 +133,7 @@ module AWS
|
|
104
133
|
# * +:license_model+ - (String)
|
105
134
|
# * +:snapshot_type+ - (String)
|
106
135
|
# * +:iops+ - (Integer)
|
136
|
+
# * +:option_group_name+ - (String)
|
107
137
|
|
108
138
|
# @!method create_db_instance(options = {})
|
109
139
|
# Calls the CreateDBInstance API operation.
|
@@ -125,6 +155,9 @@ module AWS
|
|
125
155
|
# the master DB Instance user.
|
126
156
|
# * +:db_security_groups+ - (Array<String>) A list of DB Security
|
127
157
|
# Groups to associate with this DB Instance.
|
158
|
+
# * +:vpc_security_group_ids+ - (Array<String>) A list of Ec2 Vpc
|
159
|
+
# Security Groups to associate with this DB Instance. Default: The
|
160
|
+
# default Ec2 Vpc Security Group for the DB Subnet group's Vpc.
|
128
161
|
# * +:availability_zone+ - (String) The EC2 Availability Zone that the
|
129
162
|
# database instance will be created in.
|
130
163
|
# * +:db_subnet_group_name+ - (String) A DB Subnet Group to associate
|
@@ -164,6 +197,19 @@ module AWS
|
|
164
197
|
# * +:character_set_name+ - (String) For supported engines, indicates
|
165
198
|
# that the DB Instance should be associated with the specified
|
166
199
|
# CharacterSet.
|
200
|
+
# * +:publicly_accessible+ - (Boolean) Specifies the accessibility
|
201
|
+
# options for the DB Instance. A value of +true+ specifies an
|
202
|
+
# Internet-facing instance with a publicly resolvable DNS name, which
|
203
|
+
# resolves to a public IP address. A value of +false+ specifies an
|
204
|
+
# internal instance with a DNS name that resolves to a private IP
|
205
|
+
# address. Default: The default behavior varies depending on whether
|
206
|
+
# a VPC has been requested or not. The following list shows the
|
207
|
+
# default behavior in each case. Default VPC: +true+ VPC: +false+ If
|
208
|
+
# no DB subnet group has been specified as part of the request and
|
209
|
+
# the PubliclyAccessible value has not been set, the DB instance will
|
210
|
+
# be publicly accessible. If a specific DB subnet group has been
|
211
|
+
# specified as part of the request and the PubliclyAccessible value
|
212
|
+
# has not been set, the DB instance will be private.
|
167
213
|
# @return [Core::Response]
|
168
214
|
# The #data method of the response object returns
|
169
215
|
# a hash with the following structure:
|
@@ -183,6 +229,9 @@ module AWS
|
|
183
229
|
# * +:db_security_groups+ - (Array<Hash>)
|
184
230
|
# * +:db_security_group_name+ - (String)
|
185
231
|
# * +:status+ - (String)
|
232
|
+
# * +:vpc_security_groups+ - (Array<Hash>)
|
233
|
+
# * +:vpc_security_group_id+ - (String)
|
234
|
+
# * +:status+ - (String)
|
186
235
|
# * +:db_parameter_groups+ - (Array<Hash>)
|
187
236
|
# * +:db_parameter_group_name+ - (String)
|
188
237
|
# * +:parameter_apply_status+ - (String)
|
@@ -208,6 +257,7 @@ module AWS
|
|
208
257
|
# * +:multi_az+ - (Boolean)
|
209
258
|
# * +:engine_version+ - (String)
|
210
259
|
# * +:iops+ - (Integer)
|
260
|
+
# * +:db_instance_identifier+ - (String)
|
211
261
|
# * +:latest_restorable_time+ - (Time)
|
212
262
|
# * +:multi_az+ - (Boolean)
|
213
263
|
# * +:engine_version+ - (String)
|
@@ -216,10 +266,12 @@ module AWS
|
|
216
266
|
# * +:read_replica_db_instance_identifiers+ - (Array<String>)
|
217
267
|
# * +:license_model+ - (String)
|
218
268
|
# * +:iops+ - (Integer)
|
219
|
-
# * +:
|
269
|
+
# * +:option_group_memberships+ - (Array<Hash>)
|
220
270
|
# * +:option_group_name+ - (String)
|
221
271
|
# * +:status+ - (String)
|
222
272
|
# * +:character_set_name+ - (String)
|
273
|
+
# * +:secondary_availability_zone+ - (String)
|
274
|
+
# * +:publicly_accessible+ - (Boolean)
|
223
275
|
|
224
276
|
# @!method create_db_instance_read_replica(options = {})
|
225
277
|
# Calls the CreateDBInstanceReadReplica API operation.
|
@@ -251,7 +303,22 @@ module AWS
|
|
251
303
|
# * +:iops+ - (Integer) The amount of Provisioned IOPS (input/output
|
252
304
|
# operations per second) to be initially allocated for the DB
|
253
305
|
# Instance.
|
254
|
-
# * +:option_group_name+ - (String)
|
306
|
+
# * +:option_group_name+ - (String) The option group the DB instance
|
307
|
+
# will be associated with. If omitted, the default Option Group for
|
308
|
+
# the engine specified will be used.
|
309
|
+
# * +:publicly_accessible+ - (Boolean) Specifies the accessibility
|
310
|
+
# options for the DB Instance. A value of +true+ specifies an
|
311
|
+
# Internet-facing instance with a publicly resolvable DNS name, which
|
312
|
+
# resolves to a public IP address. A value of +false+ specifies an
|
313
|
+
# internal instance with a DNS name that resolves to a private IP
|
314
|
+
# address. Default: The default behavior varies depending on whether
|
315
|
+
# a VPC has been requested or not. The following list shows the
|
316
|
+
# default behavior in each case. Default VPC: +true+ VPC: +false+ If
|
317
|
+
# no DB subnet group has been specified as part of the request and
|
318
|
+
# the PubliclyAccessible value has not been set, the DB instance will
|
319
|
+
# be publicly accessible. If a specific DB subnet group has been
|
320
|
+
# specified as part of the request and the PubliclyAccessible value
|
321
|
+
# has not been set, the DB instance will be private.
|
255
322
|
# @return [Core::Response]
|
256
323
|
# The #data method of the response object returns
|
257
324
|
# a hash with the following structure:
|
@@ -271,6 +338,9 @@ module AWS
|
|
271
338
|
# * +:db_security_groups+ - (Array<Hash>)
|
272
339
|
# * +:db_security_group_name+ - (String)
|
273
340
|
# * +:status+ - (String)
|
341
|
+
# * +:vpc_security_groups+ - (Array<Hash>)
|
342
|
+
# * +:vpc_security_group_id+ - (String)
|
343
|
+
# * +:status+ - (String)
|
274
344
|
# * +:db_parameter_groups+ - (Array<Hash>)
|
275
345
|
# * +:db_parameter_group_name+ - (String)
|
276
346
|
# * +:parameter_apply_status+ - (String)
|
@@ -296,6 +366,7 @@ module AWS
|
|
296
366
|
# * +:multi_az+ - (Boolean)
|
297
367
|
# * +:engine_version+ - (String)
|
298
368
|
# * +:iops+ - (Integer)
|
369
|
+
# * +:db_instance_identifier+ - (String)
|
299
370
|
# * +:latest_restorable_time+ - (Time)
|
300
371
|
# * +:multi_az+ - (Boolean)
|
301
372
|
# * +:engine_version+ - (String)
|
@@ -304,10 +375,12 @@ module AWS
|
|
304
375
|
# * +:read_replica_db_instance_identifiers+ - (Array<String>)
|
305
376
|
# * +:license_model+ - (String)
|
306
377
|
# * +:iops+ - (Integer)
|
307
|
-
# * +:
|
378
|
+
# * +:option_group_memberships+ - (Array<Hash>)
|
308
379
|
# * +:option_group_name+ - (String)
|
309
380
|
# * +:status+ - (String)
|
310
381
|
# * +:character_set_name+ - (String)
|
382
|
+
# * +:secondary_availability_zone+ - (String)
|
383
|
+
# * +:publicly_accessible+ - (Boolean)
|
311
384
|
|
312
385
|
# @!method create_db_parameter_group(options = {})
|
313
386
|
# Calls the CreateDBParameterGroup API operation.
|
@@ -333,9 +406,6 @@ module AWS
|
|
333
406
|
# DB Security Group. This value is stored as a lowercase string.
|
334
407
|
# * +:db_security_group_description+ - *required* - (String) The
|
335
408
|
# description for the DB Security Group.
|
336
|
-
# * +:ec2_vpc_id+ - (String) The Id of VPC. Indicates which VPC this DB
|
337
|
-
# Security Group should belong to. Must be specified to create a DB
|
338
|
-
# Security Group for a VPC; may not be specified otherwise.
|
339
409
|
# @return [Core::Response]
|
340
410
|
# The #data method of the response object returns
|
341
411
|
# a hash with the following structure:
|
@@ -378,6 +448,7 @@ module AWS
|
|
378
448
|
# * +:license_model+ - (String)
|
379
449
|
# * +:snapshot_type+ - (String)
|
380
450
|
# * +:iops+ - (Integer)
|
451
|
+
# * +:option_group_name+ - (String)
|
381
452
|
|
382
453
|
# @!method create_db_subnet_group(options = {})
|
383
454
|
# Calls the CreateDBSubnetGroup API operation.
|
@@ -404,6 +475,54 @@ module AWS
|
|
404
475
|
# * +:provisioned_iops_capable+ - (Boolean)
|
405
476
|
# * +:subnet_status+ - (String)
|
406
477
|
|
478
|
+
# @!method create_event_subscription(options = {})
|
479
|
+
# Calls the CreateEventSubscription API operation.
|
480
|
+
# @param [Hash] options
|
481
|
+
# * +:subscription_name+ - *required* - (String) The name of the
|
482
|
+
# subscription. Constraints: The name must be less than 255
|
483
|
+
# characters.
|
484
|
+
# * +:sns_topic_arn+ - *required* - (String) The Amazon Resource Name
|
485
|
+
# (ARN) of the SNS topic created for event notification. The ARN is
|
486
|
+
# created by Amazon SNS when you create a topic and subscribe to it.
|
487
|
+
# * +:source_type+ - (String) The type of source that will be
|
488
|
+
# generating the events. For example, if you want to be notified of
|
489
|
+
# events generated by a DB instance, you would set this parameter to
|
490
|
+
# db-instance. if this value is not specified, all events are
|
491
|
+
# returned. Valid values: db-instance | db-parameter-group |
|
492
|
+
# db-security-group | db-snapshot
|
493
|
+
# * +:event_categories+ - (Array<String>) A list of event categories
|
494
|
+
# for a SourceType that you want to subscribe to. You can see a list
|
495
|
+
# of the categories for a given SourceType in the Events topic in the
|
496
|
+
# Amazon RDS User Guide or by using the DescribeEventCategories
|
497
|
+
# action.
|
498
|
+
# * +:source_ids+ - (Array<String>) The list of identifiers of the
|
499
|
+
# event sources for which events will be returned. If not specified,
|
500
|
+
# then all sources are included in the response. An identifier must
|
501
|
+
# begin with a letter and must contain only ASCII letters, digits,
|
502
|
+
# and hyphens; it cannot end with a hyphen or contain two consecutive
|
503
|
+
# hyphens. Constraints: If SourceIds are supplied, SourceType must
|
504
|
+
# also be provided. If the source type is a DB instance, then a
|
505
|
+
# DBInstanceIdentifier must be supplied. If the source type is a DB
|
506
|
+
# security group, a DBSecurityGroupName must be supplied. If the
|
507
|
+
# source type is a DB parameter group, a DBParameterGroupName must be
|
508
|
+
# supplied. If the source type is a DB Snapshot, a
|
509
|
+
# DBSnapshotIdentifier must be supplied.
|
510
|
+
# * +:enabled+ - (Boolean) A Boolean value; set to +true+ to activate
|
511
|
+
# the subscription, set to +false+ to create the subscription but not
|
512
|
+
# active it.
|
513
|
+
# @return [Core::Response]
|
514
|
+
# The #data method of the response object returns
|
515
|
+
# a hash with the following structure:
|
516
|
+
# * +:customer_aws_id+ - (String)
|
517
|
+
# * +:cust_subscription_id+ - (String)
|
518
|
+
# * +:sns_topic_arn+ - (String)
|
519
|
+
# * +:status+ - (String)
|
520
|
+
# * +:subscription_creation_time+ - (String)
|
521
|
+
# * +:source_type+ - (String)
|
522
|
+
# * +:source_ids_list+ - (Array<String>)
|
523
|
+
# * +:event_categories_list+ - (Array<String>)
|
524
|
+
# * +:enabled+ - (Boolean)
|
525
|
+
|
407
526
|
# @!method create_option_group(options = {})
|
408
527
|
# Calls the CreateOptionGroup API operation.
|
409
528
|
# @param [Hash] options
|
@@ -429,10 +548,24 @@ module AWS
|
|
429
548
|
# * +:options+ - (Array<Hash>)
|
430
549
|
# * +:option_name+ - (String)
|
431
550
|
# * +:option_description+ - (String)
|
551
|
+
# * +:persistent+ - (Boolean)
|
432
552
|
# * +:port+ - (Integer)
|
553
|
+
# * +:option_settings+ - (Array<Hash>)
|
554
|
+
# * +:name+ - (String)
|
555
|
+
# * +:value+ - (String)
|
556
|
+
# * +:default_value+ - (String)
|
557
|
+
# * +:description+ - (String)
|
558
|
+
# * +:apply_type+ - (String)
|
559
|
+
# * +:data_type+ - (String)
|
560
|
+
# * +:allowed_values+ - (String)
|
561
|
+
# * +:is_modifiable+ - (Boolean)
|
562
|
+
# * +:is_collection+ - (Boolean)
|
433
563
|
# * +:db_security_group_memberships+ - (Array<Hash>)
|
434
564
|
# * +:db_security_group_name+ - (String)
|
435
565
|
# * +:status+ - (String)
|
566
|
+
# * +:vpc_security_group_memberships+ - (Array<Hash>)
|
567
|
+
# * +:vpc_security_group_id+ - (String)
|
568
|
+
# * +:status+ - (String)
|
436
569
|
# * +:allows_vpc_and_non_vpc_instance_memberships+ - (Boolean)
|
437
570
|
# * +:vpc_id+ - (String)
|
438
571
|
|
@@ -466,6 +599,9 @@ module AWS
|
|
466
599
|
# * +:db_security_groups+ - (Array<Hash>)
|
467
600
|
# * +:db_security_group_name+ - (String)
|
468
601
|
# * +:status+ - (String)
|
602
|
+
# * +:vpc_security_groups+ - (Array<Hash>)
|
603
|
+
# * +:vpc_security_group_id+ - (String)
|
604
|
+
# * +:status+ - (String)
|
469
605
|
# * +:db_parameter_groups+ - (Array<Hash>)
|
470
606
|
# * +:db_parameter_group_name+ - (String)
|
471
607
|
# * +:parameter_apply_status+ - (String)
|
@@ -491,6 +627,7 @@ module AWS
|
|
491
627
|
# * +:multi_az+ - (Boolean)
|
492
628
|
# * +:engine_version+ - (String)
|
493
629
|
# * +:iops+ - (Integer)
|
630
|
+
# * +:db_instance_identifier+ - (String)
|
494
631
|
# * +:latest_restorable_time+ - (Time)
|
495
632
|
# * +:multi_az+ - (Boolean)
|
496
633
|
# * +:engine_version+ - (String)
|
@@ -499,10 +636,12 @@ module AWS
|
|
499
636
|
# * +:read_replica_db_instance_identifiers+ - (Array<String>)
|
500
637
|
# * +:license_model+ - (String)
|
501
638
|
# * +:iops+ - (Integer)
|
502
|
-
# * +:
|
639
|
+
# * +:option_group_memberships+ - (Array<Hash>)
|
503
640
|
# * +:option_group_name+ - (String)
|
504
641
|
# * +:status+ - (String)
|
505
642
|
# * +:character_set_name+ - (String)
|
643
|
+
# * +:secondary_availability_zone+ - (String)
|
644
|
+
# * +:publicly_accessible+ - (Boolean)
|
506
645
|
|
507
646
|
# @!method delete_db_parameter_group(options = {})
|
508
647
|
# Calls the DeleteDBParameterGroup API operation.
|
@@ -542,6 +681,7 @@ module AWS
|
|
542
681
|
# * +:license_model+ - (String)
|
543
682
|
# * +:snapshot_type+ - (String)
|
544
683
|
# * +:iops+ - (Integer)
|
684
|
+
# * +:option_group_name+ - (String)
|
545
685
|
|
546
686
|
# @!method delete_db_subnet_group(options = {})
|
547
687
|
# Calls the DeleteDBSubnetGroup API operation.
|
@@ -553,6 +693,24 @@ module AWS
|
|
553
693
|
# contain two consecutive hyphens
|
554
694
|
# @return [Core::Response]
|
555
695
|
|
696
|
+
# @!method delete_event_subscription(options = {})
|
697
|
+
# Calls the DeleteEventSubscription API operation.
|
698
|
+
# @param [Hash] options
|
699
|
+
# * +:subscription_name+ - *required* - (String) The name of the RDS
|
700
|
+
# event notification subscription you want to delete.
|
701
|
+
# @return [Core::Response]
|
702
|
+
# The #data method of the response object returns
|
703
|
+
# a hash with the following structure:
|
704
|
+
# * +:customer_aws_id+ - (String)
|
705
|
+
# * +:cust_subscription_id+ - (String)
|
706
|
+
# * +:sns_topic_arn+ - (String)
|
707
|
+
# * +:status+ - (String)
|
708
|
+
# * +:subscription_creation_time+ - (String)
|
709
|
+
# * +:source_type+ - (String)
|
710
|
+
# * +:source_ids_list+ - (Array<String>)
|
711
|
+
# * +:event_categories_list+ - (Array<String>)
|
712
|
+
# * +:enabled+ - (Boolean)
|
713
|
+
|
556
714
|
# @!method delete_option_group(options = {})
|
557
715
|
# Calls the DeleteOptionGroup API operation.
|
558
716
|
# @param [Hash] options
|
@@ -637,6 +795,9 @@ module AWS
|
|
637
795
|
# * +:db_security_groups+ - (Array<Hash>)
|
638
796
|
# * +:db_security_group_name+ - (String)
|
639
797
|
# * +:status+ - (String)
|
798
|
+
# * +:vpc_security_groups+ - (Array<Hash>)
|
799
|
+
# * +:vpc_security_group_id+ - (String)
|
800
|
+
# * +:status+ - (String)
|
640
801
|
# * +:db_parameter_groups+ - (Array<Hash>)
|
641
802
|
# * +:db_parameter_group_name+ - (String)
|
642
803
|
# * +:parameter_apply_status+ - (String)
|
@@ -662,6 +823,7 @@ module AWS
|
|
662
823
|
# * +:multi_az+ - (Boolean)
|
663
824
|
# * +:engine_version+ - (String)
|
664
825
|
# * +:iops+ - (Integer)
|
826
|
+
# * +:db_instance_identifier+ - (String)
|
665
827
|
# * +:latest_restorable_time+ - (Time)
|
666
828
|
# * +:multi_az+ - (Boolean)
|
667
829
|
# * +:engine_version+ - (String)
|
@@ -670,10 +832,42 @@ module AWS
|
|
670
832
|
# * +:read_replica_db_instance_identifiers+ - (Array<String>)
|
671
833
|
# * +:license_model+ - (String)
|
672
834
|
# * +:iops+ - (Integer)
|
673
|
-
# * +:
|
835
|
+
# * +:option_group_memberships+ - (Array<Hash>)
|
674
836
|
# * +:option_group_name+ - (String)
|
675
837
|
# * +:status+ - (String)
|
676
838
|
# * +:character_set_name+ - (String)
|
839
|
+
# * +:secondary_availability_zone+ - (String)
|
840
|
+
# * +:publicly_accessible+ - (Boolean)
|
841
|
+
|
842
|
+
# @!method describe_db_log_files(options = {})
|
843
|
+
# Calls the DescribeDBLogFiles API operation.
|
844
|
+
# @param [Hash] options
|
845
|
+
# * +:db_instance_identifier+ - (String) The customer-assigned name of
|
846
|
+
# the DB Instance that contains the log files you want to list.
|
847
|
+
# Constraints: Must contain from 1 to 63 alphanumeric characters or
|
848
|
+
# hyphens First character must be a letter Cannot end with a hyphen
|
849
|
+
# or contain two consecutive hyphens
|
850
|
+
# * +:filename_contains+ - (String) Filters the available log files for
|
851
|
+
# log file names that contain the specified string.
|
852
|
+
# * +:file_last_written+ - (Integer) Filters the available log files
|
853
|
+
# for files written since the specified date.
|
854
|
+
# * +:file_size+ - (Integer) Filters the available log files for files
|
855
|
+
# larger than the specified size.
|
856
|
+
# * +:max_records+ - (Integer) The maximum number of records to include
|
857
|
+
# in the response. If more records exist than the specified
|
858
|
+
# MaxRecords value, a pagination token called a marker is included in
|
859
|
+
# the response so that the remaining results can be retrieved.
|
860
|
+
# * +:marker+ - (String) The pagination token provided in the previous
|
861
|
+
# request. If this parameter is specified the response includes only
|
862
|
+
# records beyond the marker, up to MaxRecords.
|
863
|
+
# @return [Core::Response]
|
864
|
+
# The #data method of the response object returns
|
865
|
+
# a hash with the following structure:
|
866
|
+
# * +:describe_db_log_files+ - (Array<Hash>)
|
867
|
+
# * +:log_file_name+ - (String)
|
868
|
+
# * +:last_written+ - (Integer)
|
869
|
+
# * +:size+ - (Integer)
|
870
|
+
# * +:marker+ - (String)
|
677
871
|
|
678
872
|
# @!method describe_db_parameter_groups(options = {})
|
679
873
|
# Calls the DescribeDBParameterGroups API operation.
|
@@ -796,6 +990,7 @@ module AWS
|
|
796
990
|
# * +:license_model+ - (String)
|
797
991
|
# * +:snapshot_type+ - (String)
|
798
992
|
# * +:iops+ - (Integer)
|
993
|
+
# * +:option_group_name+ - (String)
|
799
994
|
|
800
995
|
# @!method describe_db_subnet_groups(options = {})
|
801
996
|
# Calls the DescribeDBSubnetGroups API operation.
|
@@ -857,6 +1052,48 @@ module AWS
|
|
857
1052
|
# * +:minimum_engine_version+ - (String)
|
858
1053
|
# * +:apply_method+ - (String)
|
859
1054
|
|
1055
|
+
# @!method describe_event_categories(options = {})
|
1056
|
+
# Calls the DescribeEventCategories API operation.
|
1057
|
+
# @param [Hash] options
|
1058
|
+
# * +:source_type+ - (String) The type of source that will be
|
1059
|
+
# generating the events. Valid values: db-instance |
|
1060
|
+
# db-parameter-group | db-security-group | db-snapshot
|
1061
|
+
# @return [Core::Response]
|
1062
|
+
# The #data method of the response object returns
|
1063
|
+
# a hash with the following structure:
|
1064
|
+
# * +:event_categories_map_list+ - (Array<Hash>)
|
1065
|
+
# * +:source_type+ - (String)
|
1066
|
+
# * +:event_categories+ - (Array<String>)
|
1067
|
+
|
1068
|
+
# @!method describe_event_subscriptions(options = {})
|
1069
|
+
# Calls the DescribeEventSubscriptions API operation.
|
1070
|
+
# @param [Hash] options
|
1071
|
+
# * +:subscription_name+ - (String) The name of the RDS event
|
1072
|
+
# notification subscription you want to describe.
|
1073
|
+
# * +:max_records+ - (Integer) The maximum number of records to include
|
1074
|
+
# in the response. If more records exist than the specified
|
1075
|
+
# MaxRecords value, a pagination token called a marker is included in
|
1076
|
+
# the response so that the remaining results can be retrieved.
|
1077
|
+
# Default: 100 Constraints: minimum 20, maximum 100
|
1078
|
+
# * +:marker+ - (String) An optional pagination token provided by a
|
1079
|
+
# previous DescribeOrderableDBInstanceOptions request. If this
|
1080
|
+
# parameter is specified, the response includes only records beyond
|
1081
|
+
# the marker, up to the value specified by MaxRecords .
|
1082
|
+
# @return [Core::Response]
|
1083
|
+
# The #data method of the response object returns
|
1084
|
+
# a hash with the following structure:
|
1085
|
+
# * +:marker+ - (String)
|
1086
|
+
# * +:event_subscriptions_list+ - (Array<Hash>)
|
1087
|
+
# * +:customer_aws_id+ - (String)
|
1088
|
+
# * +:cust_subscription_id+ - (String)
|
1089
|
+
# * +:sns_topic_arn+ - (String)
|
1090
|
+
# * +:status+ - (String)
|
1091
|
+
# * +:subscription_creation_time+ - (String)
|
1092
|
+
# * +:source_type+ - (String)
|
1093
|
+
# * +:source_ids_list+ - (Array<String>)
|
1094
|
+
# * +:event_categories_list+ - (Array<String>)
|
1095
|
+
# * +:enabled+ - (Boolean)
|
1096
|
+
|
860
1097
|
# @!method describe_events(options = {})
|
861
1098
|
# Calls the DescribeEvents API operation.
|
862
1099
|
# @param [Hash] options
|
@@ -872,6 +1109,8 @@ module AWS
|
|
872
1109
|
# format.
|
873
1110
|
# * +:duration+ - (Integer) The number of minutes to retrieve events
|
874
1111
|
# for.
|
1112
|
+
# * +:event_categories+ - (Array<String>) A list of event categories
|
1113
|
+
# that trigger notifications for a event notification subscription.
|
875
1114
|
# * +:max_records+ - (Integer) The maximum number of records to include
|
876
1115
|
# in the response. If more records exist than the specified
|
877
1116
|
# MaxRecords value, a marker is included in the response so that the
|
@@ -888,6 +1127,7 @@ module AWS
|
|
888
1127
|
# * +:source_identifier+ - (String)
|
889
1128
|
# * +:source_type+ - (String)
|
890
1129
|
# * +:message+ - (String)
|
1130
|
+
# * +:event_categories+ - (Array<String>)
|
891
1131
|
# * +:date+ - (Time)
|
892
1132
|
|
893
1133
|
# @!method describe_option_group_options(options = {})
|
@@ -898,8 +1138,15 @@ module AWS
|
|
898
1138
|
# * +:major_engine_version+ - (String) If specified, filters the
|
899
1139
|
# results to include only options for the specified major engine
|
900
1140
|
# version.
|
901
|
-
# * +:max_records+ - (Integer)
|
902
|
-
#
|
1141
|
+
# * +:max_records+ - (Integer) The maximum number of records to include
|
1142
|
+
# in the response. If more records exist than the specified
|
1143
|
+
# MaxRecords value, a pagination token called a marker is included in
|
1144
|
+
# the response so that the remaining results can be retrieved.
|
1145
|
+
# Default: 100 Constraints: minimum 20, maximum 100
|
1146
|
+
# * +:marker+ - (String) An optional pagination token provided by a
|
1147
|
+
# previous request. If this parameter is specified, the response
|
1148
|
+
# includes only records beyond the marker, up to the value specified
|
1149
|
+
# by MaxRecords.
|
903
1150
|
# @return [Core::Response]
|
904
1151
|
# The #data method of the response object returns
|
905
1152
|
# a hash with the following structure:
|
@@ -912,6 +1159,14 @@ module AWS
|
|
912
1159
|
# * +:port_required+ - (Boolean)
|
913
1160
|
# * +:default_port+ - (Integer)
|
914
1161
|
# * +:options_depended_on+ - (Array<String>)
|
1162
|
+
# * +:persistent+ - (Boolean)
|
1163
|
+
# * +:option_group_option_settings+ - (Array<Hash>)
|
1164
|
+
# * +:setting_name+ - (String)
|
1165
|
+
# * +:setting_description+ - (String)
|
1166
|
+
# * +:default_value+ - (String)
|
1167
|
+
# * +:apply_type+ - (String)
|
1168
|
+
# * +:allowed_values+ - (String)
|
1169
|
+
# * +:is_modifiable+ - (Boolean)
|
915
1170
|
# * +:marker+ - (String)
|
916
1171
|
|
917
1172
|
# @!method describe_option_groups(options = {})
|
@@ -920,8 +1175,15 @@ module AWS
|
|
920
1175
|
# * +:option_group_name+ - (String) The name of the option group to
|
921
1176
|
# describe. Cannot be supplied together with EngineName or
|
922
1177
|
# MajorEngineVersion.
|
923
|
-
# * +:marker+ - (String)
|
924
|
-
#
|
1178
|
+
# * +:marker+ - (String) An optional pagination token provided by a
|
1179
|
+
# previous DescribeOptionGroups request. If this parameter is
|
1180
|
+
# specified, the response includes only records beyond the marker, up
|
1181
|
+
# to the value specified by MaxRecords.
|
1182
|
+
# * +:max_records+ - (Integer) The maximum number of records to include
|
1183
|
+
# in the response. If more records exist than the specified
|
1184
|
+
# MaxRecords value, a pagination token called a marker is included in
|
1185
|
+
# the response so that the remaining results can be retrieved.
|
1186
|
+
# Default: 100 Constraints: minimum 20, maximum 100
|
925
1187
|
# * +:engine_name+ - (String) Filters the list of option groups to only
|
926
1188
|
# include groups associated with a specific database engine.
|
927
1189
|
# * +:major_engine_version+ - (String) Filters the list of option
|
@@ -939,10 +1201,24 @@ module AWS
|
|
939
1201
|
# * +:options+ - (Array<Hash>)
|
940
1202
|
# * +:option_name+ - (String)
|
941
1203
|
# * +:option_description+ - (String)
|
1204
|
+
# * +:persistent+ - (Boolean)
|
942
1205
|
# * +:port+ - (Integer)
|
1206
|
+
# * +:option_settings+ - (Array<Hash>)
|
1207
|
+
# * +:name+ - (String)
|
1208
|
+
# * +:value+ - (String)
|
1209
|
+
# * +:default_value+ - (String)
|
1210
|
+
# * +:description+ - (String)
|
1211
|
+
# * +:apply_type+ - (String)
|
1212
|
+
# * +:data_type+ - (String)
|
1213
|
+
# * +:allowed_values+ - (String)
|
1214
|
+
# * +:is_modifiable+ - (Boolean)
|
1215
|
+
# * +:is_collection+ - (Boolean)
|
943
1216
|
# * +:db_security_group_memberships+ - (Array<Hash>)
|
944
1217
|
# * +:db_security_group_name+ - (String)
|
945
1218
|
# * +:status+ - (String)
|
1219
|
+
# * +:vpc_security_group_memberships+ - (Array<Hash>)
|
1220
|
+
# * +:vpc_security_group_id+ - (String)
|
1221
|
+
# * +:status+ - (String)
|
946
1222
|
# * +:allows_vpc_and_non_vpc_instance_memberships+ - (Boolean)
|
947
1223
|
# * +:vpc_id+ - (String)
|
948
1224
|
# * +:marker+ - (String)
|
@@ -1090,6 +1366,23 @@ module AWS
|
|
1090
1366
|
# * +:recurring_charge_amount+ - (Numeric)
|
1091
1367
|
# * +:recurring_charge_frequency+ - (String)
|
1092
1368
|
|
1369
|
+
# @!method download_db_log_file_portion(options = {})
|
1370
|
+
# Calls the DownloadDBLogFilePortion API operation.
|
1371
|
+
# @param [Hash] options
|
1372
|
+
# * +:db_instance_identifier+ - (String)
|
1373
|
+
# * +:log_file_name+ - (String)
|
1374
|
+
# * +:marker+ - (String) The pagination token provided in the previous
|
1375
|
+
# request. If this parameter is specified the response includes only
|
1376
|
+
# records beyond the marker, up to MaxRecords.
|
1377
|
+
# * +:number_of_lines+ - (Integer) The number of lines remaining to be
|
1378
|
+
# downloaded.
|
1379
|
+
# @return [Core::Response]
|
1380
|
+
# The #data method of the response object returns
|
1381
|
+
# a hash with the following structure:
|
1382
|
+
# * +:log_file_data+ - (String)
|
1383
|
+
# * +:marker+ - (String)
|
1384
|
+
# * +:additional_data_pending+ - (Boolean)
|
1385
|
+
|
1093
1386
|
# @!method list_tags_for_resource(options = {})
|
1094
1387
|
# Calls the ListTagsForResource API operation.
|
1095
1388
|
# @param [Hash] options
|
@@ -1119,6 +1412,11 @@ module AWS
|
|
1119
1412
|
# * +:db_security_groups+ - (Array<String>) A list of DB Security
|
1120
1413
|
# Groups to authorize on this DB Instance. This change is
|
1121
1414
|
# asynchronously applied as soon as possible.
|
1415
|
+
# * +:vpc_security_group_ids+ - (Array<String>) A list of Ec2 Vpc
|
1416
|
+
# Security Groups to authorize on this DB Instance. This change is
|
1417
|
+
# asynchronously applied as soon as possible. Constraints: Must be 1
|
1418
|
+
# to 255 alphanumeric characters First character must be a letter
|
1419
|
+
# Cannot end with a hyphen or contain two consecutive hyphens
|
1122
1420
|
# * +:apply_immediately+ - (Boolean) Specifies whether or not the
|
1123
1421
|
# modifications in this request and any pending modifications are
|
1124
1422
|
# asynchronously applied as soon as possible, regardless of the
|
@@ -1175,6 +1473,12 @@ module AWS
|
|
1175
1473
|
# they are 10% greater than the current value. Type: Integer
|
1176
1474
|
# * +:option_group_name+ - (String) Indicates that the DB Instance
|
1177
1475
|
# should be associated with the specified option group.
|
1476
|
+
# * +:new_db_instance_identifier+ - (String) The new DB Instance
|
1477
|
+
# identifier for the DB Instance when renaming a DB Instance. This
|
1478
|
+
# value is stored as a lowercase string. Constraints: Must contain
|
1479
|
+
# from 1 to 63 alphanumeric characters or hyphens First character
|
1480
|
+
# must be a letter Cannot end with a hyphen or contain two
|
1481
|
+
# consecutive hyphens
|
1178
1482
|
# @return [Core::Response]
|
1179
1483
|
# The #data method of the response object returns
|
1180
1484
|
# a hash with the following structure:
|
@@ -1194,6 +1498,9 @@ module AWS
|
|
1194
1498
|
# * +:db_security_groups+ - (Array<Hash>)
|
1195
1499
|
# * +:db_security_group_name+ - (String)
|
1196
1500
|
# * +:status+ - (String)
|
1501
|
+
# * +:vpc_security_groups+ - (Array<Hash>)
|
1502
|
+
# * +:vpc_security_group_id+ - (String)
|
1503
|
+
# * +:status+ - (String)
|
1197
1504
|
# * +:db_parameter_groups+ - (Array<Hash>)
|
1198
1505
|
# * +:db_parameter_group_name+ - (String)
|
1199
1506
|
# * +:parameter_apply_status+ - (String)
|
@@ -1219,6 +1526,7 @@ module AWS
|
|
1219
1526
|
# * +:multi_az+ - (Boolean)
|
1220
1527
|
# * +:engine_version+ - (String)
|
1221
1528
|
# * +:iops+ - (Integer)
|
1529
|
+
# * +:db_instance_identifier+ - (String)
|
1222
1530
|
# * +:latest_restorable_time+ - (Time)
|
1223
1531
|
# * +:multi_az+ - (Boolean)
|
1224
1532
|
# * +:engine_version+ - (String)
|
@@ -1227,10 +1535,12 @@ module AWS
|
|
1227
1535
|
# * +:read_replica_db_instance_identifiers+ - (Array<String>)
|
1228
1536
|
# * +:license_model+ - (String)
|
1229
1537
|
# * +:iops+ - (Integer)
|
1230
|
-
# * +:
|
1538
|
+
# * +:option_group_memberships+ - (Array<Hash>)
|
1231
1539
|
# * +:option_group_name+ - (String)
|
1232
1540
|
# * +:status+ - (String)
|
1233
1541
|
# * +:character_set_name+ - (String)
|
1542
|
+
# * +:secondary_availability_zone+ - (String)
|
1543
|
+
# * +:publicly_accessible+ - (Boolean)
|
1234
1544
|
|
1235
1545
|
# @!method modify_db_parameter_group(options = {})
|
1236
1546
|
# Calls the ModifyDBParameterGroup API operation.
|
@@ -1292,6 +1602,40 @@ module AWS
|
|
1292
1602
|
# * +:provisioned_iops_capable+ - (Boolean)
|
1293
1603
|
# * +:subnet_status+ - (String)
|
1294
1604
|
|
1605
|
+
# @!method modify_event_subscription(options = {})
|
1606
|
+
# Calls the ModifyEventSubscription API operation.
|
1607
|
+
# @param [Hash] options
|
1608
|
+
# * +:subscription_name+ - *required* - (String) The name of the RDS
|
1609
|
+
# event notification subscription.
|
1610
|
+
# * +:sns_topic_arn+ - (String) The Amazon Resource Name (ARN) of the
|
1611
|
+
# SNS topic created for event notification. The ARN is created by
|
1612
|
+
# Amazon SNS when you create a topic and subscribe to it.
|
1613
|
+
# * +:source_type+ - (String) The type of source that will be
|
1614
|
+
# generating the events. For example, if you want to be notified of
|
1615
|
+
# events generated by a DB instance, you would set this parameter to
|
1616
|
+
# db-instance. if this value is not specified, all events are
|
1617
|
+
# returned. Valid values: db-instance | db-parameter-group |
|
1618
|
+
# db-security-group | db-snapshot
|
1619
|
+
# * +:event_categories+ - (Array<String>) A list of event categories
|
1620
|
+
# for a SourceType that you want to subscribe to. You can see a list
|
1621
|
+
# of the categories for a given SourceType in the Events topic in the
|
1622
|
+
# Amazon RDS User Guide or by using the DescribeEventCategories
|
1623
|
+
# action.
|
1624
|
+
# * +:enabled+ - (Boolean) A Boolean value; set to +true+ to activate
|
1625
|
+
# the subscription.
|
1626
|
+
# @return [Core::Response]
|
1627
|
+
# The #data method of the response object returns
|
1628
|
+
# a hash with the following structure:
|
1629
|
+
# * +:customer_aws_id+ - (String)
|
1630
|
+
# * +:cust_subscription_id+ - (String)
|
1631
|
+
# * +:sns_topic_arn+ - (String)
|
1632
|
+
# * +:status+ - (String)
|
1633
|
+
# * +:subscription_creation_time+ - (String)
|
1634
|
+
# * +:source_type+ - (String)
|
1635
|
+
# * +:source_ids_list+ - (Array<String>)
|
1636
|
+
# * +:event_categories_list+ - (Array<String>)
|
1637
|
+
# * +:enabled+ - (Boolean)
|
1638
|
+
|
1295
1639
|
# @!method modify_option_group(options = {})
|
1296
1640
|
# Calls the ModifyOptionGroup API operation.
|
1297
1641
|
# @param [Hash] options
|
@@ -1300,9 +1644,29 @@ module AWS
|
|
1300
1644
|
# * +:options_to_include+ - (Array<Hash>) Options in this list are
|
1301
1645
|
# added to the Option Group or, if already present, the specified
|
1302
1646
|
# configuration is used to update the existing configuration.
|
1303
|
-
# * +:option_name+ - *required* - (String)
|
1304
|
-
#
|
1305
|
-
# * +:
|
1647
|
+
# * +:option_name+ - *required* - (String) The configuration of
|
1648
|
+
# options to include in a group.
|
1649
|
+
# * +:port+ - (Integer) The optional port for the option.
|
1650
|
+
# * +:db_security_group_memberships+ - (Array<String>) A list of
|
1651
|
+
# DBSecurityGroupMemebrship name strings used for this option.
|
1652
|
+
# * +:vpc_security_group_memberships+ - (Array<String>) A list of
|
1653
|
+
# VpcSecurityGroupMemebrship name strings used for this option.
|
1654
|
+
# * +:option_settings+ - (Array<Hash>) A list of option settings
|
1655
|
+
# applied for this option.
|
1656
|
+
# * +:name+ - (String) The name of the setting.
|
1657
|
+
# * +:value+ - (String) The value of this setting.
|
1658
|
+
# * +:default_value+ - (String) Default value for this setting.
|
1659
|
+
# * +:description+ - (String) The description of the setting.
|
1660
|
+
# * +:apply_type+ - (String) Specifies the apply type for this
|
1661
|
+
# setting.
|
1662
|
+
# * +:data_type+ - (String) Specifies the valid data type of this
|
1663
|
+
# setting
|
1664
|
+
# * +:allowed_values+ - (String) Specifies a valid list/range of
|
1665
|
+
# values allowed for this setting.
|
1666
|
+
# * +:is_modifiable+ - (Boolean) Indicates if the setting is
|
1667
|
+
# modifiable or not.
|
1668
|
+
# * +:is_collection+ - (Boolean) Indicates if the value for the
|
1669
|
+
# setting can be a list of values or a single value.
|
1306
1670
|
# * +:options_to_remove+ - (Array<String>) Options in this list are
|
1307
1671
|
# removed from the Option Group.
|
1308
1672
|
# * +:apply_immediately+ - (Boolean) Indicates whether the changes
|
@@ -1318,10 +1682,24 @@ module AWS
|
|
1318
1682
|
# * +:options+ - (Array<Hash>)
|
1319
1683
|
# * +:option_name+ - (String)
|
1320
1684
|
# * +:option_description+ - (String)
|
1685
|
+
# * +:persistent+ - (Boolean)
|
1321
1686
|
# * +:port+ - (Integer)
|
1687
|
+
# * +:option_settings+ - (Array<Hash>)
|
1688
|
+
# * +:name+ - (String)
|
1689
|
+
# * +:value+ - (String)
|
1690
|
+
# * +:default_value+ - (String)
|
1691
|
+
# * +:description+ - (String)
|
1692
|
+
# * +:apply_type+ - (String)
|
1693
|
+
# * +:data_type+ - (String)
|
1694
|
+
# * +:allowed_values+ - (String)
|
1695
|
+
# * +:is_modifiable+ - (Boolean)
|
1696
|
+
# * +:is_collection+ - (Boolean)
|
1322
1697
|
# * +:db_security_group_memberships+ - (Array<Hash>)
|
1323
1698
|
# * +:db_security_group_name+ - (String)
|
1324
1699
|
# * +:status+ - (String)
|
1700
|
+
# * +:vpc_security_group_memberships+ - (Array<Hash>)
|
1701
|
+
# * +:vpc_security_group_id+ - (String)
|
1702
|
+
# * +:status+ - (String)
|
1325
1703
|
# * +:allows_vpc_and_non_vpc_instance_memberships+ - (Boolean)
|
1326
1704
|
# * +:vpc_id+ - (String)
|
1327
1705
|
|
@@ -1370,6 +1748,9 @@ module AWS
|
|
1370
1748
|
# * +:db_security_groups+ - (Array<Hash>)
|
1371
1749
|
# * +:db_security_group_name+ - (String)
|
1372
1750
|
# * +:status+ - (String)
|
1751
|
+
# * +:vpc_security_groups+ - (Array<Hash>)
|
1752
|
+
# * +:vpc_security_group_id+ - (String)
|
1753
|
+
# * +:status+ - (String)
|
1373
1754
|
# * +:db_parameter_groups+ - (Array<Hash>)
|
1374
1755
|
# * +:db_parameter_group_name+ - (String)
|
1375
1756
|
# * +:parameter_apply_status+ - (String)
|
@@ -1395,6 +1776,7 @@ module AWS
|
|
1395
1776
|
# * +:multi_az+ - (Boolean)
|
1396
1777
|
# * +:engine_version+ - (String)
|
1397
1778
|
# * +:iops+ - (Integer)
|
1779
|
+
# * +:db_instance_identifier+ - (String)
|
1398
1780
|
# * +:latest_restorable_time+ - (Time)
|
1399
1781
|
# * +:multi_az+ - (Boolean)
|
1400
1782
|
# * +:engine_version+ - (String)
|
@@ -1403,10 +1785,12 @@ module AWS
|
|
1403
1785
|
# * +:read_replica_db_instance_identifiers+ - (Array<String>)
|
1404
1786
|
# * +:license_model+ - (String)
|
1405
1787
|
# * +:iops+ - (Integer)
|
1406
|
-
# * +:
|
1788
|
+
# * +:option_group_memberships+ - (Array<Hash>)
|
1407
1789
|
# * +:option_group_name+ - (String)
|
1408
1790
|
# * +:status+ - (String)
|
1409
1791
|
# * +:character_set_name+ - (String)
|
1792
|
+
# * +:secondary_availability_zone+ - (String)
|
1793
|
+
# * +:publicly_accessible+ - (Boolean)
|
1410
1794
|
|
1411
1795
|
# @!method purchase_reserved_db_instances_offering(options = {})
|
1412
1796
|
# Calls the PurchaseReservedDBInstancesOffering API operation.
|
@@ -1465,6 +1849,9 @@ module AWS
|
|
1465
1849
|
# * +:db_security_groups+ - (Array<Hash>)
|
1466
1850
|
# * +:db_security_group_name+ - (String)
|
1467
1851
|
# * +:status+ - (String)
|
1852
|
+
# * +:vpc_security_groups+ - (Array<Hash>)
|
1853
|
+
# * +:vpc_security_group_id+ - (String)
|
1854
|
+
# * +:status+ - (String)
|
1468
1855
|
# * +:db_parameter_groups+ - (Array<Hash>)
|
1469
1856
|
# * +:db_parameter_group_name+ - (String)
|
1470
1857
|
# * +:parameter_apply_status+ - (String)
|
@@ -1490,6 +1877,7 @@ module AWS
|
|
1490
1877
|
# * +:multi_az+ - (Boolean)
|
1491
1878
|
# * +:engine_version+ - (String)
|
1492
1879
|
# * +:iops+ - (Integer)
|
1880
|
+
# * +:db_instance_identifier+ - (String)
|
1493
1881
|
# * +:latest_restorable_time+ - (Time)
|
1494
1882
|
# * +:multi_az+ - (Boolean)
|
1495
1883
|
# * +:engine_version+ - (String)
|
@@ -1498,10 +1886,34 @@ module AWS
|
|
1498
1886
|
# * +:read_replica_db_instance_identifiers+ - (Array<String>)
|
1499
1887
|
# * +:license_model+ - (String)
|
1500
1888
|
# * +:iops+ - (Integer)
|
1501
|
-
# * +:
|
1889
|
+
# * +:option_group_memberships+ - (Array<Hash>)
|
1502
1890
|
# * +:option_group_name+ - (String)
|
1503
1891
|
# * +:status+ - (String)
|
1504
1892
|
# * +:character_set_name+ - (String)
|
1893
|
+
# * +:secondary_availability_zone+ - (String)
|
1894
|
+
# * +:publicly_accessible+ - (Boolean)
|
1895
|
+
|
1896
|
+
# @!method remove_source_identifier_from_subscription(options = {})
|
1897
|
+
# Calls the RemoveSourceIdentifierFromSubscription API operation.
|
1898
|
+
# @param [Hash] options
|
1899
|
+
# * +:subscription_name+ - *required* - (String) The name of the RDS
|
1900
|
+
# event notification subscription you want to remove a source
|
1901
|
+
# identifier from.
|
1902
|
+
# * +:source_identifier+ - *required* - (String) The source identifier
|
1903
|
+
# to be removed from the subscription, such as the DB instance
|
1904
|
+
# identifier for a DB instance or the name of a security group.
|
1905
|
+
# @return [Core::Response]
|
1906
|
+
# The #data method of the response object returns
|
1907
|
+
# a hash with the following structure:
|
1908
|
+
# * +:customer_aws_id+ - (String)
|
1909
|
+
# * +:cust_subscription_id+ - (String)
|
1910
|
+
# * +:sns_topic_arn+ - (String)
|
1911
|
+
# * +:status+ - (String)
|
1912
|
+
# * +:subscription_creation_time+ - (String)
|
1913
|
+
# * +:source_type+ - (String)
|
1914
|
+
# * +:source_ids_list+ - (Array<String>)
|
1915
|
+
# * +:event_categories_list+ - (Array<String>)
|
1916
|
+
# * +:enabled+ - (Boolean)
|
1505
1917
|
|
1506
1918
|
# @!method remove_tags_from_resource(options = {})
|
1507
1919
|
# Calls the RemoveTagsFromResource API operation.
|
@@ -1569,6 +1981,19 @@ module AWS
|
|
1569
1981
|
# * +:multi_az+ - (Boolean) Specifies if the DB Instance is a Multi-AZ
|
1570
1982
|
# deployment. Constraint: You cannot specify the AvailabilityZone
|
1571
1983
|
# parameter if the MultiAZ parameter is set to +true+ .
|
1984
|
+
# * +:publicly_accessible+ - (Boolean) Specifies the accessibility
|
1985
|
+
# options for the DB Instance. A value of +true+ specifies an
|
1986
|
+
# Internet-facing instance with a publicly resolvable DNS name, which
|
1987
|
+
# resolves to a public IP address. A value of +false+ specifies an
|
1988
|
+
# internal instance with a DNS name that resolves to a private IP
|
1989
|
+
# address. Default: The default behavior varies depending on whether
|
1990
|
+
# a VPC has been requested or not. The following list shows the
|
1991
|
+
# default behavior in each case. Default VPC: +true+ VPC: +false+ If
|
1992
|
+
# no DB subnet group has been specified as part of the request and
|
1993
|
+
# the PubliclyAccessible value has not been set, the DB instance will
|
1994
|
+
# be publicly accessible. If a specific DB subnet group has been
|
1995
|
+
# specified as part of the request and the PubliclyAccessible value
|
1996
|
+
# has not been set, the DB instance will be private.
|
1572
1997
|
# * +:auto_minor_version_upgrade+ - (Boolean) Indicates that minor
|
1573
1998
|
# version upgrades will be applied automatically to the DB Instance
|
1574
1999
|
# during the maintenance window.
|
@@ -1603,6 +2028,9 @@ module AWS
|
|
1603
2028
|
# * +:db_security_groups+ - (Array<Hash>)
|
1604
2029
|
# * +:db_security_group_name+ - (String)
|
1605
2030
|
# * +:status+ - (String)
|
2031
|
+
# * +:vpc_security_groups+ - (Array<Hash>)
|
2032
|
+
# * +:vpc_security_group_id+ - (String)
|
2033
|
+
# * +:status+ - (String)
|
1606
2034
|
# * +:db_parameter_groups+ - (Array<Hash>)
|
1607
2035
|
# * +:db_parameter_group_name+ - (String)
|
1608
2036
|
# * +:parameter_apply_status+ - (String)
|
@@ -1628,6 +2056,7 @@ module AWS
|
|
1628
2056
|
# * +:multi_az+ - (Boolean)
|
1629
2057
|
# * +:engine_version+ - (String)
|
1630
2058
|
# * +:iops+ - (Integer)
|
2059
|
+
# * +:db_instance_identifier+ - (String)
|
1631
2060
|
# * +:latest_restorable_time+ - (Time)
|
1632
2061
|
# * +:multi_az+ - (Boolean)
|
1633
2062
|
# * +:engine_version+ - (String)
|
@@ -1636,10 +2065,12 @@ module AWS
|
|
1636
2065
|
# * +:read_replica_db_instance_identifiers+ - (Array<String>)
|
1637
2066
|
# * +:license_model+ - (String)
|
1638
2067
|
# * +:iops+ - (Integer)
|
1639
|
-
# * +:
|
2068
|
+
# * +:option_group_memberships+ - (Array<Hash>)
|
1640
2069
|
# * +:option_group_name+ - (String)
|
1641
2070
|
# * +:status+ - (String)
|
1642
2071
|
# * +:character_set_name+ - (String)
|
2072
|
+
# * +:secondary_availability_zone+ - (String)
|
2073
|
+
# * +:publicly_accessible+ - (Boolean)
|
1643
2074
|
|
1644
2075
|
# @!method restore_db_instance_to_point_in_time(options = {})
|
1645
2076
|
# Calls the RestoreDBInstanceToPointInTime API operation.
|
@@ -1664,6 +2095,19 @@ module AWS
|
|
1664
2095
|
# * +:multi_az+ - (Boolean) Specifies if the DB Instance is a Multi-AZ
|
1665
2096
|
# deployment. Constraint: You cannot specify the AvailabilityZone
|
1666
2097
|
# parameter if the MultiAZ parameter is set to +true+ .
|
2098
|
+
# * +:publicly_accessible+ - (Boolean) Specifies the accessibility
|
2099
|
+
# options for the DB Instance. A value of +true+ specifies an
|
2100
|
+
# Internet-facing instance with a publicly resolvable DNS name, which
|
2101
|
+
# resolves to a public IP address. A value of +false+ specifies an
|
2102
|
+
# internal instance with a DNS name that resolves to a private IP
|
2103
|
+
# address. Default: The default behavior varies depending on whether
|
2104
|
+
# a VPC has been requested or not. The following list shows the
|
2105
|
+
# default behavior in each case. Default VPC: +true+ VPC: +false+ If
|
2106
|
+
# no DB subnet group has been specified as part of the request and
|
2107
|
+
# the PubliclyAccessible value has not been set, the DB instance will
|
2108
|
+
# be publicly accessible. If a specific DB subnet group has been
|
2109
|
+
# specified as part of the request and the PubliclyAccessible value
|
2110
|
+
# has not been set, the DB instance will be private.
|
1667
2111
|
# * +:auto_minor_version_upgrade+ - (Boolean) Indicates that minor
|
1668
2112
|
# version upgrades will be applied automatically to the DB Instance
|
1669
2113
|
# during the maintenance window.
|
@@ -1698,6 +2142,9 @@ module AWS
|
|
1698
2142
|
# * +:db_security_groups+ - (Array<Hash>)
|
1699
2143
|
# * +:db_security_group_name+ - (String)
|
1700
2144
|
# * +:status+ - (String)
|
2145
|
+
# * +:vpc_security_groups+ - (Array<Hash>)
|
2146
|
+
# * +:vpc_security_group_id+ - (String)
|
2147
|
+
# * +:status+ - (String)
|
1701
2148
|
# * +:db_parameter_groups+ - (Array<Hash>)
|
1702
2149
|
# * +:db_parameter_group_name+ - (String)
|
1703
2150
|
# * +:parameter_apply_status+ - (String)
|
@@ -1723,6 +2170,7 @@ module AWS
|
|
1723
2170
|
# * +:multi_az+ - (Boolean)
|
1724
2171
|
# * +:engine_version+ - (String)
|
1725
2172
|
# * +:iops+ - (Integer)
|
2173
|
+
# * +:db_instance_identifier+ - (String)
|
1726
2174
|
# * +:latest_restorable_time+ - (Time)
|
1727
2175
|
# * +:multi_az+ - (Boolean)
|
1728
2176
|
# * +:engine_version+ - (String)
|
@@ -1731,10 +2179,12 @@ module AWS
|
|
1731
2179
|
# * +:read_replica_db_instance_identifiers+ - (Array<String>)
|
1732
2180
|
# * +:license_model+ - (String)
|
1733
2181
|
# * +:iops+ - (Integer)
|
1734
|
-
# * +:
|
2182
|
+
# * +:option_group_memberships+ - (Array<Hash>)
|
1735
2183
|
# * +:option_group_name+ - (String)
|
1736
2184
|
# * +:status+ - (String)
|
1737
2185
|
# * +:character_set_name+ - (String)
|
2186
|
+
# * +:secondary_availability_zone+ - (String)
|
2187
|
+
# * +:publicly_accessible+ - (Boolean)
|
1738
2188
|
|
1739
2189
|
# @!method revoke_db_security_group_ingress(options = {})
|
1740
2190
|
# Calls the RevokeDBSecurityGroupIngress API operation.
|
@@ -1771,7 +2221,7 @@ module AWS
|
|
1771
2221
|
|
1772
2222
|
# end client methods #
|
1773
2223
|
|
1774
|
-
define_client_methods('
|
2224
|
+
define_client_methods('2013-02-12')
|
1775
2225
|
|
1776
2226
|
end
|
1777
2227
|
end
|