aws-sdk-rds 1.49.0 → 1.50.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a29cf5a99ffa3c5f7b2b1f6962de0b06e9172655
4
- data.tar.gz: 9d89ca19e34aa18184442c37a2f026a859fdb6df
3
+ metadata.gz: 81d6ccd69b54ec627f652bb7fb5dc38c71bc057e
4
+ data.tar.gz: f378b436dd6e4a1c04c79a49ff4a3a105c76f306
5
5
  SHA512:
6
- metadata.gz: 2d5851f8cd293ae0c0bd8c7ef3e47bcd47d47760e2539016d01fad06957dfd760f630ea399c460a657660f998c08d8c18e957041a5c419d8a29ba7d7fa0f0441
7
- data.tar.gz: 1b62b82b210f3282d868ca1743518fe4bdfcab9c9b11bc4a585ebf104655f25c642aee725f26bdde4787ad42345d6d69ccd590b452e50fb865b2fbce1b8ef90d
6
+ metadata.gz: 35f826104eb8886b47858f50a7f8c99e285528e78a490e33eca6113518551e7f7af2419adb9dbc2de791d05892979e0423a7c8d50d51a60c4acc3a4709c27232
7
+ data.tar.gz: 7a51aaa00588294c9558805204e4dac4aa7af7fa111d40b3181d6751c2ed3a7e8a9d4b512aec165a98eddd3a8cef8c05223f99108e3a0d3c43f2e3dcd65217f7
data/lib/aws-sdk-rds.rb CHANGED
@@ -68,6 +68,6 @@ require_relative 'aws-sdk-rds/customizations'
68
68
  # @service
69
69
  module Aws::RDS
70
70
 
71
- GEM_VERSION = '1.49.0'
71
+ GEM_VERSION = '1.50.0'
72
72
 
73
73
  end
@@ -271,6 +271,11 @@ module Aws::RDS
271
271
  # Aurora DB cluster, for example
272
272
  # `arn:aws:iam::123456789012:role/AuroraAccessRole`.
273
273
  #
274
+ # @option params [String] :feature_name
275
+ # The name of the feature for the DB cluster that the IAM role is to be
276
+ # associated with. For the list of supported feature names, see
277
+ # DBEngineVersion.
278
+ #
274
279
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
275
280
  #
276
281
  # @example Request syntax with placeholder values
@@ -278,6 +283,7 @@ module Aws::RDS
278
283
  # resp = client.add_role_to_db_cluster({
279
284
  # db_cluster_identifier: "String", # required
280
285
  # role_arn: "String", # required
286
+ # feature_name: "String",
281
287
  # })
282
288
  #
283
289
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/AddRoleToDBCluster AWS API Documentation
@@ -292,6 +298,11 @@ module Aws::RDS
292
298
  # Associates an AWS Identity and Access Management (IAM) role with a DB
293
299
  # instance.
294
300
  #
301
+ # <note markdown="1"> To add a role to a DB instance, the status of the DB instance must be
302
+ # `available`.
303
+ #
304
+ # </note>
305
+ #
295
306
  # @option params [required, String] :db_instance_identifier
296
307
  # The name of the DB instance to associate the IAM role with.
297
308
  #
@@ -12342,6 +12353,11 @@ module Aws::RDS
12342
12353
  # the Aurora DB cluster, for example
12343
12354
  # `arn:aws:iam::123456789012:role/AuroraAccessRole`.
12344
12355
  #
12356
+ # @option params [String] :feature_name
12357
+ # The name of the feature for the DB cluster that the IAM role is to be
12358
+ # disassociated from. For the list of supported feature names, see
12359
+ # DBEngineVersion.
12360
+ #
12345
12361
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
12346
12362
  #
12347
12363
  # @example Request syntax with placeholder values
@@ -12349,6 +12365,7 @@ module Aws::RDS
12349
12365
  # resp = client.remove_role_from_db_cluster({
12350
12366
  # db_cluster_identifier: "String", # required
12351
12367
  # role_arn: "String", # required
12368
+ # feature_name: "String",
12352
12369
  # })
12353
12370
  #
12354
12371
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RemoveRoleFromDBCluster AWS API Documentation
@@ -15980,7 +15997,7 @@ module Aws::RDS
15980
15997
  params: params,
15981
15998
  config: config)
15982
15999
  context[:gem_name] = 'aws-sdk-rds'
15983
- context[:gem_version] = '1.49.0'
16000
+ context[:gem_version] = '1.50.0'
15984
16001
  Seahorse::Client::Request.new(handlers, context)
15985
16002
  end
15986
16003
 
@@ -486,6 +486,7 @@ module Aws::RDS
486
486
 
487
487
  AddRoleToDBClusterMessage.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterIdentifier"))
488
488
  AddRoleToDBClusterMessage.add_member(:role_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "RoleArn"))
489
+ AddRoleToDBClusterMessage.add_member(:feature_name, Shapes::ShapeRef.new(shape: String, location_name: "FeatureName"))
489
490
  AddRoleToDBClusterMessage.struct_class = Types::AddRoleToDBClusterMessage
490
491
 
491
492
  AddRoleToDBInstanceMessage.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBInstanceIdentifier"))
@@ -2119,6 +2120,7 @@ module Aws::RDS
2119
2120
 
2120
2121
  RemoveRoleFromDBClusterMessage.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterIdentifier"))
2121
2122
  RemoveRoleFromDBClusterMessage.add_member(:role_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "RoleArn"))
2123
+ RemoveRoleFromDBClusterMessage.add_member(:feature_name, Shapes::ShapeRef.new(shape: String, location_name: "FeatureName"))
2122
2124
  RemoveRoleFromDBClusterMessage.struct_class = Types::RemoveRoleFromDBClusterMessage
2123
2125
 
2124
2126
  RemoveRoleFromDBInstanceMessage.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBInstanceIdentifier"))
@@ -53,6 +53,7 @@ module Aws::RDS
53
53
  # {
54
54
  # db_cluster_identifier: "String", # required
55
55
  # role_arn: "String", # required
56
+ # feature_name: "String",
56
57
  # }
57
58
  #
58
59
  # @!attribute [rw] db_cluster_identifier
@@ -65,11 +66,18 @@ module Aws::RDS
65
66
  # `arn:aws:iam::123456789012:role/AuroraAccessRole`.
66
67
  # @return [String]
67
68
  #
69
+ # @!attribute [rw] feature_name
70
+ # The name of the feature for the DB cluster that the IAM role is to
71
+ # be associated with. For the list of supported feature names, see
72
+ # DBEngineVersion.
73
+ # @return [String]
74
+ #
68
75
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/AddRoleToDBClusterMessage AWS API Documentation
69
76
  #
70
77
  class AddRoleToDBClusterMessage < Struct.new(
71
78
  :db_cluster_identifier,
72
- :role_arn)
79
+ :role_arn,
80
+ :feature_name)
73
81
  include Aws::Structure
74
82
  end
75
83
 
@@ -4550,6 +4558,9 @@ module Aws::RDS
4550
4558
  # @return [String]
4551
4559
  #
4552
4560
  # @!attribute [rw] feature_name
4561
+ # The name of the feature associated with the AWS Identity and Access
4562
+ # Management (IAM) role. For the list of supported feature names, see
4563
+ # DBEngineVersion.
4553
4564
  # @return [String]
4554
4565
  #
4555
4566
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterRole AWS API Documentation
@@ -12581,6 +12592,7 @@ module Aws::RDS
12581
12592
  # {
12582
12593
  # db_cluster_identifier: "String", # required
12583
12594
  # role_arn: "String", # required
12595
+ # feature_name: "String",
12584
12596
  # }
12585
12597
  #
12586
12598
  # @!attribute [rw] db_cluster_identifier
@@ -12593,11 +12605,18 @@ module Aws::RDS
12593
12605
  # `arn:aws:iam::123456789012:role/AuroraAccessRole`.
12594
12606
  # @return [String]
12595
12607
  #
12608
+ # @!attribute [rw] feature_name
12609
+ # The name of the feature for the DB cluster that the IAM role is to
12610
+ # be disassociated from. For the list of supported feature names, see
12611
+ # DBEngineVersion.
12612
+ # @return [String]
12613
+ #
12596
12614
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RemoveRoleFromDBClusterMessage AWS API Documentation
12597
12615
  #
12598
12616
  class RemoveRoleFromDBClusterMessage < Struct.new(
12599
12617
  :db_cluster_identifier,
12600
- :role_arn)
12618
+ :role_arn,
12619
+ :feature_name)
12601
12620
  include Aws::Structure
12602
12621
  end
12603
12622
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-rds
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.49.0
4
+ version: 1.50.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-04-18 00:00:00.000000000 Z
11
+ date: 2019-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4