aws-sdk-rds 1.233.0 → 1.235.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/account_quota.rb +1 -1
- data/lib/aws-sdk-rds/certificate.rb +2 -2
- data/lib/aws-sdk-rds/client.rb +6 -3
- data/lib/aws-sdk-rds/db_cluster.rb +10 -10
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +6 -6
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +7 -7
- data/lib/aws-sdk-rds/db_engine.rb +4 -4
- data/lib/aws-sdk-rds/db_engine_version.rb +4 -4
- data/lib/aws-sdk-rds/db_instance.rb +16 -16
- data/lib/aws-sdk-rds/db_log_file.rb +2 -2
- data/lib/aws-sdk-rds/db_parameter_group.rb +11 -11
- data/lib/aws-sdk-rds/db_parameter_group_family.rb +3 -3
- data/lib/aws-sdk-rds/db_security_group.rb +9 -9
- data/lib/aws-sdk-rds/db_snapshot.rb +10 -10
- data/lib/aws-sdk-rds/db_snapshot_attribute.rb +2 -2
- data/lib/aws-sdk-rds/db_subnet_group.rb +5 -5
- data/lib/aws-sdk-rds/event.rb +1 -1
- data/lib/aws-sdk-rds/event_category_map.rb +2 -2
- data/lib/aws-sdk-rds/event_subscription.rb +7 -7
- data/lib/aws-sdk-rds/option_group.rb +6 -6
- data/lib/aws-sdk-rds/option_group_option.rb +1 -1
- data/lib/aws-sdk-rds/parameter.rb +1 -1
- data/lib/aws-sdk-rds/pending_maintenance_action.rb +4 -4
- data/lib/aws-sdk-rds/reserved_db_instance.rb +2 -2
- data/lib/aws-sdk-rds/reserved_db_instances_offering.rb +3 -3
- data/lib/aws-sdk-rds/resource.rb +25 -25
- data/lib/aws-sdk-rds/resource_pending_maintenance_action_list.rb +1 -1
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +4 -4
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -952,7 +952,7 @@ module Aws::RDS
|
|
952
952
|
# shapshot is encrypted and in a different region.
|
953
953
|
# @return [DBCluster]
|
954
954
|
def create_db_cluster(options = {})
|
955
|
-
resp = Aws::Plugins::UserAgent.
|
955
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
956
956
|
@client.create_db_cluster(options)
|
957
957
|
end
|
958
958
|
DBCluster.new(
|
@@ -1043,7 +1043,7 @@ module Aws::RDS
|
|
1043
1043
|
# Tags to assign to the DB cluster parameter group.
|
1044
1044
|
# @return [DBClusterParameterGroup]
|
1045
1045
|
def create_db_cluster_parameter_group(options = {})
|
1046
|
-
resp = Aws::Plugins::UserAgent.
|
1046
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
1047
1047
|
@client.create_db_cluster_parameter_group(options)
|
1048
1048
|
end
|
1049
1049
|
DBClusterParameterGroup.new(
|
@@ -2361,7 +2361,7 @@ module Aws::RDS
|
|
2361
2361
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
2362
2362
|
# @return [DBInstance]
|
2363
2363
|
def create_db_instance(options = {})
|
2364
|
-
resp = Aws::Plugins::UserAgent.
|
2364
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
2365
2365
|
@client.create_db_instance(options)
|
2366
2366
|
end
|
2367
2367
|
DBInstance.new(
|
@@ -2456,7 +2456,7 @@ module Aws::RDS
|
|
2456
2456
|
# Tags to assign to the DB parameter group.
|
2457
2457
|
# @return [DBParameterGroup]
|
2458
2458
|
def create_db_parameter_group(options = {})
|
2459
|
-
resp = Aws::Plugins::UserAgent.
|
2459
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
2460
2460
|
@client.create_db_parameter_group(options)
|
2461
2461
|
end
|
2462
2462
|
DBParameterGroup.new(
|
@@ -2500,7 +2500,7 @@ module Aws::RDS
|
|
2500
2500
|
# Tags to assign to the DB security group.
|
2501
2501
|
# @return [DBSecurityGroup]
|
2502
2502
|
def create_db_security_group(options = {})
|
2503
|
-
resp = Aws::Plugins::UserAgent.
|
2503
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
2504
2504
|
@client.create_db_security_group(options)
|
2505
2505
|
end
|
2506
2506
|
DBSecurityGroup.new(
|
@@ -2546,7 +2546,7 @@ module Aws::RDS
|
|
2546
2546
|
# Tags to assign to the DB subnet group.
|
2547
2547
|
# @return [DBSubnetGroup]
|
2548
2548
|
def create_db_subnet_group(options = {})
|
2549
|
-
resp = Aws::Plugins::UserAgent.
|
2549
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
2550
2550
|
@client.create_db_subnet_group(options)
|
2551
2551
|
end
|
2552
2552
|
DBSubnetGroup.new(
|
@@ -2656,7 +2656,7 @@ module Aws::RDS
|
|
2656
2656
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
2657
2657
|
# @return [EventSubscription]
|
2658
2658
|
def create_event_subscription(options = {})
|
2659
|
-
resp = Aws::Plugins::UserAgent.
|
2659
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
2660
2660
|
@client.create_event_subscription(options)
|
2661
2661
|
end
|
2662
2662
|
EventSubscription.new(
|
@@ -2732,7 +2732,7 @@ module Aws::RDS
|
|
2732
2732
|
# Tags to assign to the option group.
|
2733
2733
|
# @return [OptionGroup]
|
2734
2734
|
def create_option_group(options = {})
|
2735
|
-
resp = Aws::Plugins::UserAgent.
|
2735
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
2736
2736
|
@client.create_option_group(options)
|
2737
2737
|
end
|
2738
2738
|
OptionGroup.new(
|
@@ -2752,7 +2752,7 @@ module Aws::RDS
|
|
2752
2752
|
def account_quotas(options = {})
|
2753
2753
|
batches = Enumerator.new do |y|
|
2754
2754
|
batch = []
|
2755
|
-
resp = Aws::Plugins::UserAgent.
|
2755
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
2756
2756
|
@client.describe_account_attributes(options)
|
2757
2757
|
end
|
2758
2758
|
resp.data.account_quotas.each do |a|
|
@@ -2803,7 +2803,7 @@ module Aws::RDS
|
|
2803
2803
|
# @return [Certificate::Collection]
|
2804
2804
|
def certificates(options = {})
|
2805
2805
|
batches = Enumerator.new do |y|
|
2806
|
-
resp = Aws::Plugins::UserAgent.
|
2806
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
2807
2807
|
@client.describe_certificates(options)
|
2808
2808
|
end
|
2809
2809
|
resp.each_page do |page|
|
@@ -2866,7 +2866,7 @@ module Aws::RDS
|
|
2866
2866
|
# @return [DBClusterParameterGroup::Collection]
|
2867
2867
|
def db_cluster_parameter_groups(options = {})
|
2868
2868
|
batches = Enumerator.new do |y|
|
2869
|
-
resp = Aws::Plugins::UserAgent.
|
2869
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
2870
2870
|
@client.describe_db_cluster_parameter_groups(options)
|
2871
2871
|
end
|
2872
2872
|
resp.each_page do |page|
|
@@ -2937,7 +2937,7 @@ module Aws::RDS
|
|
2937
2937
|
# @return [DBCluster::Collection]
|
2938
2938
|
def db_clusters(options = {})
|
2939
2939
|
batches = Enumerator.new do |y|
|
2940
|
-
resp = Aws::Plugins::UserAgent.
|
2940
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
2941
2941
|
@client.describe_db_clusters(options)
|
2942
2942
|
end
|
2943
2943
|
resp.each_page do |page|
|
@@ -3114,7 +3114,7 @@ module Aws::RDS
|
|
3114
3114
|
# @return [DBEngineVersion::Collection]
|
3115
3115
|
def db_engine_versions(options = {})
|
3116
3116
|
batches = Enumerator.new do |y|
|
3117
|
-
resp = Aws::Plugins::UserAgent.
|
3117
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
3118
3118
|
@client.describe_db_engine_versions(options)
|
3119
3119
|
end
|
3120
3120
|
resp.each_page do |page|
|
@@ -3192,7 +3192,7 @@ module Aws::RDS
|
|
3192
3192
|
# @return [DBInstance::Collection]
|
3193
3193
|
def db_instances(options = {})
|
3194
3194
|
batches = Enumerator.new do |y|
|
3195
|
-
resp = Aws::Plugins::UserAgent.
|
3195
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
3196
3196
|
@client.describe_db_instances(options)
|
3197
3197
|
end
|
3198
3198
|
resp.each_page do |page|
|
@@ -3254,7 +3254,7 @@ module Aws::RDS
|
|
3254
3254
|
# @return [DBParameterGroup::Collection]
|
3255
3255
|
def db_parameter_groups(options = {})
|
3256
3256
|
batches = Enumerator.new do |y|
|
3257
|
-
resp = Aws::Plugins::UserAgent.
|
3257
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
3258
3258
|
@client.describe_db_parameter_groups(options)
|
3259
3259
|
end
|
3260
3260
|
resp.each_page do |page|
|
@@ -3300,7 +3300,7 @@ module Aws::RDS
|
|
3300
3300
|
# @return [DBSecurityGroup::Collection]
|
3301
3301
|
def db_security_groups(options = {})
|
3302
3302
|
batches = Enumerator.new do |y|
|
3303
|
-
resp = Aws::Plugins::UserAgent.
|
3303
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
3304
3304
|
@client.describe_db_security_groups(options)
|
3305
3305
|
end
|
3306
3306
|
resp.each_page do |page|
|
@@ -3433,7 +3433,7 @@ module Aws::RDS
|
|
3433
3433
|
# @return [DBSnapshot::Collection]
|
3434
3434
|
def db_snapshots(options = {})
|
3435
3435
|
batches = Enumerator.new do |y|
|
3436
|
-
resp = Aws::Plugins::UserAgent.
|
3436
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
3437
3437
|
@client.describe_db_snapshots(options)
|
3438
3438
|
end
|
3439
3439
|
resp.each_page do |page|
|
@@ -3480,7 +3480,7 @@ module Aws::RDS
|
|
3480
3480
|
# @return [DBSubnetGroup::Collection]
|
3481
3481
|
def db_subnet_groups(options = {})
|
3482
3482
|
batches = Enumerator.new do |y|
|
3483
|
-
resp = Aws::Plugins::UserAgent.
|
3483
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
3484
3484
|
@client.describe_db_subnet_groups(options)
|
3485
3485
|
end
|
3486
3486
|
resp.each_page do |page|
|
@@ -3532,7 +3532,7 @@ module Aws::RDS
|
|
3532
3532
|
def event_category_maps(options = {})
|
3533
3533
|
batches = Enumerator.new do |y|
|
3534
3534
|
batch = []
|
3535
|
-
resp = Aws::Plugins::UserAgent.
|
3535
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
3536
3536
|
@client.describe_event_categories(options)
|
3537
3537
|
end
|
3538
3538
|
resp.data.event_categories_map_list.each do |e|
|
@@ -3576,7 +3576,7 @@ module Aws::RDS
|
|
3576
3576
|
# @return [EventSubscription::Collection]
|
3577
3577
|
def event_subscriptions(options = {})
|
3578
3578
|
batches = Enumerator.new do |y|
|
3579
|
-
resp = Aws::Plugins::UserAgent.
|
3579
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
3580
3580
|
@client.describe_event_subscriptions(options)
|
3581
3581
|
end
|
3582
3582
|
resp.each_page do |page|
|
@@ -3677,7 +3677,7 @@ module Aws::RDS
|
|
3677
3677
|
# @return [Event::Collection]
|
3678
3678
|
def events(options = {})
|
3679
3679
|
batches = Enumerator.new do |y|
|
3680
|
-
resp = Aws::Plugins::UserAgent.
|
3680
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
3681
3681
|
@client.describe_events(options)
|
3682
3682
|
end
|
3683
3683
|
resp.each_page do |page|
|
@@ -3762,7 +3762,7 @@ module Aws::RDS
|
|
3762
3762
|
# @return [OptionGroup::Collection]
|
3763
3763
|
def option_groups(options = {})
|
3764
3764
|
batches = Enumerator.new do |y|
|
3765
|
-
resp = Aws::Plugins::UserAgent.
|
3765
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
3766
3766
|
@client.describe_option_groups(options)
|
3767
3767
|
end
|
3768
3768
|
resp.each_page do |page|
|
@@ -3859,7 +3859,7 @@ module Aws::RDS
|
|
3859
3859
|
# @return [ReservedDBInstance::Collection]
|
3860
3860
|
def reserved_db_instances(options = {})
|
3861
3861
|
batches = Enumerator.new do |y|
|
3862
|
-
resp = Aws::Plugins::UserAgent.
|
3862
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
3863
3863
|
@client.describe_reserved_db_instances(options)
|
3864
3864
|
end
|
3865
3865
|
resp.each_page do |page|
|
@@ -3938,7 +3938,7 @@ module Aws::RDS
|
|
3938
3938
|
# @return [ReservedDBInstancesOffering::Collection]
|
3939
3939
|
def reserved_db_instances_offerings(options = {})
|
3940
3940
|
batches = Enumerator.new do |y|
|
3941
|
-
resp = Aws::Plugins::UserAgent.
|
3941
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
3942
3942
|
@client.describe_reserved_db_instances_offerings(options)
|
3943
3943
|
end
|
3944
3944
|
resp.each_page do |page|
|
@@ -3995,7 +3995,7 @@ module Aws::RDS
|
|
3995
3995
|
# @return [ResourcePendingMaintenanceActionList::Collection]
|
3996
3996
|
def resources_with_pending_maintenance_actions(options = {})
|
3997
3997
|
batches = Enumerator.new do |y|
|
3998
|
-
resp = Aws::Plugins::UserAgent.
|
3998
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
3999
3999
|
@client.describe_pending_maintenance_actions(options)
|
4000
4000
|
end
|
4001
4001
|
resp.each_page do |page|
|
data/lib/aws-sdk-rds.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-rds
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.235.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: 2024-
|
11
|
+
date: 2024-06-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.198.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.198.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|