aws-sdk-rds 1.197.0 → 1.199.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +290 -1
- data/lib/aws-sdk-rds/client_api.rb +125 -0
- data/lib/aws-sdk-rds/db_engine_version.rb +7 -0
- data/lib/aws-sdk-rds/db_instance.rb +19 -0
- data/lib/aws-sdk-rds/endpoint_provider.rb +2 -2
- data/lib/aws-sdk-rds/endpoints.rb +42 -0
- data/lib/aws-sdk-rds/errors.rb +55 -0
- data/lib/aws-sdk-rds/plugins/endpoints.rb +6 -0
- data/lib/aws-sdk-rds/types.rb +313 -4
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
@@ -28,6 +28,7 @@ module Aws::RDS
|
|
28
28
|
ApplyMethod = Shapes::StringShape.new(name: 'ApplyMethod')
|
29
29
|
ApplyPendingMaintenanceActionMessage = Shapes::StructureShape.new(name: 'ApplyPendingMaintenanceActionMessage')
|
30
30
|
ApplyPendingMaintenanceActionResult = Shapes::StructureShape.new(name: 'ApplyPendingMaintenanceActionResult')
|
31
|
+
Arn = Shapes::StringShape.new(name: 'Arn')
|
31
32
|
AttributeValueList = Shapes::ListShape.new(name: 'AttributeValueList')
|
32
33
|
AuditPolicyState = Shapes::StringShape.new(name: 'AuditPolicyState')
|
33
34
|
AuthScheme = Shapes::StringShape.new(name: 'AuthScheme')
|
@@ -114,6 +115,7 @@ module Aws::RDS
|
|
114
115
|
CreateEventSubscriptionResult = Shapes::StructureShape.new(name: 'CreateEventSubscriptionResult')
|
115
116
|
CreateGlobalClusterMessage = Shapes::StructureShape.new(name: 'CreateGlobalClusterMessage')
|
116
117
|
CreateGlobalClusterResult = Shapes::StructureShape.new(name: 'CreateGlobalClusterResult')
|
118
|
+
CreateIntegrationMessage = Shapes::StructureShape.new(name: 'CreateIntegrationMessage')
|
117
119
|
CreateOptionGroupMessage = Shapes::StructureShape.new(name: 'CreateOptionGroupMessage')
|
118
120
|
CreateOptionGroupResult = Shapes::StructureShape.new(name: 'CreateOptionGroupResult')
|
119
121
|
CustomAvailabilityZoneNotFoundFault = Shapes::StructureShape.new(name: 'CustomAvailabilityZoneNotFoundFault')
|
@@ -281,6 +283,7 @@ module Aws::RDS
|
|
281
283
|
DeleteEventSubscriptionResult = Shapes::StructureShape.new(name: 'DeleteEventSubscriptionResult')
|
282
284
|
DeleteGlobalClusterMessage = Shapes::StructureShape.new(name: 'DeleteGlobalClusterMessage')
|
283
285
|
DeleteGlobalClusterResult = Shapes::StructureShape.new(name: 'DeleteGlobalClusterResult')
|
286
|
+
DeleteIntegrationMessage = Shapes::StructureShape.new(name: 'DeleteIntegrationMessage')
|
284
287
|
DeleteOptionGroupMessage = Shapes::StructureShape.new(name: 'DeleteOptionGroupMessage')
|
285
288
|
DeregisterDBProxyTargetsRequest = Shapes::StructureShape.new(name: 'DeregisterDBProxyTargetsRequest')
|
286
289
|
DeregisterDBProxyTargetsResponse = Shapes::StructureShape.new(name: 'DeregisterDBProxyTargetsResponse')
|
@@ -328,6 +331,8 @@ module Aws::RDS
|
|
328
331
|
DescribeEventsMessage = Shapes::StructureShape.new(name: 'DescribeEventsMessage')
|
329
332
|
DescribeExportTasksMessage = Shapes::StructureShape.new(name: 'DescribeExportTasksMessage')
|
330
333
|
DescribeGlobalClustersMessage = Shapes::StructureShape.new(name: 'DescribeGlobalClustersMessage')
|
334
|
+
DescribeIntegrationsMessage = Shapes::StructureShape.new(name: 'DescribeIntegrationsMessage')
|
335
|
+
DescribeIntegrationsResponse = Shapes::StructureShape.new(name: 'DescribeIntegrationsResponse')
|
331
336
|
DescribeOptionGroupOptionsMessage = Shapes::StructureShape.new(name: 'DescribeOptionGroupOptionsMessage')
|
332
337
|
DescribeOptionGroupsMessage = Shapes::StructureShape.new(name: 'DescribeOptionGroupsMessage')
|
333
338
|
DescribeOrderableDBInstanceOptionsMessage = Shapes::StructureShape.new(name: 'DescribeOrderableDBInstanceOptionsMessage')
|
@@ -350,6 +355,7 @@ module Aws::RDS
|
|
350
355
|
EC2SecurityGroup = Shapes::StructureShape.new(name: 'EC2SecurityGroup')
|
351
356
|
EC2SecurityGroupList = Shapes::ListShape.new(name: 'EC2SecurityGroupList')
|
352
357
|
Ec2ImagePropertiesNotSupportedFault = Shapes::StructureShape.new(name: 'Ec2ImagePropertiesNotSupportedFault')
|
358
|
+
EncryptionContextMap = Shapes::MapShape.new(name: 'EncryptionContextMap')
|
353
359
|
Endpoint = Shapes::StructureShape.new(name: 'Endpoint')
|
354
360
|
EngineDefaults = Shapes::StructureShape.new(name: 'EngineDefaults')
|
355
361
|
EngineFamily = Shapes::StringShape.new(name: 'EngineFamily')
|
@@ -403,6 +409,18 @@ module Aws::RDS
|
|
403
409
|
InsufficientStorageClusterCapacityFault = Shapes::StructureShape.new(name: 'InsufficientStorageClusterCapacityFault')
|
404
410
|
Integer = Shapes::IntegerShape.new(name: 'Integer')
|
405
411
|
IntegerOptional = Shapes::IntegerShape.new(name: 'IntegerOptional')
|
412
|
+
Integration = Shapes::StructureShape.new(name: 'Integration')
|
413
|
+
IntegrationAlreadyExistsFault = Shapes::StructureShape.new(name: 'IntegrationAlreadyExistsFault')
|
414
|
+
IntegrationArn = Shapes::StringShape.new(name: 'IntegrationArn')
|
415
|
+
IntegrationConflictOperationFault = Shapes::StructureShape.new(name: 'IntegrationConflictOperationFault')
|
416
|
+
IntegrationError = Shapes::StructureShape.new(name: 'IntegrationError')
|
417
|
+
IntegrationErrorList = Shapes::ListShape.new(name: 'IntegrationErrorList')
|
418
|
+
IntegrationIdentifier = Shapes::StringShape.new(name: 'IntegrationIdentifier')
|
419
|
+
IntegrationList = Shapes::ListShape.new(name: 'IntegrationList')
|
420
|
+
IntegrationName = Shapes::StringShape.new(name: 'IntegrationName')
|
421
|
+
IntegrationNotFoundFault = Shapes::StructureShape.new(name: 'IntegrationNotFoundFault')
|
422
|
+
IntegrationQuotaExceededFault = Shapes::StructureShape.new(name: 'IntegrationQuotaExceededFault')
|
423
|
+
IntegrationStatus = Shapes::StringShape.new(name: 'IntegrationStatus')
|
406
424
|
InvalidBlueGreenDeploymentStateFault = Shapes::StructureShape.new(name: 'InvalidBlueGreenDeploymentStateFault')
|
407
425
|
InvalidCustomDBEngineVersionStateFault = Shapes::StructureShape.new(name: 'InvalidCustomDBEngineVersionStateFault')
|
408
426
|
InvalidDBClusterAutomatedBackupStateFault = Shapes::StructureShape.new(name: 'InvalidDBClusterAutomatedBackupStateFault')
|
@@ -425,6 +443,7 @@ module Aws::RDS
|
|
425
443
|
InvalidExportSourceStateFault = Shapes::StructureShape.new(name: 'InvalidExportSourceStateFault')
|
426
444
|
InvalidExportTaskStateFault = Shapes::StructureShape.new(name: 'InvalidExportTaskStateFault')
|
427
445
|
InvalidGlobalClusterStateFault = Shapes::StructureShape.new(name: 'InvalidGlobalClusterStateFault')
|
446
|
+
InvalidIntegrationStateFault = Shapes::StructureShape.new(name: 'InvalidIntegrationStateFault')
|
428
447
|
InvalidOptionGroupStateFault = Shapes::StructureShape.new(name: 'InvalidOptionGroupStateFault')
|
429
448
|
InvalidRestoreFault = Shapes::StructureShape.new(name: 'InvalidRestoreFault')
|
430
449
|
InvalidS3BucketFault = Shapes::StructureShape.new(name: 'InvalidS3BucketFault')
|
@@ -438,6 +457,7 @@ module Aws::RDS
|
|
438
457
|
LogTypeList = Shapes::ListShape.new(name: 'LogTypeList')
|
439
458
|
Long = Shapes::IntegerShape.new(name: 'Long')
|
440
459
|
LongOptional = Shapes::IntegerShape.new(name: 'LongOptional')
|
460
|
+
Marker = Shapes::StringShape.new(name: 'Marker')
|
441
461
|
MasterUserSecret = Shapes::StructureShape.new(name: 'MasterUserSecret')
|
442
462
|
MaxRecords = Shapes::IntegerShape.new(name: 'MaxRecords')
|
443
463
|
MinimumEngineVersionPerAllowedValue = Shapes::StructureShape.new(name: 'MinimumEngineVersionPerAllowedValue')
|
@@ -583,6 +603,7 @@ module Aws::RDS
|
|
583
603
|
ServerlessV2ScalingConfigurationInfo = Shapes::StructureShape.new(name: 'ServerlessV2ScalingConfigurationInfo')
|
584
604
|
SharedSnapshotQuotaExceededFault = Shapes::StructureShape.new(name: 'SharedSnapshotQuotaExceededFault')
|
585
605
|
SnapshotQuotaExceededFault = Shapes::StructureShape.new(name: 'SnapshotQuotaExceededFault')
|
606
|
+
SourceArn = Shapes::StringShape.new(name: 'SourceArn')
|
586
607
|
SourceClusterNotSupportedFault = Shapes::StructureShape.new(name: 'SourceClusterNotSupportedFault')
|
587
608
|
SourceDatabaseNotSupportedFault = Shapes::StructureShape.new(name: 'SourceDatabaseNotSupportedFault')
|
588
609
|
SourceIdsList = Shapes::ListShape.new(name: 'SourceIdsList')
|
@@ -638,6 +659,7 @@ module Aws::RDS
|
|
638
659
|
TagList = Shapes::ListShape.new(name: 'TagList')
|
639
660
|
TagListMessage = Shapes::StructureShape.new(name: 'TagListMessage')
|
640
661
|
TargetDBClusterParameterGroupName = Shapes::StringShape.new(name: 'TargetDBClusterParameterGroupName')
|
662
|
+
TargetDBInstanceClass = Shapes::StringShape.new(name: 'TargetDBInstanceClass')
|
641
663
|
TargetDBParameterGroupName = Shapes::StringShape.new(name: 'TargetDBParameterGroupName')
|
642
664
|
TargetEngineVersion = Shapes::StringShape.new(name: 'TargetEngineVersion')
|
643
665
|
TargetGroupList = Shapes::ListShape.new(name: 'TargetGroupList')
|
@@ -889,6 +911,8 @@ module Aws::RDS
|
|
889
911
|
CreateBlueGreenDeploymentRequest.add_member(:target_db_parameter_group_name, Shapes::ShapeRef.new(shape: TargetDBParameterGroupName, location_name: "TargetDBParameterGroupName"))
|
890
912
|
CreateBlueGreenDeploymentRequest.add_member(:target_db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: TargetDBClusterParameterGroupName, location_name: "TargetDBClusterParameterGroupName"))
|
891
913
|
CreateBlueGreenDeploymentRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
914
|
+
CreateBlueGreenDeploymentRequest.add_member(:target_db_instance_class, Shapes::ShapeRef.new(shape: TargetDBInstanceClass, location_name: "TargetDBInstanceClass"))
|
915
|
+
CreateBlueGreenDeploymentRequest.add_member(:upgrade_target_storage_config, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "UpgradeTargetStorageConfig"))
|
892
916
|
CreateBlueGreenDeploymentRequest.struct_class = Types::CreateBlueGreenDeploymentRequest
|
893
917
|
|
894
918
|
CreateBlueGreenDeploymentResponse.add_member(:blue_green_deployment, Shapes::ShapeRef.new(shape: BlueGreenDeployment, location_name: "BlueGreenDeployment"))
|
@@ -1096,6 +1120,7 @@ module Aws::RDS
|
|
1096
1120
|
CreateDBInstanceReadReplicaMessage.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "AllocatedStorage"))
|
1097
1121
|
CreateDBInstanceReadReplicaMessage.add_member(:source_db_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SourceDBClusterIdentifier"))
|
1098
1122
|
CreateDBInstanceReadReplicaMessage.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DedicatedLogVolume"))
|
1123
|
+
CreateDBInstanceReadReplicaMessage.add_member(:upgrade_storage_config, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "UpgradeStorageConfig"))
|
1099
1124
|
CreateDBInstanceReadReplicaMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
1100
1125
|
CreateDBInstanceReadReplicaMessage.struct_class = Types::CreateDBInstanceReadReplicaMessage
|
1101
1126
|
|
@@ -1189,6 +1214,14 @@ module Aws::RDS
|
|
1189
1214
|
CreateGlobalClusterResult.add_member(:global_cluster, Shapes::ShapeRef.new(shape: GlobalCluster, location_name: "GlobalCluster"))
|
1190
1215
|
CreateGlobalClusterResult.struct_class = Types::CreateGlobalClusterResult
|
1191
1216
|
|
1217
|
+
CreateIntegrationMessage.add_member(:source_arn, Shapes::ShapeRef.new(shape: SourceArn, required: true, location_name: "SourceArn"))
|
1218
|
+
CreateIntegrationMessage.add_member(:target_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "TargetArn"))
|
1219
|
+
CreateIntegrationMessage.add_member(:integration_name, Shapes::ShapeRef.new(shape: IntegrationName, required: true, location_name: "IntegrationName"))
|
1220
|
+
CreateIntegrationMessage.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KMSKeyId"))
|
1221
|
+
CreateIntegrationMessage.add_member(:additional_encryption_context, Shapes::ShapeRef.new(shape: EncryptionContextMap, location_name: "AdditionalEncryptionContext"))
|
1222
|
+
CreateIntegrationMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
1223
|
+
CreateIntegrationMessage.struct_class = Types::CreateIntegrationMessage
|
1224
|
+
|
1192
1225
|
CreateOptionGroupMessage.add_member(:option_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "OptionGroupName"))
|
1193
1226
|
CreateOptionGroupMessage.add_member(:engine_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "EngineName"))
|
1194
1227
|
CreateOptionGroupMessage.add_member(:major_engine_version, Shapes::ShapeRef.new(shape: String, required: true, location_name: "MajorEngineVersion"))
|
@@ -1509,6 +1542,7 @@ module Aws::RDS
|
|
1509
1542
|
DBEngineVersion.add_member(:supports_certificate_rotation_without_restart, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsCertificateRotationWithoutRestart"))
|
1510
1543
|
DBEngineVersion.add_member(:supported_ca_certificate_identifiers, Shapes::ShapeRef.new(shape: CACertificateIdentifiersList, location_name: "SupportedCACertificateIdentifiers"))
|
1511
1544
|
DBEngineVersion.add_member(:supports_local_write_forwarding, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsLocalWriteForwarding"))
|
1545
|
+
DBEngineVersion.add_member(:supports_integrations, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsIntegrations"))
|
1512
1546
|
DBEngineVersion.struct_class = Types::DBEngineVersion
|
1513
1547
|
|
1514
1548
|
DBEngineVersionList.member = Shapes::ShapeRef.new(shape: DBEngineVersion, location_name: "DBEngineVersion")
|
@@ -1600,6 +1634,7 @@ module Aws::RDS
|
|
1600
1634
|
DBInstance.add_member(:read_replica_source_db_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ReadReplicaSourceDBClusterIdentifier"))
|
1601
1635
|
DBInstance.add_member(:percent_progress, Shapes::ShapeRef.new(shape: String, location_name: "PercentProgress"))
|
1602
1636
|
DBInstance.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: Boolean, location_name: "DedicatedLogVolume"))
|
1637
|
+
DBInstance.add_member(:is_storage_config_upgrade_available, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "IsStorageConfigUpgradeAvailable"))
|
1603
1638
|
DBInstance.struct_class = Types::DBInstance
|
1604
1639
|
|
1605
1640
|
DBInstanceAlreadyExistsFault.struct_class = Types::DBInstanceAlreadyExistsFault
|
@@ -1995,6 +2030,9 @@ module Aws::RDS
|
|
1995
2030
|
DeleteGlobalClusterResult.add_member(:global_cluster, Shapes::ShapeRef.new(shape: GlobalCluster, location_name: "GlobalCluster"))
|
1996
2031
|
DeleteGlobalClusterResult.struct_class = Types::DeleteGlobalClusterResult
|
1997
2032
|
|
2033
|
+
DeleteIntegrationMessage.add_member(:integration_identifier, Shapes::ShapeRef.new(shape: IntegrationIdentifier, required: true, location_name: "IntegrationIdentifier"))
|
2034
|
+
DeleteIntegrationMessage.struct_class = Types::DeleteIntegrationMessage
|
2035
|
+
|
1998
2036
|
DeleteOptionGroupMessage.add_member(:option_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "OptionGroupName"))
|
1999
2037
|
DeleteOptionGroupMessage.struct_class = Types::DeleteOptionGroupMessage
|
2000
2038
|
|
@@ -2266,6 +2304,16 @@ module Aws::RDS
|
|
2266
2304
|
DescribeGlobalClustersMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
2267
2305
|
DescribeGlobalClustersMessage.struct_class = Types::DescribeGlobalClustersMessage
|
2268
2306
|
|
2307
|
+
DescribeIntegrationsMessage.add_member(:integration_identifier, Shapes::ShapeRef.new(shape: IntegrationIdentifier, location_name: "IntegrationIdentifier"))
|
2308
|
+
DescribeIntegrationsMessage.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
|
2309
|
+
DescribeIntegrationsMessage.add_member(:max_records, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxRecords"))
|
2310
|
+
DescribeIntegrationsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: Marker, location_name: "Marker"))
|
2311
|
+
DescribeIntegrationsMessage.struct_class = Types::DescribeIntegrationsMessage
|
2312
|
+
|
2313
|
+
DescribeIntegrationsResponse.add_member(:marker, Shapes::ShapeRef.new(shape: Marker, location_name: "Marker"))
|
2314
|
+
DescribeIntegrationsResponse.add_member(:integrations, Shapes::ShapeRef.new(shape: IntegrationList, location_name: "Integrations"))
|
2315
|
+
DescribeIntegrationsResponse.struct_class = Types::DescribeIntegrationsResponse
|
2316
|
+
|
2269
2317
|
DescribeOptionGroupOptionsMessage.add_member(:engine_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "EngineName"))
|
2270
2318
|
DescribeOptionGroupOptionsMessage.add_member(:major_engine_version, Shapes::ShapeRef.new(shape: String, location_name: "MajorEngineVersion"))
|
2271
2319
|
DescribeOptionGroupOptionsMessage.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
|
@@ -2374,6 +2422,9 @@ module Aws::RDS
|
|
2374
2422
|
|
2375
2423
|
Ec2ImagePropertiesNotSupportedFault.struct_class = Types::Ec2ImagePropertiesNotSupportedFault
|
2376
2424
|
|
2425
|
+
EncryptionContextMap.key = Shapes::ShapeRef.new(shape: String)
|
2426
|
+
EncryptionContextMap.value = Shapes::ShapeRef.new(shape: String)
|
2427
|
+
|
2377
2428
|
Endpoint.add_member(:address, Shapes::ShapeRef.new(shape: String, location_name: "Address"))
|
2378
2429
|
Endpoint.add_member(:port, Shapes::ShapeRef.new(shape: Integer, location_name: "Port"))
|
2379
2430
|
Endpoint.add_member(:hosted_zone_id, Shapes::ShapeRef.new(shape: String, location_name: "HostedZoneId"))
|
@@ -2545,6 +2596,34 @@ module Aws::RDS
|
|
2545
2596
|
|
2546
2597
|
InsufficientStorageClusterCapacityFault.struct_class = Types::InsufficientStorageClusterCapacityFault
|
2547
2598
|
|
2599
|
+
Integration.add_member(:source_arn, Shapes::ShapeRef.new(shape: SourceArn, location_name: "SourceArn"))
|
2600
|
+
Integration.add_member(:target_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "TargetArn"))
|
2601
|
+
Integration.add_member(:integration_name, Shapes::ShapeRef.new(shape: IntegrationName, location_name: "IntegrationName"))
|
2602
|
+
Integration.add_member(:integration_arn, Shapes::ShapeRef.new(shape: IntegrationArn, location_name: "IntegrationArn"))
|
2603
|
+
Integration.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KMSKeyId"))
|
2604
|
+
Integration.add_member(:additional_encryption_context, Shapes::ShapeRef.new(shape: EncryptionContextMap, location_name: "AdditionalEncryptionContext"))
|
2605
|
+
Integration.add_member(:status, Shapes::ShapeRef.new(shape: IntegrationStatus, location_name: "Status"))
|
2606
|
+
Integration.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
2607
|
+
Integration.add_member(:create_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "CreateTime"))
|
2608
|
+
Integration.add_member(:errors, Shapes::ShapeRef.new(shape: IntegrationErrorList, location_name: "Errors"))
|
2609
|
+
Integration.struct_class = Types::Integration
|
2610
|
+
|
2611
|
+
IntegrationAlreadyExistsFault.struct_class = Types::IntegrationAlreadyExistsFault
|
2612
|
+
|
2613
|
+
IntegrationConflictOperationFault.struct_class = Types::IntegrationConflictOperationFault
|
2614
|
+
|
2615
|
+
IntegrationError.add_member(:error_code, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ErrorCode"))
|
2616
|
+
IntegrationError.add_member(:error_message, Shapes::ShapeRef.new(shape: String, location_name: "ErrorMessage"))
|
2617
|
+
IntegrationError.struct_class = Types::IntegrationError
|
2618
|
+
|
2619
|
+
IntegrationErrorList.member = Shapes::ShapeRef.new(shape: IntegrationError, location_name: "IntegrationError")
|
2620
|
+
|
2621
|
+
IntegrationList.member = Shapes::ShapeRef.new(shape: Integration, location_name: "Integration")
|
2622
|
+
|
2623
|
+
IntegrationNotFoundFault.struct_class = Types::IntegrationNotFoundFault
|
2624
|
+
|
2625
|
+
IntegrationQuotaExceededFault.struct_class = Types::IntegrationQuotaExceededFault
|
2626
|
+
|
2548
2627
|
InvalidBlueGreenDeploymentStateFault.struct_class = Types::InvalidBlueGreenDeploymentStateFault
|
2549
2628
|
|
2550
2629
|
InvalidCustomDBEngineVersionStateFault.struct_class = Types::InvalidCustomDBEngineVersionStateFault
|
@@ -2589,6 +2668,8 @@ module Aws::RDS
|
|
2589
2668
|
|
2590
2669
|
InvalidGlobalClusterStateFault.struct_class = Types::InvalidGlobalClusterStateFault
|
2591
2670
|
|
2671
|
+
InvalidIntegrationStateFault.struct_class = Types::InvalidIntegrationStateFault
|
2672
|
+
|
2592
2673
|
InvalidOptionGroupStateFault.struct_class = Types::InvalidOptionGroupStateFault
|
2593
2674
|
|
2594
2675
|
InvalidRestoreFault.struct_class = Types::InvalidRestoreFault
|
@@ -3750,6 +3831,7 @@ module Aws::RDS
|
|
3750
3831
|
UpgradeTarget.add_member(:supports_global_databases, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsGlobalDatabases"))
|
3751
3832
|
UpgradeTarget.add_member(:supports_babelfish, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsBabelfish"))
|
3752
3833
|
UpgradeTarget.add_member(:supports_local_write_forwarding, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsLocalWriteForwarding"))
|
3834
|
+
UpgradeTarget.add_member(:supports_integrations, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsIntegrations"))
|
3753
3835
|
UpgradeTarget.struct_class = Types::UpgradeTarget
|
3754
3836
|
|
3755
3837
|
UserAuthConfig.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
|
@@ -3862,6 +3944,7 @@ module Aws::RDS
|
|
3862
3944
|
o.errors << Shapes::ShapeRef.new(shape: DBProxyNotFoundFault)
|
3863
3945
|
o.errors << Shapes::ShapeRef.new(shape: DBProxyTargetGroupNotFoundFault)
|
3864
3946
|
o.errors << Shapes::ShapeRef.new(shape: BlueGreenDeploymentNotFoundFault)
|
3947
|
+
o.errors << Shapes::ShapeRef.new(shape: IntegrationNotFoundFault)
|
3865
3948
|
end)
|
3866
3949
|
|
3867
3950
|
api.add_operation(:apply_pending_maintenance_action, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4219,6 +4302,20 @@ module Aws::RDS
|
|
4219
4302
|
o.errors << Shapes::ShapeRef.new(shape: DBClusterNotFoundFault)
|
4220
4303
|
end)
|
4221
4304
|
|
4305
|
+
api.add_operation(:create_integration, Seahorse::Model::Operation.new.tap do |o|
|
4306
|
+
o.name = "CreateIntegration"
|
4307
|
+
o.http_method = "POST"
|
4308
|
+
o.http_request_uri = "/"
|
4309
|
+
o.input = Shapes::ShapeRef.new(shape: CreateIntegrationMessage)
|
4310
|
+
o.output = Shapes::ShapeRef.new(shape: Integration)
|
4311
|
+
o.errors << Shapes::ShapeRef.new(shape: DBClusterNotFoundFault)
|
4312
|
+
o.errors << Shapes::ShapeRef.new(shape: DBInstanceNotFoundFault)
|
4313
|
+
o.errors << Shapes::ShapeRef.new(shape: IntegrationAlreadyExistsFault)
|
4314
|
+
o.errors << Shapes::ShapeRef.new(shape: IntegrationQuotaExceededFault)
|
4315
|
+
o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
|
4316
|
+
o.errors << Shapes::ShapeRef.new(shape: IntegrationConflictOperationFault)
|
4317
|
+
end)
|
4318
|
+
|
4222
4319
|
api.add_operation(:create_option_group, Seahorse::Model::Operation.new.tap do |o|
|
4223
4320
|
o.name = "CreateOptionGroup"
|
4224
4321
|
o.http_method = "POST"
|
@@ -4409,6 +4506,17 @@ module Aws::RDS
|
|
4409
4506
|
o.errors << Shapes::ShapeRef.new(shape: InvalidGlobalClusterStateFault)
|
4410
4507
|
end)
|
4411
4508
|
|
4509
|
+
api.add_operation(:delete_integration, Seahorse::Model::Operation.new.tap do |o|
|
4510
|
+
o.name = "DeleteIntegration"
|
4511
|
+
o.http_method = "POST"
|
4512
|
+
o.http_request_uri = "/"
|
4513
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteIntegrationMessage)
|
4514
|
+
o.output = Shapes::ShapeRef.new(shape: Integration)
|
4515
|
+
o.errors << Shapes::ShapeRef.new(shape: IntegrationNotFoundFault)
|
4516
|
+
o.errors << Shapes::ShapeRef.new(shape: IntegrationConflictOperationFault)
|
4517
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidIntegrationStateFault)
|
4518
|
+
end)
|
4519
|
+
|
4412
4520
|
api.add_operation(:delete_option_group, Seahorse::Model::Operation.new.tap do |o|
|
4413
4521
|
o.name = "DeleteOptionGroup"
|
4414
4522
|
o.http_method = "POST"
|
@@ -4882,6 +4990,21 @@ module Aws::RDS
|
|
4882
4990
|
)
|
4883
4991
|
end)
|
4884
4992
|
|
4993
|
+
api.add_operation(:describe_integrations, Seahorse::Model::Operation.new.tap do |o|
|
4994
|
+
o.name = "DescribeIntegrations"
|
4995
|
+
o.http_method = "POST"
|
4996
|
+
o.http_request_uri = "/"
|
4997
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeIntegrationsMessage)
|
4998
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeIntegrationsResponse)
|
4999
|
+
o.errors << Shapes::ShapeRef.new(shape: IntegrationNotFoundFault)
|
5000
|
+
o[:pager] = Aws::Pager.new(
|
5001
|
+
limit_key: "max_records",
|
5002
|
+
tokens: {
|
5003
|
+
"marker" => "marker"
|
5004
|
+
}
|
5005
|
+
)
|
5006
|
+
end)
|
5007
|
+
|
4885
5008
|
api.add_operation(:describe_option_group_options, Seahorse::Model::Operation.new.tap do |o|
|
4886
5009
|
o.name = "DescribeOptionGroupOptions"
|
4887
5010
|
o.http_method = "POST"
|
@@ -5046,6 +5169,7 @@ module Aws::RDS
|
|
5046
5169
|
o.errors << Shapes::ShapeRef.new(shape: DBProxyNotFoundFault)
|
5047
5170
|
o.errors << Shapes::ShapeRef.new(shape: DBProxyTargetGroupNotFoundFault)
|
5048
5171
|
o.errors << Shapes::ShapeRef.new(shape: BlueGreenDeploymentNotFoundFault)
|
5172
|
+
o.errors << Shapes::ShapeRef.new(shape: IntegrationNotFoundFault)
|
5049
5173
|
end)
|
5050
5174
|
|
5051
5175
|
api.add_operation(:modify_activity_stream, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5410,6 +5534,7 @@ module Aws::RDS
|
|
5410
5534
|
o.errors << Shapes::ShapeRef.new(shape: DBProxyNotFoundFault)
|
5411
5535
|
o.errors << Shapes::ShapeRef.new(shape: DBProxyTargetGroupNotFoundFault)
|
5412
5536
|
o.errors << Shapes::ShapeRef.new(shape: BlueGreenDeploymentNotFoundFault)
|
5537
|
+
o.errors << Shapes::ShapeRef.new(shape: IntegrationNotFoundFault)
|
5413
5538
|
end)
|
5414
5539
|
|
5415
5540
|
api.add_operation(:reset_db_cluster_parameter_group, Seahorse::Model::Operation.new.tap do |o|
|
@@ -288,6 +288,13 @@ module Aws::RDS
|
|
288
288
|
data[:supports_local_write_forwarding]
|
289
289
|
end
|
290
290
|
|
291
|
+
# Indicates whether the DB engine version supports Aurora zero-ETL
|
292
|
+
# integrations with Amazon Redshift.
|
293
|
+
# @return [Boolean]
|
294
|
+
def supports_integrations
|
295
|
+
data[:supports_integrations]
|
296
|
+
end
|
297
|
+
|
291
298
|
# @!endgroup
|
292
299
|
|
293
300
|
# @return [Client]
|
@@ -764,6 +764,20 @@ module Aws::RDS
|
|
764
764
|
data[:dedicated_log_volume]
|
765
765
|
end
|
766
766
|
|
767
|
+
# Indicates whether an upgrade is recommended for the storage file
|
768
|
+
# system configuration on the DB instance. To migrate to the preferred
|
769
|
+
# configuration, you can either create a blue/green deployment, or
|
770
|
+
# create a read replica from the DB instance. For more information, see
|
771
|
+
# [Upgrading the storage file system for a DB instance][1].
|
772
|
+
#
|
773
|
+
#
|
774
|
+
#
|
775
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.UpgradeFileSystem
|
776
|
+
# @return [Boolean]
|
777
|
+
def is_storage_config_upgrade_available
|
778
|
+
data[:is_storage_config_upgrade_available]
|
779
|
+
end
|
780
|
+
|
767
781
|
# @!endgroup
|
768
782
|
|
769
783
|
# @return [Client]
|
@@ -2145,6 +2159,7 @@ module Aws::RDS
|
|
2145
2159
|
# allocated_storage: 1,
|
2146
2160
|
# source_db_cluster_identifier: "String",
|
2147
2161
|
# dedicated_log_volume: false,
|
2162
|
+
# upgrade_storage_config: false,
|
2148
2163
|
# source_region: "String",
|
2149
2164
|
# })
|
2150
2165
|
# @param [Hash] options ({})
|
@@ -2699,6 +2714,10 @@ module Aws::RDS
|
|
2699
2714
|
# @option options [Boolean] :dedicated_log_volume
|
2700
2715
|
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
2701
2716
|
# enabled.
|
2717
|
+
# @option options [Boolean] :upgrade_storage_config
|
2718
|
+
# Whether to upgrade the storage file system configuration on the read
|
2719
|
+
# replica. This option migrates the read replica from the old storage
|
2720
|
+
# file system layout to the preferred layout.
|
2702
2721
|
# @option options [String] :source_region
|
2703
2722
|
# The source region of the snapshot. This is only needed when the
|
2704
2723
|
# shapshot is encrypted and in a different region.
|
@@ -32,8 +32,8 @@ module Aws::RDS
|
|
32
32
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
33
|
end
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
35
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
36
|
-
if Aws::Endpoints::Matchers.string_equals?(
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
36
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov")
|
37
37
|
return Aws::Endpoints::Endpoint.new(url: "https://rds.#{region}.amazonaws.com", headers: {}, properties: {})
|
38
38
|
end
|
39
39
|
return Aws::Endpoints::Endpoint.new(url: "https://rds-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
@@ -418,6 +418,20 @@ module Aws::RDS
|
|
418
418
|
end
|
419
419
|
end
|
420
420
|
|
421
|
+
class CreateIntegration
|
422
|
+
def self.build(context)
|
423
|
+
unless context.config.regional_endpoint
|
424
|
+
endpoint = context.config.endpoint.to_s
|
425
|
+
end
|
426
|
+
Aws::RDS::EndpointParameters.new(
|
427
|
+
region: context.config.region,
|
428
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
429
|
+
use_fips: context.config.use_fips_endpoint,
|
430
|
+
endpoint: endpoint,
|
431
|
+
)
|
432
|
+
end
|
433
|
+
end
|
434
|
+
|
421
435
|
class CreateOptionGroup
|
422
436
|
def self.build(context)
|
423
437
|
unless context.config.regional_endpoint
|
@@ -670,6 +684,20 @@ module Aws::RDS
|
|
670
684
|
end
|
671
685
|
end
|
672
686
|
|
687
|
+
class DeleteIntegration
|
688
|
+
def self.build(context)
|
689
|
+
unless context.config.regional_endpoint
|
690
|
+
endpoint = context.config.endpoint.to_s
|
691
|
+
end
|
692
|
+
Aws::RDS::EndpointParameters.new(
|
693
|
+
region: context.config.region,
|
694
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
695
|
+
use_fips: context.config.use_fips_endpoint,
|
696
|
+
endpoint: endpoint,
|
697
|
+
)
|
698
|
+
end
|
699
|
+
end
|
700
|
+
|
673
701
|
class DeleteOptionGroup
|
674
702
|
def self.build(context)
|
675
703
|
unless context.config.regional_endpoint
|
@@ -1146,6 +1174,20 @@ module Aws::RDS
|
|
1146
1174
|
end
|
1147
1175
|
end
|
1148
1176
|
|
1177
|
+
class DescribeIntegrations
|
1178
|
+
def self.build(context)
|
1179
|
+
unless context.config.regional_endpoint
|
1180
|
+
endpoint = context.config.endpoint.to_s
|
1181
|
+
end
|
1182
|
+
Aws::RDS::EndpointParameters.new(
|
1183
|
+
region: context.config.region,
|
1184
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1185
|
+
use_fips: context.config.use_fips_endpoint,
|
1186
|
+
endpoint: endpoint,
|
1187
|
+
)
|
1188
|
+
end
|
1189
|
+
end
|
1190
|
+
|
1149
1191
|
class DescribeOptionGroupOptions
|
1150
1192
|
def self.build(context)
|
1151
1193
|
unless context.config.regional_endpoint
|
data/lib/aws-sdk-rds/errors.rb
CHANGED
@@ -102,6 +102,10 @@ module Aws::RDS
|
|
102
102
|
# * {InsufficientDBClusterCapacityFault}
|
103
103
|
# * {InsufficientDBInstanceCapacityFault}
|
104
104
|
# * {InsufficientStorageClusterCapacityFault}
|
105
|
+
# * {IntegrationAlreadyExistsFault}
|
106
|
+
# * {IntegrationConflictOperationFault}
|
107
|
+
# * {IntegrationNotFoundFault}
|
108
|
+
# * {IntegrationQuotaExceededFault}
|
105
109
|
# * {InvalidBlueGreenDeploymentStateFault}
|
106
110
|
# * {InvalidCustomDBEngineVersionStateFault}
|
107
111
|
# * {InvalidDBClusterAutomatedBackupStateFault}
|
@@ -124,6 +128,7 @@ module Aws::RDS
|
|
124
128
|
# * {InvalidExportSourceStateFault}
|
125
129
|
# * {InvalidExportTaskStateFault}
|
126
130
|
# * {InvalidGlobalClusterStateFault}
|
131
|
+
# * {InvalidIntegrationStateFault}
|
127
132
|
# * {InvalidOptionGroupStateFault}
|
128
133
|
# * {InvalidRestoreFault}
|
129
134
|
# * {InvalidS3BucketFault}
|
@@ -913,6 +918,46 @@ module Aws::RDS
|
|
913
918
|
end
|
914
919
|
end
|
915
920
|
|
921
|
+
class IntegrationAlreadyExistsFault < ServiceError
|
922
|
+
|
923
|
+
# @param [Seahorse::Client::RequestContext] context
|
924
|
+
# @param [String] message
|
925
|
+
# @param [Aws::RDS::Types::IntegrationAlreadyExistsFault] data
|
926
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
927
|
+
super(context, message, data)
|
928
|
+
end
|
929
|
+
end
|
930
|
+
|
931
|
+
class IntegrationConflictOperationFault < ServiceError
|
932
|
+
|
933
|
+
# @param [Seahorse::Client::RequestContext] context
|
934
|
+
# @param [String] message
|
935
|
+
# @param [Aws::RDS::Types::IntegrationConflictOperationFault] data
|
936
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
937
|
+
super(context, message, data)
|
938
|
+
end
|
939
|
+
end
|
940
|
+
|
941
|
+
class IntegrationNotFoundFault < ServiceError
|
942
|
+
|
943
|
+
# @param [Seahorse::Client::RequestContext] context
|
944
|
+
# @param [String] message
|
945
|
+
# @param [Aws::RDS::Types::IntegrationNotFoundFault] data
|
946
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
947
|
+
super(context, message, data)
|
948
|
+
end
|
949
|
+
end
|
950
|
+
|
951
|
+
class IntegrationQuotaExceededFault < ServiceError
|
952
|
+
|
953
|
+
# @param [Seahorse::Client::RequestContext] context
|
954
|
+
# @param [String] message
|
955
|
+
# @param [Aws::RDS::Types::IntegrationQuotaExceededFault] data
|
956
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
957
|
+
super(context, message, data)
|
958
|
+
end
|
959
|
+
end
|
960
|
+
|
916
961
|
class InvalidBlueGreenDeploymentStateFault < ServiceError
|
917
962
|
|
918
963
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -1133,6 +1178,16 @@ module Aws::RDS
|
|
1133
1178
|
end
|
1134
1179
|
end
|
1135
1180
|
|
1181
|
+
class InvalidIntegrationStateFault < ServiceError
|
1182
|
+
|
1183
|
+
# @param [Seahorse::Client::RequestContext] context
|
1184
|
+
# @param [String] message
|
1185
|
+
# @param [Aws::RDS::Types::InvalidIntegrationStateFault] data
|
1186
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1187
|
+
super(context, message, data)
|
1188
|
+
end
|
1189
|
+
end
|
1190
|
+
|
1136
1191
|
class InvalidOptionGroupStateFault < ServiceError
|
1137
1192
|
|
1138
1193
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -114,6 +114,8 @@ module Aws::RDS
|
|
114
114
|
Aws::RDS::Endpoints::CreateEventSubscription.build(context)
|
115
115
|
when :create_global_cluster
|
116
116
|
Aws::RDS::Endpoints::CreateGlobalCluster.build(context)
|
117
|
+
when :create_integration
|
118
|
+
Aws::RDS::Endpoints::CreateIntegration.build(context)
|
117
119
|
when :create_option_group
|
118
120
|
Aws::RDS::Endpoints::CreateOptionGroup.build(context)
|
119
121
|
when :delete_blue_green_deployment
|
@@ -150,6 +152,8 @@ module Aws::RDS
|
|
150
152
|
Aws::RDS::Endpoints::DeleteEventSubscription.build(context)
|
151
153
|
when :delete_global_cluster
|
152
154
|
Aws::RDS::Endpoints::DeleteGlobalCluster.build(context)
|
155
|
+
when :delete_integration
|
156
|
+
Aws::RDS::Endpoints::DeleteIntegration.build(context)
|
153
157
|
when :delete_option_group
|
154
158
|
Aws::RDS::Endpoints::DeleteOptionGroup.build(context)
|
155
159
|
when :deregister_db_proxy_targets
|
@@ -218,6 +222,8 @@ module Aws::RDS
|
|
218
222
|
Aws::RDS::Endpoints::DescribeExportTasks.build(context)
|
219
223
|
when :describe_global_clusters
|
220
224
|
Aws::RDS::Endpoints::DescribeGlobalClusters.build(context)
|
225
|
+
when :describe_integrations
|
226
|
+
Aws::RDS::Endpoints::DescribeIntegrations.build(context)
|
221
227
|
when :describe_option_group_options
|
222
228
|
Aws::RDS::Endpoints::DescribeOptionGroupOptions.build(context)
|
223
229
|
when :describe_option_groups
|