aws-sdk-rds 1.289.0 → 1.290.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e81bb640b96ec20da710a433ec59f2ecbf6b50715f74daca56c98668e4be44e3
4
- data.tar.gz: c4d5be44d3e2669a9a8b4a9ff10dc21f8ff32bba062854979d1f4b2a44b08037
3
+ metadata.gz: 499b76c5d64403633dc8e534bad5ad254f61865cae6c7dbd97b1178301a75402
4
+ data.tar.gz: 9a6545a2270a62727b1b791cd45a771f3b12315e4df5048f383d1129030cd6ff
5
5
  SHA512:
6
- metadata.gz: f9a2ba494d1cb60940c2eb174352c03499e788919f398dcdab90820c13db0c53dbeaca96c6a21500c6ea79fdaa83b49a6cd9a7caed3ca14149afc71ea8097a2b
7
- data.tar.gz: 4b336408cc577a9d763c888de71ec6dcb4066a9a2537bae82132645379b7ed74df56319f84d1b3003b77da45a8b2de941e240e0a321105e0c8047cc2681c6de0
6
+ metadata.gz: 2b51f6d50c49156058a92474b18ddb82b52a916ce7af5548976a0935acfccf10c9c77f6d3bf0269a50b1ae0be01e638f7d252653c7c79276a3959f614fb4265b
7
+ data.tar.gz: 9b21443f38689996b65ca5950eb3cb80644c52d684c5ca7673373786c0179683dc73ae48af90ac8c9b8b64e06feb6987b4aab661a97ec9d37fb52daf4f453296
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.290.0 (2025-08-28)
5
+ ------------------
6
+
7
+ * Feature - Added RDS HTTP Endpoint feature support flag to DescribeOrderableDBInstanceOptions API
8
+
4
9
  1.289.0 (2025-08-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.289.0
1
+ 1.290.0
@@ -6275,15 +6275,15 @@ module Aws::RDS
6275
6275
  # The name of the DB parameter group to associate with this read replica
6276
6276
  # DB instance.
6277
6277
  #
6278
- # For the Db2 DB engine, if your source DB instance uses the Bring Your
6279
- # Own License model, then a custom parameter group must be associated
6280
- # with the replica. For a same Amazon Web Services Region replica, if
6281
- # you don't specify a custom parameter group, Amazon RDS associates the
6282
- # custom parameter group associated with the source DB instance. For a
6283
- # cross-Region replica, you must specify a custom parameter group. This
6284
- # custom parameter group must include your IBM Site ID and IBM Customer
6285
- # ID. For more information, see [ IBM IDs for Bring Your Own License for
6286
- # Db2][1].
6278
+ # For the Db2 DB engine, if your source DB instance uses the bring your
6279
+ # own license (BYOL) model, then a custom parameter group must be
6280
+ # associated with the replica. For a same Amazon Web Services Region
6281
+ # replica, if you don't specify a custom parameter group, Amazon RDS
6282
+ # associates the custom parameter group associated with the source DB
6283
+ # instance. For a cross-Region replica, you must specify a custom
6284
+ # parameter group. This custom parameter group must include your IBM
6285
+ # Site ID and IBM Customer ID. For more information, see [IBM IDs for
6286
+ # bring your own license (BYOL) for Db2][1].
6287
6287
  #
6288
6288
  # For Single-AZ or Multi-AZ DB instance read replica instances, if you
6289
6289
  # don't specify a value for `DBParameterGroupName`, then Amazon RDS
@@ -17112,6 +17112,7 @@ module Aws::RDS
17112
17112
  # resp.orderable_db_instance_options[0].min_storage_throughput_per_iops #=> Float
17113
17113
  # resp.orderable_db_instance_options[0].max_storage_throughput_per_iops #=> Float
17114
17114
  # resp.orderable_db_instance_options[0].supports_dedicated_log_volume #=> Boolean
17115
+ # resp.orderable_db_instance_options[0].supports_http_endpoint #=> Boolean
17115
17116
  # resp.marker #=> String
17116
17117
  #
17117
17118
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeOrderableDBInstanceOptions AWS API Documentation
@@ -32450,7 +32451,7 @@ module Aws::RDS
32450
32451
  tracer: tracer
32451
32452
  )
32452
32453
  context[:gem_name] = 'aws-sdk-rds'
32453
- context[:gem_version] = '1.289.0'
32454
+ context[:gem_version] = '1.290.0'
32454
32455
  Seahorse::Client::Request.new(handlers, context)
32455
32456
  end
32456
32457
 
@@ -3505,6 +3505,7 @@ module Aws::RDS
3505
3505
  OrderableDBInstanceOption.add_member(:min_storage_throughput_per_iops, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MinStorageThroughputPerIops"))
3506
3506
  OrderableDBInstanceOption.add_member(:max_storage_throughput_per_iops, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MaxStorageThroughputPerIops"))
3507
3507
  OrderableDBInstanceOption.add_member(:supports_dedicated_log_volume, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsDedicatedLogVolume"))
3508
+ OrderableDBInstanceOption.add_member(:supports_http_endpoint, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsHttpEndpoint"))
3508
3509
  OrderableDBInstanceOption.struct_class = Types::OrderableDBInstanceOption
3509
3510
 
3510
3511
  OrderableDBInstanceOptionsList.member = Shapes::ShapeRef.new(shape: OrderableDBInstanceOption, location_name: "OrderableDBInstanceOption")
@@ -2414,15 +2414,15 @@ module Aws::RDS
2414
2414
  # The name of the DB parameter group to associate with this read replica
2415
2415
  # DB instance.
2416
2416
  #
2417
- # For the Db2 DB engine, if your source DB instance uses the Bring Your
2418
- # Own License model, then a custom parameter group must be associated
2419
- # with the replica. For a same Amazon Web Services Region replica, if
2420
- # you don't specify a custom parameter group, Amazon RDS associates the
2421
- # custom parameter group associated with the source DB instance. For a
2422
- # cross-Region replica, you must specify a custom parameter group. This
2423
- # custom parameter group must include your IBM Site ID and IBM Customer
2424
- # ID. For more information, see [ IBM IDs for Bring Your Own License for
2425
- # Db2][1].
2417
+ # For the Db2 DB engine, if your source DB instance uses the bring your
2418
+ # own license (BYOL) model, then a custom parameter group must be
2419
+ # associated with the replica. For a same Amazon Web Services Region
2420
+ # replica, if you don't specify a custom parameter group, Amazon RDS
2421
+ # associates the custom parameter group associated with the source DB
2422
+ # instance. For a cross-Region replica, you must specify a custom
2423
+ # parameter group. This custom parameter group must include your IBM
2424
+ # Site ID and IBM Customer ID. For more information, see [IBM IDs for
2425
+ # bring your own license (BYOL) for Db2][1].
2426
2426
  #
2427
2427
  # For Single-AZ or Multi-AZ DB instance read replica instances, if you
2428
2428
  # don't specify a value for `DBParameterGroupName`, then Amazon RDS
@@ -5047,15 +5047,15 @@ module Aws::RDS
5047
5047
  # The name of the DB parameter group to associate with this read
5048
5048
  # replica DB instance.
5049
5049
  #
5050
- # For the Db2 DB engine, if your source DB instance uses the Bring
5051
- # Your Own License model, then a custom parameter group must be
5050
+ # For the Db2 DB engine, if your source DB instance uses the bring
5051
+ # your own license (BYOL) model, then a custom parameter group must be
5052
5052
  # associated with the replica. For a same Amazon Web Services Region
5053
5053
  # replica, if you don't specify a custom parameter group, Amazon RDS
5054
5054
  # associates the custom parameter group associated with the source DB
5055
5055
  # instance. For a cross-Region replica, you must specify a custom
5056
5056
  # parameter group. This custom parameter group must include your IBM
5057
- # Site ID and IBM Customer ID. For more information, see [ IBM IDs for
5058
- # Bring Your Own License for Db2][1].
5057
+ # Site ID and IBM Customer ID. For more information, see [IBM IDs for
5058
+ # bring your own license (BYOL) for Db2][1].
5059
5059
  #
5060
5060
  # For Single-AZ or Multi-AZ DB instance read replica instances, if you
5061
5061
  # don't specify a value for `DBParameterGroupName`, then Amazon RDS
@@ -16596,10 +16596,14 @@ module Aws::RDS
16596
16596
  # @return [String]
16597
16597
  #
16598
16598
  # @!attribute [rw] global_cluster_resource_id
16599
- # The Amazon Web Services Region-unique, immutable identifier for the
16600
- # global database cluster. This identifier is found in Amazon Web
16601
- # Services CloudTrail log entries whenever the Amazon Web Services KMS
16602
- # key for the DB cluster is accessed.
16599
+ # The Amazon Web Services [partition][1]-unique, immutable identifier
16600
+ # for the global database cluster. This identifier is found in Amazon
16601
+ # Web Services CloudTrail log entries whenever the Amazon Web Services
16602
+ # KMS key for the DB cluster is accessed.
16603
+ #
16604
+ #
16605
+ #
16606
+ # [1]: https://docs.aws.amazon.com/glossary/latest/reference/glos-chap.html?id=docs_gateway#partition
16603
16607
  # @return [String]
16604
16608
  #
16605
16609
  # @!attribute [rw] global_cluster_arn
@@ -21532,6 +21536,10 @@ module Aws::RDS
21532
21536
  # volume (DLV).
21533
21537
  # @return [Boolean]
21534
21538
  #
21539
+ # @!attribute [rw] supports_http_endpoint
21540
+ # Indicates whether a DB instance supports HTTP endpoints.
21541
+ # @return [Boolean]
21542
+ #
21535
21543
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/OrderableDBInstanceOption AWS API Documentation
21536
21544
  #
21537
21545
  class OrderableDBInstanceOption < Struct.new(
@@ -21570,7 +21578,8 @@ module Aws::RDS
21570
21578
  :max_storage_throughput_per_db_instance,
21571
21579
  :min_storage_throughput_per_iops,
21572
21580
  :max_storage_throughput_per_iops,
21573
- :supports_dedicated_log_volume)
21581
+ :supports_dedicated_log_volume,
21582
+ :supports_http_endpoint)
21574
21583
  SENSITIVE = []
21575
21584
  include Aws::Structure
21576
21585
  end
data/lib/aws-sdk-rds.rb CHANGED
@@ -80,7 +80,7 @@ module Aws::RDS
80
80
  autoload :ReservedDBInstancesOffering, 'aws-sdk-rds/reserved_db_instances_offering'
81
81
  autoload :ResourcePendingMaintenanceActionList, 'aws-sdk-rds/resource_pending_maintenance_action_list'
82
82
 
83
- GEM_VERSION = '1.289.0'
83
+ GEM_VERSION = '1.290.0'
84
84
 
85
85
  end
86
86
 
data/sig/types.rbs CHANGED
@@ -3323,6 +3323,7 @@ module Aws::RDS
3323
3323
  attr_accessor min_storage_throughput_per_iops: ::Float
3324
3324
  attr_accessor max_storage_throughput_per_iops: ::Float
3325
3325
  attr_accessor supports_dedicated_log_volume: bool
3326
+ attr_accessor supports_http_endpoint: bool
3326
3327
  SENSITIVE: []
3327
3328
  end
3328
3329
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-rds
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.289.0
4
+ version: 1.290.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services