aws-sdk-ivsrealtime 1.26.0 → 1.27.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-ivsrealtime/customizations'
53
53
  # @!group service
54
54
  module Aws::IVSRealTime
55
55
 
56
- GEM_VERSION = '1.26.0'
56
+ GEM_VERSION = '1.27.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -91,6 +91,22 @@ module Aws
91
91
  ) -> _CreateEncoderConfigurationResponseSuccess
92
92
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEncoderConfigurationResponseSuccess
93
93
 
94
+ interface _CreateIngestConfigurationResponseSuccess
95
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateIngestConfigurationResponse]
96
+ def ingest_configuration: () -> Types::IngestConfiguration
97
+ end
98
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#create_ingest_configuration-instance_method
99
+ def create_ingest_configuration: (
100
+ ?name: ::String,
101
+ ?stage_arn: ::String,
102
+ ?user_id: ::String,
103
+ ?attributes: Hash[::String, ::String],
104
+ ingest_protocol: ("RTMP" | "RTMPS"),
105
+ ?insecure_ingest: bool,
106
+ ?tags: Hash[::String, ::String]
107
+ ) -> _CreateIngestConfigurationResponseSuccess
108
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIngestConfigurationResponseSuccess
109
+
94
110
  interface _CreateParticipantTokenResponseSuccess
95
111
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateParticipantTokenResponse]
96
112
  def participant_token: () -> Types::ParticipantToken
@@ -152,6 +168,16 @@ module Aws
152
168
  ) -> _DeleteEncoderConfigurationResponseSuccess
153
169
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEncoderConfigurationResponseSuccess
154
170
 
171
+ interface _DeleteIngestConfigurationResponseSuccess
172
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteIngestConfigurationResponse]
173
+ end
174
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#delete_ingest_configuration-instance_method
175
+ def delete_ingest_configuration: (
176
+ arn: ::String,
177
+ ?force: bool
178
+ ) -> _DeleteIngestConfigurationResponseSuccess
179
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteIngestConfigurationResponseSuccess
180
+
155
181
  interface _DeletePublicKeyResponseSuccess
156
182
  include ::Seahorse::Client::_ResponseSuccess[Types::DeletePublicKeyResponse]
157
183
  end
@@ -210,6 +236,16 @@ module Aws
210
236
  ) -> _GetEncoderConfigurationResponseSuccess
211
237
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEncoderConfigurationResponseSuccess
212
238
 
239
+ interface _GetIngestConfigurationResponseSuccess
240
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetIngestConfigurationResponse]
241
+ def ingest_configuration: () -> Types::IngestConfiguration
242
+ end
243
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#get_ingest_configuration-instance_method
244
+ def get_ingest_configuration: (
245
+ arn: ::String
246
+ ) -> _GetIngestConfigurationResponseSuccess
247
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIngestConfigurationResponseSuccess
248
+
213
249
  interface _GetParticipantResponseSuccess
214
250
  include ::Seahorse::Client::_ResponseSuccess[Types::GetParticipantResponse]
215
251
  def participant: () -> Types::Participant
@@ -301,6 +337,20 @@ module Aws
301
337
  ) -> _ListEncoderConfigurationsResponseSuccess
302
338
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEncoderConfigurationsResponseSuccess
303
339
 
340
+ interface _ListIngestConfigurationsResponseSuccess
341
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListIngestConfigurationsResponse]
342
+ def ingest_configurations: () -> ::Array[Types::IngestConfigurationSummary]
343
+ def next_token: () -> ::String
344
+ end
345
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#list_ingest_configurations-instance_method
346
+ def list_ingest_configurations: (
347
+ ?filter_by_stage_arn: ::String,
348
+ ?filter_by_state: ("ACTIVE" | "INACTIVE"),
349
+ ?next_token: ::String,
350
+ ?max_results: ::Integer
351
+ ) -> _ListIngestConfigurationsResponseSuccess
352
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIngestConfigurationsResponseSuccess
353
+
304
354
  interface _ListParticipantEventsResponseSuccess
305
355
  include ::Seahorse::Client::_ResponseSuccess[Types::ListParticipantEventsResponse]
306
356
  def events: () -> ::Array[Types::Event]
@@ -471,6 +521,17 @@ module Aws
471
521
  ) -> _UntagResourceResponseSuccess
472
522
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
473
523
 
524
+ interface _UpdateIngestConfigurationResponseSuccess
525
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateIngestConfigurationResponse]
526
+ def ingest_configuration: () -> Types::IngestConfiguration
527
+ end
528
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#update_ingest_configuration-instance_method
529
+ def update_ingest_configuration: (
530
+ arn: ::String,
531
+ ?stage_arn: ::String
532
+ ) -> _UpdateIngestConfigurationResponseSuccess
533
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateIngestConfigurationResponseSuccess
534
+
474
535
  interface _UpdateStageResponseSuccess
475
536
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateStageResponse]
476
537
  def stage: () -> Types::Stage
data/sig/types.rbs CHANGED
@@ -65,6 +65,22 @@ module Aws::IVSRealTime
65
65
  SENSITIVE: []
66
66
  end
67
67
 
68
+ class CreateIngestConfigurationRequest
69
+ attr_accessor name: ::String
70
+ attr_accessor stage_arn: ::String
71
+ attr_accessor user_id: ::String
72
+ attr_accessor attributes: ::Hash[::String, ::String]
73
+ attr_accessor ingest_protocol: ("RTMP" | "RTMPS")
74
+ attr_accessor insecure_ingest: bool
75
+ attr_accessor tags: ::Hash[::String, ::String]
76
+ SENSITIVE: []
77
+ end
78
+
79
+ class CreateIngestConfigurationResponse
80
+ attr_accessor ingest_configuration: Types::IngestConfiguration
81
+ SENSITIVE: []
82
+ end
83
+
68
84
  class CreateParticipantTokenRequest
69
85
  attr_accessor stage_arn: ::String
70
86
  attr_accessor duration: ::Integer
@@ -113,6 +129,15 @@ module Aws::IVSRealTime
113
129
  class DeleteEncoderConfigurationResponse < Aws::EmptyStructure
114
130
  end
115
131
 
132
+ class DeleteIngestConfigurationRequest
133
+ attr_accessor arn: ::String
134
+ attr_accessor force: bool
135
+ SENSITIVE: []
136
+ end
137
+
138
+ class DeleteIngestConfigurationResponse < Aws::EmptyStructure
139
+ end
140
+
116
141
  class DeletePublicKeyRequest
117
142
  attr_accessor arn: ::String
118
143
  SENSITIVE: []
@@ -197,7 +222,7 @@ module Aws::IVSRealTime
197
222
  attr_accessor participant_id: ::String
198
223
  attr_accessor event_time: ::Time
199
224
  attr_accessor remote_participant_id: ::String
200
- attr_accessor error_code: ("INSUFFICIENT_CAPABILITIES" | "QUOTA_EXCEEDED" | "PUBLISHER_NOT_FOUND")
225
+ attr_accessor error_code: ("INSUFFICIENT_CAPABILITIES" | "QUOTA_EXCEEDED" | "PUBLISHER_NOT_FOUND" | "BITRATE_EXCEEDED" | "RESOLUTION_EXCEEDED" | "STREAM_DURATION_EXCEEDED" | "INVALID_AUDIO_CODEC" | "INVALID_VIDEO_CODEC" | "INVALID_PROTOCOL" | "INVALID_STREAM_KEY" | "REUSE_OF_STREAM_KEY")
201
226
  SENSITIVE: []
202
227
  end
203
228
 
@@ -221,6 +246,16 @@ module Aws::IVSRealTime
221
246
  SENSITIVE: []
222
247
  end
223
248
 
249
+ class GetIngestConfigurationRequest
250
+ attr_accessor arn: ::String
251
+ SENSITIVE: []
252
+ end
253
+
254
+ class GetIngestConfigurationResponse
255
+ attr_accessor ingest_configuration: Types::IngestConfiguration
256
+ SENSITIVE: []
257
+ end
258
+
224
259
  class GetParticipantRequest
225
260
  attr_accessor stage_arn: ::String
226
261
  attr_accessor session_id: ::String
@@ -295,6 +330,31 @@ module Aws::IVSRealTime
295
330
  SENSITIVE: []
296
331
  end
297
332
 
333
+ class IngestConfiguration
334
+ attr_accessor name: ::String
335
+ attr_accessor arn: ::String
336
+ attr_accessor ingest_protocol: ("RTMP" | "RTMPS")
337
+ attr_accessor stream_key: ::String
338
+ attr_accessor stage_arn: ::String
339
+ attr_accessor participant_id: ::String
340
+ attr_accessor state: ("ACTIVE" | "INACTIVE")
341
+ attr_accessor user_id: ::String
342
+ attr_accessor attributes: ::Hash[::String, ::String]
343
+ attr_accessor tags: ::Hash[::String, ::String]
344
+ SENSITIVE: [:stream_key]
345
+ end
346
+
347
+ class IngestConfigurationSummary
348
+ attr_accessor name: ::String
349
+ attr_accessor arn: ::String
350
+ attr_accessor ingest_protocol: ("RTMP" | "RTMPS")
351
+ attr_accessor stage_arn: ::String
352
+ attr_accessor participant_id: ::String
353
+ attr_accessor state: ("ACTIVE" | "INACTIVE")
354
+ attr_accessor user_id: ::String
355
+ SENSITIVE: []
356
+ end
357
+
298
358
  class InternalServerException
299
359
  attr_accessor exception_message: ::String
300
360
  SENSITIVE: []
@@ -332,6 +392,20 @@ module Aws::IVSRealTime
332
392
  SENSITIVE: []
333
393
  end
334
394
 
395
+ class ListIngestConfigurationsRequest
396
+ attr_accessor filter_by_stage_arn: ::String
397
+ attr_accessor filter_by_state: ("ACTIVE" | "INACTIVE")
398
+ attr_accessor next_token: ::String
399
+ attr_accessor max_results: ::Integer
400
+ SENSITIVE: []
401
+ end
402
+
403
+ class ListIngestConfigurationsResponse
404
+ attr_accessor ingest_configurations: ::Array[Types::IngestConfigurationSummary]
405
+ attr_accessor next_token: ::String
406
+ SENSITIVE: []
407
+ end
408
+
335
409
  class ListParticipantEventsRequest
336
410
  attr_accessor stage_arn: ::String
337
411
  attr_accessor session_id: ::String
@@ -440,6 +514,7 @@ module Aws::IVSRealTime
440
514
  attr_accessor recording_s3_bucket_name: ::String
441
515
  attr_accessor recording_s3_prefix: ::String
442
516
  attr_accessor recording_state: ("STARTING" | "ACTIVE" | "STOPPING" | "STOPPED" | "FAILED" | "DISABLED")
517
+ attr_accessor protocol: ("UNKNOWN" | "WHIP" | "RTMP" | "RTMPS")
443
518
  SENSITIVE: []
444
519
  end
445
520
 
@@ -552,6 +627,8 @@ module Aws::IVSRealTime
552
627
  class StageEndpoints
553
628
  attr_accessor events: ::String
554
629
  attr_accessor whip: ::String
630
+ attr_accessor rtmp: ::String
631
+ attr_accessor rtmps: ::String
555
632
  SENSITIVE: []
556
633
  end
557
634
 
@@ -633,6 +710,17 @@ module Aws::IVSRealTime
633
710
  class UntagResourceResponse < Aws::EmptyStructure
634
711
  end
635
712
 
713
+ class UpdateIngestConfigurationRequest
714
+ attr_accessor arn: ::String
715
+ attr_accessor stage_arn: ::String
716
+ SENSITIVE: []
717
+ end
718
+
719
+ class UpdateIngestConfigurationResponse
720
+ attr_accessor ingest_configuration: Types::IngestConfiguration
721
+ SENSITIVE: []
722
+ end
723
+
636
724
  class UpdateStageRequest
637
725
  attr_accessor arn: ::String
638
726
  attr_accessor name: ::String
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.26.0
4
+ version: 1.27.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-03 00:00:00.000000000 Z
11
+ date: 2024-09-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core