aws-sdk-ivsrealtime 1.14.0 → 1.16.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 ADDED
@@ -0,0 +1,582 @@
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::IVSRealTime
9
+ module Types
10
+
11
+ class AccessDeniedException
12
+ attr_accessor exception_message: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class ChannelDestinationConfiguration
17
+ attr_accessor channel_arn: ::String
18
+ attr_accessor encoder_configuration_arn: ::String
19
+ SENSITIVE: []
20
+ end
21
+
22
+ class Composition
23
+ attr_accessor arn: ::String
24
+ attr_accessor destinations: ::Array[Types::Destination]
25
+ attr_accessor end_time: ::Time
26
+ attr_accessor layout: Types::LayoutConfiguration
27
+ attr_accessor stage_arn: ::String
28
+ attr_accessor start_time: ::Time
29
+ attr_accessor state: ("STARTING" | "ACTIVE" | "STOPPING" | "FAILED" | "STOPPED")
30
+ attr_accessor tags: ::Hash[::String, ::String]
31
+ SENSITIVE: []
32
+ end
33
+
34
+ class CompositionSummary
35
+ attr_accessor arn: ::String
36
+ attr_accessor destinations: ::Array[Types::DestinationSummary]
37
+ attr_accessor end_time: ::Time
38
+ attr_accessor stage_arn: ::String
39
+ attr_accessor start_time: ::Time
40
+ attr_accessor state: ("STARTING" | "ACTIVE" | "STOPPING" | "FAILED" | "STOPPED")
41
+ attr_accessor tags: ::Hash[::String, ::String]
42
+ SENSITIVE: []
43
+ end
44
+
45
+ class ConflictException
46
+ attr_accessor exception_message: ::String
47
+ SENSITIVE: []
48
+ end
49
+
50
+ class CreateEncoderConfigurationRequest
51
+ attr_accessor name: ::String
52
+ attr_accessor tags: ::Hash[::String, ::String]
53
+ attr_accessor video: Types::Video
54
+ SENSITIVE: []
55
+ end
56
+
57
+ class CreateEncoderConfigurationResponse
58
+ attr_accessor encoder_configuration: Types::EncoderConfiguration
59
+ SENSITIVE: []
60
+ end
61
+
62
+ class CreateParticipantTokenRequest
63
+ attr_accessor attributes: ::Hash[::String, ::String]
64
+ attr_accessor capabilities: ::Array[("PUBLISH" | "SUBSCRIBE")]
65
+ attr_accessor duration: ::Integer
66
+ attr_accessor stage_arn: ::String
67
+ attr_accessor user_id: ::String
68
+ SENSITIVE: []
69
+ end
70
+
71
+ class CreateParticipantTokenResponse
72
+ attr_accessor participant_token: Types::ParticipantToken
73
+ SENSITIVE: []
74
+ end
75
+
76
+ class CreateStageRequest
77
+ attr_accessor name: ::String
78
+ attr_accessor participant_token_configurations: ::Array[Types::ParticipantTokenConfiguration]
79
+ attr_accessor tags: ::Hash[::String, ::String]
80
+ SENSITIVE: []
81
+ end
82
+
83
+ class CreateStageResponse
84
+ attr_accessor participant_tokens: ::Array[Types::ParticipantToken]
85
+ attr_accessor stage: Types::Stage
86
+ SENSITIVE: []
87
+ end
88
+
89
+ class CreateStorageConfigurationRequest
90
+ attr_accessor name: ::String
91
+ attr_accessor s3: Types::S3StorageConfiguration
92
+ attr_accessor tags: ::Hash[::String, ::String]
93
+ SENSITIVE: []
94
+ end
95
+
96
+ class CreateStorageConfigurationResponse
97
+ attr_accessor storage_configuration: Types::StorageConfiguration
98
+ SENSITIVE: []
99
+ end
100
+
101
+ class DeleteEncoderConfigurationRequest
102
+ attr_accessor arn: ::String
103
+ SENSITIVE: []
104
+ end
105
+
106
+ class DeleteEncoderConfigurationResponse < Aws::EmptyStructure
107
+ end
108
+
109
+ class DeleteStageRequest
110
+ attr_accessor arn: ::String
111
+ SENSITIVE: []
112
+ end
113
+
114
+ class DeleteStageResponse < Aws::EmptyStructure
115
+ end
116
+
117
+ class DeleteStorageConfigurationRequest
118
+ attr_accessor arn: ::String
119
+ SENSITIVE: []
120
+ end
121
+
122
+ class DeleteStorageConfigurationResponse < Aws::EmptyStructure
123
+ end
124
+
125
+ class Destination
126
+ attr_accessor configuration: Types::DestinationConfiguration
127
+ attr_accessor detail: Types::DestinationDetail
128
+ attr_accessor end_time: ::Time
129
+ attr_accessor id: ::String
130
+ attr_accessor start_time: ::Time
131
+ attr_accessor state: ("STARTING" | "ACTIVE" | "STOPPING" | "RECONNECTING" | "FAILED" | "STOPPED")
132
+ SENSITIVE: []
133
+ end
134
+
135
+ class DestinationConfiguration
136
+ attr_accessor channel: Types::ChannelDestinationConfiguration
137
+ attr_accessor name: ::String
138
+ attr_accessor s3: Types::S3DestinationConfiguration
139
+ SENSITIVE: []
140
+ end
141
+
142
+ class DestinationDetail
143
+ attr_accessor s3: Types::S3Detail
144
+ SENSITIVE: []
145
+ end
146
+
147
+ class DestinationSummary
148
+ attr_accessor end_time: ::Time
149
+ attr_accessor id: ::String
150
+ attr_accessor start_time: ::Time
151
+ attr_accessor state: ("STARTING" | "ACTIVE" | "STOPPING" | "RECONNECTING" | "FAILED" | "STOPPED")
152
+ SENSITIVE: []
153
+ end
154
+
155
+ class DisconnectParticipantRequest
156
+ attr_accessor participant_id: ::String
157
+ attr_accessor reason: ::String
158
+ attr_accessor stage_arn: ::String
159
+ SENSITIVE: []
160
+ end
161
+
162
+ class DisconnectParticipantResponse < Aws::EmptyStructure
163
+ end
164
+
165
+ class EncoderConfiguration
166
+ attr_accessor arn: ::String
167
+ attr_accessor name: ::String
168
+ attr_accessor tags: ::Hash[::String, ::String]
169
+ attr_accessor video: Types::Video
170
+ SENSITIVE: []
171
+ end
172
+
173
+ class EncoderConfigurationSummary
174
+ attr_accessor arn: ::String
175
+ attr_accessor name: ::String
176
+ attr_accessor tags: ::Hash[::String, ::String]
177
+ SENSITIVE: []
178
+ end
179
+
180
+ class Event
181
+ attr_accessor error_code: ("INSUFFICIENT_CAPABILITIES" | "QUOTA_EXCEEDED" | "PUBLISHER_NOT_FOUND")
182
+ attr_accessor event_time: ::Time
183
+ attr_accessor name: ("JOINED" | "LEFT" | "PUBLISH_STARTED" | "PUBLISH_STOPPED" | "SUBSCRIBE_STARTED" | "SUBSCRIBE_STOPPED" | "PUBLISH_ERROR" | "SUBSCRIBE_ERROR" | "JOIN_ERROR")
184
+ attr_accessor participant_id: ::String
185
+ attr_accessor remote_participant_id: ::String
186
+ SENSITIVE: []
187
+ end
188
+
189
+ class GetCompositionRequest
190
+ attr_accessor arn: ::String
191
+ SENSITIVE: []
192
+ end
193
+
194
+ class GetCompositionResponse
195
+ attr_accessor composition: Types::Composition
196
+ SENSITIVE: []
197
+ end
198
+
199
+ class GetEncoderConfigurationRequest
200
+ attr_accessor arn: ::String
201
+ SENSITIVE: []
202
+ end
203
+
204
+ class GetEncoderConfigurationResponse
205
+ attr_accessor encoder_configuration: Types::EncoderConfiguration
206
+ SENSITIVE: []
207
+ end
208
+
209
+ class GetParticipantRequest
210
+ attr_accessor participant_id: ::String
211
+ attr_accessor session_id: ::String
212
+ attr_accessor stage_arn: ::String
213
+ SENSITIVE: []
214
+ end
215
+
216
+ class GetParticipantResponse
217
+ attr_accessor participant: Types::Participant
218
+ SENSITIVE: []
219
+ end
220
+
221
+ class GetStageRequest
222
+ attr_accessor arn: ::String
223
+ SENSITIVE: []
224
+ end
225
+
226
+ class GetStageResponse
227
+ attr_accessor stage: Types::Stage
228
+ SENSITIVE: []
229
+ end
230
+
231
+ class GetStageSessionRequest
232
+ attr_accessor session_id: ::String
233
+ attr_accessor stage_arn: ::String
234
+ SENSITIVE: []
235
+ end
236
+
237
+ class GetStageSessionResponse
238
+ attr_accessor stage_session: Types::StageSession
239
+ SENSITIVE: []
240
+ end
241
+
242
+ class GetStorageConfigurationRequest
243
+ attr_accessor arn: ::String
244
+ SENSITIVE: []
245
+ end
246
+
247
+ class GetStorageConfigurationResponse
248
+ attr_accessor storage_configuration: Types::StorageConfiguration
249
+ SENSITIVE: []
250
+ end
251
+
252
+ class GridConfiguration
253
+ attr_accessor featured_participant_attribute: ::String
254
+ attr_accessor grid_gap: ::Integer
255
+ attr_accessor omit_stopped_video: bool
256
+ attr_accessor video_aspect_ratio: ("AUTO" | "VIDEO" | "SQUARE" | "PORTRAIT")
257
+ attr_accessor video_fill_mode: ("FILL" | "COVER" | "CONTAIN")
258
+ SENSITIVE: []
259
+ end
260
+
261
+ class InternalServerException
262
+ attr_accessor exception_message: ::String
263
+ SENSITIVE: []
264
+ end
265
+
266
+ class LayoutConfiguration
267
+ attr_accessor grid: Types::GridConfiguration
268
+ attr_accessor pip: Types::PipConfiguration
269
+ SENSITIVE: []
270
+ end
271
+
272
+ class ListCompositionsRequest
273
+ attr_accessor filter_by_encoder_configuration_arn: ::String
274
+ attr_accessor filter_by_stage_arn: ::String
275
+ attr_accessor max_results: ::Integer
276
+ attr_accessor next_token: ::String
277
+ SENSITIVE: []
278
+ end
279
+
280
+ class ListCompositionsResponse
281
+ attr_accessor compositions: ::Array[Types::CompositionSummary]
282
+ attr_accessor next_token: ::String
283
+ SENSITIVE: []
284
+ end
285
+
286
+ class ListEncoderConfigurationsRequest
287
+ attr_accessor max_results: ::Integer
288
+ attr_accessor next_token: ::String
289
+ SENSITIVE: []
290
+ end
291
+
292
+ class ListEncoderConfigurationsResponse
293
+ attr_accessor encoder_configurations: ::Array[Types::EncoderConfigurationSummary]
294
+ attr_accessor next_token: ::String
295
+ SENSITIVE: []
296
+ end
297
+
298
+ class ListParticipantEventsRequest
299
+ attr_accessor max_results: ::Integer
300
+ attr_accessor next_token: ::String
301
+ attr_accessor participant_id: ::String
302
+ attr_accessor session_id: ::String
303
+ attr_accessor stage_arn: ::String
304
+ SENSITIVE: []
305
+ end
306
+
307
+ class ListParticipantEventsResponse
308
+ attr_accessor events: ::Array[Types::Event]
309
+ attr_accessor next_token: ::String
310
+ SENSITIVE: []
311
+ end
312
+
313
+ class ListParticipantsRequest
314
+ attr_accessor filter_by_published: bool
315
+ attr_accessor filter_by_state: ("CONNECTED" | "DISCONNECTED")
316
+ attr_accessor filter_by_user_id: ::String
317
+ attr_accessor max_results: ::Integer
318
+ attr_accessor next_token: ::String
319
+ attr_accessor session_id: ::String
320
+ attr_accessor stage_arn: ::String
321
+ SENSITIVE: []
322
+ end
323
+
324
+ class ListParticipantsResponse
325
+ attr_accessor next_token: ::String
326
+ attr_accessor participants: ::Array[Types::ParticipantSummary]
327
+ SENSITIVE: []
328
+ end
329
+
330
+ class ListStageSessionsRequest
331
+ attr_accessor max_results: ::Integer
332
+ attr_accessor next_token: ::String
333
+ attr_accessor stage_arn: ::String
334
+ SENSITIVE: []
335
+ end
336
+
337
+ class ListStageSessionsResponse
338
+ attr_accessor next_token: ::String
339
+ attr_accessor stage_sessions: ::Array[Types::StageSessionSummary]
340
+ SENSITIVE: []
341
+ end
342
+
343
+ class ListStagesRequest
344
+ attr_accessor max_results: ::Integer
345
+ attr_accessor next_token: ::String
346
+ SENSITIVE: []
347
+ end
348
+
349
+ class ListStagesResponse
350
+ attr_accessor next_token: ::String
351
+ attr_accessor stages: ::Array[Types::StageSummary]
352
+ SENSITIVE: []
353
+ end
354
+
355
+ class ListStorageConfigurationsRequest
356
+ attr_accessor max_results: ::Integer
357
+ attr_accessor next_token: ::String
358
+ SENSITIVE: []
359
+ end
360
+
361
+ class ListStorageConfigurationsResponse
362
+ attr_accessor next_token: ::String
363
+ attr_accessor storage_configurations: ::Array[Types::StorageConfigurationSummary]
364
+ SENSITIVE: []
365
+ end
366
+
367
+ class ListTagsForResourceRequest
368
+ attr_accessor resource_arn: ::String
369
+ SENSITIVE: []
370
+ end
371
+
372
+ class ListTagsForResourceResponse
373
+ attr_accessor tags: ::Hash[::String, ::String]
374
+ SENSITIVE: []
375
+ end
376
+
377
+ class Participant
378
+ attr_accessor attributes: ::Hash[::String, ::String]
379
+ attr_accessor browser_name: ::String
380
+ attr_accessor browser_version: ::String
381
+ attr_accessor first_join_time: ::Time
382
+ attr_accessor isp_name: ::String
383
+ attr_accessor os_name: ::String
384
+ attr_accessor os_version: ::String
385
+ attr_accessor participant_id: ::String
386
+ attr_accessor published: bool
387
+ attr_accessor sdk_version: ::String
388
+ attr_accessor state: ("CONNECTED" | "DISCONNECTED")
389
+ attr_accessor user_id: ::String
390
+ SENSITIVE: []
391
+ end
392
+
393
+ class ParticipantSummary
394
+ attr_accessor first_join_time: ::Time
395
+ attr_accessor participant_id: ::String
396
+ attr_accessor published: bool
397
+ attr_accessor state: ("CONNECTED" | "DISCONNECTED")
398
+ attr_accessor user_id: ::String
399
+ SENSITIVE: []
400
+ end
401
+
402
+ class ParticipantToken
403
+ attr_accessor attributes: ::Hash[::String, ::String]
404
+ attr_accessor capabilities: ::Array[("PUBLISH" | "SUBSCRIBE")]
405
+ attr_accessor duration: ::Integer
406
+ attr_accessor expiration_time: ::Time
407
+ attr_accessor participant_id: ::String
408
+ attr_accessor token: ::String
409
+ attr_accessor user_id: ::String
410
+ SENSITIVE: [:token]
411
+ end
412
+
413
+ class ParticipantTokenConfiguration
414
+ attr_accessor attributes: ::Hash[::String, ::String]
415
+ attr_accessor capabilities: ::Array[("PUBLISH" | "SUBSCRIBE")]
416
+ attr_accessor duration: ::Integer
417
+ attr_accessor user_id: ::String
418
+ SENSITIVE: []
419
+ end
420
+
421
+ class PendingVerification
422
+ attr_accessor exception_message: ::String
423
+ SENSITIVE: []
424
+ end
425
+
426
+ class PipConfiguration
427
+ attr_accessor featured_participant_attribute: ::String
428
+ attr_accessor grid_gap: ::Integer
429
+ attr_accessor omit_stopped_video: bool
430
+ attr_accessor pip_behavior: ("STATIC" | "DYNAMIC")
431
+ attr_accessor pip_height: ::Integer
432
+ attr_accessor pip_offset: ::Integer
433
+ attr_accessor pip_participant_attribute: ::String
434
+ attr_accessor pip_position: ("TOP_LEFT" | "TOP_RIGHT" | "BOTTOM_LEFT" | "BOTTOM_RIGHT")
435
+ attr_accessor pip_width: ::Integer
436
+ attr_accessor video_fill_mode: ("FILL" | "COVER" | "CONTAIN")
437
+ SENSITIVE: []
438
+ end
439
+
440
+ class RecordingConfiguration
441
+ attr_accessor format: ("HLS")
442
+ SENSITIVE: []
443
+ end
444
+
445
+ class ResourceNotFoundException
446
+ attr_accessor exception_message: ::String
447
+ SENSITIVE: []
448
+ end
449
+
450
+ class S3DestinationConfiguration
451
+ attr_accessor encoder_configuration_arns: ::Array[::String]
452
+ attr_accessor recording_configuration: Types::RecordingConfiguration
453
+ attr_accessor storage_configuration_arn: ::String
454
+ SENSITIVE: []
455
+ end
456
+
457
+ class S3Detail
458
+ attr_accessor recording_prefix: ::String
459
+ SENSITIVE: []
460
+ end
461
+
462
+ class S3StorageConfiguration
463
+ attr_accessor bucket_name: ::String
464
+ SENSITIVE: []
465
+ end
466
+
467
+ class ServiceQuotaExceededException
468
+ attr_accessor exception_message: ::String
469
+ SENSITIVE: []
470
+ end
471
+
472
+ class Stage
473
+ attr_accessor active_session_id: ::String
474
+ attr_accessor arn: ::String
475
+ attr_accessor name: ::String
476
+ attr_accessor tags: ::Hash[::String, ::String]
477
+ SENSITIVE: []
478
+ end
479
+
480
+ class StageSession
481
+ attr_accessor end_time: ::Time
482
+ attr_accessor session_id: ::String
483
+ attr_accessor start_time: ::Time
484
+ SENSITIVE: []
485
+ end
486
+
487
+ class StageSessionSummary
488
+ attr_accessor end_time: ::Time
489
+ attr_accessor session_id: ::String
490
+ attr_accessor start_time: ::Time
491
+ SENSITIVE: []
492
+ end
493
+
494
+ class StageSummary
495
+ attr_accessor active_session_id: ::String
496
+ attr_accessor arn: ::String
497
+ attr_accessor name: ::String
498
+ attr_accessor tags: ::Hash[::String, ::String]
499
+ SENSITIVE: []
500
+ end
501
+
502
+ class StartCompositionRequest
503
+ attr_accessor destinations: ::Array[Types::DestinationConfiguration]
504
+ attr_accessor idempotency_token: ::String
505
+ attr_accessor layout: Types::LayoutConfiguration
506
+ attr_accessor stage_arn: ::String
507
+ attr_accessor tags: ::Hash[::String, ::String]
508
+ SENSITIVE: []
509
+ end
510
+
511
+ class StartCompositionResponse
512
+ attr_accessor composition: Types::Composition
513
+ SENSITIVE: []
514
+ end
515
+
516
+ class StopCompositionRequest
517
+ attr_accessor arn: ::String
518
+ SENSITIVE: []
519
+ end
520
+
521
+ class StopCompositionResponse < Aws::EmptyStructure
522
+ end
523
+
524
+ class StorageConfiguration
525
+ attr_accessor arn: ::String
526
+ attr_accessor name: ::String
527
+ attr_accessor s3: Types::S3StorageConfiguration
528
+ attr_accessor tags: ::Hash[::String, ::String]
529
+ SENSITIVE: []
530
+ end
531
+
532
+ class StorageConfigurationSummary
533
+ attr_accessor arn: ::String
534
+ attr_accessor name: ::String
535
+ attr_accessor s3: Types::S3StorageConfiguration
536
+ attr_accessor tags: ::Hash[::String, ::String]
537
+ SENSITIVE: []
538
+ end
539
+
540
+ class TagResourceRequest
541
+ attr_accessor resource_arn: ::String
542
+ attr_accessor tags: ::Hash[::String, ::String]
543
+ SENSITIVE: []
544
+ end
545
+
546
+ class TagResourceResponse < Aws::EmptyStructure
547
+ end
548
+
549
+ class UntagResourceRequest
550
+ attr_accessor resource_arn: ::String
551
+ attr_accessor tag_keys: ::Array[::String]
552
+ SENSITIVE: []
553
+ end
554
+
555
+ class UntagResourceResponse < Aws::EmptyStructure
556
+ end
557
+
558
+ class UpdateStageRequest
559
+ attr_accessor arn: ::String
560
+ attr_accessor name: ::String
561
+ SENSITIVE: []
562
+ end
563
+
564
+ class UpdateStageResponse
565
+ attr_accessor stage: Types::Stage
566
+ SENSITIVE: []
567
+ end
568
+
569
+ class ValidationException
570
+ attr_accessor exception_message: ::String
571
+ SENSITIVE: []
572
+ end
573
+
574
+ class Video
575
+ attr_accessor bitrate: ::Integer
576
+ attr_accessor framerate: ::Float
577
+ attr_accessor height: ::Integer
578
+ attr_accessor width: ::Integer
579
+ SENSITIVE: []
580
+ end
581
+ end
582
+ end
data/sig/waiters.rbs ADDED
@@ -0,0 +1,13 @@
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 IVSRealTime
10
+ module Waiters
11
+ end
12
+ end
13
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ivsrealtime
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.14.0
4
+ version: 1.16.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: 2023-11-28 00:00:00.000000000 Z
11
+ date: 2024-03-13 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.188.0
22
+ version: 3.191.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.188.0
32
+ version: 3.191.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -66,13 +66,18 @@ files:
66
66
  - lib/aws-sdk-ivsrealtime/plugins/endpoints.rb
67
67
  - lib/aws-sdk-ivsrealtime/resource.rb
68
68
  - lib/aws-sdk-ivsrealtime/types.rb
69
+ - sig/client.rbs
70
+ - sig/errors.rbs
71
+ - sig/resource.rbs
72
+ - sig/types.rbs
73
+ - sig/waiters.rbs
69
74
  homepage: https://github.com/aws/aws-sdk-ruby
70
75
  licenses:
71
76
  - Apache-2.0
72
77
  metadata:
73
78
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-ivsrealtime
74
79
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-ivsrealtime/CHANGELOG.md
75
- post_install_message:
80
+ post_install_message:
76
81
  rdoc_options: []
77
82
  require_paths:
78
83
  - lib
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
92
  - !ruby/object:Gem::Version
88
93
  version: '0'
89
94
  requirements: []
90
- rubygems_version: 3.1.6
91
- signing_key:
95
+ rubygems_version: 3.4.10
96
+ signing_key:
92
97
  specification_version: 4
93
98
  summary: AWS SDK for Ruby - ivsrealtime
94
99
  test_files: []