aws-sdk-ivs 1.44.0 → 1.45.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-ivs/client.rb +278 -6
- data/lib/aws-sdk-ivs/client_api.rb +154 -0
- data/lib/aws-sdk-ivs/endpoints.rb +70 -0
- data/lib/aws-sdk-ivs/plugins/endpoints.rb +10 -0
- data/lib/aws-sdk-ivs/types.rb +366 -11
- data/lib/aws-sdk-ivs.rb +1 -1
- data/sig/client.rbs +59 -0
- data/sig/types.rbs +80 -0
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -82,6 +82,7 @@ module Aws::IVS
|
|
82
82
|
attr_accessor insecure_ingest: bool
|
83
83
|
attr_accessor latency_mode: ("NORMAL" | "LOW")
|
84
84
|
attr_accessor name: ::String
|
85
|
+
attr_accessor playback_restriction_policy_arn: ::String
|
85
86
|
attr_accessor playback_url: ::String
|
86
87
|
attr_accessor preset: ("HIGHER_BANDWIDTH_DELIVERY" | "CONSTRAINED_BANDWIDTH_DELIVERY")
|
87
88
|
attr_accessor recording_configuration_arn: ::String
|
@@ -101,6 +102,7 @@ module Aws::IVS
|
|
101
102
|
attr_accessor insecure_ingest: bool
|
102
103
|
attr_accessor latency_mode: ("NORMAL" | "LOW")
|
103
104
|
attr_accessor name: ::String
|
105
|
+
attr_accessor playback_restriction_policy_arn: ::String
|
104
106
|
attr_accessor preset: ("HIGHER_BANDWIDTH_DELIVERY" | "CONSTRAINED_BANDWIDTH_DELIVERY")
|
105
107
|
attr_accessor recording_configuration_arn: ::String
|
106
108
|
attr_accessor tags: ::Hash[::String, ::String]
|
@@ -118,6 +120,7 @@ module Aws::IVS
|
|
118
120
|
attr_accessor insecure_ingest: bool
|
119
121
|
attr_accessor latency_mode: ("NORMAL" | "LOW")
|
120
122
|
attr_accessor name: ::String
|
123
|
+
attr_accessor playback_restriction_policy_arn: ::String
|
121
124
|
attr_accessor preset: ("HIGHER_BANDWIDTH_DELIVERY" | "CONSTRAINED_BANDWIDTH_DELIVERY")
|
122
125
|
attr_accessor recording_configuration_arn: ::String
|
123
126
|
attr_accessor tags: ::Hash[::String, ::String]
|
@@ -131,6 +134,20 @@ module Aws::IVS
|
|
131
134
|
SENSITIVE: []
|
132
135
|
end
|
133
136
|
|
137
|
+
class CreatePlaybackRestrictionPolicyRequest
|
138
|
+
attr_accessor allowed_countries: ::Array[::String]
|
139
|
+
attr_accessor allowed_origins: ::Array[::String]
|
140
|
+
attr_accessor enable_strict_origin_enforcement: bool
|
141
|
+
attr_accessor name: ::String
|
142
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
143
|
+
SENSITIVE: []
|
144
|
+
end
|
145
|
+
|
146
|
+
class CreatePlaybackRestrictionPolicyResponse
|
147
|
+
attr_accessor playback_restriction_policy: Types::PlaybackRestrictionPolicy
|
148
|
+
SENSITIVE: []
|
149
|
+
end
|
150
|
+
|
134
151
|
class CreateRecordingConfigurationRequest
|
135
152
|
attr_accessor destination_configuration: Types::DestinationConfiguration
|
136
153
|
attr_accessor name: ::String
|
@@ -170,6 +187,11 @@ module Aws::IVS
|
|
170
187
|
class DeletePlaybackKeyPairResponse < Aws::EmptyStructure
|
171
188
|
end
|
172
189
|
|
190
|
+
class DeletePlaybackRestrictionPolicyRequest
|
191
|
+
attr_accessor arn: ::String
|
192
|
+
SENSITIVE: []
|
193
|
+
end
|
194
|
+
|
173
195
|
class DeleteRecordingConfigurationRequest
|
174
196
|
attr_accessor arn: ::String
|
175
197
|
SENSITIVE: []
|
@@ -205,6 +227,16 @@ module Aws::IVS
|
|
205
227
|
SENSITIVE: []
|
206
228
|
end
|
207
229
|
|
230
|
+
class GetPlaybackRestrictionPolicyRequest
|
231
|
+
attr_accessor arn: ::String
|
232
|
+
SENSITIVE: []
|
233
|
+
end
|
234
|
+
|
235
|
+
class GetPlaybackRestrictionPolicyResponse
|
236
|
+
attr_accessor playback_restriction_policy: Types::PlaybackRestrictionPolicy
|
237
|
+
SENSITIVE: []
|
238
|
+
end
|
239
|
+
|
208
240
|
class GetRecordingConfigurationRequest
|
209
241
|
attr_accessor arn: ::String
|
210
242
|
SENSITIVE: []
|
@@ -271,6 +303,7 @@ module Aws::IVS
|
|
271
303
|
|
272
304
|
class ListChannelsRequest
|
273
305
|
attr_accessor filter_by_name: ::String
|
306
|
+
attr_accessor filter_by_playback_restriction_policy_arn: ::String
|
274
307
|
attr_accessor filter_by_recording_configuration_arn: ::String
|
275
308
|
attr_accessor max_results: ::Integer
|
276
309
|
attr_accessor next_token: ::String
|
@@ -295,6 +328,18 @@ module Aws::IVS
|
|
295
328
|
SENSITIVE: []
|
296
329
|
end
|
297
330
|
|
331
|
+
class ListPlaybackRestrictionPoliciesRequest
|
332
|
+
attr_accessor max_results: ::Integer
|
333
|
+
attr_accessor next_token: ::String
|
334
|
+
SENSITIVE: []
|
335
|
+
end
|
336
|
+
|
337
|
+
class ListPlaybackRestrictionPoliciesResponse
|
338
|
+
attr_accessor next_token: ::String
|
339
|
+
attr_accessor playback_restriction_policies: ::Array[Types::PlaybackRestrictionPolicySummary]
|
340
|
+
SENSITIVE: []
|
341
|
+
end
|
342
|
+
|
298
343
|
class ListRecordingConfigurationsRequest
|
299
344
|
attr_accessor max_results: ::Integer
|
300
345
|
attr_accessor next_token: ::String
|
@@ -376,6 +421,26 @@ module Aws::IVS
|
|
376
421
|
SENSITIVE: []
|
377
422
|
end
|
378
423
|
|
424
|
+
class PlaybackRestrictionPolicy
|
425
|
+
attr_accessor allowed_countries: ::Array[::String]
|
426
|
+
attr_accessor allowed_origins: ::Array[::String]
|
427
|
+
attr_accessor arn: ::String
|
428
|
+
attr_accessor enable_strict_origin_enforcement: bool
|
429
|
+
attr_accessor name: ::String
|
430
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
431
|
+
SENSITIVE: []
|
432
|
+
end
|
433
|
+
|
434
|
+
class PlaybackRestrictionPolicySummary
|
435
|
+
attr_accessor allowed_countries: ::Array[::String]
|
436
|
+
attr_accessor allowed_origins: ::Array[::String]
|
437
|
+
attr_accessor arn: ::String
|
438
|
+
attr_accessor enable_strict_origin_enforcement: bool
|
439
|
+
attr_accessor name: ::String
|
440
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
441
|
+
SENSITIVE: []
|
442
|
+
end
|
443
|
+
|
379
444
|
class PutMetadataRequest
|
380
445
|
attr_accessor channel_arn: ::String
|
381
446
|
attr_accessor metadata: ::String
|
@@ -551,6 +616,7 @@ module Aws::IVS
|
|
551
616
|
attr_accessor insecure_ingest: bool
|
552
617
|
attr_accessor latency_mode: ("NORMAL" | "LOW")
|
553
618
|
attr_accessor name: ::String
|
619
|
+
attr_accessor playback_restriction_policy_arn: ::String
|
554
620
|
attr_accessor preset: ("HIGHER_BANDWIDTH_DELIVERY" | "CONSTRAINED_BANDWIDTH_DELIVERY")
|
555
621
|
attr_accessor recording_configuration_arn: ::String
|
556
622
|
attr_accessor type: ("BASIC" | "STANDARD" | "ADVANCED_SD" | "ADVANCED_HD")
|
@@ -562,6 +628,20 @@ module Aws::IVS
|
|
562
628
|
SENSITIVE: []
|
563
629
|
end
|
564
630
|
|
631
|
+
class UpdatePlaybackRestrictionPolicyRequest
|
632
|
+
attr_accessor allowed_countries: ::Array[::String]
|
633
|
+
attr_accessor allowed_origins: ::Array[::String]
|
634
|
+
attr_accessor arn: ::String
|
635
|
+
attr_accessor enable_strict_origin_enforcement: bool
|
636
|
+
attr_accessor name: ::String
|
637
|
+
SENSITIVE: []
|
638
|
+
end
|
639
|
+
|
640
|
+
class UpdatePlaybackRestrictionPolicyResponse
|
641
|
+
attr_accessor playback_restriction_policy: Types::PlaybackRestrictionPolicy
|
642
|
+
SENSITIVE: []
|
643
|
+
end
|
644
|
+
|
565
645
|
class ValidationException
|
566
646
|
attr_accessor exception_message: ::String
|
567
647
|
SENSITIVE: []
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ivs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.45.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-01
|
11
|
+
date: 2024-02-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|