mux_ruby 3.1.0 → 3.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (70) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +2 -2
  3. data/README.md +4 -4
  4. data/docs/Asset.md +1 -1
  5. data/docs/AssetsApi.md +73 -0
  6. data/docs/CreateAssetRequest.md +1 -1
  7. data/docs/CreateLiveStreamRequest.md +4 -2
  8. data/docs/CreatePlaybackRestrictionRequest.md +18 -0
  9. data/docs/CreateSimulcastTargetRequest.md +1 -1
  10. data/docs/CreateTrackRequest.md +1 -1
  11. data/docs/DeliveryUsageApi.md +4 -2
  12. data/docs/DimensionsApi.md +4 -4
  13. data/docs/ErrorsApi.md +4 -4
  14. data/docs/FiltersApi.md +4 -4
  15. data/docs/InputSettings.md +1 -1
  16. data/docs/LiveStream.md +7 -3
  17. data/docs/LiveStreamEmbeddedSubtitleSettings.md +1 -1
  18. data/docs/LiveStreamsApi.md +73 -0
  19. data/docs/MetricsApi.md +18 -18
  20. data/docs/PlaybackRestriction.md +24 -0
  21. data/docs/PlaybackRestrictionResponse.md +15 -0
  22. data/docs/PlaybackRestrictionsApi.md +367 -0
  23. data/docs/RealTimeApi.md +6 -6
  24. data/docs/ReferrerDomainRestriction.md +20 -0
  25. data/docs/SimulcastTarget.md +1 -1
  26. data/docs/Track.md +1 -1
  27. data/docs/UpdateAssetRequest.md +18 -0
  28. data/docs/UpdateLiveStreamRequest.md +22 -0
  29. data/docs/UpdateReferrerDomainRestrictionRequest.md +15 -0
  30. data/docs/VideoViewsApi.md +4 -4
  31. data/gen/generator-config.json +1 -1
  32. data/lib/mux_ruby/api/assets_api.rb +71 -0
  33. data/lib/mux_ruby/api/delivery_usage_api.rb +5 -2
  34. data/lib/mux_ruby/api/dimensions_api.rb +4 -4
  35. data/lib/mux_ruby/api/errors_api.rb +4 -4
  36. data/lib/mux_ruby/api/filters_api.rb +4 -4
  37. data/lib/mux_ruby/api/live_streams_api.rb +71 -0
  38. data/lib/mux_ruby/api/metrics_api.rb +18 -18
  39. data/lib/mux_ruby/api/playback_restrictions_api.rb +345 -0
  40. data/lib/mux_ruby/api/real_time_api.rb +6 -6
  41. data/lib/mux_ruby/api/video_views_api.rb +4 -4
  42. data/lib/mux_ruby/models/asset.rb +1 -1
  43. data/lib/mux_ruby/models/create_asset_request.rb +1 -1
  44. data/lib/mux_ruby/models/create_live_stream_request.rb +47 -3
  45. data/lib/mux_ruby/models/create_playback_restriction_request.rb +218 -0
  46. data/lib/mux_ruby/models/create_simulcast_target_request.rb +1 -1
  47. data/lib/mux_ruby/models/create_track_request.rb +1 -1
  48. data/lib/mux_ruby/models/input_settings.rb +1 -1
  49. data/lib/mux_ruby/models/input_settings_overlay_settings.rb +1 -1
  50. data/lib/mux_ruby/models/live_stream.rb +38 -4
  51. data/lib/mux_ruby/models/live_stream_embedded_subtitle_settings.rb +1 -1
  52. data/lib/mux_ruby/models/playback_restriction.rb +248 -0
  53. data/lib/mux_ruby/models/playback_restriction_response.rb +209 -0
  54. data/lib/mux_ruby/models/referrer_domain_restriction.rb +234 -0
  55. data/lib/mux_ruby/models/simulcast_target.rb +1 -1
  56. data/lib/mux_ruby/models/track.rb +1 -1
  57. data/lib/mux_ruby/models/update_asset_request.rb +219 -0
  58. data/lib/mux_ruby/models/update_live_stream_request.rb +297 -0
  59. data/lib/mux_ruby/models/update_referrer_domain_restriction_request.rb +209 -0
  60. data/lib/mux_ruby/version.rb +1 -1
  61. data/lib/mux_ruby.rb +8 -0
  62. data/spec/api/playback_restrictions_api_spec.rb +97 -0
  63. data/spec/models/create_playback_restriction_request_spec.rb +34 -0
  64. data/spec/models/playback_restriction_response_spec.rb +28 -0
  65. data/spec/models/playback_restriction_spec.rb +52 -0
  66. data/spec/models/referrer_domain_restriction_spec.rb +40 -0
  67. data/spec/models/update_asset_request_spec.rb +34 -0
  68. data/spec/models/update_live_stream_request_spec.rb +50 -0
  69. data/spec/models/update_referrer_domain_restriction_request_spec.rb +28 -0
  70. metadata +129 -97
@@ -0,0 +1,297 @@
1
+ =begin
2
+ #Mux API
3
+
4
+ #Mux is how developers build online video. This API encompasses both Mux Video and Mux Data functionality to help you build your video-related projects better and faster than ever before.
5
+
6
+ The version of the OpenAPI document: v1
7
+ Contact: devex@mux.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.0.1
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module MuxRuby
17
+ class UpdateLiveStreamRequest
18
+ # Arbitrary user-supplied metadata set for the live stream. Max 255 characters. In order to clear this value, the field should be included with an empty-string value.
19
+ attr_accessor :passthrough
20
+
21
+ # Latency is the time from when the streamer transmits a frame of video to when you see it in the player. Set this as an alternative to setting low latency or reduced latency flags. The Low Latency value is a beta feature. Note: Reconnect windows are incompatible with Reduced Latency and Low Latency and will always be set to zero (0) seconds. Read more here: https://mux.com/blog/introducing-low-latency-live-streaming/
22
+ attr_accessor :latency_mode
23
+
24
+ # When live streaming software disconnects from Mux, either intentionally or due to a drop in the network, the Reconnect Window is the time in seconds that Mux should wait for the streaming software to reconnect before considering the live stream finished and completing the recorded asset.
25
+ attr_accessor :reconnect_window
26
+
27
+ class EnumAttributeValidator
28
+ attr_reader :datatype
29
+ attr_reader :allowable_values
30
+
31
+ def initialize(datatype, allowable_values)
32
+ @allowable_values = allowable_values.map do |value|
33
+ case datatype.to_s
34
+ when /Integer/i
35
+ value.to_i
36
+ when /Float/i
37
+ value.to_f
38
+ else
39
+ value
40
+ end
41
+ end
42
+ end
43
+
44
+ def valid?(value)
45
+ !value || allowable_values.include?(value)
46
+ end
47
+ end
48
+
49
+ # Attribute mapping from ruby-style variable name to JSON key.
50
+ def self.attribute_map
51
+ {
52
+ :'passthrough' => :'passthrough',
53
+ :'latency_mode' => :'latency_mode',
54
+ :'reconnect_window' => :'reconnect_window'
55
+ }
56
+ end
57
+
58
+ # Returns all the JSON keys this model knows about
59
+ def self.acceptable_attributes
60
+ attribute_map.values
61
+ end
62
+
63
+ # Attribute type mapping.
64
+ def self.openapi_types
65
+ {
66
+ :'passthrough' => :'String',
67
+ :'latency_mode' => :'String',
68
+ :'reconnect_window' => :'Float'
69
+ }
70
+ end
71
+
72
+ # List of attributes with nullable: true
73
+ def self.openapi_nullable
74
+ Set.new([
75
+ ])
76
+ end
77
+
78
+ # Initializes the object
79
+ # @param [Hash] attributes Model attributes in the form of hash
80
+ def initialize(attributes = {})
81
+ if (!attributes.is_a?(Hash))
82
+ fail ArgumentError, "The input argument (attributes) must be a hash in `MuxRuby::UpdateLiveStreamRequest` initialize method"
83
+ end
84
+
85
+ # check to see if the attribute exists and convert string to symbol for hash key
86
+ attributes = attributes.each_with_object({}) { |(k, v), h|
87
+ if (!self.class.attribute_map.key?(k.to_sym))
88
+ fail ArgumentError, "`#{k}` is not a valid attribute in `MuxRuby::UpdateLiveStreamRequest`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
89
+ end
90
+ h[k.to_sym] = v
91
+ }
92
+
93
+ if attributes.key?(:'passthrough')
94
+ self.passthrough = attributes[:'passthrough']
95
+ end
96
+
97
+ if attributes.key?(:'latency_mode')
98
+ self.latency_mode = attributes[:'latency_mode']
99
+ end
100
+
101
+ if attributes.key?(:'reconnect_window')
102
+ self.reconnect_window = attributes[:'reconnect_window']
103
+ end
104
+ end
105
+
106
+ # Show invalid properties with the reasons. Usually used together with valid?
107
+ # @return Array for valid properties with the reasons
108
+ def list_invalid_properties
109
+ invalid_properties = Array.new
110
+ if !@reconnect_window.nil? && @reconnect_window > 300
111
+ invalid_properties.push('invalid value for "reconnect_window", must be smaller than or equal to 300.')
112
+ end
113
+
114
+ if !@reconnect_window.nil? && @reconnect_window < 0.1
115
+ invalid_properties.push('invalid value for "reconnect_window", must be greater than or equal to 0.1.')
116
+ end
117
+
118
+ invalid_properties
119
+ end
120
+
121
+ # Check to see if the all the properties in the model are valid
122
+ # @return true if the model is valid
123
+ def valid?
124
+ latency_mode_validator = EnumAttributeValidator.new('String', ["low", "reduced", "standard"])
125
+ return false unless latency_mode_validator.valid?(@latency_mode)
126
+ return false if !@reconnect_window.nil? && @reconnect_window > 300
127
+ return false if !@reconnect_window.nil? && @reconnect_window < 0.1
128
+ true
129
+ end
130
+
131
+ # Custom attribute writer method checking allowed values (enum).
132
+ # @param [Object] latency_mode Object to be assigned
133
+ def latency_mode=(latency_mode)
134
+ validator = EnumAttributeValidator.new('String', ["low", "reduced", "standard"])
135
+ unless validator.valid?(latency_mode)
136
+ fail ArgumentError, "invalid value for \"latency_mode\", must be one of #{validator.allowable_values}."
137
+ end
138
+ @latency_mode = latency_mode
139
+ end
140
+
141
+ # Custom attribute writer method with validation
142
+ # @param [Object] reconnect_window Value to be assigned
143
+ def reconnect_window=(reconnect_window)
144
+ if !reconnect_window.nil? && reconnect_window > 300
145
+ fail ArgumentError, 'invalid value for "reconnect_window", must be smaller than or equal to 300.'
146
+ end
147
+
148
+ if !reconnect_window.nil? && reconnect_window < 0.1
149
+ fail ArgumentError, 'invalid value for "reconnect_window", must be greater than or equal to 0.1.'
150
+ end
151
+
152
+ @reconnect_window = reconnect_window
153
+ end
154
+
155
+ # Checks equality by comparing each attribute.
156
+ # @param [Object] Object to be compared
157
+ def ==(o)
158
+ return true if self.equal?(o)
159
+ self.class == o.class &&
160
+ passthrough == o.passthrough &&
161
+ latency_mode == o.latency_mode &&
162
+ reconnect_window == o.reconnect_window
163
+ end
164
+
165
+ # @see the `==` method
166
+ # @param [Object] Object to be compared
167
+ def eql?(o)
168
+ self == o
169
+ end
170
+
171
+ # Calculates hash code according to all attributes.
172
+ # @return [Integer] Hash code
173
+ def hash
174
+ [passthrough, latency_mode, reconnect_window].hash
175
+ end
176
+
177
+ # Builds the object from hash
178
+ # @param [Hash] attributes Model attributes in the form of hash
179
+ # @return [Object] Returns the model itself
180
+ def self.build_from_hash(attributes)
181
+ new.build_from_hash(attributes)
182
+ end
183
+
184
+ # Builds the object from hash
185
+ # @param [Hash] attributes Model attributes in the form of hash
186
+ # @return [Object] Returns the model itself
187
+ def build_from_hash(attributes)
188
+ return nil unless attributes.is_a?(Hash)
189
+ self.class.openapi_types.each_pair do |key, type|
190
+ if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
191
+ self.send("#{key}=", nil)
192
+ elsif type =~ /\AArray<(.*)>/i
193
+ # check to ensure the input is an array given that the attribute
194
+ # is documented as an array but the input is not
195
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
196
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
197
+ end
198
+ elsif !attributes[self.class.attribute_map[key]].nil?
199
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
200
+ end
201
+ end
202
+
203
+ self
204
+ end
205
+
206
+ # Deserializes the data based on type
207
+ # @param string type Data type
208
+ # @param string value Value to be deserialized
209
+ # @return [Object] Deserialized data
210
+ def _deserialize(type, value)
211
+ case type.to_sym
212
+ when :Time
213
+ Time.parse(value)
214
+ when :Date
215
+ Date.parse(value)
216
+ when :String
217
+ value.to_s
218
+ when :Integer
219
+ value.to_i
220
+ when :Float
221
+ value.to_f
222
+ when :Boolean
223
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
224
+ true
225
+ else
226
+ false
227
+ end
228
+ when :Object
229
+ # generic object (usually a Hash), return directly
230
+ value
231
+ when /\AArray<(?<inner_type>.+)>\z/
232
+ inner_type = Regexp.last_match[:inner_type]
233
+ value.map { |v| _deserialize(inner_type, v) }
234
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
235
+ k_type = Regexp.last_match[:k_type]
236
+ v_type = Regexp.last_match[:v_type]
237
+ {}.tap do |hash|
238
+ value.each do |k, v|
239
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
240
+ end
241
+ end
242
+ else # model
243
+ # models (e.g. Pet) or oneOf
244
+ klass = MuxRuby.const_get(type)
245
+ klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
246
+ end
247
+ end
248
+
249
+ # Returns the string representation of the object
250
+ # @return [String] String presentation of the object
251
+ def to_s
252
+ to_hash.to_s
253
+ end
254
+
255
+ # to_body is an alias to to_hash (backward compatibility)
256
+ # @return [Hash] Returns the object in the form of hash
257
+ def to_body
258
+ to_hash
259
+ end
260
+
261
+ # Returns the object in the form of hash
262
+ # @return [Hash] Returns the object in the form of hash
263
+ def to_hash
264
+ hash = {}
265
+ self.class.attribute_map.each_pair do |attr, param|
266
+ value = self.send(attr)
267
+ if value.nil?
268
+ is_nullable = self.class.openapi_nullable.include?(attr)
269
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
270
+ end
271
+
272
+ hash[param] = _to_hash(value)
273
+ end
274
+ hash
275
+ end
276
+
277
+ # Outputs non-array value in the form of hash
278
+ # For object, use to_hash. Otherwise, just return the value
279
+ # @param [Object] value Any valid value
280
+ # @return [Hash] Returns the value in the form of hash
281
+ def _to_hash(value)
282
+ if value.is_a?(Array)
283
+ value.compact.map { |v| _to_hash(v) }
284
+ elsif value.is_a?(Hash)
285
+ {}.tap do |hash|
286
+ value.each { |k, v| hash[k] = _to_hash(v) }
287
+ end
288
+ elsif value.respond_to? :to_hash
289
+ value.to_hash
290
+ else
291
+ value
292
+ end
293
+ end
294
+
295
+ end
296
+
297
+ end
@@ -0,0 +1,209 @@
1
+ =begin
2
+ #Mux API
3
+
4
+ #Mux is how developers build online video. This API encompasses both Mux Video and Mux Data functionality to help you build your video-related projects better and faster than ever before.
5
+
6
+ The version of the OpenAPI document: v1
7
+ Contact: devex@mux.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.0.1
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module MuxRuby
17
+ class UpdateReferrerDomainRestrictionRequest
18
+ # Attribute mapping from ruby-style variable name to JSON key.
19
+ def self.attribute_map
20
+ {
21
+ }
22
+ end
23
+
24
+ # Returns all the JSON keys this model knows about
25
+ def self.acceptable_attributes
26
+ attribute_map.values
27
+ end
28
+
29
+ # Attribute type mapping.
30
+ def self.openapi_types
31
+ {
32
+ }
33
+ end
34
+
35
+ # List of attributes with nullable: true
36
+ def self.openapi_nullable
37
+ Set.new([
38
+ ])
39
+ end
40
+
41
+ # Initializes the object
42
+ # @param [Hash] attributes Model attributes in the form of hash
43
+ def initialize(attributes = {})
44
+ if (!attributes.is_a?(Hash))
45
+ fail ArgumentError, "The input argument (attributes) must be a hash in `MuxRuby::UpdateReferrerDomainRestrictionRequest` initialize method"
46
+ end
47
+
48
+ # check to see if the attribute exists and convert string to symbol for hash key
49
+ attributes = attributes.each_with_object({}) { |(k, v), h|
50
+ if (!self.class.attribute_map.key?(k.to_sym))
51
+ fail ArgumentError, "`#{k}` is not a valid attribute in `MuxRuby::UpdateReferrerDomainRestrictionRequest`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
52
+ end
53
+ h[k.to_sym] = v
54
+ }
55
+ end
56
+
57
+ # Show invalid properties with the reasons. Usually used together with valid?
58
+ # @return Array for valid properties with the reasons
59
+ def list_invalid_properties
60
+ invalid_properties = Array.new
61
+ invalid_properties
62
+ end
63
+
64
+ # Check to see if the all the properties in the model are valid
65
+ # @return true if the model is valid
66
+ def valid?
67
+ true
68
+ end
69
+
70
+ # Checks equality by comparing each attribute.
71
+ # @param [Object] Object to be compared
72
+ def ==(o)
73
+ return true if self.equal?(o)
74
+ self.class == o.class
75
+ end
76
+
77
+ # @see the `==` method
78
+ # @param [Object] Object to be compared
79
+ def eql?(o)
80
+ self == o
81
+ end
82
+
83
+ # Calculates hash code according to all attributes.
84
+ # @return [Integer] Hash code
85
+ def hash
86
+ [].hash
87
+ end
88
+
89
+ # Builds the object from hash
90
+ # @param [Hash] attributes Model attributes in the form of hash
91
+ # @return [Object] Returns the model itself
92
+ def self.build_from_hash(attributes)
93
+ new.build_from_hash(attributes)
94
+ end
95
+
96
+ # Builds the object from hash
97
+ # @param [Hash] attributes Model attributes in the form of hash
98
+ # @return [Object] Returns the model itself
99
+ def build_from_hash(attributes)
100
+ return nil unless attributes.is_a?(Hash)
101
+ self.class.openapi_types.each_pair do |key, type|
102
+ if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
103
+ self.send("#{key}=", nil)
104
+ elsif type =~ /\AArray<(.*)>/i
105
+ # check to ensure the input is an array given that the attribute
106
+ # is documented as an array but the input is not
107
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
108
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
109
+ end
110
+ elsif !attributes[self.class.attribute_map[key]].nil?
111
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
112
+ end
113
+ end
114
+
115
+ self
116
+ end
117
+
118
+ # Deserializes the data based on type
119
+ # @param string type Data type
120
+ # @param string value Value to be deserialized
121
+ # @return [Object] Deserialized data
122
+ def _deserialize(type, value)
123
+ case type.to_sym
124
+ when :Time
125
+ Time.parse(value)
126
+ when :Date
127
+ Date.parse(value)
128
+ when :String
129
+ value.to_s
130
+ when :Integer
131
+ value.to_i
132
+ when :Float
133
+ value.to_f
134
+ when :Boolean
135
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
136
+ true
137
+ else
138
+ false
139
+ end
140
+ when :Object
141
+ # generic object (usually a Hash), return directly
142
+ value
143
+ when /\AArray<(?<inner_type>.+)>\z/
144
+ inner_type = Regexp.last_match[:inner_type]
145
+ value.map { |v| _deserialize(inner_type, v) }
146
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
147
+ k_type = Regexp.last_match[:k_type]
148
+ v_type = Regexp.last_match[:v_type]
149
+ {}.tap do |hash|
150
+ value.each do |k, v|
151
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
152
+ end
153
+ end
154
+ else # model
155
+ # models (e.g. Pet) or oneOf
156
+ klass = MuxRuby.const_get(type)
157
+ klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
158
+ end
159
+ end
160
+
161
+ # Returns the string representation of the object
162
+ # @return [String] String presentation of the object
163
+ def to_s
164
+ to_hash.to_s
165
+ end
166
+
167
+ # to_body is an alias to to_hash (backward compatibility)
168
+ # @return [Hash] Returns the object in the form of hash
169
+ def to_body
170
+ to_hash
171
+ end
172
+
173
+ # Returns the object in the form of hash
174
+ # @return [Hash] Returns the object in the form of hash
175
+ def to_hash
176
+ hash = {}
177
+ self.class.attribute_map.each_pair do |attr, param|
178
+ value = self.send(attr)
179
+ if value.nil?
180
+ is_nullable = self.class.openapi_nullable.include?(attr)
181
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
182
+ end
183
+
184
+ hash[param] = _to_hash(value)
185
+ end
186
+ hash
187
+ end
188
+
189
+ # Outputs non-array value in the form of hash
190
+ # For object, use to_hash. Otherwise, just return the value
191
+ # @param [Object] value Any valid value
192
+ # @return [Hash] Returns the value in the form of hash
193
+ def _to_hash(value)
194
+ if value.is_a?(Array)
195
+ value.compact.map { |v| _to_hash(v) }
196
+ elsif value.is_a?(Hash)
197
+ {}.tap do |hash|
198
+ value.each { |k, v| hash[k] = _to_hash(v) }
199
+ end
200
+ elsif value.respond_to? :to_hash
201
+ value.to_hash
202
+ else
203
+ value
204
+ end
205
+ end
206
+
207
+ end
208
+
209
+ end
@@ -11,5 +11,5 @@ OpenAPI Generator version: 5.0.1
11
11
  =end
12
12
 
13
13
  module MuxRuby
14
- VERSION = '3.1.0'
14
+ VERSION = '3.2.0'
15
15
  end
data/lib/mux_ruby.rb CHANGED
@@ -31,6 +31,7 @@ require 'mux_ruby/models/create_asset_request'
31
31
  require 'mux_ruby/models/create_live_stream_request'
32
32
  require 'mux_ruby/models/create_playback_id_request'
33
33
  require 'mux_ruby/models/create_playback_id_response'
34
+ require 'mux_ruby/models/create_playback_restriction_request'
34
35
  require 'mux_ruby/models/create_simulcast_target_request'
35
36
  require 'mux_ruby/models/create_track_request'
36
37
  require 'mux_ruby/models/create_track_response'
@@ -96,11 +97,14 @@ require 'mux_ruby/models/notification_rule'
96
97
  require 'mux_ruby/models/overall_values'
97
98
  require 'mux_ruby/models/playback_id'
98
99
  require 'mux_ruby/models/playback_policy'
100
+ require 'mux_ruby/models/playback_restriction'
101
+ require 'mux_ruby/models/playback_restriction_response'
99
102
  require 'mux_ruby/models/real_time_breakdown_value'
100
103
  require 'mux_ruby/models/real_time_histogram_timeseries_bucket'
101
104
  require 'mux_ruby/models/real_time_histogram_timeseries_bucket_values'
102
105
  require 'mux_ruby/models/real_time_histogram_timeseries_datapoint'
103
106
  require 'mux_ruby/models/real_time_timeseries_datapoint'
107
+ require 'mux_ruby/models/referrer_domain_restriction'
104
108
  require 'mux_ruby/models/score'
105
109
  require 'mux_ruby/models/signal_live_stream_complete_response'
106
110
  require 'mux_ruby/models/signing_key'
@@ -110,7 +114,10 @@ require 'mux_ruby/models/simulcast_target_response'
110
114
  require 'mux_ruby/models/track'
111
115
  require 'mux_ruby/models/update_asset_mp4_support_request'
112
116
  require 'mux_ruby/models/update_asset_master_access_request'
117
+ require 'mux_ruby/models/update_asset_request'
113
118
  require 'mux_ruby/models/update_live_stream_embedded_subtitles_request'
119
+ require 'mux_ruby/models/update_live_stream_request'
120
+ require 'mux_ruby/models/update_referrer_domain_restriction_request'
114
121
  require 'mux_ruby/models/upload'
115
122
  require 'mux_ruby/models/upload_error'
116
123
  require 'mux_ruby/models/upload_response'
@@ -130,6 +137,7 @@ require 'mux_ruby/api/incidents_api'
130
137
  require 'mux_ruby/api/live_streams_api'
131
138
  require 'mux_ruby/api/metrics_api'
132
139
  require 'mux_ruby/api/playback_id_api'
140
+ require 'mux_ruby/api/playback_restrictions_api'
133
141
  require 'mux_ruby/api/real_time_api'
134
142
  require 'mux_ruby/api/url_signing_keys_api'
135
143
  require 'mux_ruby/api/video_views_api'
@@ -0,0 +1,97 @@
1
+ =begin
2
+ #Mux API
3
+
4
+ #Mux is how developers build online video. This API encompasses both Mux Video and Mux Data functionality to help you build your video-related projects better and faster than ever before.
5
+
6
+ The version of the OpenAPI document: v1
7
+ Contact: devex@mux.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.0.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+
16
+ # Unit tests for MuxRuby::PlaybackRestrictionsApi
17
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
18
+ # Please update as you see appropriate
19
+ describe 'PlaybackRestrictionsApi' do
20
+ before do
21
+ # run before each test
22
+ @api_instance = MuxRuby::PlaybackRestrictionsApi.new
23
+ end
24
+
25
+ after do
26
+ # run after each test
27
+ end
28
+
29
+ describe 'test an instance of PlaybackRestrictionsApi' do
30
+ it 'should create an instance of PlaybackRestrictionsApi' do
31
+ expect(@api_instance).to be_instance_of(MuxRuby::PlaybackRestrictionsApi)
32
+ end
33
+ end
34
+
35
+ # unit tests for create_playback_restriction
36
+ # Create a Playback Restriction
37
+ # Create a new Playback Restriction.
38
+ # @param create_playback_restriction_request
39
+ # @param [Hash] opts the optional parameters
40
+ # @return [PlaybackRestriction]
41
+ describe 'create_playback_restriction test' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ # unit tests for delete_playback_restriction
48
+ # Delete a Playback Restriction
49
+ # Deletes a single Playback Restriction.
50
+ # @param playback_restriction_id ID of the Playback Restriction.
51
+ # @param [Hash] opts the optional parameters
52
+ # @return [nil]
53
+ describe 'delete_playback_restriction test' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ # unit tests for get_playback_restriction
60
+ # Retrieve a Playback Restriction
61
+ # Retrieves a Playback Restriction associated with the unique identifier.
62
+ # @param playback_restriction_id ID of the Playback Restriction.
63
+ # @param [Hash] opts the optional parameters
64
+ # @return [PlaybackRestriction]
65
+ describe 'get_playback_restriction test' do
66
+ it 'should work' do
67
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
+ end
69
+ end
70
+
71
+ # unit tests for list_playback_restrictions
72
+ # List Playback Restrictions
73
+ # Returns a list of all Playback Restrictions.
74
+ # @param [Hash] opts the optional parameters
75
+ # @option opts [Integer] :page Offset by this many pages, of the size of &#x60;limit&#x60;
76
+ # @option opts [Integer] :limit Number of items to include in the response
77
+ # @return [Array<PlaybackRestriction>]
78
+ describe 'list_playback_restrictions test' do
79
+ it 'should work' do
80
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
81
+ end
82
+ end
83
+
84
+ # unit tests for update_referrer_domain_restriction
85
+ # Update the Referrer Playback Restriction
86
+ # Allows you to modify the list of domians or change how Mux validates playback requests without the &#x60;Referer&#x60; HTTP header. The Referrer restriction fully replaces the old list with this new list of domains.
87
+ # @param playback_restriction_id ID of the Playback Restriction.
88
+ # @param body
89
+ # @param [Hash] opts the optional parameters
90
+ # @return [PlaybackRestriction]
91
+ describe 'update_referrer_domain_restriction test' do
92
+ it 'should work' do
93
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
94
+ end
95
+ end
96
+
97
+ end
@@ -0,0 +1,34 @@
1
+ =begin
2
+ #Mux API
3
+
4
+ #Mux is how developers build online video. This API encompasses both Mux Video and Mux Data functionality to help you build your video-related projects better and faster than ever before.
5
+
6
+ The version of the OpenAPI document: v1
7
+ Contact: devex@mux.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.0.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for MuxRuby::CreatePlaybackRestrictionRequest
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe MuxRuby::CreatePlaybackRestrictionRequest do
21
+ let(:instance) { MuxRuby::CreatePlaybackRestrictionRequest.new }
22
+
23
+ describe 'test an instance of CreatePlaybackRestrictionRequest' do
24
+ it 'should create an instance of CreatePlaybackRestrictionRequest' do
25
+ expect(instance).to be_instance_of(MuxRuby::CreatePlaybackRestrictionRequest)
26
+ end
27
+ end
28
+ describe 'test attribute "referrer"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ end