aws-sdk-databasemigrationservice 1.67.0 → 1.70.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-databasemigrationservice/client.rb +565 -2
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +360 -0
- data/lib/aws-sdk-databasemigrationservice/errors.rb +32 -0
- data/lib/aws-sdk-databasemigrationservice/types.rb +1198 -99
- data/lib/aws-sdk-databasemigrationservice.rb +1 -1
- metadata +2 -2
@@ -28,8 +28,10 @@ module Aws::DatabaseMigrationService
|
|
28
28
|
#
|
29
29
|
# ## Error Classes
|
30
30
|
# * {AccessDeniedFault}
|
31
|
+
# * {CollectorNotFoundFault}
|
31
32
|
# * {InsufficientResourceCapacityFault}
|
32
33
|
# * {InvalidCertificateFault}
|
34
|
+
# * {InvalidOperationFault}
|
33
35
|
# * {InvalidResourceStateFault}
|
34
36
|
# * {InvalidSubnet}
|
35
37
|
# * {KMSAccessDeniedFault}
|
@@ -72,6 +74,21 @@ module Aws::DatabaseMigrationService
|
|
72
74
|
end
|
73
75
|
end
|
74
76
|
|
77
|
+
class CollectorNotFoundFault < ServiceError
|
78
|
+
|
79
|
+
# @param [Seahorse::Client::RequestContext] context
|
80
|
+
# @param [String] message
|
81
|
+
# @param [Aws::DatabaseMigrationService::Types::CollectorNotFoundFault] data
|
82
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
83
|
+
super(context, message, data)
|
84
|
+
end
|
85
|
+
|
86
|
+
# @return [String]
|
87
|
+
def message
|
88
|
+
@message || @data[:message]
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
75
92
|
class InsufficientResourceCapacityFault < ServiceError
|
76
93
|
|
77
94
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -102,6 +119,21 @@ module Aws::DatabaseMigrationService
|
|
102
119
|
end
|
103
120
|
end
|
104
121
|
|
122
|
+
class InvalidOperationFault < ServiceError
|
123
|
+
|
124
|
+
# @param [Seahorse::Client::RequestContext] context
|
125
|
+
# @param [String] message
|
126
|
+
# @param [Aws::DatabaseMigrationService::Types::InvalidOperationFault] data
|
127
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
128
|
+
super(context, message, data)
|
129
|
+
end
|
130
|
+
|
131
|
+
# @return [String]
|
132
|
+
def message
|
133
|
+
@message || @data[:message]
|
134
|
+
end
|
135
|
+
end
|
136
|
+
|
105
137
|
class InvalidResourceStateFault < ServiceError
|
106
138
|
|
107
139
|
# @param [Seahorse::Client::RequestContext] context
|