aws-sdk-rds 1.296.0 → 1.302.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 +30 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +807 -72
- data/lib/aws-sdk-rds/client_api.rb +126 -0
- data/lib/aws-sdk-rds/db_cluster.rb +68 -25
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +19 -0
- data/lib/aws-sdk-rds/db_engine_version.rb +16 -0
- data/lib/aws-sdk-rds/db_instance.rb +205 -23
- data/lib/aws-sdk-rds/db_snapshot.rb +43 -0
- data/lib/aws-sdk-rds/errors.rb +11 -0
- data/lib/aws-sdk-rds/resource.rb +85 -47
- data/lib/aws-sdk-rds/types.rb +754 -81
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +206 -11
- data/sig/db_cluster.rbs +28 -3
- data/sig/db_cluster_snapshot.rbs +12 -1
- data/sig/db_engine_version.rbs +6 -0
- data/sig/db_instance.rbs +109 -4
- data/sig/db_snapshot.rbs +25 -1
- data/sig/errors.rbs +2 -0
- data/sig/resource.rbs +34 -2
- data/sig/types.rbs +104 -2
- metadata +3 -3
|
@@ -26,6 +26,10 @@ module Aws::RDS
|
|
|
26
26
|
AddSourceIdentifierToSubscriptionMessage = Shapes::StructureShape.new(name: 'AddSourceIdentifierToSubscriptionMessage')
|
|
27
27
|
AddSourceIdentifierToSubscriptionResult = Shapes::StructureShape.new(name: 'AddSourceIdentifierToSubscriptionResult')
|
|
28
28
|
AddTagsToResourceMessage = Shapes::StructureShape.new(name: 'AddTagsToResourceMessage')
|
|
29
|
+
AdditionalStorageVolume = Shapes::StructureShape.new(name: 'AdditionalStorageVolume')
|
|
30
|
+
AdditionalStorageVolumeOutput = Shapes::StructureShape.new(name: 'AdditionalStorageVolumeOutput')
|
|
31
|
+
AdditionalStorageVolumesList = Shapes::ListShape.new(name: 'AdditionalStorageVolumesList')
|
|
32
|
+
AdditionalStorageVolumesOutputList = Shapes::ListShape.new(name: 'AdditionalStorageVolumesOutputList')
|
|
29
33
|
ApplyMethod = Shapes::StringShape.new(name: 'ApplyMethod')
|
|
30
34
|
ApplyPendingMaintenanceActionMessage = Shapes::StructureShape.new(name: 'ApplyPendingMaintenanceActionMessage')
|
|
31
35
|
ApplyPendingMaintenanceActionResult = Shapes::StructureShape.new(name: 'ApplyPendingMaintenanceActionResult')
|
|
@@ -43,6 +47,8 @@ module Aws::RDS
|
|
|
43
47
|
AvailabilityZone = Shapes::StructureShape.new(name: 'AvailabilityZone')
|
|
44
48
|
AvailabilityZoneList = Shapes::ListShape.new(name: 'AvailabilityZoneList')
|
|
45
49
|
AvailabilityZones = Shapes::ListShape.new(name: 'AvailabilityZones')
|
|
50
|
+
AvailableAdditionalStorageVolumesOption = Shapes::StructureShape.new(name: 'AvailableAdditionalStorageVolumesOption')
|
|
51
|
+
AvailableAdditionalStorageVolumesOptionList = Shapes::ListShape.new(name: 'AvailableAdditionalStorageVolumesOptionList')
|
|
46
52
|
AvailableProcessorFeature = Shapes::StructureShape.new(name: 'AvailableProcessorFeature')
|
|
47
53
|
AvailableProcessorFeatureList = Shapes::ListShape.new(name: 'AvailableProcessorFeatureList')
|
|
48
54
|
AwsBackupRecoveryPointArn = Shapes::StringShape.new(name: 'AwsBackupRecoveryPointArn')
|
|
@@ -527,6 +533,8 @@ module Aws::RDS
|
|
|
527
533
|
MinimumEngineVersionPerAllowedValueList = Shapes::ListShape.new(name: 'MinimumEngineVersionPerAllowedValueList')
|
|
528
534
|
ModifyActivityStreamRequest = Shapes::StructureShape.new(name: 'ModifyActivityStreamRequest')
|
|
529
535
|
ModifyActivityStreamResponse = Shapes::StructureShape.new(name: 'ModifyActivityStreamResponse')
|
|
536
|
+
ModifyAdditionalStorageVolume = Shapes::StructureShape.new(name: 'ModifyAdditionalStorageVolume')
|
|
537
|
+
ModifyAdditionalStorageVolumesList = Shapes::ListShape.new(name: 'ModifyAdditionalStorageVolumesList')
|
|
530
538
|
ModifyCertificatesMessage = Shapes::StructureShape.new(name: 'ModifyCertificatesMessage')
|
|
531
539
|
ModifyCertificatesResult = Shapes::StructureShape.new(name: 'ModifyCertificatesResult')
|
|
532
540
|
ModifyCurrentDBClusterCapacityMessage = Shapes::StructureShape.new(name: 'ModifyCurrentDBClusterCapacityMessage')
|
|
@@ -745,6 +753,8 @@ module Aws::RDS
|
|
|
745
753
|
Tag = Shapes::StructureShape.new(name: 'Tag')
|
|
746
754
|
TagList = Shapes::ListShape.new(name: 'TagList')
|
|
747
755
|
TagListMessage = Shapes::StructureShape.new(name: 'TagListMessage')
|
|
756
|
+
TagSpecification = Shapes::StructureShape.new(name: 'TagSpecification')
|
|
757
|
+
TagSpecificationList = Shapes::ListShape.new(name: 'TagSpecificationList')
|
|
748
758
|
TargetConnectionNetworkType = Shapes::StringShape.new(name: 'TargetConnectionNetworkType')
|
|
749
759
|
TargetDBClusterParameterGroupName = Shapes::StringShape.new(name: 'TargetDBClusterParameterGroupName')
|
|
750
760
|
TargetDBInstanceClass = Shapes::StringShape.new(name: 'TargetDBInstanceClass')
|
|
@@ -767,15 +777,20 @@ module Aws::RDS
|
|
|
767
777
|
TenantDatabasesMessage = Shapes::StructureShape.new(name: 'TenantDatabasesMessage')
|
|
768
778
|
Timezone = Shapes::StructureShape.new(name: 'Timezone')
|
|
769
779
|
UnsupportedDBEngineVersionFault = Shapes::StructureShape.new(name: 'UnsupportedDBEngineVersionFault', error: {"code" => "UnsupportedDBEngineVersion", "httpStatusCode" => 400, "senderFault" => true})
|
|
780
|
+
UpgradeRolloutOrder = Shapes::StringShape.new(name: 'UpgradeRolloutOrder')
|
|
770
781
|
UpgradeTarget = Shapes::StructureShape.new(name: 'UpgradeTarget')
|
|
771
782
|
UserAuthConfig = Shapes::StructureShape.new(name: 'UserAuthConfig')
|
|
772
783
|
UserAuthConfigInfo = Shapes::StructureShape.new(name: 'UserAuthConfigInfo')
|
|
773
784
|
UserAuthConfigInfoList = Shapes::ListShape.new(name: 'UserAuthConfigInfoList')
|
|
774
785
|
UserAuthConfigList = Shapes::ListShape.new(name: 'UserAuthConfigList')
|
|
786
|
+
ValidAdditionalStorageOptions = Shapes::StructureShape.new(name: 'ValidAdditionalStorageOptions')
|
|
775
787
|
ValidDBInstanceModificationsMessage = Shapes::StructureShape.new(name: 'ValidDBInstanceModificationsMessage')
|
|
776
788
|
ValidStorageOptions = Shapes::StructureShape.new(name: 'ValidStorageOptions')
|
|
777
789
|
ValidStorageOptionsList = Shapes::ListShape.new(name: 'ValidStorageOptionsList')
|
|
778
790
|
ValidUpgradeTargetList = Shapes::ListShape.new(name: 'ValidUpgradeTargetList')
|
|
791
|
+
ValidVolumeOptions = Shapes::StructureShape.new(name: 'ValidVolumeOptions')
|
|
792
|
+
ValidVolumeOptionsList = Shapes::ListShape.new(name: 'ValidVolumeOptionsList')
|
|
793
|
+
VpcEncryptionControlViolationException = Shapes::StructureShape.new(name: 'VpcEncryptionControlViolationException', error: {"code" => "VpcEncryptionControlViolationException", "httpStatusCode" => 400, "senderFault" => true})
|
|
779
794
|
VpcSecurityGroupIdList = Shapes::ListShape.new(name: 'VpcSecurityGroupIdList')
|
|
780
795
|
VpcSecurityGroupMembership = Shapes::StructureShape.new(name: 'VpcSecurityGroupMembership')
|
|
781
796
|
VpcSecurityGroupMembershipList = Shapes::ListShape.new(name: 'VpcSecurityGroupMembershipList')
|
|
@@ -814,6 +829,27 @@ module Aws::RDS
|
|
|
814
829
|
AddTagsToResourceMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, required: true, location_name: "Tags"))
|
|
815
830
|
AddTagsToResourceMessage.struct_class = Types::AddTagsToResourceMessage
|
|
816
831
|
|
|
832
|
+
AdditionalStorageVolume.add_member(:volume_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "VolumeName"))
|
|
833
|
+
AdditionalStorageVolume.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "AllocatedStorage"))
|
|
834
|
+
AdditionalStorageVolume.add_member(:iops, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "IOPS"))
|
|
835
|
+
AdditionalStorageVolume.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxAllocatedStorage"))
|
|
836
|
+
AdditionalStorageVolume.add_member(:storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "StorageThroughput"))
|
|
837
|
+
AdditionalStorageVolume.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
|
838
|
+
AdditionalStorageVolume.struct_class = Types::AdditionalStorageVolume
|
|
839
|
+
|
|
840
|
+
AdditionalStorageVolumeOutput.add_member(:volume_name, Shapes::ShapeRef.new(shape: String, location_name: "VolumeName"))
|
|
841
|
+
AdditionalStorageVolumeOutput.add_member(:storage_volume_status, Shapes::ShapeRef.new(shape: String, location_name: "StorageVolumeStatus"))
|
|
842
|
+
AdditionalStorageVolumeOutput.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: Integer, location_name: "AllocatedStorage"))
|
|
843
|
+
AdditionalStorageVolumeOutput.add_member(:iops, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "IOPS"))
|
|
844
|
+
AdditionalStorageVolumeOutput.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxAllocatedStorage"))
|
|
845
|
+
AdditionalStorageVolumeOutput.add_member(:storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "StorageThroughput"))
|
|
846
|
+
AdditionalStorageVolumeOutput.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
|
847
|
+
AdditionalStorageVolumeOutput.struct_class = Types::AdditionalStorageVolumeOutput
|
|
848
|
+
|
|
849
|
+
AdditionalStorageVolumesList.member = Shapes::ShapeRef.new(shape: AdditionalStorageVolume)
|
|
850
|
+
|
|
851
|
+
AdditionalStorageVolumesOutputList.member = Shapes::ShapeRef.new(shape: AdditionalStorageVolumeOutput)
|
|
852
|
+
|
|
817
853
|
ApplyPendingMaintenanceActionMessage.add_member(:resource_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ResourceIdentifier"))
|
|
818
854
|
ApplyPendingMaintenanceActionMessage.add_member(:apply_action, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ApplyAction"))
|
|
819
855
|
ApplyPendingMaintenanceActionMessage.add_member(:opt_in_type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "OptInType"))
|
|
@@ -847,6 +883,22 @@ module Aws::RDS
|
|
|
847
883
|
|
|
848
884
|
AvailabilityZones.member = Shapes::ShapeRef.new(shape: String, location_name: "AvailabilityZone")
|
|
849
885
|
|
|
886
|
+
AvailableAdditionalStorageVolumesOption.add_member(:supports_storage_autoscaling, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsStorageAutoscaling"))
|
|
887
|
+
AvailableAdditionalStorageVolumesOption.add_member(:supports_storage_throughput, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsStorageThroughput"))
|
|
888
|
+
AvailableAdditionalStorageVolumesOption.add_member(:supports_iops, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsIops"))
|
|
889
|
+
AvailableAdditionalStorageVolumesOption.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
|
890
|
+
AvailableAdditionalStorageVolumesOption.add_member(:min_storage_size, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MinStorageSize"))
|
|
891
|
+
AvailableAdditionalStorageVolumesOption.add_member(:max_storage_size, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxStorageSize"))
|
|
892
|
+
AvailableAdditionalStorageVolumesOption.add_member(:min_iops, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MinIops"))
|
|
893
|
+
AvailableAdditionalStorageVolumesOption.add_member(:max_iops, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxIops"))
|
|
894
|
+
AvailableAdditionalStorageVolumesOption.add_member(:min_iops_per_gib, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MinIopsPerGib"))
|
|
895
|
+
AvailableAdditionalStorageVolumesOption.add_member(:max_iops_per_gib, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MaxIopsPerGib"))
|
|
896
|
+
AvailableAdditionalStorageVolumesOption.add_member(:min_storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MinStorageThroughput"))
|
|
897
|
+
AvailableAdditionalStorageVolumesOption.add_member(:max_storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxStorageThroughput"))
|
|
898
|
+
AvailableAdditionalStorageVolumesOption.struct_class = Types::AvailableAdditionalStorageVolumesOption
|
|
899
|
+
|
|
900
|
+
AvailableAdditionalStorageVolumesOptionList.member = Shapes::ShapeRef.new(shape: AvailableAdditionalStorageVolumesOption, location_name: "AvailableAdditionalStorageVolumesOption")
|
|
901
|
+
|
|
850
902
|
AvailableProcessorFeature.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
|
|
851
903
|
AvailableProcessorFeature.add_member(:default_value, Shapes::ShapeRef.new(shape: String, location_name: "DefaultValue"))
|
|
852
904
|
AvailableProcessorFeature.add_member(:allowed_values, Shapes::ShapeRef.new(shape: String, location_name: "AllowedValues"))
|
|
@@ -1042,6 +1094,7 @@ module Aws::RDS
|
|
|
1042
1094
|
CreateCustomDBEngineVersionMessage.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
|
1043
1095
|
CreateCustomDBEngineVersionMessage.add_member(:manifest, Shapes::ShapeRef.new(shape: CustomDBEngineVersionManifest, location_name: "Manifest"))
|
|
1044
1096
|
CreateCustomDBEngineVersionMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
|
1097
|
+
CreateCustomDBEngineVersionMessage.add_member(:database_installation_files, Shapes::ShapeRef.new(shape: StringList, location_name: "DatabaseInstallationFiles"))
|
|
1045
1098
|
CreateCustomDBEngineVersionMessage.struct_class = Types::CreateCustomDBEngineVersionMessage
|
|
1046
1099
|
|
|
1047
1100
|
CreateDBClusterEndpointMessage.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterIdentifier"))
|
|
@@ -1108,6 +1161,7 @@ module Aws::RDS
|
|
|
1108
1161
|
CreateDBClusterMessage.add_member(:master_user_secret_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "MasterUserSecretKmsKeyId"))
|
|
1109
1162
|
CreateDBClusterMessage.add_member(:ca_certificate_identifier, Shapes::ShapeRef.new(shape: String, location_name: "CACertificateIdentifier"))
|
|
1110
1163
|
CreateDBClusterMessage.add_member(:engine_lifecycle_support, Shapes::ShapeRef.new(shape: String, location_name: "EngineLifecycleSupport"))
|
|
1164
|
+
CreateDBClusterMessage.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecifications"))
|
|
1111
1165
|
CreateDBClusterMessage.add_member(:master_user_authentication_type, Shapes::ShapeRef.new(shape: MasterUserAuthenticationType, location_name: "MasterUserAuthenticationType"))
|
|
1112
1166
|
CreateDBClusterMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
|
1113
1167
|
CreateDBClusterMessage.struct_class = Types::CreateDBClusterMessage
|
|
@@ -1196,7 +1250,9 @@ module Aws::RDS
|
|
|
1196
1250
|
CreateDBInstanceMessage.add_member(:multi_tenant, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiTenant"))
|
|
1197
1251
|
CreateDBInstanceMessage.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DedicatedLogVolume"))
|
|
1198
1252
|
CreateDBInstanceMessage.add_member(:engine_lifecycle_support, Shapes::ShapeRef.new(shape: String, location_name: "EngineLifecycleSupport"))
|
|
1253
|
+
CreateDBInstanceMessage.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecifications"))
|
|
1199
1254
|
CreateDBInstanceMessage.add_member(:master_user_authentication_type, Shapes::ShapeRef.new(shape: MasterUserAuthenticationType, location_name: "MasterUserAuthenticationType"))
|
|
1255
|
+
CreateDBInstanceMessage.add_member(:additional_storage_volumes, Shapes::ShapeRef.new(shape: AdditionalStorageVolumesList, location_name: "AdditionalStorageVolumes"))
|
|
1200
1256
|
CreateDBInstanceMessage.struct_class = Types::CreateDBInstanceMessage
|
|
1201
1257
|
|
|
1202
1258
|
CreateDBInstanceReadReplicaMessage.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBInstanceIdentifier"))
|
|
@@ -1246,6 +1302,8 @@ module Aws::RDS
|
|
|
1246
1302
|
CreateDBInstanceReadReplicaMessage.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DedicatedLogVolume"))
|
|
1247
1303
|
CreateDBInstanceReadReplicaMessage.add_member(:upgrade_storage_config, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "UpgradeStorageConfig"))
|
|
1248
1304
|
CreateDBInstanceReadReplicaMessage.add_member(:ca_certificate_identifier, Shapes::ShapeRef.new(shape: String, location_name: "CACertificateIdentifier"))
|
|
1305
|
+
CreateDBInstanceReadReplicaMessage.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecifications"))
|
|
1306
|
+
CreateDBInstanceReadReplicaMessage.add_member(:additional_storage_volumes, Shapes::ShapeRef.new(shape: AdditionalStorageVolumesList, location_name: "AdditionalStorageVolumes"))
|
|
1249
1307
|
CreateDBInstanceReadReplicaMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
|
1250
1308
|
CreateDBInstanceReadReplicaMessage.struct_class = Types::CreateDBInstanceReadReplicaMessage
|
|
1251
1309
|
|
|
@@ -1423,6 +1481,7 @@ module Aws::RDS
|
|
|
1423
1481
|
DBCluster.add_member(:db_cluster_option_group_memberships, Shapes::ShapeRef.new(shape: DBClusterOptionGroupMemberships, location_name: "DBClusterOptionGroupMemberships"))
|
|
1424
1482
|
DBCluster.add_member(:preferred_backup_window, Shapes::ShapeRef.new(shape: String, location_name: "PreferredBackupWindow"))
|
|
1425
1483
|
DBCluster.add_member(:preferred_maintenance_window, Shapes::ShapeRef.new(shape: String, location_name: "PreferredMaintenanceWindow"))
|
|
1484
|
+
DBCluster.add_member(:upgrade_rollout_order, Shapes::ShapeRef.new(shape: UpgradeRolloutOrder, location_name: "UpgradeRolloutOrder"))
|
|
1426
1485
|
DBCluster.add_member(:replication_source_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationSourceIdentifier"))
|
|
1427
1486
|
DBCluster.add_member(:read_replica_identifiers, Shapes::ShapeRef.new(shape: ReadReplicaIdentifierList, location_name: "ReadReplicaIdentifiers"))
|
|
1428
1487
|
DBCluster.add_member(:status_infos, Shapes::ShapeRef.new(shape: DBClusterStatusInfoList, location_name: "StatusInfos"))
|
|
@@ -1513,6 +1572,7 @@ module Aws::RDS
|
|
|
1513
1572
|
DBClusterAutomatedBackup.add_member(:iops, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Iops"))
|
|
1514
1573
|
DBClusterAutomatedBackup.add_member(:storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "StorageThroughput"))
|
|
1515
1574
|
DBClusterAutomatedBackup.add_member(:aws_backup_recovery_point_arn, Shapes::ShapeRef.new(shape: String, location_name: "AwsBackupRecoveryPointArn"))
|
|
1575
|
+
DBClusterAutomatedBackup.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
|
1516
1576
|
DBClusterAutomatedBackup.struct_class = Types::DBClusterAutomatedBackup
|
|
1517
1577
|
|
|
1518
1578
|
DBClusterAutomatedBackupList.member = Shapes::ShapeRef.new(shape: DBClusterAutomatedBackup, location_name: "DBClusterAutomatedBackup")
|
|
@@ -1721,6 +1781,8 @@ module Aws::RDS
|
|
|
1721
1781
|
DBEngineVersion.add_member(:supports_local_write_forwarding, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsLocalWriteForwarding"))
|
|
1722
1782
|
DBEngineVersion.add_member(:supports_integrations, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsIntegrations"))
|
|
1723
1783
|
DBEngineVersion.add_member(:serverless_v2_features_support, Shapes::ShapeRef.new(shape: ServerlessV2FeaturesSupport, location_name: "ServerlessV2FeaturesSupport"))
|
|
1784
|
+
DBEngineVersion.add_member(:database_installation_files, Shapes::ShapeRef.new(shape: StringList, location_name: "DatabaseInstallationFiles"))
|
|
1785
|
+
DBEngineVersion.add_member(:failure_reason, Shapes::ShapeRef.new(shape: String, location_name: "FailureReason"))
|
|
1724
1786
|
DBEngineVersion.struct_class = Types::DBEngineVersion
|
|
1725
1787
|
|
|
1726
1788
|
DBEngineVersionList.member = Shapes::ShapeRef.new(shape: DBEngineVersion, location_name: "DBEngineVersion")
|
|
@@ -1746,6 +1808,7 @@ module Aws::RDS
|
|
|
1746
1808
|
DBInstance.add_member(:availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "AvailabilityZone"))
|
|
1747
1809
|
DBInstance.add_member(:db_subnet_group, Shapes::ShapeRef.new(shape: DBSubnetGroup, location_name: "DBSubnetGroup"))
|
|
1748
1810
|
DBInstance.add_member(:preferred_maintenance_window, Shapes::ShapeRef.new(shape: String, location_name: "PreferredMaintenanceWindow"))
|
|
1811
|
+
DBInstance.add_member(:upgrade_rollout_order, Shapes::ShapeRef.new(shape: UpgradeRolloutOrder, location_name: "UpgradeRolloutOrder"))
|
|
1749
1812
|
DBInstance.add_member(:pending_modified_values, Shapes::ShapeRef.new(shape: PendingModifiedValues, location_name: "PendingModifiedValues"))
|
|
1750
1813
|
DBInstance.add_member(:latest_restorable_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "LatestRestorableTime"))
|
|
1751
1814
|
DBInstance.add_member(:multi_az, Shapes::ShapeRef.new(shape: Boolean, location_name: "MultiAZ"))
|
|
@@ -1816,6 +1879,8 @@ module Aws::RDS
|
|
|
1816
1879
|
DBInstance.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: Boolean, location_name: "DedicatedLogVolume"))
|
|
1817
1880
|
DBInstance.add_member(:is_storage_config_upgrade_available, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "IsStorageConfigUpgradeAvailable"))
|
|
1818
1881
|
DBInstance.add_member(:engine_lifecycle_support, Shapes::ShapeRef.new(shape: String, location_name: "EngineLifecycleSupport"))
|
|
1882
|
+
DBInstance.add_member(:additional_storage_volumes, Shapes::ShapeRef.new(shape: AdditionalStorageVolumesOutputList, location_name: "AdditionalStorageVolumes"))
|
|
1883
|
+
DBInstance.add_member(:storage_volume_status, Shapes::ShapeRef.new(shape: String, location_name: "StorageVolumeStatus"))
|
|
1819
1884
|
DBInstance.struct_class = Types::DBInstance
|
|
1820
1885
|
|
|
1821
1886
|
DBInstanceAlreadyExistsFault.struct_class = Types::DBInstanceAlreadyExistsFault
|
|
@@ -1850,7 +1915,9 @@ module Aws::RDS
|
|
|
1850
1915
|
DBInstanceAutomatedBackup.add_member(:backup_target, Shapes::ShapeRef.new(shape: String, location_name: "BackupTarget"))
|
|
1851
1916
|
DBInstanceAutomatedBackup.add_member(:multi_tenant, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiTenant"))
|
|
1852
1917
|
DBInstanceAutomatedBackup.add_member(:aws_backup_recovery_point_arn, Shapes::ShapeRef.new(shape: String, location_name: "AwsBackupRecoveryPointArn"))
|
|
1918
|
+
DBInstanceAutomatedBackup.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
|
1853
1919
|
DBInstanceAutomatedBackup.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DedicatedLogVolume"))
|
|
1920
|
+
DBInstanceAutomatedBackup.add_member(:additional_storage_volumes, Shapes::ShapeRef.new(shape: AdditionalStorageVolumesList, location_name: "AdditionalStorageVolumes"))
|
|
1854
1921
|
DBInstanceAutomatedBackup.struct_class = Types::DBInstanceAutomatedBackup
|
|
1855
1922
|
|
|
1856
1923
|
DBInstanceAutomatedBackupList.member = Shapes::ShapeRef.new(shape: DBInstanceAutomatedBackup, location_name: "DBInstanceAutomatedBackup")
|
|
@@ -2133,6 +2200,7 @@ module Aws::RDS
|
|
|
2133
2200
|
DBSnapshot.add_member(:multi_tenant, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiTenant"))
|
|
2134
2201
|
DBSnapshot.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: Boolean, location_name: "DedicatedLogVolume"))
|
|
2135
2202
|
DBSnapshot.add_member(:snapshot_availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotAvailabilityZone"))
|
|
2203
|
+
DBSnapshot.add_member(:additional_storage_volumes, Shapes::ShapeRef.new(shape: AdditionalStorageVolumesList, location_name: "AdditionalStorageVolumes"))
|
|
2136
2204
|
DBSnapshot.struct_class = Types::DBSnapshot
|
|
2137
2205
|
|
|
2138
2206
|
DBSnapshotAlreadyExistsFault.struct_class = Types::DBSnapshotAlreadyExistsFault
|
|
@@ -3094,6 +3162,17 @@ module Aws::RDS
|
|
|
3094
3162
|
ModifyActivityStreamResponse.add_member(:policy_status, Shapes::ShapeRef.new(shape: ActivityStreamPolicyStatus, location_name: "PolicyStatus"))
|
|
3095
3163
|
ModifyActivityStreamResponse.struct_class = Types::ModifyActivityStreamResponse
|
|
3096
3164
|
|
|
3165
|
+
ModifyAdditionalStorageVolume.add_member(:volume_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "VolumeName"))
|
|
3166
|
+
ModifyAdditionalStorageVolume.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "AllocatedStorage"))
|
|
3167
|
+
ModifyAdditionalStorageVolume.add_member(:iops, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "IOPS"))
|
|
3168
|
+
ModifyAdditionalStorageVolume.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxAllocatedStorage"))
|
|
3169
|
+
ModifyAdditionalStorageVolume.add_member(:storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "StorageThroughput"))
|
|
3170
|
+
ModifyAdditionalStorageVolume.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
|
3171
|
+
ModifyAdditionalStorageVolume.add_member(:set_for_delete, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SetForDelete"))
|
|
3172
|
+
ModifyAdditionalStorageVolume.struct_class = Types::ModifyAdditionalStorageVolume
|
|
3173
|
+
|
|
3174
|
+
ModifyAdditionalStorageVolumesList.member = Shapes::ShapeRef.new(shape: ModifyAdditionalStorageVolume)
|
|
3175
|
+
|
|
3097
3176
|
ModifyCertificatesMessage.add_member(:certificate_identifier, Shapes::ShapeRef.new(shape: String, location_name: "CertificateIdentifier"))
|
|
3098
3177
|
ModifyCertificatesMessage.add_member(:remove_customer_override, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "RemoveCustomerOverride"))
|
|
3099
3178
|
ModifyCertificatesMessage.struct_class = Types::ModifyCertificatesMessage
|
|
@@ -3245,7 +3324,9 @@ module Aws::RDS
|
|
|
3245
3324
|
ModifyDBInstanceMessage.add_member(:multi_tenant, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiTenant"))
|
|
3246
3325
|
ModifyDBInstanceMessage.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DedicatedLogVolume"))
|
|
3247
3326
|
ModifyDBInstanceMessage.add_member(:engine, Shapes::ShapeRef.new(shape: String, location_name: "Engine"))
|
|
3327
|
+
ModifyDBInstanceMessage.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecifications"))
|
|
3248
3328
|
ModifyDBInstanceMessage.add_member(:master_user_authentication_type, Shapes::ShapeRef.new(shape: MasterUserAuthenticationType, location_name: "MasterUserAuthenticationType"))
|
|
3329
|
+
ModifyDBInstanceMessage.add_member(:additional_storage_volumes, Shapes::ShapeRef.new(shape: ModifyAdditionalStorageVolumesList, location_name: "AdditionalStorageVolumes"))
|
|
3249
3330
|
ModifyDBInstanceMessage.struct_class = Types::ModifyDBInstanceMessage
|
|
3250
3331
|
|
|
3251
3332
|
ModifyDBInstanceResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
|
@@ -3527,6 +3608,8 @@ module Aws::RDS
|
|
|
3527
3608
|
OrderableDBInstanceOption.add_member(:supports_clusters, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsClusters"))
|
|
3528
3609
|
OrderableDBInstanceOption.add_member(:supports_dedicated_log_volume, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsDedicatedLogVolume"))
|
|
3529
3610
|
OrderableDBInstanceOption.add_member(:supports_http_endpoint, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsHttpEndpoint"))
|
|
3611
|
+
OrderableDBInstanceOption.add_member(:supports_additional_storage_volumes, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsAdditionalStorageVolumes"))
|
|
3612
|
+
OrderableDBInstanceOption.add_member(:available_additional_storage_volumes_options, Shapes::ShapeRef.new(shape: AvailableAdditionalStorageVolumesOptionList, location_name: "AvailableAdditionalStorageVolumesOptions"))
|
|
3530
3613
|
OrderableDBInstanceOption.struct_class = Types::OrderableDBInstanceOption
|
|
3531
3614
|
|
|
3532
3615
|
OrderableDBInstanceOptionsList.member = Shapes::ShapeRef.new(shape: OrderableDBInstanceOption, location_name: "OrderableDBInstanceOption")
|
|
@@ -3595,6 +3678,7 @@ module Aws::RDS
|
|
|
3595
3678
|
PendingModifiedValues.add_member(:iam_database_authentication_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "IAMDatabaseAuthenticationEnabled"))
|
|
3596
3679
|
PendingModifiedValues.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DedicatedLogVolume"))
|
|
3597
3680
|
PendingModifiedValues.add_member(:engine, Shapes::ShapeRef.new(shape: String, location_name: "Engine"))
|
|
3681
|
+
PendingModifiedValues.add_member(:additional_storage_volumes, Shapes::ShapeRef.new(shape: AdditionalStorageVolumesList, location_name: "AdditionalStorageVolumes"))
|
|
3598
3682
|
PendingModifiedValues.struct_class = Types::PendingModifiedValues
|
|
3599
3683
|
|
|
3600
3684
|
PerformanceInsightsMetricDimensionGroup.add_member(:dimensions, Shapes::ShapeRef.new(shape: StringList, location_name: "Dimensions"))
|
|
@@ -3629,6 +3713,7 @@ module Aws::RDS
|
|
|
3629
3713
|
PromoteReadReplicaMessage.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBInstanceIdentifier"))
|
|
3630
3714
|
PromoteReadReplicaMessage.add_member(:backup_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "BackupRetentionPeriod"))
|
|
3631
3715
|
PromoteReadReplicaMessage.add_member(:preferred_backup_window, Shapes::ShapeRef.new(shape: String, location_name: "PreferredBackupWindow"))
|
|
3716
|
+
PromoteReadReplicaMessage.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecifications"))
|
|
3632
3717
|
PromoteReadReplicaMessage.struct_class = Types::PromoteReadReplicaMessage
|
|
3633
3718
|
|
|
3634
3719
|
PromoteReadReplicaResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
|
@@ -3855,6 +3940,7 @@ module Aws::RDS
|
|
|
3855
3940
|
RestoreDBClusterFromS3Message.add_member(:manage_master_user_password, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ManageMasterUserPassword"))
|
|
3856
3941
|
RestoreDBClusterFromS3Message.add_member(:master_user_secret_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "MasterUserSecretKmsKeyId"))
|
|
3857
3942
|
RestoreDBClusterFromS3Message.add_member(:engine_lifecycle_support, Shapes::ShapeRef.new(shape: String, location_name: "EngineLifecycleSupport"))
|
|
3943
|
+
RestoreDBClusterFromS3Message.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecifications"))
|
|
3858
3944
|
RestoreDBClusterFromS3Message.struct_class = Types::RestoreDBClusterFromS3Message
|
|
3859
3945
|
|
|
3860
3946
|
RestoreDBClusterFromS3Result.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
|
@@ -3895,6 +3981,7 @@ module Aws::RDS
|
|
|
3895
3981
|
RestoreDBClusterFromSnapshotMessage.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
|
|
3896
3982
|
RestoreDBClusterFromSnapshotMessage.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
|
|
3897
3983
|
RestoreDBClusterFromSnapshotMessage.add_member(:engine_lifecycle_support, Shapes::ShapeRef.new(shape: String, location_name: "EngineLifecycleSupport"))
|
|
3984
|
+
RestoreDBClusterFromSnapshotMessage.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecifications"))
|
|
3898
3985
|
RestoreDBClusterFromSnapshotMessage.struct_class = Types::RestoreDBClusterFromSnapshotMessage
|
|
3899
3986
|
|
|
3900
3987
|
RestoreDBClusterFromSnapshotResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
|
@@ -3935,6 +4022,7 @@ module Aws::RDS
|
|
|
3935
4022
|
RestoreDBClusterToPointInTimeMessage.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
|
|
3936
4023
|
RestoreDBClusterToPointInTimeMessage.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
|
|
3937
4024
|
RestoreDBClusterToPointInTimeMessage.add_member(:engine_lifecycle_support, Shapes::ShapeRef.new(shape: String, location_name: "EngineLifecycleSupport"))
|
|
4025
|
+
RestoreDBClusterToPointInTimeMessage.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecifications"))
|
|
3938
4026
|
RestoreDBClusterToPointInTimeMessage.struct_class = Types::RestoreDBClusterToPointInTimeMessage
|
|
3939
4027
|
|
|
3940
4028
|
RestoreDBClusterToPointInTimeResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
|
@@ -3982,8 +4070,10 @@ module Aws::RDS
|
|
|
3982
4070
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DedicatedLogVolume"))
|
|
3983
4071
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:ca_certificate_identifier, Shapes::ShapeRef.new(shape: String, location_name: "CACertificateIdentifier"))
|
|
3984
4072
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:engine_lifecycle_support, Shapes::ShapeRef.new(shape: String, location_name: "EngineLifecycleSupport"))
|
|
4073
|
+
RestoreDBInstanceFromDBSnapshotMessage.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecifications"))
|
|
3985
4074
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:manage_master_user_password, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ManageMasterUserPassword"))
|
|
3986
4075
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:master_user_secret_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "MasterUserSecretKmsKeyId"))
|
|
4076
|
+
RestoreDBInstanceFromDBSnapshotMessage.add_member(:additional_storage_volumes, Shapes::ShapeRef.new(shape: AdditionalStorageVolumesList, location_name: "AdditionalStorageVolumes"))
|
|
3987
4077
|
RestoreDBInstanceFromDBSnapshotMessage.struct_class = Types::RestoreDBInstanceFromDBSnapshotMessage
|
|
3988
4078
|
|
|
3989
4079
|
RestoreDBInstanceFromDBSnapshotResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
|
@@ -4041,6 +4131,8 @@ module Aws::RDS
|
|
|
4041
4131
|
RestoreDBInstanceFromS3Message.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DedicatedLogVolume"))
|
|
4042
4132
|
RestoreDBInstanceFromS3Message.add_member(:ca_certificate_identifier, Shapes::ShapeRef.new(shape: String, location_name: "CACertificateIdentifier"))
|
|
4043
4133
|
RestoreDBInstanceFromS3Message.add_member(:engine_lifecycle_support, Shapes::ShapeRef.new(shape: String, location_name: "EngineLifecycleSupport"))
|
|
4134
|
+
RestoreDBInstanceFromS3Message.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecifications"))
|
|
4135
|
+
RestoreDBInstanceFromS3Message.add_member(:additional_storage_volumes, Shapes::ShapeRef.new(shape: AdditionalStorageVolumesList, location_name: "AdditionalStorageVolumes"))
|
|
4044
4136
|
RestoreDBInstanceFromS3Message.struct_class = Types::RestoreDBInstanceFromS3Message
|
|
4045
4137
|
|
|
4046
4138
|
RestoreDBInstanceFromS3Result.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
|
@@ -4092,8 +4184,10 @@ module Aws::RDS
|
|
|
4092
4184
|
RestoreDBInstanceToPointInTimeMessage.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DedicatedLogVolume"))
|
|
4093
4185
|
RestoreDBInstanceToPointInTimeMessage.add_member(:ca_certificate_identifier, Shapes::ShapeRef.new(shape: String, location_name: "CACertificateIdentifier"))
|
|
4094
4186
|
RestoreDBInstanceToPointInTimeMessage.add_member(:engine_lifecycle_support, Shapes::ShapeRef.new(shape: String, location_name: "EngineLifecycleSupport"))
|
|
4187
|
+
RestoreDBInstanceToPointInTimeMessage.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecifications"))
|
|
4095
4188
|
RestoreDBInstanceToPointInTimeMessage.add_member(:manage_master_user_password, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ManageMasterUserPassword"))
|
|
4096
4189
|
RestoreDBInstanceToPointInTimeMessage.add_member(:master_user_secret_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "MasterUserSecretKmsKeyId"))
|
|
4190
|
+
RestoreDBInstanceToPointInTimeMessage.add_member(:additional_storage_volumes, Shapes::ShapeRef.new(shape: AdditionalStorageVolumesList, location_name: "AdditionalStorageVolumes"))
|
|
4097
4191
|
RestoreDBInstanceToPointInTimeMessage.struct_class = Types::RestoreDBInstanceToPointInTimeMessage
|
|
4098
4192
|
|
|
4099
4193
|
RestoreDBInstanceToPointInTimeResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
|
@@ -4201,6 +4295,7 @@ module Aws::RDS
|
|
|
4201
4295
|
StartDBInstanceAutomatedBackupsReplicationMessage.add_member(:backup_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "BackupRetentionPeriod"))
|
|
4202
4296
|
StartDBInstanceAutomatedBackupsReplicationMessage.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
|
4203
4297
|
StartDBInstanceAutomatedBackupsReplicationMessage.add_member(:pre_signed_url, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "PreSignedUrl"))
|
|
4298
|
+
StartDBInstanceAutomatedBackupsReplicationMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
|
4204
4299
|
StartDBInstanceAutomatedBackupsReplicationMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
|
4205
4300
|
StartDBInstanceAutomatedBackupsReplicationMessage.struct_class = Types::StartDBInstanceAutomatedBackupsReplicationMessage
|
|
4206
4301
|
|
|
@@ -4323,6 +4418,12 @@ module Aws::RDS
|
|
|
4323
4418
|
TagListMessage.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
|
4324
4419
|
TagListMessage.struct_class = Types::TagListMessage
|
|
4325
4420
|
|
|
4421
|
+
TagSpecification.add_member(:resource_type, Shapes::ShapeRef.new(shape: String, location_name: "ResourceType"))
|
|
4422
|
+
TagSpecification.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
|
4423
|
+
TagSpecification.struct_class = Types::TagSpecification
|
|
4424
|
+
|
|
4425
|
+
TagSpecificationList.member = Shapes::ShapeRef.new(shape: TagSpecification, location_name: "item")
|
|
4426
|
+
|
|
4326
4427
|
TargetGroupList.member = Shapes::ShapeRef.new(shape: DBProxyTargetGroup)
|
|
4327
4428
|
|
|
4328
4429
|
TargetHealth.add_member(:state, Shapes::ShapeRef.new(shape: TargetState, location_name: "State"))
|
|
@@ -4403,9 +4504,14 @@ module Aws::RDS
|
|
|
4403
4504
|
|
|
4404
4505
|
UserAuthConfigList.member = Shapes::ShapeRef.new(shape: UserAuthConfig)
|
|
4405
4506
|
|
|
4507
|
+
ValidAdditionalStorageOptions.add_member(:supports_additional_storage_volumes, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsAdditionalStorageVolumes"))
|
|
4508
|
+
ValidAdditionalStorageOptions.add_member(:volumes, Shapes::ShapeRef.new(shape: ValidVolumeOptionsList, location_name: "Volumes"))
|
|
4509
|
+
ValidAdditionalStorageOptions.struct_class = Types::ValidAdditionalStorageOptions
|
|
4510
|
+
|
|
4406
4511
|
ValidDBInstanceModificationsMessage.add_member(:storage, Shapes::ShapeRef.new(shape: ValidStorageOptionsList, location_name: "Storage"))
|
|
4407
4512
|
ValidDBInstanceModificationsMessage.add_member(:valid_processor_features, Shapes::ShapeRef.new(shape: AvailableProcessorFeatureList, location_name: "ValidProcessorFeatures"))
|
|
4408
4513
|
ValidDBInstanceModificationsMessage.add_member(:supports_dedicated_log_volume, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsDedicatedLogVolume"))
|
|
4514
|
+
ValidDBInstanceModificationsMessage.add_member(:additional_storage, Shapes::ShapeRef.new(shape: ValidAdditionalStorageOptions, location_name: "AdditionalStorage"))
|
|
4409
4515
|
ValidDBInstanceModificationsMessage.struct_class = Types::ValidDBInstanceModificationsMessage
|
|
4410
4516
|
|
|
4411
4517
|
ValidStorageOptions.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
|
@@ -4421,6 +4527,14 @@ module Aws::RDS
|
|
|
4421
4527
|
|
|
4422
4528
|
ValidUpgradeTargetList.member = Shapes::ShapeRef.new(shape: UpgradeTarget, location_name: "UpgradeTarget")
|
|
4423
4529
|
|
|
4530
|
+
ValidVolumeOptions.add_member(:volume_name, Shapes::ShapeRef.new(shape: String, location_name: "VolumeName"))
|
|
4531
|
+
ValidVolumeOptions.add_member(:storage, Shapes::ShapeRef.new(shape: ValidStorageOptionsList, location_name: "Storage"))
|
|
4532
|
+
ValidVolumeOptions.struct_class = Types::ValidVolumeOptions
|
|
4533
|
+
|
|
4534
|
+
ValidVolumeOptionsList.member = Shapes::ShapeRef.new(shape: ValidVolumeOptions)
|
|
4535
|
+
|
|
4536
|
+
VpcEncryptionControlViolationException.struct_class = Types::VpcEncryptionControlViolationException
|
|
4537
|
+
|
|
4424
4538
|
VpcSecurityGroupIdList.member = Shapes::ShapeRef.new(shape: String, location_name: "VpcSecurityGroupId")
|
|
4425
4539
|
|
|
4426
4540
|
VpcSecurityGroupMembership.add_member(:vpc_security_group_id, Shapes::ShapeRef.new(shape: String, location_name: "VpcSecurityGroupId"))
|
|
@@ -4673,6 +4787,7 @@ module Aws::RDS
|
|
|
4673
4787
|
o.errors << Shapes::ShapeRef.new(shape: DomainNotFoundFault)
|
|
4674
4788
|
o.errors << Shapes::ShapeRef.new(shape: StorageTypeNotSupportedFault)
|
|
4675
4789
|
o.errors << Shapes::ShapeRef.new(shape: OptionGroupNotFoundFault)
|
|
4790
|
+
o.errors << Shapes::ShapeRef.new(shape: VpcEncryptionControlViolationException)
|
|
4676
4791
|
end)
|
|
4677
4792
|
|
|
4678
4793
|
api.add_operation(:create_db_cluster_endpoint, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -4740,6 +4855,7 @@ module Aws::RDS
|
|
|
4740
4855
|
o.errors << Shapes::ShapeRef.new(shape: BackupPolicyNotFoundFault)
|
|
4741
4856
|
o.errors << Shapes::ShapeRef.new(shape: CertificateNotFoundFault)
|
|
4742
4857
|
o.errors << Shapes::ShapeRef.new(shape: TenantDatabaseQuotaExceededFault)
|
|
4858
|
+
o.errors << Shapes::ShapeRef.new(shape: VpcEncryptionControlViolationException)
|
|
4743
4859
|
end)
|
|
4744
4860
|
|
|
4745
4861
|
api.add_operation(:create_db_instance_read_replica, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -4772,6 +4888,7 @@ module Aws::RDS
|
|
|
4772
4888
|
o.errors << Shapes::ShapeRef.new(shape: DomainNotFoundFault)
|
|
4773
4889
|
o.errors << Shapes::ShapeRef.new(shape: TenantDatabaseQuotaExceededFault)
|
|
4774
4890
|
o.errors << Shapes::ShapeRef.new(shape: CertificateNotFoundFault)
|
|
4891
|
+
o.errors << Shapes::ShapeRef.new(shape: VpcEncryptionControlViolationException)
|
|
4775
4892
|
end)
|
|
4776
4893
|
|
|
4777
4894
|
api.add_operation(:create_db_parameter_group, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -5958,6 +6075,7 @@ module Aws::RDS
|
|
|
5958
6075
|
o.errors << Shapes::ShapeRef.new(shape: StorageTypeNotAvailableFault)
|
|
5959
6076
|
o.errors << Shapes::ShapeRef.new(shape: OptionGroupNotFoundFault)
|
|
5960
6077
|
o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
|
|
6078
|
+
o.errors << Shapes::ShapeRef.new(shape: VpcEncryptionControlViolationException)
|
|
5961
6079
|
end)
|
|
5962
6080
|
|
|
5963
6081
|
api.add_operation(:modify_db_cluster_endpoint, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -6021,6 +6139,7 @@ module Aws::RDS
|
|
|
6021
6139
|
o.errors << Shapes::ShapeRef.new(shape: NetworkTypeNotSupported)
|
|
6022
6140
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBClusterStateFault)
|
|
6023
6141
|
o.errors << Shapes::ShapeRef.new(shape: TenantDatabaseQuotaExceededFault)
|
|
6142
|
+
o.errors << Shapes::ShapeRef.new(shape: VpcEncryptionControlViolationException)
|
|
6024
6143
|
end)
|
|
6025
6144
|
|
|
6026
6145
|
api.add_operation(:modify_db_parameter_group, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -6403,6 +6522,7 @@ module Aws::RDS
|
|
|
6403
6522
|
o.errors << Shapes::ShapeRef.new(shape: StorageTypeNotSupportedFault)
|
|
6404
6523
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBInstanceStateFault)
|
|
6405
6524
|
o.errors << Shapes::ShapeRef.new(shape: InsufficientDBInstanceCapacityFault)
|
|
6525
|
+
o.errors << Shapes::ShapeRef.new(shape: VpcEncryptionControlViolationException)
|
|
6406
6526
|
end)
|
|
6407
6527
|
|
|
6408
6528
|
api.add_operation(:restore_db_cluster_to_point_in_time, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -6433,6 +6553,7 @@ module Aws::RDS
|
|
|
6433
6553
|
o.errors << Shapes::ShapeRef.new(shape: StorageTypeNotSupportedFault)
|
|
6434
6554
|
o.errors << Shapes::ShapeRef.new(shape: DBClusterAutomatedBackupNotFoundFault)
|
|
6435
6555
|
o.errors << Shapes::ShapeRef.new(shape: InsufficientDBInstanceCapacityFault)
|
|
6556
|
+
o.errors << Shapes::ShapeRef.new(shape: VpcEncryptionControlViolationException)
|
|
6436
6557
|
end)
|
|
6437
6558
|
|
|
6438
6559
|
api.add_operation(:restore_db_instance_from_db_snapshot, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -6465,6 +6586,7 @@ module Aws::RDS
|
|
|
6465
6586
|
o.errors << Shapes::ShapeRef.new(shape: DBClusterSnapshotNotFoundFault)
|
|
6466
6587
|
o.errors << Shapes::ShapeRef.new(shape: CertificateNotFoundFault)
|
|
6467
6588
|
o.errors << Shapes::ShapeRef.new(shape: TenantDatabaseQuotaExceededFault)
|
|
6589
|
+
o.errors << Shapes::ShapeRef.new(shape: VpcEncryptionControlViolationException)
|
|
6468
6590
|
end)
|
|
6469
6591
|
|
|
6470
6592
|
api.add_operation(:restore_db_instance_from_s3, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -6492,6 +6614,7 @@ module Aws::RDS
|
|
|
6492
6614
|
o.errors << Shapes::ShapeRef.new(shape: NetworkTypeNotSupported)
|
|
6493
6615
|
o.errors << Shapes::ShapeRef.new(shape: BackupPolicyNotFoundFault)
|
|
6494
6616
|
o.errors << Shapes::ShapeRef.new(shape: CertificateNotFoundFault)
|
|
6617
|
+
o.errors << Shapes::ShapeRef.new(shape: VpcEncryptionControlViolationException)
|
|
6495
6618
|
end)
|
|
6496
6619
|
|
|
6497
6620
|
api.add_operation(:restore_db_instance_to_point_in_time, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -6525,6 +6648,7 @@ module Aws::RDS
|
|
|
6525
6648
|
o.errors << Shapes::ShapeRef.new(shape: DBInstanceAutomatedBackupNotFoundFault)
|
|
6526
6649
|
o.errors << Shapes::ShapeRef.new(shape: TenantDatabaseQuotaExceededFault)
|
|
6527
6650
|
o.errors << Shapes::ShapeRef.new(shape: CertificateNotFoundFault)
|
|
6651
|
+
o.errors << Shapes::ShapeRef.new(shape: VpcEncryptionControlViolationException)
|
|
6528
6652
|
end)
|
|
6529
6653
|
|
|
6530
6654
|
api.add_operation(:revoke_db_security_group_ingress, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -6563,6 +6687,7 @@ module Aws::RDS
|
|
|
6563
6687
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBInstanceStateFault)
|
|
6564
6688
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBShardGroupStateFault)
|
|
6565
6689
|
o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
|
|
6690
|
+
o.errors << Shapes::ShapeRef.new(shape: VpcEncryptionControlViolationException)
|
|
6566
6691
|
end)
|
|
6567
6692
|
|
|
6568
6693
|
api.add_operation(:start_db_instance, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -6582,6 +6707,7 @@ module Aws::RDS
|
|
|
6582
6707
|
o.errors << Shapes::ShapeRef.new(shape: DBClusterNotFoundFault)
|
|
6583
6708
|
o.errors << Shapes::ShapeRef.new(shape: AuthorizationNotFoundFault)
|
|
6584
6709
|
o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
|
|
6710
|
+
o.errors << Shapes::ShapeRef.new(shape: VpcEncryptionControlViolationException)
|
|
6585
6711
|
end)
|
|
6586
6712
|
|
|
6587
6713
|
api.add_operation(:start_db_instance_automated_backups_replication, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -190,6 +190,20 @@ module Aws::RDS
|
|
|
190
190
|
data[:preferred_maintenance_window]
|
|
191
191
|
end
|
|
192
192
|
|
|
193
|
+
# This data type represents the order in which the clusters are
|
|
194
|
+
# upgraded.
|
|
195
|
+
#
|
|
196
|
+
# * \[first\] - Typically used for development or testing environments.
|
|
197
|
+
#
|
|
198
|
+
# * \[second\] - Default order for resources not specifically
|
|
199
|
+
# configured.
|
|
200
|
+
#
|
|
201
|
+
# * \[last\] - Usually reserved for production environments.
|
|
202
|
+
# @return [String]
|
|
203
|
+
def upgrade_rollout_order
|
|
204
|
+
data[:upgrade_rollout_order]
|
|
205
|
+
end
|
|
206
|
+
|
|
193
207
|
# The identifier of the source DB cluster if this DB cluster is a read
|
|
194
208
|
# replica.
|
|
195
209
|
# @return [String]
|
|
@@ -986,13 +1000,24 @@ module Aws::RDS
|
|
|
986
1000
|
# performance_insights_kms_key_id: "String",
|
|
987
1001
|
# performance_insights_retention_period: 1,
|
|
988
1002
|
# enable_limitless_database: false,
|
|
989
|
-
# cluster_scalability_type: "standard", # accepts standard, limitless
|
|
1003
|
+
# cluster_scalability_type: "standard", # accepts standard, limitless
|
|
990
1004
|
# db_system_id: "String",
|
|
991
1005
|
# manage_master_user_password: false,
|
|
992
1006
|
# enable_local_write_forwarding: false,
|
|
993
1007
|
# master_user_secret_kms_key_id: "String",
|
|
994
1008
|
# ca_certificate_identifier: "String",
|
|
995
1009
|
# engine_lifecycle_support: "String",
|
|
1010
|
+
# tag_specifications: [
|
|
1011
|
+
# {
|
|
1012
|
+
# resource_type: "String",
|
|
1013
|
+
# tags: [
|
|
1014
|
+
# {
|
|
1015
|
+
# key: "String",
|
|
1016
|
+
# value: "String",
|
|
1017
|
+
# },
|
|
1018
|
+
# ],
|
|
1019
|
+
# },
|
|
1020
|
+
# ],
|
|
996
1021
|
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
|
997
1022
|
# source_region: "String",
|
|
998
1023
|
# })
|
|
@@ -1512,40 +1537,31 @@ module Aws::RDS
|
|
|
1512
1537
|
# @option options [Boolean] :publicly_accessible
|
|
1513
1538
|
# Specifies whether the DB cluster is publicly accessible.
|
|
1514
1539
|
#
|
|
1540
|
+
# Valid for Cluster Type: Multi-AZ DB clusters only
|
|
1541
|
+
#
|
|
1515
1542
|
# When the DB cluster is publicly accessible and you connect from
|
|
1516
|
-
# outside of the DB cluster's virtual private cloud (VPC), its
|
|
1517
|
-
#
|
|
1543
|
+
# outside of the DB cluster's virtual private cloud (VPC), its domain
|
|
1544
|
+
# name system (DNS) endpoint resolves to the public IP address. When you
|
|
1518
1545
|
# connect from within the same VPC as the DB cluster, the endpoint
|
|
1519
1546
|
# resolves to the private IP address. Access to the DB cluster is
|
|
1520
|
-
#
|
|
1521
|
-
# access isn't permitted if the security group assigned to the DB
|
|
1522
|
-
# cluster doesn't permit it.
|
|
1547
|
+
# controlled by its security group settings.
|
|
1523
1548
|
#
|
|
1524
1549
|
# When the DB cluster isn't publicly accessible, it is an internal DB
|
|
1525
1550
|
# cluster with a DNS name that resolves to a private IP address.
|
|
1526
1551
|
#
|
|
1527
|
-
#
|
|
1528
|
-
#
|
|
1529
|
-
# Default: The default behavior varies depending on whether
|
|
1530
|
-
# `DBSubnetGroupName` is specified.
|
|
1552
|
+
# The default behavior when `PubliclyAccessible` is not specified
|
|
1553
|
+
# depends on whether a `DBSubnetGroup` is specified.
|
|
1531
1554
|
#
|
|
1532
|
-
# If `
|
|
1533
|
-
#
|
|
1555
|
+
# If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults to
|
|
1556
|
+
# `true`.
|
|
1534
1557
|
#
|
|
1535
|
-
#
|
|
1536
|
-
#
|
|
1537
|
-
#
|
|
1538
|
-
# * If the default VPC in the target Region has an internet gateway
|
|
1539
|
-
# attached to it, the DB cluster is public.
|
|
1558
|
+
# If `DBSubnetGroup` is specified, `PubliclyAccessible` defaults to
|
|
1559
|
+
# `false` unless the value of `DBSubnetGroup` is `default`, in which
|
|
1560
|
+
# case `PubliclyAccessible` defaults to `true`.
|
|
1540
1561
|
#
|
|
1541
|
-
# If `
|
|
1542
|
-
#
|
|
1543
|
-
#
|
|
1544
|
-
# * If the subnets are part of a VPC that doesn’t have an internet
|
|
1545
|
-
# gateway attached to it, the DB cluster is private.
|
|
1546
|
-
#
|
|
1547
|
-
# * If the subnets are part of a VPC that has an internet gateway
|
|
1548
|
-
# attached to it, the DB cluster is public.
|
|
1562
|
+
# If `PubliclyAccessible` is true and the VPC that the `DBSubnetGroup`
|
|
1563
|
+
# is in doesn't have an internet gateway attached to it, Amazon RDS
|
|
1564
|
+
# returns an error.
|
|
1549
1565
|
# @option options [Boolean] :auto_minor_version_upgrade
|
|
1550
1566
|
# Specifies whether minor engine upgrades are applied automatically to
|
|
1551
1567
|
# the DB cluster during the maintenance window. By default, minor engine
|
|
@@ -1854,6 +1870,14 @@ module Aws::RDS
|
|
|
1854
1870
|
#
|
|
1855
1871
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
|
1856
1872
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
1873
|
+
# @option options [Array<Types::TagSpecification>] :tag_specifications
|
|
1874
|
+
# Tags to assign to resources associated with the DB cluster.
|
|
1875
|
+
#
|
|
1876
|
+
# Valid Values:
|
|
1877
|
+
#
|
|
1878
|
+
# * `cluster-auto-backup` - The DB cluster's automated backup.
|
|
1879
|
+
#
|
|
1880
|
+
# ^
|
|
1857
1881
|
# @option options [String] :master_user_authentication_type
|
|
1858
1882
|
# Specifies the authentication type for the master user. With IAM master
|
|
1859
1883
|
# user authentication, you can configure the master DB user with IAM
|
|
@@ -2826,6 +2850,17 @@ module Aws::RDS
|
|
|
2826
2850
|
# performance_insights_kms_key_id: "String",
|
|
2827
2851
|
# performance_insights_retention_period: 1,
|
|
2828
2852
|
# engine_lifecycle_support: "String",
|
|
2853
|
+
# tag_specifications: [
|
|
2854
|
+
# {
|
|
2855
|
+
# resource_type: "String",
|
|
2856
|
+
# tags: [
|
|
2857
|
+
# {
|
|
2858
|
+
# key: "String",
|
|
2859
|
+
# value: "String",
|
|
2860
|
+
# },
|
|
2861
|
+
# ],
|
|
2862
|
+
# },
|
|
2863
|
+
# ],
|
|
2829
2864
|
# })
|
|
2830
2865
|
# @param [Hash] options ({})
|
|
2831
2866
|
# @option options [required, String] :db_cluster_identifier
|
|
@@ -3278,6 +3313,14 @@ module Aws::RDS
|
|
|
3278
3313
|
#
|
|
3279
3314
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
|
3280
3315
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
3316
|
+
# @option options [Array<Types::TagSpecification>] :tag_specifications
|
|
3317
|
+
# Tags to assign to resources associated with the DB cluster.
|
|
3318
|
+
#
|
|
3319
|
+
# Valid Values:
|
|
3320
|
+
#
|
|
3321
|
+
# * `cluster-auto-backup` - The DB cluster's automated backup.
|
|
3322
|
+
#
|
|
3323
|
+
# ^
|
|
3281
3324
|
# @return [DBCluster]
|
|
3282
3325
|
def restore(options = {})
|
|
3283
3326
|
options = options.merge(source_db_cluster_identifier: @id)
|