aws-sdk-dsql 1.26.0 → 1.28.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.
data/sig/types.rbs CHANGED
@@ -49,6 +49,27 @@ module Aws::DSQL
49
49
  SENSITIVE: []
50
50
  end
51
51
 
52
+ class CreateStreamInput
53
+ attr_accessor cluster_identifier: ::String
54
+ attr_accessor target_definition: Types::TargetDefinition
55
+ attr_accessor ordering: ("UNORDERED")
56
+ attr_accessor format: ("JSON")
57
+ attr_accessor tags: ::Hash[::String, ::String]
58
+ attr_accessor client_token: ::String
59
+ SENSITIVE: []
60
+ end
61
+
62
+ class CreateStreamOutput
63
+ attr_accessor cluster_identifier: ::String
64
+ attr_accessor stream_identifier: ::String
65
+ attr_accessor arn: ::String
66
+ attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "DELETED" | "FAILED" | "IMPAIRED")
67
+ attr_accessor creation_time: ::Time
68
+ attr_accessor ordering: ("UNORDERED")
69
+ attr_accessor format: ("JSON")
70
+ SENSITIVE: []
71
+ end
72
+
52
73
  class DeleteClusterInput
53
74
  attr_accessor identifier: ::String
54
75
  attr_accessor client_token: ::String
@@ -75,6 +96,22 @@ module Aws::DSQL
75
96
  SENSITIVE: []
76
97
  end
77
98
 
99
+ class DeleteStreamInput
100
+ attr_accessor cluster_identifier: ::String
101
+ attr_accessor stream_identifier: ::String
102
+ attr_accessor client_token: ::String
103
+ SENSITIVE: []
104
+ end
105
+
106
+ class DeleteStreamOutput
107
+ attr_accessor cluster_identifier: ::String
108
+ attr_accessor stream_identifier: ::String
109
+ attr_accessor arn: ::String
110
+ attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "DELETED" | "FAILED" | "IMPAIRED")
111
+ attr_accessor creation_time: ::Time
112
+ SENSITIVE: []
113
+ end
114
+
78
115
  class EncryptionDetails
79
116
  attr_accessor encryption_type: ("AWS_OWNED_KMS_KEY" | "CUSTOMER_MANAGED_KMS_KEY")
80
117
  attr_accessor kms_key_arn: ::String
@@ -111,6 +148,26 @@ module Aws::DSQL
111
148
  SENSITIVE: []
112
149
  end
113
150
 
151
+ class GetStreamInput
152
+ attr_accessor cluster_identifier: ::String
153
+ attr_accessor stream_identifier: ::String
154
+ SENSITIVE: []
155
+ end
156
+
157
+ class GetStreamOutput
158
+ attr_accessor cluster_identifier: ::String
159
+ attr_accessor stream_identifier: ::String
160
+ attr_accessor arn: ::String
161
+ attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "DELETED" | "FAILED" | "IMPAIRED")
162
+ attr_accessor creation_time: ::Time
163
+ attr_accessor ordering: ("UNORDERED")
164
+ attr_accessor format: ("JSON")
165
+ attr_accessor target_definition: Types::TargetDefinition
166
+ attr_accessor status_reason: Types::StatusReason
167
+ attr_accessor tags: ::Hash[::String, ::String]
168
+ SENSITIVE: []
169
+ end
170
+
114
171
  class GetVpcEndpointServiceNameInput
115
172
  attr_accessor identifier: ::String
116
173
  SENSITIVE: []
@@ -128,6 +185,12 @@ module Aws::DSQL
128
185
  SENSITIVE: []
129
186
  end
130
187
 
188
+ class KinesisTargetDefinition
189
+ attr_accessor stream_arn: ::String
190
+ attr_accessor role_arn: ::String
191
+ SENSITIVE: []
192
+ end
193
+
131
194
  class ListClustersInput
132
195
  attr_accessor max_results: ::Integer
133
196
  attr_accessor next_token: ::String
@@ -140,6 +203,19 @@ module Aws::DSQL
140
203
  SENSITIVE: []
141
204
  end
142
205
 
206
+ class ListStreamsInput
207
+ attr_accessor cluster_identifier: ::String
208
+ attr_accessor max_results: ::Integer
209
+ attr_accessor next_token: ::String
210
+ SENSITIVE: []
211
+ end
212
+
213
+ class ListStreamsOutput
214
+ attr_accessor next_token: ::String
215
+ attr_accessor streams: ::Array[Types::StreamSummary]
216
+ SENSITIVE: []
217
+ end
218
+
143
219
  class ListTagsForResourceInput
144
220
  attr_accessor resource_arn: ::String
145
221
  SENSITIVE: []
@@ -186,12 +262,38 @@ module Aws::DSQL
186
262
  SENSITIVE: []
187
263
  end
188
264
 
265
+ class StatusReason
266
+ attr_accessor error: ("KINESIS_THROUGHPUT_EXCEEDED" | "KINESIS_STREAM_NOT_FOUND" | "ROLE_ACCESS_DENIED" | "KINESIS_ACCESS_DENIED" | "KINESIS_KMS_ACCESS_DENIED" | "KINESIS_OVERSIZE_RECORD" | "CLUSTER_CMK_INACCESSIBLE" | "INTERNAL_ERROR")
267
+ attr_accessor updated_at: ::Time
268
+ SENSITIVE: []
269
+ end
270
+
271
+ class StreamSummary
272
+ attr_accessor cluster_identifier: ::String
273
+ attr_accessor stream_identifier: ::String
274
+ attr_accessor arn: ::String
275
+ attr_accessor creation_time: ::Time
276
+ attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "DELETED" | "FAILED" | "IMPAIRED")
277
+ SENSITIVE: []
278
+ end
279
+
189
280
  class TagResourceInput
190
281
  attr_accessor resource_arn: ::String
191
282
  attr_accessor tags: ::Hash[::String, ::String]
192
283
  SENSITIVE: []
193
284
  end
194
285
 
286
+ class TargetDefinition
287
+ attr_accessor kinesis: Types::KinesisTargetDefinition
288
+ attr_accessor unknown: untyped
289
+ SENSITIVE: []
290
+
291
+ class Kinesis < TargetDefinition
292
+ end
293
+ class Unknown < TargetDefinition
294
+ end
295
+ end
296
+
195
297
  class ThrottlingException
196
298
  attr_accessor message: ::String
197
299
  attr_accessor service_code: ::String
data/sig/waiters.rbs CHANGED
@@ -28,6 +28,28 @@ module Aws
28
28
  ) -> Client::_GetClusterResponseSuccess
29
29
  | (Hash[Symbol, untyped]) -> Client::_GetClusterResponseSuccess
30
30
  end
31
+
32
+ class StreamActive
33
+ def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
34
+ | (?Hash[Symbol, untyped]) -> void
35
+
36
+ def wait: (
37
+ cluster_identifier: ::String,
38
+ stream_identifier: ::String
39
+ ) -> Client::_GetStreamResponseSuccess
40
+ | (Hash[Symbol, untyped]) -> Client::_GetStreamResponseSuccess
41
+ end
42
+
43
+ class StreamNotExists
44
+ def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
45
+ | (?Hash[Symbol, untyped]) -> void
46
+
47
+ def wait: (
48
+ cluster_identifier: ::String,
49
+ stream_identifier: ::String
50
+ ) -> Client::_GetStreamResponseSuccess
51
+ | (Hash[Symbol, untyped]) -> Client::_GetStreamResponseSuccess
52
+ end
31
53
  end
32
54
  end
33
55
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-dsql
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.26.0
4
+ version: 1.28.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.244.0
21
+ version: 3.248.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.244.0
31
+ version: 3.248.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement