aws-sdk-rds 1.144.0 → 1.145.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +172 -2
- data/lib/aws-sdk-rds/client_api.rb +18 -0
- data/lib/aws-sdk-rds/db_instance.rb +106 -1
- data/lib/aws-sdk-rds/db_snapshot.rb +20 -0
- data/lib/aws-sdk-rds/db_subnet_group.rb +22 -0
- data/lib/aws-sdk-rds/errors.rb +11 -0
- data/lib/aws-sdk-rds/resource.rb +21 -1
- data/lib/aws-sdk-rds/types.rb +214 -9
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8ebc70156196b0d7d76cee331c6fe31b3f949d7f0ccca7ed338a94e964253125
|
4
|
+
data.tar.gz: fa5665b8059a0f6c67851e2b223ca8397f903f42b6518ff6b0d03b8c34a4a358
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3346479d4cca68e1beef39807302e263a57dd912dcc8eac18de5f7a0d9a44aeb5d4dc9fb3ed64cb9c0e13950c57c512def31ca1e93cc003485e72f8345d216e7
|
7
|
+
data.tar.gz: 493b146148f8b0e2418d9b320ed407884290feccf0fd97194a4d6dcf282bb009e0355d8338285a245e5a77f8c5573cb929360fecdaa55fc409abc15922dc3dfa
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.145.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -3952,7 +3952,7 @@ module Aws::RDS
|
|
3952
3952
|
#
|
3953
3953
|
#
|
3954
3954
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-creating.html#custom-creating.create
|
3955
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits.html
|
3955
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits-MS.html
|
3956
3956
|
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MariaDB.html#MariaDB.Concepts.VersionMgmt
|
3957
3957
|
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport
|
3958
3958
|
# [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MySQL.html#MySQL.Concepts.VersionMgmt
|
@@ -4384,6 +4384,26 @@ module Aws::RDS
|
|
4384
4384
|
#
|
4385
4385
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
4386
4386
|
#
|
4387
|
+
# @option params [String] :network_type
|
4388
|
+
# The network type of the DB instance.
|
4389
|
+
#
|
4390
|
+
# Valid values:
|
4391
|
+
#
|
4392
|
+
# * `IPV4`
|
4393
|
+
#
|
4394
|
+
# * `DUAL`
|
4395
|
+
#
|
4396
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
4397
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4 protocol
|
4398
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
4399
|
+
#
|
4400
|
+
# For more information, see [ Working with a DB instance in a VPC][1] in
|
4401
|
+
# the *Amazon RDS User Guide.*
|
4402
|
+
#
|
4403
|
+
#
|
4404
|
+
#
|
4405
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
4406
|
+
#
|
4387
4407
|
# @return [Types::CreateDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4388
4408
|
#
|
4389
4409
|
# * {Types::CreateDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
@@ -4471,6 +4491,7 @@ module Aws::RDS
|
|
4471
4491
|
# enable_customer_owned_ip: false,
|
4472
4492
|
# custom_iam_instance_profile: "String",
|
4473
4493
|
# backup_target: "String",
|
4494
|
+
# network_type: "String",
|
4474
4495
|
# })
|
4475
4496
|
#
|
4476
4497
|
# @example Response structure
|
@@ -4509,6 +4530,8 @@ module Aws::RDS
|
|
4509
4530
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
4510
4531
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
4511
4532
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
4533
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
4534
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
4512
4535
|
# resp.db_instance.preferred_maintenance_window #=> String
|
4513
4536
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
4514
4537
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
@@ -4611,6 +4634,7 @@ module Aws::RDS
|
|
4611
4634
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
4612
4635
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
4613
4636
|
# resp.db_instance.backup_target #=> String
|
4637
|
+
# resp.db_instance.network_type #=> String
|
4614
4638
|
#
|
4615
4639
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
|
4616
4640
|
#
|
@@ -5131,6 +5155,26 @@ module Aws::RDS
|
|
5131
5155
|
#
|
5132
5156
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
5133
5157
|
#
|
5158
|
+
# @option params [String] :network_type
|
5159
|
+
# The network type of the DB instance.
|
5160
|
+
#
|
5161
|
+
# Valid values:
|
5162
|
+
#
|
5163
|
+
# * `IPV4`
|
5164
|
+
#
|
5165
|
+
# * `DUAL`
|
5166
|
+
#
|
5167
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
5168
|
+
# read replica. A `DBSubnetGroup` can support only the IPv4 protocol or
|
5169
|
+
# the IPv4 and the IPv6 protocols (`DUAL`).
|
5170
|
+
#
|
5171
|
+
# For more information, see [ Working with a DB instance in a VPC][1] in
|
5172
|
+
# the *Amazon RDS User Guide.*
|
5173
|
+
#
|
5174
|
+
#
|
5175
|
+
#
|
5176
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
5177
|
+
#
|
5134
5178
|
# @option params [String] :source_region
|
5135
5179
|
# The source region of the snapshot. This is only needed when the
|
5136
5180
|
# shapshot is encrypted and in a different region.
|
@@ -5212,6 +5256,7 @@ module Aws::RDS
|
|
5212
5256
|
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
5213
5257
|
# max_allocated_storage: 1,
|
5214
5258
|
# custom_iam_instance_profile: "String",
|
5259
|
+
# network_type: "String",
|
5215
5260
|
# source_region: "String",
|
5216
5261
|
# })
|
5217
5262
|
#
|
@@ -5251,6 +5296,8 @@ module Aws::RDS
|
|
5251
5296
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
5252
5297
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
5253
5298
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
5299
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
5300
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
5254
5301
|
# resp.db_instance.preferred_maintenance_window #=> String
|
5255
5302
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
5256
5303
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
@@ -5353,6 +5400,7 @@ module Aws::RDS
|
|
5353
5400
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
5354
5401
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
5355
5402
|
# resp.db_instance.backup_target #=> String
|
5403
|
+
# resp.db_instance.network_type #=> String
|
5356
5404
|
#
|
5357
5405
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
|
5358
5406
|
#
|
@@ -5996,6 +6044,8 @@ module Aws::RDS
|
|
5996
6044
|
# resp.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
5997
6045
|
# resp.db_subnet_group.subnets[0].subnet_status #=> String
|
5998
6046
|
# resp.db_subnet_group.db_subnet_group_arn #=> String
|
6047
|
+
# resp.db_subnet_group.supported_network_types #=> Array
|
6048
|
+
# resp.db_subnet_group.supported_network_types[0] #=> String
|
5999
6049
|
#
|
6000
6050
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSubnetGroup AWS API Documentation
|
6001
6051
|
#
|
@@ -7085,6 +7135,8 @@ module Aws::RDS
|
|
7085
7135
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
7086
7136
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
7087
7137
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
7138
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
7139
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
7088
7140
|
# resp.db_instance.preferred_maintenance_window #=> String
|
7089
7141
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
7090
7142
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
@@ -7187,6 +7239,7 @@ module Aws::RDS
|
|
7187
7239
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
7188
7240
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
7189
7241
|
# resp.db_instance.backup_target #=> String
|
7242
|
+
# resp.db_instance.network_type #=> String
|
7190
7243
|
#
|
7191
7244
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
|
7192
7245
|
#
|
@@ -9295,6 +9348,8 @@ module Aws::RDS
|
|
9295
9348
|
# resp.db_instances[0].db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
9296
9349
|
# resp.db_instances[0].db_subnet_group.subnets[0].subnet_status #=> String
|
9297
9350
|
# resp.db_instances[0].db_subnet_group.db_subnet_group_arn #=> String
|
9351
|
+
# resp.db_instances[0].db_subnet_group.supported_network_types #=> Array
|
9352
|
+
# resp.db_instances[0].db_subnet_group.supported_network_types[0] #=> String
|
9298
9353
|
# resp.db_instances[0].preferred_maintenance_window #=> String
|
9299
9354
|
# resp.db_instances[0].pending_modified_values.db_instance_class #=> String
|
9300
9355
|
# resp.db_instances[0].pending_modified_values.allocated_storage #=> Integer
|
@@ -9397,6 +9452,7 @@ module Aws::RDS
|
|
9397
9452
|
# resp.db_instances[0].resume_full_automation_mode_time #=> Time
|
9398
9453
|
# resp.db_instances[0].custom_iam_instance_profile #=> String
|
9399
9454
|
# resp.db_instances[0].backup_target #=> String
|
9455
|
+
# resp.db_instances[0].network_type #=> String
|
9400
9456
|
#
|
9401
9457
|
#
|
9402
9458
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -10454,6 +10510,8 @@ module Aws::RDS
|
|
10454
10510
|
# resp.db_subnet_groups[0].subnets[0].subnet_outpost.arn #=> String
|
10455
10511
|
# resp.db_subnet_groups[0].subnets[0].subnet_status #=> String
|
10456
10512
|
# resp.db_subnet_groups[0].db_subnet_group_arn #=> String
|
10513
|
+
# resp.db_subnet_groups[0].supported_network_types #=> Array
|
10514
|
+
# resp.db_subnet_groups[0].supported_network_types[0] #=> String
|
10457
10515
|
#
|
10458
10516
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBSubnetGroups AWS API Documentation
|
10459
10517
|
#
|
@@ -11688,6 +11746,8 @@ module Aws::RDS
|
|
11688
11746
|
# resp.orderable_db_instance_options[0].supported_activity_stream_modes[0] #=> String
|
11689
11747
|
# resp.orderable_db_instance_options[0].supports_global_databases #=> Boolean
|
11690
11748
|
# resp.orderable_db_instance_options[0].supports_clusters #=> Boolean
|
11749
|
+
# resp.orderable_db_instance_options[0].supported_network_types #=> Array
|
11750
|
+
# resp.orderable_db_instance_options[0].supported_network_types[0] #=> String
|
11691
11751
|
# resp.marker #=> String
|
11692
11752
|
#
|
11693
11753
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeOrderableDBInstanceOptions AWS API Documentation
|
@@ -14802,6 +14862,26 @@ module Aws::RDS
|
|
14802
14862
|
# ends, RDS Custom resumes full automation. The minimum value is `60`
|
14803
14863
|
# (default). The maximum value is `1,440`.
|
14804
14864
|
#
|
14865
|
+
# @option params [String] :network_type
|
14866
|
+
# The network type of the DB instance.
|
14867
|
+
#
|
14868
|
+
# Valid values:
|
14869
|
+
#
|
14870
|
+
# * `IPV4`
|
14871
|
+
#
|
14872
|
+
# * `DUAL`
|
14873
|
+
#
|
14874
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
14875
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4 protocol
|
14876
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
14877
|
+
#
|
14878
|
+
# For more information, see [ Working with a DB instance in a VPC][1] in
|
14879
|
+
# the *Amazon RDS User Guide.*
|
14880
|
+
#
|
14881
|
+
#
|
14882
|
+
#
|
14883
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
14884
|
+
#
|
14805
14885
|
# @return [Types::ModifyDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
14806
14886
|
#
|
14807
14887
|
# * {Types::ModifyDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
@@ -14886,6 +14966,7 @@ module Aws::RDS
|
|
14886
14966
|
# aws_backup_recovery_point_arn: "AwsBackupRecoveryPointArn",
|
14887
14967
|
# automation_mode: "full", # accepts full, all-paused
|
14888
14968
|
# resume_full_automation_mode_minutes: 1,
|
14969
|
+
# network_type: "String",
|
14889
14970
|
# })
|
14890
14971
|
#
|
14891
14972
|
# @example Response structure
|
@@ -14924,6 +15005,8 @@ module Aws::RDS
|
|
14924
15005
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
14925
15006
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
14926
15007
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
15008
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
15009
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
14927
15010
|
# resp.db_instance.preferred_maintenance_window #=> String
|
14928
15011
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
14929
15012
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
@@ -15026,6 +15109,7 @@ module Aws::RDS
|
|
15026
15109
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
15027
15110
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
15028
15111
|
# resp.db_instance.backup_target #=> String
|
15112
|
+
# resp.db_instance.network_type #=> String
|
15029
15113
|
#
|
15030
15114
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
|
15031
15115
|
#
|
@@ -15656,6 +15740,8 @@ module Aws::RDS
|
|
15656
15740
|
# resp.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
15657
15741
|
# resp.db_subnet_group.subnets[0].subnet_status #=> String
|
15658
15742
|
# resp.db_subnet_group.db_subnet_group_arn #=> String
|
15743
|
+
# resp.db_subnet_group.supported_network_types #=> Array
|
15744
|
+
# resp.db_subnet_group.supported_network_types[0] #=> String
|
15659
15745
|
#
|
15660
15746
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSubnetGroup AWS API Documentation
|
15661
15747
|
#
|
@@ -16148,6 +16234,8 @@ module Aws::RDS
|
|
16148
16234
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
16149
16235
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
16150
16236
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
16237
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
16238
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
16151
16239
|
# resp.db_instance.preferred_maintenance_window #=> String
|
16152
16240
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
16153
16241
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
@@ -16250,6 +16338,7 @@ module Aws::RDS
|
|
16250
16338
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
16251
16339
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
16252
16340
|
# resp.db_instance.backup_target #=> String
|
16341
|
+
# resp.db_instance.network_type #=> String
|
16253
16342
|
#
|
16254
16343
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
|
16255
16344
|
#
|
@@ -16738,6 +16827,8 @@ module Aws::RDS
|
|
16738
16827
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
16739
16828
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
16740
16829
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
16830
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
16831
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
16741
16832
|
# resp.db_instance.preferred_maintenance_window #=> String
|
16742
16833
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
16743
16834
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
@@ -16840,6 +16931,7 @@ module Aws::RDS
|
|
16840
16931
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
16841
16932
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
16842
16933
|
# resp.db_instance.backup_target #=> String
|
16934
|
+
# resp.db_instance.network_type #=> String
|
16843
16935
|
#
|
16844
16936
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
|
16845
16937
|
#
|
@@ -19451,6 +19543,26 @@ module Aws::RDS
|
|
19451
19543
|
#
|
19452
19544
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
19453
19545
|
#
|
19546
|
+
# @option params [String] :network_type
|
19547
|
+
# The network type of the DB instance.
|
19548
|
+
#
|
19549
|
+
# Valid values:
|
19550
|
+
#
|
19551
|
+
# * `IPV4`
|
19552
|
+
#
|
19553
|
+
# * `DUAL`
|
19554
|
+
#
|
19555
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
19556
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4 protocol
|
19557
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
19558
|
+
#
|
19559
|
+
# For more information, see [ Working with a DB instance in a VPC][1] in
|
19560
|
+
# the *Amazon RDS User Guide.*
|
19561
|
+
#
|
19562
|
+
#
|
19563
|
+
#
|
19564
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
19565
|
+
#
|
19454
19566
|
# @return [Types::RestoreDBInstanceFromDBSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
19455
19567
|
#
|
19456
19568
|
# * {Types::RestoreDBInstanceFromDBSnapshotResult#db_instance #db_instance} => Types::DBInstance
|
@@ -19594,6 +19706,7 @@ module Aws::RDS
|
|
19594
19706
|
# enable_customer_owned_ip: false,
|
19595
19707
|
# custom_iam_instance_profile: "String",
|
19596
19708
|
# backup_target: "String",
|
19709
|
+
# network_type: "String",
|
19597
19710
|
# })
|
19598
19711
|
#
|
19599
19712
|
# @example Response structure
|
@@ -19632,6 +19745,8 @@ module Aws::RDS
|
|
19632
19745
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
19633
19746
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
19634
19747
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
19748
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
19749
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
19635
19750
|
# resp.db_instance.preferred_maintenance_window #=> String
|
19636
19751
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
19637
19752
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
@@ -19734,6 +19849,7 @@ module Aws::RDS
|
|
19734
19849
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
19735
19850
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
19736
19851
|
# resp.db_instance.backup_target #=> String
|
19852
|
+
# resp.db_instance.network_type #=> String
|
19737
19853
|
#
|
19738
19854
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
|
19739
19855
|
#
|
@@ -20137,6 +20253,26 @@ module Aws::RDS
|
|
20137
20253
|
#
|
20138
20254
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
20139
20255
|
#
|
20256
|
+
# @option params [String] :network_type
|
20257
|
+
# The network type of the DB instance.
|
20258
|
+
#
|
20259
|
+
# Valid values:
|
20260
|
+
#
|
20261
|
+
# * `IPV4`
|
20262
|
+
#
|
20263
|
+
# * `DUAL`
|
20264
|
+
#
|
20265
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
20266
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4 protocol
|
20267
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
20268
|
+
#
|
20269
|
+
# For more information, see [ Working with a DB instance in a VPC][1] in
|
20270
|
+
# the *Amazon RDS User Guide.*
|
20271
|
+
#
|
20272
|
+
#
|
20273
|
+
#
|
20274
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
20275
|
+
#
|
20140
20276
|
# @return [Types::RestoreDBInstanceFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
20141
20277
|
#
|
20142
20278
|
# * {Types::RestoreDBInstanceFromS3Result#db_instance #db_instance} => Types::DBInstance
|
@@ -20198,6 +20334,7 @@ module Aws::RDS
|
|
20198
20334
|
# use_default_processor_features: false,
|
20199
20335
|
# deletion_protection: false,
|
20200
20336
|
# max_allocated_storage: 1,
|
20337
|
+
# network_type: "String",
|
20201
20338
|
# })
|
20202
20339
|
#
|
20203
20340
|
# @example Response structure
|
@@ -20236,6 +20373,8 @@ module Aws::RDS
|
|
20236
20373
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
20237
20374
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
20238
20375
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
20376
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
20377
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
20239
20378
|
# resp.db_instance.preferred_maintenance_window #=> String
|
20240
20379
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
20241
20380
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
@@ -20338,6 +20477,7 @@ module Aws::RDS
|
|
20338
20477
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
20339
20478
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
20340
20479
|
# resp.db_instance.backup_target #=> String
|
20480
|
+
# resp.db_instance.network_type #=> String
|
20341
20481
|
#
|
20342
20482
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
|
20343
20483
|
#
|
@@ -20763,6 +20903,26 @@ module Aws::RDS
|
|
20763
20903
|
#
|
20764
20904
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
20765
20905
|
#
|
20906
|
+
# @option params [String] :network_type
|
20907
|
+
# The network type of the DB instance.
|
20908
|
+
#
|
20909
|
+
# Valid values:
|
20910
|
+
#
|
20911
|
+
# * `IPV4`
|
20912
|
+
#
|
20913
|
+
# * `DUAL`
|
20914
|
+
#
|
20915
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
20916
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4 protocol
|
20917
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
20918
|
+
#
|
20919
|
+
# For more information, see [ Working with a DB instance in a VPC][1] in
|
20920
|
+
# the *Amazon RDS User Guide.*
|
20921
|
+
#
|
20922
|
+
#
|
20923
|
+
#
|
20924
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
20925
|
+
#
|
20766
20926
|
# @return [Types::RestoreDBInstanceToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
20767
20927
|
#
|
20768
20928
|
# * {Types::RestoreDBInstanceToPointInTimeResult#db_instance #db_instance} => Types::DBInstance
|
@@ -20912,6 +21072,7 @@ module Aws::RDS
|
|
20912
21072
|
# enable_customer_owned_ip: false,
|
20913
21073
|
# custom_iam_instance_profile: "String",
|
20914
21074
|
# backup_target: "String",
|
21075
|
+
# network_type: "String",
|
20915
21076
|
# })
|
20916
21077
|
#
|
20917
21078
|
# @example Response structure
|
@@ -20950,6 +21111,8 @@ module Aws::RDS
|
|
20950
21111
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
20951
21112
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
20952
21113
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
21114
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
21115
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
20953
21116
|
# resp.db_instance.preferred_maintenance_window #=> String
|
20954
21117
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
20955
21118
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
@@ -21052,6 +21215,7 @@ module Aws::RDS
|
|
21052
21215
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
21053
21216
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
21054
21217
|
# resp.db_instance.backup_target #=> String
|
21218
|
+
# resp.db_instance.network_type #=> String
|
21055
21219
|
#
|
21056
21220
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
|
21057
21221
|
#
|
@@ -21430,6 +21594,8 @@ module Aws::RDS
|
|
21430
21594
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
21431
21595
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
21432
21596
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
21597
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
21598
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
21433
21599
|
# resp.db_instance.preferred_maintenance_window #=> String
|
21434
21600
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
21435
21601
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
@@ -21532,6 +21698,7 @@ module Aws::RDS
|
|
21532
21698
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
21533
21699
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
21534
21700
|
# resp.db_instance.backup_target #=> String
|
21701
|
+
# resp.db_instance.network_type #=> String
|
21535
21702
|
#
|
21536
21703
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
|
21537
21704
|
#
|
@@ -22029,6 +22196,8 @@ module Aws::RDS
|
|
22029
22196
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
22030
22197
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
22031
22198
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
22199
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
22200
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
22032
22201
|
# resp.db_instance.preferred_maintenance_window #=> String
|
22033
22202
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
22034
22203
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
@@ -22131,6 +22300,7 @@ module Aws::RDS
|
|
22131
22300
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
22132
22301
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
22133
22302
|
# resp.db_instance.backup_target #=> String
|
22303
|
+
# resp.db_instance.network_type #=> String
|
22134
22304
|
#
|
22135
22305
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
|
22136
22306
|
#
|
@@ -22221,7 +22391,7 @@ module Aws::RDS
|
|
22221
22391
|
params: params,
|
22222
22392
|
config: config)
|
22223
22393
|
context[:gem_name] = 'aws-sdk-rds'
|
22224
|
-
context[:gem_version] = '1.
|
22394
|
+
context[:gem_version] = '1.145.0'
|
22225
22395
|
Seahorse::Client::Request.new(handlers, context)
|
22226
22396
|
end
|
22227
22397
|
|
@@ -432,6 +432,7 @@ module Aws::RDS
|
|
432
432
|
ModifyGlobalClusterResult = Shapes::StructureShape.new(name: 'ModifyGlobalClusterResult')
|
433
433
|
ModifyOptionGroupMessage = Shapes::StructureShape.new(name: 'ModifyOptionGroupMessage')
|
434
434
|
ModifyOptionGroupResult = Shapes::StructureShape.new(name: 'ModifyOptionGroupResult')
|
435
|
+
NetworkTypeNotSupported = Shapes::StructureShape.new(name: 'NetworkTypeNotSupported')
|
435
436
|
Option = Shapes::StructureShape.new(name: 'Option')
|
436
437
|
OptionConfiguration = Shapes::StructureShape.new(name: 'OptionConfiguration')
|
437
438
|
OptionConfigurationList = Shapes::ListShape.new(name: 'OptionConfigurationList')
|
@@ -922,6 +923,7 @@ module Aws::RDS
|
|
922
923
|
CreateDBInstanceMessage.add_member(:enable_customer_owned_ip, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCustomerOwnedIp"))
|
923
924
|
CreateDBInstanceMessage.add_member(:custom_iam_instance_profile, Shapes::ShapeRef.new(shape: String, location_name: "CustomIamInstanceProfile"))
|
924
925
|
CreateDBInstanceMessage.add_member(:backup_target, Shapes::ShapeRef.new(shape: String, location_name: "BackupTarget"))
|
926
|
+
CreateDBInstanceMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
925
927
|
CreateDBInstanceMessage.struct_class = Types::CreateDBInstanceMessage
|
926
928
|
|
927
929
|
CreateDBInstanceReadReplicaMessage.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBInstanceIdentifier"))
|
@@ -957,6 +959,7 @@ module Aws::RDS
|
|
957
959
|
CreateDBInstanceReadReplicaMessage.add_member(:replica_mode, Shapes::ShapeRef.new(shape: ReplicaMode, location_name: "ReplicaMode"))
|
958
960
|
CreateDBInstanceReadReplicaMessage.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxAllocatedStorage"))
|
959
961
|
CreateDBInstanceReadReplicaMessage.add_member(:custom_iam_instance_profile, Shapes::ShapeRef.new(shape: String, location_name: "CustomIamInstanceProfile"))
|
962
|
+
CreateDBInstanceReadReplicaMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
960
963
|
CreateDBInstanceReadReplicaMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
961
964
|
CreateDBInstanceReadReplicaMessage.struct_class = Types::CreateDBInstanceReadReplicaMessage
|
962
965
|
|
@@ -1397,6 +1400,7 @@ module Aws::RDS
|
|
1397
1400
|
DBInstance.add_member(:resume_full_automation_mode_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "ResumeFullAutomationModeTime"))
|
1398
1401
|
DBInstance.add_member(:custom_iam_instance_profile, Shapes::ShapeRef.new(shape: String, location_name: "CustomIamInstanceProfile"))
|
1399
1402
|
DBInstance.add_member(:backup_target, Shapes::ShapeRef.new(shape: String, location_name: "BackupTarget"))
|
1403
|
+
DBInstance.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
1400
1404
|
DBInstance.struct_class = Types::DBInstance
|
1401
1405
|
|
1402
1406
|
DBInstanceAlreadyExistsFault.struct_class = Types::DBInstanceAlreadyExistsFault
|
@@ -1669,6 +1673,7 @@ module Aws::RDS
|
|
1669
1673
|
DBSubnetGroup.add_member(:subnet_group_status, Shapes::ShapeRef.new(shape: String, location_name: "SubnetGroupStatus"))
|
1670
1674
|
DBSubnetGroup.add_member(:subnets, Shapes::ShapeRef.new(shape: SubnetList, location_name: "Subnets"))
|
1671
1675
|
DBSubnetGroup.add_member(:db_subnet_group_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBSubnetGroupArn"))
|
1676
|
+
DBSubnetGroup.add_member(:supported_network_types, Shapes::ShapeRef.new(shape: StringList, location_name: "SupportedNetworkTypes"))
|
1672
1677
|
DBSubnetGroup.struct_class = Types::DBSubnetGroup
|
1673
1678
|
|
1674
1679
|
DBSubnetGroupAlreadyExistsFault.struct_class = Types::DBSubnetGroupAlreadyExistsFault
|
@@ -2482,6 +2487,7 @@ module Aws::RDS
|
|
2482
2487
|
ModifyDBInstanceMessage.add_member(:aws_backup_recovery_point_arn, Shapes::ShapeRef.new(shape: AwsBackupRecoveryPointArn, location_name: "AwsBackupRecoveryPointArn"))
|
2483
2488
|
ModifyDBInstanceMessage.add_member(:automation_mode, Shapes::ShapeRef.new(shape: AutomationMode, location_name: "AutomationMode"))
|
2484
2489
|
ModifyDBInstanceMessage.add_member(:resume_full_automation_mode_minutes, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "ResumeFullAutomationModeMinutes"))
|
2490
|
+
ModifyDBInstanceMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
2485
2491
|
ModifyDBInstanceMessage.struct_class = Types::ModifyDBInstanceMessage
|
2486
2492
|
|
2487
2493
|
ModifyDBInstanceResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
@@ -2575,6 +2581,8 @@ module Aws::RDS
|
|
2575
2581
|
ModifyOptionGroupResult.add_member(:option_group, Shapes::ShapeRef.new(shape: OptionGroup, location_name: "OptionGroup"))
|
2576
2582
|
ModifyOptionGroupResult.struct_class = Types::ModifyOptionGroupResult
|
2577
2583
|
|
2584
|
+
NetworkTypeNotSupported.struct_class = Types::NetworkTypeNotSupported
|
2585
|
+
|
2578
2586
|
Option.add_member(:option_name, Shapes::ShapeRef.new(shape: String, location_name: "OptionName"))
|
2579
2587
|
Option.add_member(:option_description, Shapes::ShapeRef.new(shape: String, location_name: "OptionDescription"))
|
2580
2588
|
Option.add_member(:persistent, Shapes::ShapeRef.new(shape: Boolean, location_name: "Persistent"))
|
@@ -2718,6 +2726,7 @@ module Aws::RDS
|
|
2718
2726
|
OrderableDBInstanceOption.add_member(:supported_activity_stream_modes, Shapes::ShapeRef.new(shape: ActivityStreamModeList, location_name: "SupportedActivityStreamModes"))
|
2719
2727
|
OrderableDBInstanceOption.add_member(:supports_global_databases, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsGlobalDatabases"))
|
2720
2728
|
OrderableDBInstanceOption.add_member(:supports_clusters, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsClusters"))
|
2729
|
+
OrderableDBInstanceOption.add_member(:supported_network_types, Shapes::ShapeRef.new(shape: StringList, location_name: "SupportedNetworkTypes"))
|
2721
2730
|
OrderableDBInstanceOption.struct_class = Types::OrderableDBInstanceOption
|
2722
2731
|
|
2723
2732
|
OrderableDBInstanceOptionsList.member = Shapes::ShapeRef.new(shape: OrderableDBInstanceOption, location_name: "OrderableDBInstanceOption")
|
@@ -3085,6 +3094,7 @@ module Aws::RDS
|
|
3085
3094
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:enable_customer_owned_ip, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCustomerOwnedIp"))
|
3086
3095
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:custom_iam_instance_profile, Shapes::ShapeRef.new(shape: String, location_name: "CustomIamInstanceProfile"))
|
3087
3096
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:backup_target, Shapes::ShapeRef.new(shape: String, location_name: "BackupTarget"))
|
3097
|
+
RestoreDBInstanceFromDBSnapshotMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
3088
3098
|
RestoreDBInstanceFromDBSnapshotMessage.struct_class = Types::RestoreDBInstanceFromDBSnapshotMessage
|
3089
3099
|
|
3090
3100
|
RestoreDBInstanceFromDBSnapshotResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
@@ -3134,6 +3144,7 @@ module Aws::RDS
|
|
3134
3144
|
RestoreDBInstanceFromS3Message.add_member(:use_default_processor_features, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "UseDefaultProcessorFeatures"))
|
3135
3145
|
RestoreDBInstanceFromS3Message.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
3136
3146
|
RestoreDBInstanceFromS3Message.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxAllocatedStorage"))
|
3147
|
+
RestoreDBInstanceFromS3Message.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
3137
3148
|
RestoreDBInstanceFromS3Message.struct_class = Types::RestoreDBInstanceFromS3Message
|
3138
3149
|
|
3139
3150
|
RestoreDBInstanceFromS3Result.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
@@ -3175,6 +3186,7 @@ module Aws::RDS
|
|
3175
3186
|
RestoreDBInstanceToPointInTimeMessage.add_member(:enable_customer_owned_ip, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCustomerOwnedIp"))
|
3176
3187
|
RestoreDBInstanceToPointInTimeMessage.add_member(:custom_iam_instance_profile, Shapes::ShapeRef.new(shape: String, location_name: "CustomIamInstanceProfile"))
|
3177
3188
|
RestoreDBInstanceToPointInTimeMessage.add_member(:backup_target, Shapes::ShapeRef.new(shape: String, location_name: "BackupTarget"))
|
3189
|
+
RestoreDBInstanceToPointInTimeMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
3178
3190
|
RestoreDBInstanceToPointInTimeMessage.struct_class = Types::RestoreDBInstanceToPointInTimeMessage
|
3179
3191
|
|
3180
3192
|
RestoreDBInstanceToPointInTimeResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
@@ -3687,6 +3699,7 @@ module Aws::RDS
|
|
3687
3699
|
o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
|
3688
3700
|
o.errors << Shapes::ShapeRef.new(shape: DomainNotFoundFault)
|
3689
3701
|
o.errors << Shapes::ShapeRef.new(shape: BackupPolicyNotFoundFault)
|
3702
|
+
o.errors << Shapes::ShapeRef.new(shape: NetworkTypeNotSupported)
|
3690
3703
|
end)
|
3691
3704
|
|
3692
3705
|
api.add_operation(:create_db_instance_read_replica, Seahorse::Model::Operation.new.tap do |o|
|
@@ -3714,6 +3727,7 @@ module Aws::RDS
|
|
3714
3727
|
o.errors << Shapes::ShapeRef.new(shape: StorageTypeNotSupportedFault)
|
3715
3728
|
o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
|
3716
3729
|
o.errors << Shapes::ShapeRef.new(shape: DomainNotFoundFault)
|
3730
|
+
o.errors << Shapes::ShapeRef.new(shape: NetworkTypeNotSupported)
|
3717
3731
|
end)
|
3718
3732
|
|
3719
3733
|
api.add_operation(:create_db_parameter_group, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4699,6 +4713,7 @@ module Aws::RDS
|
|
4699
4713
|
o.errors << Shapes::ShapeRef.new(shape: BackupPolicyNotFoundFault)
|
4700
4714
|
o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
|
4701
4715
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBClusterStateFault)
|
4716
|
+
o.errors << Shapes::ShapeRef.new(shape: NetworkTypeNotSupported)
|
4702
4717
|
end)
|
4703
4718
|
|
4704
4719
|
api.add_operation(:modify_db_parameter_group, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5060,6 +5075,7 @@ module Aws::RDS
|
|
5060
5075
|
o.errors << Shapes::ShapeRef.new(shape: DomainNotFoundFault)
|
5061
5076
|
o.errors << Shapes::ShapeRef.new(shape: DBParameterGroupNotFoundFault)
|
5062
5077
|
o.errors << Shapes::ShapeRef.new(shape: BackupPolicyNotFoundFault)
|
5078
|
+
o.errors << Shapes::ShapeRef.new(shape: NetworkTypeNotSupported)
|
5063
5079
|
end)
|
5064
5080
|
|
5065
5081
|
api.add_operation(:restore_db_instance_from_s3, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5085,6 +5101,7 @@ module Aws::RDS
|
|
5085
5101
|
o.errors << Shapes::ShapeRef.new(shape: AuthorizationNotFoundFault)
|
5086
5102
|
o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
|
5087
5103
|
o.errors << Shapes::ShapeRef.new(shape: BackupPolicyNotFoundFault)
|
5104
|
+
o.errors << Shapes::ShapeRef.new(shape: NetworkTypeNotSupported)
|
5088
5105
|
end)
|
5089
5106
|
|
5090
5107
|
api.add_operation(:restore_db_instance_to_point_in_time, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5115,6 +5132,7 @@ module Aws::RDS
|
|
5115
5132
|
o.errors << Shapes::ShapeRef.new(shape: BackupPolicyNotFoundFault)
|
5116
5133
|
o.errors << Shapes::ShapeRef.new(shape: DBParameterGroupNotFoundFault)
|
5117
5134
|
o.errors << Shapes::ShapeRef.new(shape: DBInstanceAutomatedBackupNotFoundFault)
|
5135
|
+
o.errors << Shapes::ShapeRef.new(shape: NetworkTypeNotSupported)
|
5118
5136
|
end)
|
5119
5137
|
|
5120
5138
|
api.add_operation(:revoke_db_security_group_ingress, Seahorse::Model::Operation.new.tap do |o|
|