aws-sdk-databasemigrationservice 1.88.0 → 1.111.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 +115 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-databasemigrationservice/client.rb +803 -85
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +272 -6
- data/lib/aws-sdk-databasemigrationservice/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-databasemigrationservice/endpoint_provider.rb +4 -4
- data/lib/aws-sdk-databasemigrationservice/endpoints.rb +2 -1482
- data/lib/aws-sdk-databasemigrationservice/errors.rb +16 -0
- data/lib/aws-sdk-databasemigrationservice/plugins/endpoints.rb +23 -226
- data/lib/aws-sdk-databasemigrationservice/types.rb +821 -76
- data/lib/aws-sdk-databasemigrationservice.rb +16 -12
- data/sig/client.rbs +2779 -0
- data/sig/errors.rbs +95 -0
- data/sig/resource.rbs +83 -0
- data/sig/types.rbs +2923 -0
- data/sig/waiters.rbs +153 -0
- metadata +16 -11
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,153 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module DatabaseMigrationService
|
10
|
+
module Waiters
|
11
|
+
|
12
|
+
class EndpointDeleted
|
13
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
14
|
+
| (?Hash[Symbol, untyped]) -> void
|
15
|
+
|
16
|
+
def wait: (
|
17
|
+
?filters: Array[
|
18
|
+
{
|
19
|
+
name: ::String,
|
20
|
+
values: Array[::String]
|
21
|
+
},
|
22
|
+
],
|
23
|
+
?max_records: ::Integer,
|
24
|
+
?marker: ::String
|
25
|
+
) -> Client::_DescribeEndpointsResponseSuccess
|
26
|
+
| (?Hash[Symbol, untyped]) -> Client::_DescribeEndpointsResponseSuccess
|
27
|
+
end
|
28
|
+
|
29
|
+
class ReplicationInstanceAvailable
|
30
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
31
|
+
| (?Hash[Symbol, untyped]) -> void
|
32
|
+
|
33
|
+
def wait: (
|
34
|
+
?filters: Array[
|
35
|
+
{
|
36
|
+
name: ::String,
|
37
|
+
values: Array[::String]
|
38
|
+
},
|
39
|
+
],
|
40
|
+
?max_records: ::Integer,
|
41
|
+
?marker: ::String
|
42
|
+
) -> Client::_DescribeReplicationInstancesResponseSuccess
|
43
|
+
| (?Hash[Symbol, untyped]) -> Client::_DescribeReplicationInstancesResponseSuccess
|
44
|
+
end
|
45
|
+
|
46
|
+
class ReplicationInstanceDeleted
|
47
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
48
|
+
| (?Hash[Symbol, untyped]) -> void
|
49
|
+
|
50
|
+
def wait: (
|
51
|
+
?filters: Array[
|
52
|
+
{
|
53
|
+
name: ::String,
|
54
|
+
values: Array[::String]
|
55
|
+
},
|
56
|
+
],
|
57
|
+
?max_records: ::Integer,
|
58
|
+
?marker: ::String
|
59
|
+
) -> Client::_DescribeReplicationInstancesResponseSuccess
|
60
|
+
| (?Hash[Symbol, untyped]) -> Client::_DescribeReplicationInstancesResponseSuccess
|
61
|
+
end
|
62
|
+
|
63
|
+
class ReplicationTaskDeleted
|
64
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
65
|
+
| (?Hash[Symbol, untyped]) -> void
|
66
|
+
|
67
|
+
def wait: (
|
68
|
+
?filters: Array[
|
69
|
+
{
|
70
|
+
name: ::String,
|
71
|
+
values: Array[::String]
|
72
|
+
},
|
73
|
+
],
|
74
|
+
?max_records: ::Integer,
|
75
|
+
?marker: ::String,
|
76
|
+
?without_settings: bool
|
77
|
+
) -> Client::_DescribeReplicationTasksResponseSuccess
|
78
|
+
| (?Hash[Symbol, untyped]) -> Client::_DescribeReplicationTasksResponseSuccess
|
79
|
+
end
|
80
|
+
|
81
|
+
class ReplicationTaskReady
|
82
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
83
|
+
| (?Hash[Symbol, untyped]) -> void
|
84
|
+
|
85
|
+
def wait: (
|
86
|
+
?filters: Array[
|
87
|
+
{
|
88
|
+
name: ::String,
|
89
|
+
values: Array[::String]
|
90
|
+
},
|
91
|
+
],
|
92
|
+
?max_records: ::Integer,
|
93
|
+
?marker: ::String,
|
94
|
+
?without_settings: bool
|
95
|
+
) -> Client::_DescribeReplicationTasksResponseSuccess
|
96
|
+
| (?Hash[Symbol, untyped]) -> Client::_DescribeReplicationTasksResponseSuccess
|
97
|
+
end
|
98
|
+
|
99
|
+
class ReplicationTaskRunning
|
100
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
101
|
+
| (?Hash[Symbol, untyped]) -> void
|
102
|
+
|
103
|
+
def wait: (
|
104
|
+
?filters: Array[
|
105
|
+
{
|
106
|
+
name: ::String,
|
107
|
+
values: Array[::String]
|
108
|
+
},
|
109
|
+
],
|
110
|
+
?max_records: ::Integer,
|
111
|
+
?marker: ::String,
|
112
|
+
?without_settings: bool
|
113
|
+
) -> Client::_DescribeReplicationTasksResponseSuccess
|
114
|
+
| (?Hash[Symbol, untyped]) -> Client::_DescribeReplicationTasksResponseSuccess
|
115
|
+
end
|
116
|
+
|
117
|
+
class ReplicationTaskStopped
|
118
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
119
|
+
| (?Hash[Symbol, untyped]) -> void
|
120
|
+
|
121
|
+
def wait: (
|
122
|
+
?filters: Array[
|
123
|
+
{
|
124
|
+
name: ::String,
|
125
|
+
values: Array[::String]
|
126
|
+
},
|
127
|
+
],
|
128
|
+
?max_records: ::Integer,
|
129
|
+
?marker: ::String,
|
130
|
+
?without_settings: bool
|
131
|
+
) -> Client::_DescribeReplicationTasksResponseSuccess
|
132
|
+
| (?Hash[Symbol, untyped]) -> Client::_DescribeReplicationTasksResponseSuccess
|
133
|
+
end
|
134
|
+
|
135
|
+
class TestConnectionSucceeds
|
136
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
137
|
+
| (?Hash[Symbol, untyped]) -> void
|
138
|
+
|
139
|
+
def wait: (
|
140
|
+
?filters: Array[
|
141
|
+
{
|
142
|
+
name: ::String,
|
143
|
+
values: Array[::String]
|
144
|
+
},
|
145
|
+
],
|
146
|
+
?max_records: ::Integer,
|
147
|
+
?marker: ::String
|
148
|
+
) -> Client::_DescribeConnectionsResponseSuccess
|
149
|
+
| (?Hash[Symbol, untyped]) -> Client::_DescribeConnectionsResponseSuccess
|
150
|
+
end
|
151
|
+
end
|
152
|
+
end
|
153
|
+
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.
|
4
|
+
version: 1.111.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-12-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.210.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,21 +29,21 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.210.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '1.
|
39
|
+
version: '1.5'
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '1.
|
46
|
+
version: '1.5'
|
47
47
|
description: Official AWS Ruby gem for AWS Database Migration Service. This gem is
|
48
48
|
part of the AWS SDK for Ruby.
|
49
49
|
email:
|
@@ -67,13 +67,18 @@ files:
|
|
67
67
|
- lib/aws-sdk-databasemigrationservice/resource.rb
|
68
68
|
- lib/aws-sdk-databasemigrationservice/types.rb
|
69
69
|
- lib/aws-sdk-databasemigrationservice/waiters.rb
|
70
|
+
- sig/client.rbs
|
71
|
+
- sig/errors.rbs
|
72
|
+
- sig/resource.rbs
|
73
|
+
- sig/types.rbs
|
74
|
+
- sig/waiters.rbs
|
70
75
|
homepage: https://github.com/aws/aws-sdk-ruby
|
71
76
|
licenses:
|
72
77
|
- Apache-2.0
|
73
78
|
metadata:
|
74
79
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-databasemigrationservice
|
75
80
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-databasemigrationservice/CHANGELOG.md
|
76
|
-
post_install_message:
|
81
|
+
post_install_message:
|
77
82
|
rdoc_options: []
|
78
83
|
require_paths:
|
79
84
|
- lib
|
@@ -81,15 +86,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
81
86
|
requirements:
|
82
87
|
- - ">="
|
83
88
|
- !ruby/object:Gem::Version
|
84
|
-
version: '2.
|
89
|
+
version: '2.5'
|
85
90
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
86
91
|
requirements:
|
87
92
|
- - ">="
|
88
93
|
- !ruby/object:Gem::Version
|
89
94
|
version: '0'
|
90
95
|
requirements: []
|
91
|
-
rubygems_version: 3.
|
92
|
-
signing_key:
|
96
|
+
rubygems_version: 3.4.10
|
97
|
+
signing_key:
|
93
98
|
specification_version: 4
|
94
99
|
summary: AWS SDK for Ruby - AWS Database Migration Service
|
95
100
|
test_files: []
|