aws-sdk-kinesis 1.96.0 → 1.97.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kinesis/async_client.rb +5 -1
- data/lib/aws-sdk-kinesis/client.rb +135 -2
- data/lib/aws-sdk-kinesis/client_api.rb +36 -0
- data/lib/aws-sdk-kinesis/endpoint_parameters.rb +8 -0
- data/lib/aws-sdk-kinesis/endpoint_provider.rb +75 -0
- data/lib/aws-sdk-kinesis/endpoints.rb +34 -0
- data/lib/aws-sdk-kinesis/types.rb +205 -30
- data/lib/aws-sdk-kinesis.rb +1 -1
- data/sig/async_client.rbs +1 -0
- data/sig/client.rbs +65 -30
- data/sig/types.rbs +35 -0
- data/sig/waiters.rbs +4 -2
- metadata +1 -1
|
@@ -16,6 +16,7 @@ module Aws::Kinesis
|
|
|
16
16
|
def self.build(context)
|
|
17
17
|
Aws::Kinesis::EndpointParameters.create(
|
|
18
18
|
context.config,
|
|
19
|
+
stream_id: context.params[:stream_id],
|
|
19
20
|
stream_arn: context.params[:stream_arn],
|
|
20
21
|
operation_type: "control",
|
|
21
22
|
)
|
|
@@ -26,6 +27,7 @@ module Aws::Kinesis
|
|
|
26
27
|
def self.build(context)
|
|
27
28
|
Aws::Kinesis::EndpointParameters.create(
|
|
28
29
|
context.config,
|
|
30
|
+
stream_id: context.params[:stream_id],
|
|
29
31
|
stream_arn: context.params[:stream_arn],
|
|
30
32
|
operation_type: "control",
|
|
31
33
|
)
|
|
@@ -36,6 +38,7 @@ module Aws::Kinesis
|
|
|
36
38
|
def self.build(context)
|
|
37
39
|
Aws::Kinesis::EndpointParameters.create(
|
|
38
40
|
context.config,
|
|
41
|
+
stream_id: context.params[:stream_id],
|
|
39
42
|
operation_type: "control",
|
|
40
43
|
resource_arn: context.params[:resource_arn],
|
|
41
44
|
)
|
|
@@ -46,6 +49,7 @@ module Aws::Kinesis
|
|
|
46
49
|
def self.build(context)
|
|
47
50
|
Aws::Kinesis::EndpointParameters.create(
|
|
48
51
|
context.config,
|
|
52
|
+
stream_id: context.params[:stream_id],
|
|
49
53
|
stream_arn: context.params[:stream_arn],
|
|
50
54
|
operation_type: "control",
|
|
51
55
|
)
|
|
@@ -56,6 +60,7 @@ module Aws::Kinesis
|
|
|
56
60
|
def self.build(context)
|
|
57
61
|
Aws::Kinesis::EndpointParameters.create(
|
|
58
62
|
context.config,
|
|
63
|
+
stream_id: context.params[:stream_id],
|
|
59
64
|
stream_arn: context.params[:stream_arn],
|
|
60
65
|
operation_type: "control",
|
|
61
66
|
consumer_arn: context.params[:consumer_arn],
|
|
@@ -67,6 +72,7 @@ module Aws::Kinesis
|
|
|
67
72
|
def self.build(context)
|
|
68
73
|
Aws::Kinesis::EndpointParameters.create(
|
|
69
74
|
context.config,
|
|
75
|
+
stream_id: context.params[:stream_id],
|
|
70
76
|
stream_arn: context.params[:stream_arn],
|
|
71
77
|
operation_type: "control",
|
|
72
78
|
)
|
|
@@ -77,6 +83,7 @@ module Aws::Kinesis
|
|
|
77
83
|
def self.build(context)
|
|
78
84
|
Aws::Kinesis::EndpointParameters.create(
|
|
79
85
|
context.config,
|
|
86
|
+
stream_id: context.params[:stream_id],
|
|
80
87
|
stream_arn: context.params[:stream_arn],
|
|
81
88
|
operation_type: "control",
|
|
82
89
|
consumer_arn: context.params[:consumer_arn],
|
|
@@ -88,6 +95,7 @@ module Aws::Kinesis
|
|
|
88
95
|
def self.build(context)
|
|
89
96
|
Aws::Kinesis::EndpointParameters.create(
|
|
90
97
|
context.config,
|
|
98
|
+
stream_id: context.params[:stream_id],
|
|
91
99
|
stream_arn: context.params[:stream_arn],
|
|
92
100
|
operation_type: "control",
|
|
93
101
|
)
|
|
@@ -98,6 +106,7 @@ module Aws::Kinesis
|
|
|
98
106
|
def self.build(context)
|
|
99
107
|
Aws::Kinesis::EndpointParameters.create(
|
|
100
108
|
context.config,
|
|
109
|
+
stream_id: context.params[:stream_id],
|
|
101
110
|
stream_arn: context.params[:stream_arn],
|
|
102
111
|
operation_type: "control",
|
|
103
112
|
)
|
|
@@ -108,6 +117,7 @@ module Aws::Kinesis
|
|
|
108
117
|
def self.build(context)
|
|
109
118
|
Aws::Kinesis::EndpointParameters.create(
|
|
110
119
|
context.config,
|
|
120
|
+
stream_id: context.params[:stream_id],
|
|
111
121
|
stream_arn: context.params[:stream_arn],
|
|
112
122
|
operation_type: "control",
|
|
113
123
|
)
|
|
@@ -118,6 +128,7 @@ module Aws::Kinesis
|
|
|
118
128
|
def self.build(context)
|
|
119
129
|
Aws::Kinesis::EndpointParameters.create(
|
|
120
130
|
context.config,
|
|
131
|
+
stream_id: context.params[:stream_id],
|
|
121
132
|
stream_arn: context.params[:stream_arn],
|
|
122
133
|
operation_type: "data",
|
|
123
134
|
)
|
|
@@ -128,6 +139,7 @@ module Aws::Kinesis
|
|
|
128
139
|
def self.build(context)
|
|
129
140
|
Aws::Kinesis::EndpointParameters.create(
|
|
130
141
|
context.config,
|
|
142
|
+
stream_id: context.params[:stream_id],
|
|
131
143
|
operation_type: "control",
|
|
132
144
|
resource_arn: context.params[:resource_arn],
|
|
133
145
|
)
|
|
@@ -138,6 +150,7 @@ module Aws::Kinesis
|
|
|
138
150
|
def self.build(context)
|
|
139
151
|
Aws::Kinesis::EndpointParameters.create(
|
|
140
152
|
context.config,
|
|
153
|
+
stream_id: context.params[:stream_id],
|
|
141
154
|
stream_arn: context.params[:stream_arn],
|
|
142
155
|
operation_type: "data",
|
|
143
156
|
)
|
|
@@ -148,6 +161,7 @@ module Aws::Kinesis
|
|
|
148
161
|
def self.build(context)
|
|
149
162
|
Aws::Kinesis::EndpointParameters.create(
|
|
150
163
|
context.config,
|
|
164
|
+
stream_id: context.params[:stream_id],
|
|
151
165
|
stream_arn: context.params[:stream_arn],
|
|
152
166
|
operation_type: "control",
|
|
153
167
|
)
|
|
@@ -158,6 +172,7 @@ module Aws::Kinesis
|
|
|
158
172
|
def self.build(context)
|
|
159
173
|
Aws::Kinesis::EndpointParameters.create(
|
|
160
174
|
context.config,
|
|
175
|
+
stream_id: context.params[:stream_id],
|
|
161
176
|
stream_arn: context.params[:stream_arn],
|
|
162
177
|
operation_type: "control",
|
|
163
178
|
)
|
|
@@ -168,6 +183,7 @@ module Aws::Kinesis
|
|
|
168
183
|
def self.build(context)
|
|
169
184
|
Aws::Kinesis::EndpointParameters.create(
|
|
170
185
|
context.config,
|
|
186
|
+
stream_id: context.params[:stream_id],
|
|
171
187
|
stream_arn: context.params[:stream_arn],
|
|
172
188
|
operation_type: "control",
|
|
173
189
|
)
|
|
@@ -178,6 +194,7 @@ module Aws::Kinesis
|
|
|
178
194
|
def self.build(context)
|
|
179
195
|
Aws::Kinesis::EndpointParameters.create(
|
|
180
196
|
context.config,
|
|
197
|
+
stream_id: context.params[:stream_id],
|
|
181
198
|
operation_type: "control",
|
|
182
199
|
resource_arn: context.params[:resource_arn],
|
|
183
200
|
)
|
|
@@ -188,6 +205,7 @@ module Aws::Kinesis
|
|
|
188
205
|
def self.build(context)
|
|
189
206
|
Aws::Kinesis::EndpointParameters.create(
|
|
190
207
|
context.config,
|
|
208
|
+
stream_id: context.params[:stream_id],
|
|
191
209
|
stream_arn: context.params[:stream_arn],
|
|
192
210
|
operation_type: "control",
|
|
193
211
|
)
|
|
@@ -198,6 +216,7 @@ module Aws::Kinesis
|
|
|
198
216
|
def self.build(context)
|
|
199
217
|
Aws::Kinesis::EndpointParameters.create(
|
|
200
218
|
context.config,
|
|
219
|
+
stream_id: context.params[:stream_id],
|
|
201
220
|
stream_arn: context.params[:stream_arn],
|
|
202
221
|
operation_type: "control",
|
|
203
222
|
)
|
|
@@ -208,6 +227,7 @@ module Aws::Kinesis
|
|
|
208
227
|
def self.build(context)
|
|
209
228
|
Aws::Kinesis::EndpointParameters.create(
|
|
210
229
|
context.config,
|
|
230
|
+
stream_id: context.params[:stream_id],
|
|
211
231
|
stream_arn: context.params[:stream_arn],
|
|
212
232
|
operation_type: "data",
|
|
213
233
|
)
|
|
@@ -218,6 +238,7 @@ module Aws::Kinesis
|
|
|
218
238
|
def self.build(context)
|
|
219
239
|
Aws::Kinesis::EndpointParameters.create(
|
|
220
240
|
context.config,
|
|
241
|
+
stream_id: context.params[:stream_id],
|
|
221
242
|
stream_arn: context.params[:stream_arn],
|
|
222
243
|
operation_type: "data",
|
|
223
244
|
)
|
|
@@ -228,6 +249,7 @@ module Aws::Kinesis
|
|
|
228
249
|
def self.build(context)
|
|
229
250
|
Aws::Kinesis::EndpointParameters.create(
|
|
230
251
|
context.config,
|
|
252
|
+
stream_id: context.params[:stream_id],
|
|
231
253
|
operation_type: "control",
|
|
232
254
|
resource_arn: context.params[:resource_arn],
|
|
233
255
|
)
|
|
@@ -238,6 +260,7 @@ module Aws::Kinesis
|
|
|
238
260
|
def self.build(context)
|
|
239
261
|
Aws::Kinesis::EndpointParameters.create(
|
|
240
262
|
context.config,
|
|
263
|
+
stream_id: context.params[:stream_id],
|
|
241
264
|
stream_arn: context.params[:stream_arn],
|
|
242
265
|
operation_type: "control",
|
|
243
266
|
)
|
|
@@ -248,6 +271,7 @@ module Aws::Kinesis
|
|
|
248
271
|
def self.build(context)
|
|
249
272
|
Aws::Kinesis::EndpointParameters.create(
|
|
250
273
|
context.config,
|
|
274
|
+
stream_id: context.params[:stream_id],
|
|
251
275
|
stream_arn: context.params[:stream_arn],
|
|
252
276
|
operation_type: "control",
|
|
253
277
|
)
|
|
@@ -258,6 +282,7 @@ module Aws::Kinesis
|
|
|
258
282
|
def self.build(context)
|
|
259
283
|
Aws::Kinesis::EndpointParameters.create(
|
|
260
284
|
context.config,
|
|
285
|
+
stream_id: context.params[:stream_id],
|
|
261
286
|
stream_arn: context.params[:stream_arn],
|
|
262
287
|
operation_type: "control",
|
|
263
288
|
)
|
|
@@ -268,6 +293,7 @@ module Aws::Kinesis
|
|
|
268
293
|
def self.build(context)
|
|
269
294
|
Aws::Kinesis::EndpointParameters.create(
|
|
270
295
|
context.config,
|
|
296
|
+
stream_id: context.params[:stream_id],
|
|
271
297
|
stream_arn: context.params[:stream_arn],
|
|
272
298
|
operation_type: "control",
|
|
273
299
|
)
|
|
@@ -278,6 +304,7 @@ module Aws::Kinesis
|
|
|
278
304
|
def self.build(context)
|
|
279
305
|
Aws::Kinesis::EndpointParameters.create(
|
|
280
306
|
context.config,
|
|
307
|
+
stream_id: context.params[:stream_id],
|
|
281
308
|
stream_arn: context.params[:stream_arn],
|
|
282
309
|
operation_type: "control",
|
|
283
310
|
)
|
|
@@ -288,6 +315,7 @@ module Aws::Kinesis
|
|
|
288
315
|
def self.build(context)
|
|
289
316
|
Aws::Kinesis::EndpointParameters.create(
|
|
290
317
|
context.config,
|
|
318
|
+
stream_id: context.params[:stream_id],
|
|
291
319
|
operation_type: "data",
|
|
292
320
|
consumer_arn: context.params[:consumer_arn],
|
|
293
321
|
)
|
|
@@ -298,6 +326,7 @@ module Aws::Kinesis
|
|
|
298
326
|
def self.build(context)
|
|
299
327
|
Aws::Kinesis::EndpointParameters.create(
|
|
300
328
|
context.config,
|
|
329
|
+
stream_id: context.params[:stream_id],
|
|
301
330
|
operation_type: "control",
|
|
302
331
|
resource_arn: context.params[:resource_arn],
|
|
303
332
|
)
|
|
@@ -308,6 +337,7 @@ module Aws::Kinesis
|
|
|
308
337
|
def self.build(context)
|
|
309
338
|
Aws::Kinesis::EndpointParameters.create(
|
|
310
339
|
context.config,
|
|
340
|
+
stream_id: context.params[:stream_id],
|
|
311
341
|
operation_type: "control",
|
|
312
342
|
resource_arn: context.params[:resource_arn],
|
|
313
343
|
)
|
|
@@ -318,6 +348,7 @@ module Aws::Kinesis
|
|
|
318
348
|
def self.build(context)
|
|
319
349
|
Aws::Kinesis::EndpointParameters.create(
|
|
320
350
|
context.config,
|
|
351
|
+
stream_id: context.params[:stream_id],
|
|
321
352
|
stream_arn: context.params[:stream_arn],
|
|
322
353
|
operation_type: "control",
|
|
323
354
|
)
|
|
@@ -328,6 +359,7 @@ module Aws::Kinesis
|
|
|
328
359
|
def self.build(context)
|
|
329
360
|
Aws::Kinesis::EndpointParameters.create(
|
|
330
361
|
context.config,
|
|
362
|
+
stream_id: context.params[:stream_id],
|
|
331
363
|
stream_arn: context.params[:stream_arn],
|
|
332
364
|
operation_type: "control",
|
|
333
365
|
)
|
|
@@ -338,6 +370,7 @@ module Aws::Kinesis
|
|
|
338
370
|
def self.build(context)
|
|
339
371
|
Aws::Kinesis::EndpointParameters.create(
|
|
340
372
|
context.config,
|
|
373
|
+
stream_id: context.params[:stream_id],
|
|
341
374
|
stream_arn: context.params[:stream_arn],
|
|
342
375
|
operation_type: "control",
|
|
343
376
|
)
|
|
@@ -348,6 +381,7 @@ module Aws::Kinesis
|
|
|
348
381
|
def self.build(context)
|
|
349
382
|
Aws::Kinesis::EndpointParameters.create(
|
|
350
383
|
context.config,
|
|
384
|
+
stream_id: context.params[:stream_id],
|
|
351
385
|
stream_arn: context.params[:stream_arn],
|
|
352
386
|
operation_type: "control",
|
|
353
387
|
)
|