mux_ruby 2.0.0.pre.rc.2 → 2.0.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.
@@ -0,0 +1,240 @@
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 ListVideoViewExportsResponse
18
+ attr_accessor :data
19
+
20
+ attr_accessor :total_row_count
21
+
22
+ attr_accessor :timeframe
23
+
24
+ # Attribute mapping from ruby-style variable name to JSON key.
25
+ def self.attribute_map
26
+ {
27
+ :'data' => :'data',
28
+ :'total_row_count' => :'total_row_count',
29
+ :'timeframe' => :'timeframe'
30
+ }
31
+ end
32
+
33
+ # Returns all the JSON keys this model knows about
34
+ def self.acceptable_attributes
35
+ attribute_map.values
36
+ end
37
+
38
+ # Attribute type mapping.
39
+ def self.openapi_types
40
+ {
41
+ :'data' => :'Array<ExportDate>',
42
+ :'total_row_count' => :'Integer',
43
+ :'timeframe' => :'Array<Integer>'
44
+ }
45
+ end
46
+
47
+ # List of attributes with nullable: true
48
+ def self.openapi_nullable
49
+ Set.new([
50
+ ])
51
+ end
52
+
53
+ # Initializes the object
54
+ # @param [Hash] attributes Model attributes in the form of hash
55
+ def initialize(attributes = {})
56
+ if (!attributes.is_a?(Hash))
57
+ fail ArgumentError, "The input argument (attributes) must be a hash in `MuxRuby::ListVideoViewExportsResponse` initialize method"
58
+ end
59
+
60
+ # check to see if the attribute exists and convert string to symbol for hash key
61
+ attributes = attributes.each_with_object({}) { |(k, v), h|
62
+ if (!self.class.attribute_map.key?(k.to_sym))
63
+ fail ArgumentError, "`#{k}` is not a valid attribute in `MuxRuby::ListVideoViewExportsResponse`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
64
+ end
65
+ h[k.to_sym] = v
66
+ }
67
+
68
+ if attributes.key?(:'data')
69
+ if (value = attributes[:'data']).is_a?(Array)
70
+ self.data = value
71
+ end
72
+ end
73
+
74
+ if attributes.key?(:'total_row_count')
75
+ self.total_row_count = attributes[:'total_row_count']
76
+ end
77
+
78
+ if attributes.key?(:'timeframe')
79
+ if (value = attributes[:'timeframe']).is_a?(Array)
80
+ self.timeframe = value
81
+ end
82
+ end
83
+ end
84
+
85
+ # Show invalid properties with the reasons. Usually used together with valid?
86
+ # @return Array for valid properties with the reasons
87
+ def list_invalid_properties
88
+ invalid_properties = Array.new
89
+ invalid_properties
90
+ end
91
+
92
+ # Check to see if the all the properties in the model are valid
93
+ # @return true if the model is valid
94
+ def valid?
95
+ true
96
+ end
97
+
98
+ # Checks equality by comparing each attribute.
99
+ # @param [Object] Object to be compared
100
+ def ==(o)
101
+ return true if self.equal?(o)
102
+ self.class == o.class &&
103
+ data == o.data &&
104
+ total_row_count == o.total_row_count &&
105
+ timeframe == o.timeframe
106
+ end
107
+
108
+ # @see the `==` method
109
+ # @param [Object] Object to be compared
110
+ def eql?(o)
111
+ self == o
112
+ end
113
+
114
+ # Calculates hash code according to all attributes.
115
+ # @return [Integer] Hash code
116
+ def hash
117
+ [data, total_row_count, timeframe].hash
118
+ end
119
+
120
+ # Builds the object from hash
121
+ # @param [Hash] attributes Model attributes in the form of hash
122
+ # @return [Object] Returns the model itself
123
+ def self.build_from_hash(attributes)
124
+ new.build_from_hash(attributes)
125
+ end
126
+
127
+ # Builds the object from hash
128
+ # @param [Hash] attributes Model attributes in the form of hash
129
+ # @return [Object] Returns the model itself
130
+ def build_from_hash(attributes)
131
+ return nil unless attributes.is_a?(Hash)
132
+ self.class.openapi_types.each_pair do |key, type|
133
+ if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
134
+ self.send("#{key}=", nil)
135
+ elsif type =~ /\AArray<(.*)>/i
136
+ # check to ensure the input is an array given that the attribute
137
+ # is documented as an array but the input is not
138
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
139
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
140
+ end
141
+ elsif !attributes[self.class.attribute_map[key]].nil?
142
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
143
+ end
144
+ end
145
+
146
+ self
147
+ end
148
+
149
+ # Deserializes the data based on type
150
+ # @param string type Data type
151
+ # @param string value Value to be deserialized
152
+ # @return [Object] Deserialized data
153
+ def _deserialize(type, value)
154
+ case type.to_sym
155
+ when :Time
156
+ Time.parse(value)
157
+ when :Date
158
+ Date.parse(value)
159
+ when :String
160
+ value.to_s
161
+ when :Integer
162
+ value.to_i
163
+ when :Float
164
+ value.to_f
165
+ when :Boolean
166
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
167
+ true
168
+ else
169
+ false
170
+ end
171
+ when :Object
172
+ # generic object (usually a Hash), return directly
173
+ value
174
+ when /\AArray<(?<inner_type>.+)>\z/
175
+ inner_type = Regexp.last_match[:inner_type]
176
+ value.map { |v| _deserialize(inner_type, v) }
177
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
178
+ k_type = Regexp.last_match[:k_type]
179
+ v_type = Regexp.last_match[:v_type]
180
+ {}.tap do |hash|
181
+ value.each do |k, v|
182
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
183
+ end
184
+ end
185
+ else # model
186
+ # models (e.g. Pet) or oneOf
187
+ klass = MuxRuby.const_get(type)
188
+ klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
189
+ end
190
+ end
191
+
192
+ # Returns the string representation of the object
193
+ # @return [String] String presentation of the object
194
+ def to_s
195
+ to_hash.to_s
196
+ end
197
+
198
+ # to_body is an alias to to_hash (backward compatibility)
199
+ # @return [Hash] Returns the object in the form of hash
200
+ def to_body
201
+ to_hash
202
+ end
203
+
204
+ # Returns the object in the form of hash
205
+ # @return [Hash] Returns the object in the form of hash
206
+ def to_hash
207
+ hash = {}
208
+ self.class.attribute_map.each_pair do |attr, param|
209
+ value = self.send(attr)
210
+ if value.nil?
211
+ is_nullable = self.class.openapi_nullable.include?(attr)
212
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
213
+ end
214
+
215
+ hash[param] = _to_hash(value)
216
+ end
217
+ hash
218
+ end
219
+
220
+ # Outputs non-array value in the form of hash
221
+ # For object, use to_hash. Otherwise, just return the value
222
+ # @param [Object] value Any valid value
223
+ # @return [Hash] Returns the value in the form of hash
224
+ def _to_hash(value)
225
+ if value.is_a?(Array)
226
+ value.compact.map { |v| _to_hash(v) }
227
+ elsif value.is_a?(Hash)
228
+ {}.tap do |hash|
229
+ value.each { |k, v| hash[k] = _to_hash(v) }
230
+ end
231
+ elsif value.respond_to? :to_hash
232
+ value.to_hash
233
+ else
234
+ value
235
+ end
236
+ end
237
+
238
+ end
239
+
240
+ end
@@ -11,5 +11,5 @@ OpenAPI Generator version: 5.0.1
11
11
  =end
12
12
 
13
13
  module MuxRuby
14
- VERSION = '2.0.0-rc.2'
14
+ VERSION = '2.0.0'
15
15
  end
@@ -0,0 +1,40 @@
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::ExportDate
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe MuxRuby::ExportDate do
21
+ let(:instance) { MuxRuby::ExportDate.new }
22
+
23
+ describe 'test an instance of ExportDate' do
24
+ it 'should create an instance of ExportDate' do
25
+ expect(instance).to be_instance_of(MuxRuby::ExportDate)
26
+ end
27
+ end
28
+ describe 'test attribute "export_date"' 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
+ describe 'test attribute "files"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ end
@@ -0,0 +1,46 @@
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::ExportFile
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe MuxRuby::ExportFile do
21
+ let(:instance) { MuxRuby::ExportFile.new }
22
+
23
+ describe 'test an instance of ExportFile' do
24
+ it 'should create an instance of ExportFile' do
25
+ expect(instance).to be_instance_of(MuxRuby::ExportFile)
26
+ end
27
+ end
28
+ describe 'test attribute "version"' 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
+ describe 'test attribute "type"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "path"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
46
+ end
@@ -0,0 +1,46 @@
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::ListVideoViewExportsResponse
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe MuxRuby::ListVideoViewExportsResponse do
21
+ let(:instance) { MuxRuby::ListVideoViewExportsResponse.new }
22
+
23
+ describe 'test an instance of ListVideoViewExportsResponse' do
24
+ it 'should create an instance of ListVideoViewExportsResponse' do
25
+ expect(instance).to be_instance_of(MuxRuby::ListVideoViewExportsResponse)
26
+ end
27
+ end
28
+ describe 'test attribute "data"' 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
+ describe 'test attribute "total_row_count"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "timeframe"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
46
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mux_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.pre.rc.2
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mux
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-07-12 00:00:00.000000000 Z
11
+ date: 2021-08-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -90,6 +90,8 @@ files:
90
90
  - docs/EnableLiveStreamResponse.md
91
91
  - docs/Error.md
92
92
  - docs/ErrorsApi.md
93
+ - docs/ExportDate.md
94
+ - docs/ExportFile.md
93
95
  - docs/ExportsApi.md
94
96
  - docs/FilterValue.md
95
97
  - docs/FiltersApi.md
@@ -136,6 +138,7 @@ files:
136
138
  - docs/ListRelatedIncidentsResponse.md
137
139
  - docs/ListSigningKeysResponse.md
138
140
  - docs/ListUploadsResponse.md
141
+ - docs/ListVideoViewExportsResponse.md
139
142
  - docs/ListVideoViewsResponse.md
140
143
  - docs/LiveStream.md
141
144
  - docs/LiveStreamResponse.md
@@ -266,6 +269,8 @@ files:
266
269
  - lib/mux_ruby/models/disable_live_stream_response.rb
267
270
  - lib/mux_ruby/models/enable_live_stream_response.rb
268
271
  - lib/mux_ruby/models/error.rb
272
+ - lib/mux_ruby/models/export_date.rb
273
+ - lib/mux_ruby/models/export_file.rb
269
274
  - lib/mux_ruby/models/filter_value.rb
270
275
  - lib/mux_ruby/models/get_asset_input_info_response.rb
271
276
  - lib/mux_ruby/models/get_asset_or_live_stream_id_response.rb
@@ -309,6 +314,7 @@ files:
309
314
  - lib/mux_ruby/models/list_related_incidents_response.rb
310
315
  - lib/mux_ruby/models/list_signing_keys_response.rb
311
316
  - lib/mux_ruby/models/list_uploads_response.rb
317
+ - lib/mux_ruby/models/list_video_view_exports_response.rb
312
318
  - lib/mux_ruby/models/list_video_views_response.rb
313
319
  - lib/mux_ruby/models/live_stream.rb
314
320
  - lib/mux_ruby/models/live_stream_response.rb
@@ -378,6 +384,8 @@ files:
378
384
  - spec/models/disable_live_stream_response_spec.rb
379
385
  - spec/models/enable_live_stream_response_spec.rb
380
386
  - spec/models/error_spec.rb
387
+ - spec/models/export_date_spec.rb
388
+ - spec/models/export_file_spec.rb
381
389
  - spec/models/filter_value_spec.rb
382
390
  - spec/models/get_asset_input_info_response_spec.rb
383
391
  - spec/models/get_asset_or_live_stream_id_response_data_object_spec.rb
@@ -421,6 +429,7 @@ files:
421
429
  - spec/models/list_related_incidents_response_spec.rb
422
430
  - spec/models/list_signing_keys_response_spec.rb
423
431
  - spec/models/list_uploads_response_spec.rb
432
+ - spec/models/list_video_view_exports_response_spec.rb
424
433
  - spec/models/list_video_views_response_spec.rb
425
434
  - spec/models/live_stream_response_spec.rb
426
435
  - spec/models/live_stream_spec.rb
@@ -466,123 +475,126 @@ required_ruby_version: !ruby/object:Gem::Requirement
466
475
  version: '2.4'
467
476
  required_rubygems_version: !ruby/object:Gem::Requirement
468
477
  requirements:
469
- - - ">"
478
+ - - ">="
470
479
  - !ruby/object:Gem::Version
471
- version: 1.3.1
480
+ version: '0'
472
481
  requirements: []
473
- rubygems_version: 3.2.23
482
+ rubygems_version: 3.2.25
474
483
  signing_key:
475
484
  specification_version: 4
476
485
  summary: Mux API Ruby Gem
477
486
  test_files:
487
+ - spec/api/real_time_api_spec.rb
488
+ - spec/api/filters_api_spec.rb
489
+ - spec/api/playback_id_api_spec.rb
490
+ - spec/api/delivery_usage_api_spec.rb
478
491
  - spec/api/direct_uploads_api_spec.rb
479
- - spec/api/errors_api_spec.rb
492
+ - spec/api/live_streams_api_spec.rb
480
493
  - spec/api/incidents_api_spec.rb
481
- - spec/api/playback_id_api_spec.rb
494
+ - spec/api/errors_api_spec.rb
482
495
  - spec/api/dimensions_api_spec.rb
483
- - spec/api/real_time_api_spec.rb
484
- - spec/api/exports_api_spec.rb
485
496
  - spec/api/url_signing_keys_api_spec.rb
486
- - spec/api/filters_api_spec.rb
487
- - spec/api/live_streams_api_spec.rb
497
+ - spec/api/exports_api_spec.rb
488
498
  - spec/api/metrics_api_spec.rb
489
- - spec/api/assets_api_spec.rb
490
499
  - spec/api/video_views_api_spec.rb
491
- - spec/api/delivery_usage_api_spec.rb
500
+ - spec/api/assets_api_spec.rb
492
501
  - spec/api_client_spec.rb
493
502
  - spec/configuration_spec.rb
494
- - spec/models/get_overall_values_response_spec.rb
495
- - spec/models/upload_spec.rb
496
- - spec/models/disable_live_stream_response_spec.rb
503
+ - spec/models/simulcast_target_spec.rb
504
+ - spec/models/update_asset_master_access_request_spec.rb
497
505
  - spec/models/update_asset_mp4_support_request_spec.rb
498
- - spec/models/asset_response_spec.rb
499
- - spec/models/upload_error_spec.rb
500
- - spec/models/asset_recording_times_spec.rb
506
+ - spec/models/create_asset_request_spec.rb
507
+ - spec/models/real_time_histogram_timeseries_bucket_spec.rb
508
+ - spec/models/get_real_time_breakdown_response_spec.rb
509
+ - spec/models/get_metric_timeseries_data_response_spec.rb
510
+ - spec/models/simulcast_target_response_spec.rb
511
+ - spec/models/real_time_histogram_timeseries_datapoint_spec.rb
501
512
  - spec/models/delivery_report_spec.rb
502
- - spec/models/playback_id_spec.rb
503
- - spec/models/create_simulcast_target_request_spec.rb
504
- - spec/models/create_track_request_spec.rb
505
- - spec/models/asset_non_standard_input_reasons_spec.rb
506
- - spec/models/asset_errors_spec.rb
507
- - spec/models/list_filters_response_spec.rb
508
- - spec/models/list_real_time_metrics_response_spec.rb
509
- - spec/models/get_asset_or_live_stream_id_response_spec.rb
513
+ - spec/models/list_filter_values_response_spec.rb
514
+ - spec/models/video_view_spec.rb
515
+ - spec/models/export_file_spec.rb
510
516
  - spec/models/input_info_spec.rb
511
- - spec/models/list_live_streams_response_spec.rb
512
- - spec/models/create_playback_id_response_spec.rb
513
- - spec/models/enable_live_stream_response_spec.rb
514
- - spec/models/track_spec.rb
515
- - spec/models/list_video_views_response_spec.rb
516
- - spec/models/video_view_event_spec.rb
517
+ - spec/models/get_asset_input_info_response_spec.rb
518
+ - spec/models/create_track_response_spec.rb
519
+ - spec/models/dimension_value_spec.rb
520
+ - spec/models/list_filters_response_data_spec.rb
517
521
  - spec/models/signal_live_stream_complete_response_spec.rb
522
+ - spec/models/filter_value_spec.rb
523
+ - spec/models/list_errors_response_spec.rb
524
+ - spec/models/list_dimensions_response_spec.rb
525
+ - spec/models/incident_breakdown_spec.rb
526
+ - spec/models/breakdown_value_spec.rb
527
+ - spec/models/upload_spec.rb
528
+ - spec/models/input_track_spec.rb
529
+ - spec/models/real_time_histogram_timeseries_bucket_values_spec.rb
530
+ - spec/models/list_video_views_response_spec.rb
531
+ - spec/models/list_video_view_exports_response_spec.rb
532
+ - spec/models/enable_live_stream_response_spec.rb
533
+ - spec/models/get_asset_or_live_stream_id_response_spec.rb
534
+ - spec/models/export_date_spec.rb
535
+ - spec/models/list_real_time_dimensions_response_spec.rb
536
+ - spec/models/list_breakdown_values_response_spec.rb
537
+ - spec/models/input_settings_overlay_settings_spec.rb
538
+ - spec/models/create_upload_request_spec.rb
539
+ - spec/models/get_real_time_histogram_timeseries_response_spec.rb
540
+ - spec/models/incident_notification_spec.rb
518
541
  - spec/models/asset_master_spec.rb
542
+ - spec/models/incident_response_spec.rb
543
+ - spec/models/incident_spec.rb
544
+ - spec/models/get_asset_playback_id_response_spec.rb
545
+ - spec/models/list_assets_response_spec.rb
519
546
  - spec/models/playback_policy_spec.rb
547
+ - spec/models/track_spec.rb
548
+ - spec/models/get_real_time_timeseries_response_spec.rb
549
+ - spec/models/upload_response_spec.rb
550
+ - spec/models/list_incidents_response_spec.rb
551
+ - spec/models/video_view_response_spec.rb
552
+ - spec/models/asset_static_renditions_spec.rb
520
553
  - spec/models/create_playback_id_request_spec.rb
554
+ - spec/models/real_time_timeseries_datapoint_spec.rb
555
+ - spec/models/real_time_breakdown_value_spec.rb
556
+ - spec/models/list_filters_response_spec.rb
557
+ - spec/models/disable_live_stream_response_spec.rb
558
+ - spec/models/asset_errors_spec.rb
559
+ - spec/models/list_real_time_metrics_response_spec.rb
560
+ - spec/models/create_track_request_spec.rb
561
+ - spec/models/upload_error_spec.rb
521
562
  - spec/models/input_file_spec.rb
522
- - spec/models/list_delivery_usage_response_spec.rb
523
- - spec/models/video_view_response_spec.rb
524
- - spec/models/get_asset_or_live_stream_id_response_data_object_spec.rb
563
+ - spec/models/create_playback_id_response_spec.rb
564
+ - spec/models/metric_spec.rb
565
+ - spec/models/get_overall_values_response_spec.rb
566
+ - spec/models/signing_key_spec.rb
567
+ - spec/models/video_view_event_spec.rb
568
+ - spec/models/list_exports_response_spec.rb
569
+ - spec/models/incident_notification_rule_spec.rb
570
+ - spec/models/live_stream_response_spec.rb
571
+ - spec/models/list_insights_response_spec.rb
572
+ - spec/models/asset_recording_times_spec.rb
525
573
  - spec/models/signing_key_response_spec.rb
526
- - spec/models/create_live_stream_request_spec.rb
527
- - spec/models/simulcast_target_response_spec.rb
528
- - spec/models/incident_notification_spec.rb
529
- - spec/models/get_real_time_histogram_timeseries_response_spec.rb
530
574
  - spec/models/insight_spec.rb
575
+ - spec/models/playback_id_spec.rb
576
+ - spec/models/list_dimension_values_response_spec.rb
531
577
  - spec/models/overall_values_spec.rb
578
+ - spec/models/asset_static_renditions_files_spec.rb
579
+ - spec/models/score_spec.rb
580
+ - spec/models/list_live_streams_response_spec.rb
532
581
  - spec/models/input_settings_spec.rb
533
- - spec/models/filter_value_spec.rb
534
- - spec/models/create_asset_request_spec.rb
535
- - spec/models/list_real_time_dimensions_response_spec.rb
536
- - spec/models/metric_spec.rb
537
- - spec/models/create_track_response_spec.rb
538
- - spec/models/abridged_video_view_spec.rb
582
+ - spec/models/error_spec.rb
583
+ - spec/models/list_signing_keys_response_spec.rb
584
+ - spec/models/get_asset_or_live_stream_id_response_data_object_spec.rb
539
585
  - spec/models/list_uploads_response_spec.rb
540
- - spec/models/asset_static_renditions_spec.rb
541
- - spec/models/get_asset_playback_id_response_spec.rb
542
- - spec/models/incident_breakdown_spec.rb
543
- - spec/models/real_time_histogram_timeseries_datapoint_spec.rb
586
+ - spec/models/abridged_video_view_spec.rb
544
587
  - spec/models/asset_spec.rb
545
- - spec/models/get_real_time_timeseries_response_spec.rb
546
- - spec/models/error_spec.rb
547
- - spec/models/list_related_incidents_response_spec.rb
548
- - spec/models/list_assets_response_spec.rb
549
- - spec/models/dimension_value_spec.rb
588
+ - spec/models/asset_non_standard_input_reasons_spec.rb
589
+ - spec/models/create_live_stream_request_spec.rb
550
590
  - spec/models/live_stream_spec.rb
551
- - spec/models/live_stream_response_spec.rb
552
- - spec/models/get_asset_input_info_response_spec.rb
553
- - spec/models/real_time_timeseries_datapoint_spec.rb
554
- - spec/models/asset_static_renditions_files_spec.rb
555
- - spec/models/real_time_histogram_timeseries_bucket_values_spec.rb
556
- - spec/models/list_filter_values_response_spec.rb
557
- - spec/models/list_dimensions_response_spec.rb
558
- - spec/models/list_insights_response_spec.rb
559
- - spec/models/real_time_histogram_timeseries_bucket_spec.rb
591
+ - spec/models/list_related_incidents_response_spec.rb
592
+ - spec/models/list_delivery_usage_response_spec.rb
560
593
  - spec/models/list_real_time_dimensions_response_data_spec.rb
561
- - spec/models/incident_notification_rule_spec.rb
562
- - spec/models/list_breakdown_values_response_spec.rb
563
- - spec/models/score_spec.rb
564
- - spec/models/breakdown_value_spec.rb
565
- - spec/models/get_metric_timeseries_data_response_spec.rb
566
- - spec/models/list_exports_response_spec.rb
567
- - spec/models/list_signing_keys_response_spec.rb
568
- - spec/models/list_filters_response_data_spec.rb
569
- - spec/models/upload_response_spec.rb
570
- - spec/models/input_track_spec.rb
571
- - spec/models/signing_key_spec.rb
572
594
  - spec/models/notification_rule_spec.rb
573
- - spec/models/get_real_time_breakdown_response_spec.rb
574
- - spec/models/create_upload_request_spec.rb
575
- - spec/models/update_asset_master_access_request_spec.rb
576
- - spec/models/list_dimension_values_response_spec.rb
577
- - spec/models/get_asset_or_live_stream_id_response_data_spec.rb
578
595
  - spec/models/list_all_metric_values_response_spec.rb
596
+ - spec/models/create_simulcast_target_request_spec.rb
597
+ - spec/models/asset_response_spec.rb
579
598
  - spec/models/get_real_time_histogram_timeseries_response_meta_spec.rb
580
- - spec/models/incident_response_spec.rb
581
- - spec/models/video_view_spec.rb
582
- - spec/models/real_time_breakdown_value_spec.rb
583
- - spec/models/simulcast_target_spec.rb
584
- - spec/models/list_errors_response_spec.rb
585
- - spec/models/input_settings_overlay_settings_spec.rb
586
- - spec/models/list_incidents_response_spec.rb
587
- - spec/models/incident_spec.rb
599
+ - spec/models/get_asset_or_live_stream_id_response_data_spec.rb
588
600
  - spec/spec_helper.rb