aws-sdk-databasemigrationservice 1.58.0 → 1.59.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: 8fc5c4796eba3ebfeb2b8fddb94fa7ccfd1cc69c491216e78ea585c2a92db606
4
- data.tar.gz: 896f13e7d581478062a669431e7140994eddc76c5c4add4cb10c883127398677
3
+ metadata.gz: 648fb8f603db48c7c30180109f26bc90928a8b0fb266dd18bcf1511e3f85e0e6
4
+ data.tar.gz: 862ba88a004e9c94b69521bd721a0921f0a0a59f2c4545f36e772c820f9cfa55
5
5
  SHA512:
6
- metadata.gz: ee5a80aa7f414ca86e47739da0ed1239d0c253640ca76e66ffe2bd2bb7077ebf8cb770503c06f9f8636677269a2443f0c3f88954580488bff64861afb8de9ede
7
- data.tar.gz: '0866dcf08895ff6545a7380726df326e1b81b9cc9a538bf6c5aa7e65b07101b52d50e2e2140b21ef974d98cb06ad1d6f88299421a65f91e3b0d10f6b36aa9d8b'
6
+ metadata.gz: 50cf7472759bae3a38e5bbf71ddd0db0c5201cddb05e530fd7e8c49432b622238510c9a91f46321b88e76280987e4973741fde20cc90c565e903f9037c13c9d2
7
+ data.tar.gz: 0ba662212a062c5024fa4ab78881222fdf009b89a952fd5097a37ee1a0d9d53e029f7750eff88899cae0ddd6a1354d1461f3d7194c9f5afc428addf61f9da4fc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.59.0 (2021-09-17)
5
+ ------------------
6
+
7
+ * Feature - Optional flag force-planned-failover added to reboot-replication-instance API call. This flag can be used to test a planned failover scenario used during some maintenance operations.
8
+
4
9
  1.58.0 (2021-09-01)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.58.0
1
+ 1.59.0
@@ -412,6 +412,8 @@ module Aws::DatabaseMigrationService
412
412
  # @option params [required, String] :apply_action
413
413
  # The pending maintenance action to apply to this resource.
414
414
  #
415
+ # Valid values: `os-upgrade`, `system-update`, `db-upgrade`
416
+ #
415
417
  # @option params [required, String] :opt_in_type
416
418
  # A value that specifies the type of opt-in request, or undoes an opt-in
417
419
  # request. You can't undo an opt-in request of type `immediate`.
@@ -613,8 +615,9 @@ module Aws::DatabaseMigrationService
613
615
  #
614
616
  # Possible settings include the following:
615
617
  #
616
- # * `ServiceAccessRoleArn` - The IAM role that has permission to access
617
- # the Amazon S3 bucket. The role must allow the `iam:PassRole` action.
618
+ # * `ServiceAccessRoleArn` - The Amazon Resource Name (ARN) used by the
619
+ # service access IAM role. The role must allow the `iam:PassRole`
620
+ # action.
618
621
  #
619
622
  # * `BucketName` - The name of the S3 bucket to use.
620
623
  #
@@ -1791,6 +1794,10 @@ module Aws::DatabaseMigrationService
1791
1794
  # Creates a replication subnet group given a list of the subnet IDs in a
1792
1795
  # VPC.
1793
1796
  #
1797
+ # The VPC needs to have at least one subnet in at least two availability
1798
+ # zones in the Amazon Web Services Region, otherwise the service will
1799
+ # throw a `ReplicationSubnetGroupDoesNotCoverEnoughAZs` exception.
1800
+ #
1794
1801
  # @option params [required, String] :replication_subnet_group_identifier
1795
1802
  # The name for the replication subnet group. This value is stored as a
1796
1803
  # lowercase string.
@@ -5116,9 +5123,9 @@ module Aws::DatabaseMigrationService
5116
5123
  #
5117
5124
  # Attributes include the following:
5118
5125
  #
5119
- # * serviceAccessRoleArn - The Identity and Access Management (IAM) role
5120
- # that has permission to access the Amazon S3 bucket. The role must
5121
- # allow the `iam:PassRole` action.
5126
+ # * serviceAccessRoleArn - The Amazon Resource Name (ARN) used by the
5127
+ # service access IAM role. The role must allow the `iam:PassRole`
5128
+ # action.
5122
5129
  #
5123
5130
  # * BucketName - The name of the S3 bucket to use.
5124
5131
  #
@@ -6473,8 +6480,16 @@ module Aws::DatabaseMigrationService
6473
6480
  #
6474
6481
  # @option params [Boolean] :force_failover
6475
6482
  # If this parameter is `true`, the reboot is conducted through a
6476
- # Multi-AZ failover. (If the instance isn't configured for Multi-AZ,
6477
- # then you can't specify `true`.)
6483
+ # Multi-AZ failover. If the instance isn't configured for Multi-AZ,
6484
+ # then you can't specify `true`. ( `--force-planned-failover` and
6485
+ # `--force-failover` can't both be set to `true`.)
6486
+ #
6487
+ # @option params [Boolean] :force_planned_failover
6488
+ # If this parameter is `true`, the reboot is conducted through a planned
6489
+ # Multi-AZ failover where resources are released and cleaned up prior to
6490
+ # conducting the failover. If the instance isn''t configured for
6491
+ # Multi-AZ, then you can't specify `true`. ( `--force-planned-failover`
6492
+ # and `--force-failover` can't both be set to `true`.)
6478
6493
  #
6479
6494
  # @return [Types::RebootReplicationInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6480
6495
  #
@@ -6485,6 +6500,7 @@ module Aws::DatabaseMigrationService
6485
6500
  # resp = client.reboot_replication_instance({
6486
6501
  # replication_instance_arn: "String", # required
6487
6502
  # force_failover: false,
6503
+ # force_planned_failover: false,
6488
6504
  # })
6489
6505
  #
6490
6506
  # @example Response structure
@@ -6595,6 +6611,10 @@ module Aws::DatabaseMigrationService
6595
6611
 
6596
6612
  # Reloads the target database table with the source data.
6597
6613
  #
6614
+ # You can only use this operation with a task in the `RUNNING` state,
6615
+ # otherwise the service will throw an `InvalidResourceStateFault`
6616
+ # exception.
6617
+ #
6598
6618
  # @option params [required, String] :replication_task_arn
6599
6619
  # The Amazon Resource Name (ARN) of the replication task.
6600
6620
  #
@@ -7158,7 +7178,7 @@ module Aws::DatabaseMigrationService
7158
7178
  params: params,
7159
7179
  config: config)
7160
7180
  context[:gem_name] = 'aws-sdk-databasemigrationservice'
7161
- context[:gem_version] = '1.58.0'
7181
+ context[:gem_version] = '1.59.0'
7162
7182
  Seahorse::Client::Request.new(handlers, context)
7163
7183
  end
7164
7184
 
@@ -1144,6 +1144,7 @@ module Aws::DatabaseMigrationService
1144
1144
 
1145
1145
  RebootReplicationInstanceMessage.add_member(:replication_instance_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ReplicationInstanceArn"))
1146
1146
  RebootReplicationInstanceMessage.add_member(:force_failover, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ForceFailover"))
1147
+ RebootReplicationInstanceMessage.add_member(:force_planned_failover, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ForcePlannedFailover"))
1147
1148
  RebootReplicationInstanceMessage.struct_class = Types::RebootReplicationInstanceMessage
1148
1149
 
1149
1150
  RebootReplicationInstanceResponse.add_member(:replication_instance, Shapes::ShapeRef.new(shape: ReplicationInstance, location_name: "ReplicationInstance"))
@@ -106,6 +106,8 @@ module Aws::DatabaseMigrationService
106
106
  #
107
107
  # @!attribute [rw] apply_action
108
108
  # The pending maintenance action to apply to this resource.
109
+ #
110
+ # Valid values: `os-upgrade`, `system-update`, `db-upgrade`
109
111
  # @return [String]
110
112
  #
111
113
  # @!attribute [rw] opt_in_type
@@ -741,8 +743,8 @@ module Aws::DatabaseMigrationService
741
743
  #
742
744
  # Possible settings include the following:
743
745
  #
744
- # * `ServiceAccessRoleArn` - The IAM role that has permission to
745
- # access the Amazon S3 bucket. The role must allow the
746
+ # * `ServiceAccessRoleArn` - The Amazon Resource Name (ARN) used by
747
+ # the service access IAM role. The role must allow the
746
748
  # `iam:PassRole` action.
747
749
  #
748
750
  # * `BucketName` - The name of the S3 bucket to use.
@@ -3195,10 +3197,8 @@ module Aws::DatabaseMigrationService
3195
3197
  # }
3196
3198
  #
3197
3199
  # @!attribute [rw] service_access_role_arn
3198
- # The IAM role that has permission to access the Amazon S3 bucket.
3199
- # When specified as part of request syntax, such as for the
3200
- # `CreateEndpoint` and `ModifyEndpoint` actions, the role must allow
3201
- # the `iam:PassRole` action.
3200
+ # The Amazon Resource Name (ARN) used by the service access IAM role.
3201
+ # The role must allow the `iam:PassRole` action.
3202
3202
  # @return [String]
3203
3203
  #
3204
3204
  # @!attribute [rw] bucket_name
@@ -3523,8 +3523,8 @@ module Aws::DatabaseMigrationService
3523
3523
  #
3524
3524
  # Possible settings include the following:
3525
3525
  #
3526
- # * `ServiceAccessRoleArn` - The IAM role that has permission to
3527
- # access the Amazon S3 bucket. The role must allow the
3526
+ # * `ServiceAccessRoleArn` - - The Amazon Resource Name (ARN) used by
3527
+ # the service access IAM role. The role must allow the
3528
3528
  # `iam:PassRole` action.
3529
3529
  #
3530
3530
  # * `BucketName` - The name of the S3 bucket to use.
@@ -5049,9 +5049,9 @@ module Aws::DatabaseMigrationService
5049
5049
  #
5050
5050
  # Attributes include the following:
5051
5051
  #
5052
- # * serviceAccessRoleArn - The Identity and Access Management (IAM)
5053
- # role that has permission to access the Amazon S3 bucket. The role
5054
- # must allow the `iam:PassRole` action.
5052
+ # * serviceAccessRoleArn - The Amazon Resource Name (ARN) used by the
5053
+ # service access IAM role. The role must allow the `iam:PassRole`
5054
+ # action.
5055
5055
  #
5056
5056
  # * BucketName - The name of the S3 bucket to use.
5057
5057
  #
@@ -6926,6 +6926,7 @@ module Aws::DatabaseMigrationService
6926
6926
  # {
6927
6927
  # replication_instance_arn: "String", # required
6928
6928
  # force_failover: false,
6929
+ # force_planned_failover: false,
6929
6930
  # }
6930
6931
  #
6931
6932
  # @!attribute [rw] replication_instance_arn
@@ -6934,15 +6935,26 @@ module Aws::DatabaseMigrationService
6934
6935
  #
6935
6936
  # @!attribute [rw] force_failover
6936
6937
  # If this parameter is `true`, the reboot is conducted through a
6937
- # Multi-AZ failover. (If the instance isn't configured for Multi-AZ,
6938
- # then you can't specify `true`.)
6938
+ # Multi-AZ failover. If the instance isn't configured for Multi-AZ,
6939
+ # then you can't specify `true`. ( `--force-planned-failover` and
6940
+ # `--force-failover` can't both be set to `true`.)
6941
+ # @return [Boolean]
6942
+ #
6943
+ # @!attribute [rw] force_planned_failover
6944
+ # If this parameter is `true`, the reboot is conducted through a
6945
+ # planned Multi-AZ failover where resources are released and cleaned
6946
+ # up prior to conducting the failover. If the instance isn''t
6947
+ # configured for Multi-AZ, then you can't specify `true`. (
6948
+ # `--force-planned-failover` and `--force-failover` can't both be set
6949
+ # to `true`.)
6939
6950
  # @return [Boolean]
6940
6951
  #
6941
6952
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/RebootReplicationInstanceMessage AWS API Documentation
6942
6953
  #
6943
6954
  class RebootReplicationInstanceMessage < Struct.new(
6944
6955
  :replication_instance_arn,
6945
- :force_failover)
6956
+ :force_failover,
6957
+ :force_planned_failover)
6946
6958
  SENSITIVE = []
6947
6959
  include Aws::Structure
6948
6960
  end
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-databasemigrationservice/customizations'
49
49
  # @!group service
50
50
  module Aws::DatabaseMigrationService
51
51
 
52
- GEM_VERSION = '1.58.0'
52
+ GEM_VERSION = '1.59.0'
53
53
 
54
54
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-databasemigrationservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.58.0
4
+ version: 1.59.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: 2021-09-01 00:00:00.000000000 Z
11
+ date: 2021-09-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core