mux_ruby 3.5.0 → 3.5.1
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/Gemfile.lock +1 -1
- data/README.md +4 -4
- data/docs/MetricsApi.md +3 -3
- data/docs/RealTimeApi.md +2 -2
- data/docs/SpacesApi.md +1 -1
- data/gen/generator-config.json +1 -1
- data/lib/mux_ruby/api/metrics_api.rb +4 -4
- data/lib/mux_ruby/api/real_time_api.rb +2 -2
- data/lib/mux_ruby/api/spaces_api.rb +2 -2
- data/lib/mux_ruby/version.rb +1 -1
- metadata +120 -120
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: abd3fbe606bb7ce4df59507592aff18e57d872ada172147a4961f0ccbe6ee41d
|
|
4
|
+
data.tar.gz: 77eef8d8a0f203f7a9129ffa4fb78d6942538263a236f0e454b28a43a5460e09
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a8b77a6218923a14c88f8072c8c957c06e0a5c4e377f9ac46df2b18af3441993e761e641105b1358b8d7171731ce0181e95f010d79a7158114d4d8567ddd5f3d
|
|
7
|
+
data.tar.gz: 8a4621013a5051633075b6192946a0e34dea208090b41fa02e20b8f9eddb6b391235c102b473631034789039bcb35e063e48e9b5d9ec445b2be01a89880f120e
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -23,7 +23,7 @@ Not familiar with Mux? Check out https://mux.com/ for more information.
|
|
|
23
23
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
24
24
|
|
|
25
25
|
- API version: v1
|
|
26
|
-
- Package version: 3.5.
|
|
26
|
+
- Package version: 3.5.1
|
|
27
27
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
|
28
28
|
For more information, please visit [https://docs.mux.com](https://docs.mux.com)
|
|
29
29
|
|
|
@@ -40,16 +40,16 @@ gem build mux_ruby.gemspec
|
|
|
40
40
|
Then either install the gem locally:
|
|
41
41
|
|
|
42
42
|
```shell
|
|
43
|
-
gem install ./mux_ruby-3.5.
|
|
43
|
+
gem install ./mux_ruby-3.5.1.gem
|
|
44
44
|
```
|
|
45
45
|
|
|
46
|
-
(for development, run `gem install --dev ./mux_ruby-3.5.
|
|
46
|
+
(for development, run `gem install --dev ./mux_ruby-3.5.1.gem` to install the development dependencies)
|
|
47
47
|
|
|
48
48
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
49
49
|
|
|
50
50
|
Finally add this to the Gemfile:
|
|
51
51
|
|
|
52
|
-
gem 'mux_ruby', '~> 3.5.
|
|
52
|
+
gem 'mux_ruby', '~> 3.5.1'
|
|
53
53
|
|
|
54
54
|
### Install from Git
|
|
55
55
|
|
data/docs/MetricsApi.md
CHANGED
|
@@ -17,7 +17,7 @@ All URIs are relative to *https://api.mux.com*
|
|
|
17
17
|
|
|
18
18
|
Get metric timeseries data
|
|
19
19
|
|
|
20
|
-
Returns timeseries data for a specific metric. Each interval represented in the data array contains an array with the following values: * the first element is the interval time * the second element is the calculated metric value
|
|
20
|
+
Returns timeseries data for a specific metric. Each interval represented in the data array contains an array with the following values: * the first element is the interval time * the second element is the calculated metric value * the third element is the number of views in the interval that have a valid metric value
|
|
21
21
|
|
|
22
22
|
### Examples
|
|
23
23
|
|
|
@@ -38,7 +38,7 @@ opts = {
|
|
|
38
38
|
filters: ['inner_example'], # Array<String> | Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US`
|
|
39
39
|
measurement: '95th', # String | Measurement for the provided metric. If omitted, the default for the metric will be used.
|
|
40
40
|
order_direction: 'asc', # String | Sort order.
|
|
41
|
-
group_by: 'ten_minutes' # String | Time granularity to group results by. If this value is omitted, a default granularity is chosen based on the timeframe. For timeframes of 6 hours or less, the default granularity is `ten_minutes`. Between 6 hours and 15
|
|
41
|
+
group_by: 'ten_minutes' # String | Time granularity to group results by. If this value is omitted, a default granularity is chosen based on the timeframe. For timeframes of 6 hours or less, the default granularity is `ten_minutes`. Between 6 hours and 15 hours inclusive, the default granularity is `hour`. The granularity of timeframes that exceed 15 hours is `day`. This default behavior is subject to change; it is strongly suggested that you explicitly specify the granularity.
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
begin
|
|
@@ -77,7 +77,7 @@ end
|
|
|
77
77
|
| **filters** | [**Array<String>**](String.md) | Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` | [optional] |
|
|
78
78
|
| **measurement** | **String** | Measurement for the provided metric. If omitted, the default for the metric will be used. | [optional] |
|
|
79
79
|
| **order_direction** | **String** | Sort order. | [optional] |
|
|
80
|
-
| **group_by** | **String** | Time granularity to group results by. If this value is omitted, a default granularity is chosen based on the timeframe. For timeframes of 6 hours or less, the default granularity is `ten_minutes`. Between 6 hours and 15
|
|
80
|
+
| **group_by** | **String** | Time granularity to group results by. If this value is omitted, a default granularity is chosen based on the timeframe. For timeframes of 6 hours or less, the default granularity is `ten_minutes`. Between 6 hours and 15 hours inclusive, the default granularity is `hour`. The granularity of timeframes that exceed 15 hours is `day`. This default behavior is subject to change; it is strongly suggested that you explicitly specify the granularity. | [optional] |
|
|
81
81
|
|
|
82
82
|
### Return type
|
|
83
83
|
|
data/docs/RealTimeApi.md
CHANGED
|
@@ -35,7 +35,7 @@ api_instance = MuxRuby::RealTimeApi.new
|
|
|
35
35
|
realtime_metric_id = 'current-concurrent-viewers' # String | ID of the Realtime Metric
|
|
36
36
|
opts = {
|
|
37
37
|
dimension: 'asn', # String | Dimension the specified value belongs to
|
|
38
|
-
timestamp:
|
|
38
|
+
timestamp: 56, # Integer | Timestamp to limit results by. This value must be provided as a unix timestamp. Defaults to the current unix timestamp.
|
|
39
39
|
filters: ['inner_example'], # Array<String> | Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US`
|
|
40
40
|
order_by: 'negative_impact', # String | Value to order the results by
|
|
41
41
|
order_direction: 'asc' # String | Sort order.
|
|
@@ -74,7 +74,7 @@ end
|
|
|
74
74
|
| ---- | ---- | ----------- | ----- |
|
|
75
75
|
| **realtime_metric_id** | **String** | ID of the Realtime Metric | |
|
|
76
76
|
| **dimension** | **String** | Dimension the specified value belongs to | [optional] |
|
|
77
|
-
| **timestamp** | **
|
|
77
|
+
| **timestamp** | **Integer** | Timestamp to limit results by. This value must be provided as a unix timestamp. Defaults to the current unix timestamp. | [optional] |
|
|
78
78
|
| **filters** | [**Array<String>**](String.md) | Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` | [optional] |
|
|
79
79
|
| **order_by** | **String** | Value to order the results by | [optional] |
|
|
80
80
|
| **order_direction** | **String** | Sort order. | [optional] |
|
data/docs/SpacesApi.md
CHANGED
|
@@ -519,7 +519,7 @@ end
|
|
|
519
519
|
|
|
520
520
|
Start a space broadcast
|
|
521
521
|
|
|
522
|
-
Starts broadcasting a space to the associated destination.
|
|
522
|
+
Starts broadcasting a space to the associated destination. Broadcasts can only be started when the space is `active` (when there are participants connected).
|
|
523
523
|
|
|
524
524
|
### Examples
|
|
525
525
|
|
data/gen/generator-config.json
CHANGED
|
@@ -20,14 +20,14 @@ module MuxRuby
|
|
|
20
20
|
@api_client = api_client
|
|
21
21
|
end
|
|
22
22
|
# Get metric timeseries data
|
|
23
|
-
# Returns timeseries data for a specific metric. Each interval represented in the data array contains an array with the following values: * the first element is the interval time * the second element is the calculated metric value
|
|
23
|
+
# Returns timeseries data for a specific metric. Each interval represented in the data array contains an array with the following values: * the first element is the interval time * the second element is the calculated metric value * the third element is the number of views in the interval that have a valid metric value
|
|
24
24
|
# @param metric_id [String] ID of the Metric
|
|
25
25
|
# @param [Hash] opts the optional parameters
|
|
26
26
|
# @option opts [Array<String>] :timeframe Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days`
|
|
27
27
|
# @option opts [Array<String>] :filters Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US`
|
|
28
28
|
# @option opts [String] :measurement Measurement for the provided metric. If omitted, the default for the metric will be used.
|
|
29
29
|
# @option opts [String] :order_direction Sort order.
|
|
30
|
-
# @option opts [String] :group_by Time granularity to group results by. If this value is omitted, a default granularity is chosen based on the timeframe. For timeframes of 6 hours or less, the default granularity is `ten_minutes`. Between 6 hours and 15
|
|
30
|
+
# @option opts [String] :group_by Time granularity to group results by. If this value is omitted, a default granularity is chosen based on the timeframe. For timeframes of 6 hours or less, the default granularity is `ten_minutes`. Between 6 hours and 15 hours inclusive, the default granularity is `hour`. The granularity of timeframes that exceed 15 hours is `day`. This default behavior is subject to change; it is strongly suggested that you explicitly specify the granularity.
|
|
31
31
|
# @return [GetMetricTimeseriesDataResponse]
|
|
32
32
|
def get_metric_timeseries_data(metric_id, opts = {})
|
|
33
33
|
data, _status_code, _headers = get_metric_timeseries_data_with_http_info(metric_id, opts)
|
|
@@ -35,14 +35,14 @@ module MuxRuby
|
|
|
35
35
|
end
|
|
36
36
|
|
|
37
37
|
# Get metric timeseries data
|
|
38
|
-
# Returns timeseries data for a specific metric. Each interval represented in the data array contains an array with the following values: * the first element is the interval time * the second element is the calculated metric value
|
|
38
|
+
# Returns timeseries data for a specific metric. Each interval represented in the data array contains an array with the following values: * the first element is the interval time * the second element is the calculated metric value * the third element is the number of views in the interval that have a valid metric value
|
|
39
39
|
# @param metric_id [String] ID of the Metric
|
|
40
40
|
# @param [Hash] opts the optional parameters
|
|
41
41
|
# @option opts [Array<String>] :timeframe Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days`
|
|
42
42
|
# @option opts [Array<String>] :filters Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US`
|
|
43
43
|
# @option opts [String] :measurement Measurement for the provided metric. If omitted, the default for the metric will be used.
|
|
44
44
|
# @option opts [String] :order_direction Sort order.
|
|
45
|
-
# @option opts [String] :group_by Time granularity to group results by. If this value is omitted, a default granularity is chosen based on the timeframe. For timeframes of 6 hours or less, the default granularity is `ten_minutes`. Between 6 hours and 15
|
|
45
|
+
# @option opts [String] :group_by Time granularity to group results by. If this value is omitted, a default granularity is chosen based on the timeframe. For timeframes of 6 hours or less, the default granularity is `ten_minutes`. Between 6 hours and 15 hours inclusive, the default granularity is `hour`. The granularity of timeframes that exceed 15 hours is `day`. This default behavior is subject to change; it is strongly suggested that you explicitly specify the granularity.
|
|
46
46
|
# @return [Array<(GetMetricTimeseriesDataResponse, Integer, Hash)>] GetMetricTimeseriesDataResponse data, response status code and response headers
|
|
47
47
|
def get_metric_timeseries_data_with_http_info(metric_id, opts = {})
|
|
48
48
|
if @api_client.config.debugging
|
|
@@ -24,7 +24,7 @@ module MuxRuby
|
|
|
24
24
|
# @param realtime_metric_id [String] ID of the Realtime Metric
|
|
25
25
|
# @param [Hash] opts the optional parameters
|
|
26
26
|
# @option opts [String] :dimension Dimension the specified value belongs to
|
|
27
|
-
# @option opts [
|
|
27
|
+
# @option opts [Integer] :timestamp Timestamp to limit results by. This value must be provided as a unix timestamp. Defaults to the current unix timestamp.
|
|
28
28
|
# @option opts [Array<String>] :filters Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US`
|
|
29
29
|
# @option opts [String] :order_by Value to order the results by
|
|
30
30
|
# @option opts [String] :order_direction Sort order.
|
|
@@ -39,7 +39,7 @@ module MuxRuby
|
|
|
39
39
|
# @param realtime_metric_id [String] ID of the Realtime Metric
|
|
40
40
|
# @param [Hash] opts the optional parameters
|
|
41
41
|
# @option opts [String] :dimension Dimension the specified value belongs to
|
|
42
|
-
# @option opts [
|
|
42
|
+
# @option opts [Integer] :timestamp Timestamp to limit results by. This value must be provided as a unix timestamp. Defaults to the current unix timestamp.
|
|
43
43
|
# @option opts [Array<String>] :filters Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US`
|
|
44
44
|
# @option opts [String] :order_by Value to order the results by
|
|
45
45
|
# @option opts [String] :order_direction Sort order.
|
|
@@ -479,7 +479,7 @@ module MuxRuby
|
|
|
479
479
|
end
|
|
480
480
|
|
|
481
481
|
# Start a space broadcast
|
|
482
|
-
# Starts broadcasting a space to the associated destination.
|
|
482
|
+
# Starts broadcasting a space to the associated destination. Broadcasts can only be started when the space is `active` (when there are participants connected).
|
|
483
483
|
# @param space_id [String] The space ID.
|
|
484
484
|
# @param broadcast_id [String] The broadcast ID.
|
|
485
485
|
# @param [Hash] opts the optional parameters
|
|
@@ -490,7 +490,7 @@ module MuxRuby
|
|
|
490
490
|
end
|
|
491
491
|
|
|
492
492
|
# Start a space broadcast
|
|
493
|
-
# Starts broadcasting a space to the associated destination.
|
|
493
|
+
# Starts broadcasting a space to the associated destination. Broadcasts can only be started when the space is `active` (when there are participants connected).
|
|
494
494
|
# @param space_id [String] The space ID.
|
|
495
495
|
# @param broadcast_id [String] The broadcast ID.
|
|
496
496
|
# @param [Hash] opts the optional parameters
|
data/lib/mux_ruby/version.rb
CHANGED
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: 3.5.
|
|
4
|
+
version: 3.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mux
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-06-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|
|
@@ -564,150 +564,150 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
564
564
|
- !ruby/object:Gem::Version
|
|
565
565
|
version: '0'
|
|
566
566
|
requirements: []
|
|
567
|
-
rubygems_version: 3.3.
|
|
567
|
+
rubygems_version: 3.3.15
|
|
568
568
|
signing_key:
|
|
569
569
|
specification_version: 4
|
|
570
570
|
summary: Mux API Ruby Gem
|
|
571
571
|
test_files:
|
|
572
572
|
- spec/api/video_views_api_spec.rb
|
|
573
|
-
- spec/api/
|
|
574
|
-
- spec/api/playback_restrictions_api_spec.rb
|
|
575
|
-
- spec/api/delivery_usage_api_spec.rb
|
|
576
|
-
- spec/api/playback_id_api_spec.rb
|
|
577
|
-
- spec/api/dimensions_api_spec.rb
|
|
578
|
-
- spec/api/spaces_api_spec.rb
|
|
573
|
+
- spec/api/real_time_api_spec.rb
|
|
579
574
|
- spec/api/assets_api_spec.rb
|
|
580
|
-
- spec/api/
|
|
581
|
-
- spec/api/errors_api_spec.rb
|
|
582
|
-
- spec/api/direct_uploads_api_spec.rb
|
|
575
|
+
- spec/api/dimensions_api_spec.rb
|
|
583
576
|
- spec/api/metrics_api_spec.rb
|
|
577
|
+
- spec/api/url_signing_keys_api_spec.rb
|
|
578
|
+
- spec/api/playback_id_api_spec.rb
|
|
584
579
|
- spec/api/exports_api_spec.rb
|
|
585
|
-
- spec/api/
|
|
586
|
-
- spec/api/filters_api_spec.rb
|
|
580
|
+
- spec/api/direct_uploads_api_spec.rb
|
|
587
581
|
- spec/api/incidents_api_spec.rb
|
|
582
|
+
- spec/api/live_streams_api_spec.rb
|
|
583
|
+
- spec/api/delivery_usage_api_spec.rb
|
|
584
|
+
- spec/api/spaces_api_spec.rb
|
|
585
|
+
- spec/api/filters_api_spec.rb
|
|
586
|
+
- spec/api/playback_restrictions_api_spec.rb
|
|
587
|
+
- spec/api/errors_api_spec.rb
|
|
588
588
|
- spec/api_client_spec.rb
|
|
589
589
|
- spec/configuration_spec.rb
|
|
590
|
-
- spec/models/input_file_spec.rb
|
|
591
|
-
- spec/models/list_all_metric_values_response_spec.rb
|
|
592
|
-
- spec/models/update_asset_master_access_request_spec.rb
|
|
593
|
-
- spec/models/list_real_time_metrics_response_spec.rb
|
|
594
|
-
- spec/models/playback_restriction_spec.rb
|
|
595
|
-
- spec/models/signal_live_stream_complete_response_spec.rb
|
|
596
|
-
- spec/models/update_live_stream_embedded_subtitles_request_spec.rb
|
|
597
|
-
- spec/models/create_asset_request_spec.rb
|
|
598
|
-
- spec/models/incident_spec.rb
|
|
599
|
-
- spec/models/list_errors_response_spec.rb
|
|
600
590
|
- spec/models/get_asset_or_live_stream_id_response_data_object_spec.rb
|
|
601
|
-
- spec/models/
|
|
602
|
-
- spec/models/simulcast_target_spec.rb
|
|
603
|
-
- spec/models/broadcast_response_spec.rb
|
|
604
|
-
- spec/models/create_playback_restriction_request_spec.rb
|
|
605
|
-
- spec/models/metric_spec.rb
|
|
591
|
+
- spec/models/asset_spec.rb
|
|
606
592
|
- spec/models/space_response_spec.rb
|
|
607
|
-
- spec/models/
|
|
608
|
-
- spec/models/
|
|
609
|
-
- spec/models/
|
|
610
|
-
- spec/models/incident_response_spec.rb
|
|
611
|
-
- spec/models/abridged_video_view_spec.rb
|
|
612
|
-
- spec/models/input_settings_overlay_settings_spec.rb
|
|
613
|
-
- spec/models/create_broadcast_request_spec.rb
|
|
614
|
-
- spec/models/export_file_spec.rb
|
|
615
|
-
- spec/models/asset_master_spec.rb
|
|
616
|
-
- spec/models/live_stream_embedded_subtitle_settings_spec.rb
|
|
617
|
-
- spec/models/simulcast_target_response_spec.rb
|
|
618
|
-
- spec/models/broadcast_layout_spec.rb
|
|
619
|
-
- spec/models/list_video_view_exports_response_spec.rb
|
|
593
|
+
- spec/models/list_real_time_metrics_response_spec.rb
|
|
594
|
+
- spec/models/track_spec.rb
|
|
595
|
+
- spec/models/signing_key_spec.rb
|
|
620
596
|
- spec/models/enable_live_stream_response_spec.rb
|
|
621
|
-
- spec/models/
|
|
622
|
-
- spec/models/
|
|
623
|
-
- spec/models/
|
|
624
|
-
- spec/models/
|
|
597
|
+
- spec/models/create_track_request_spec.rb
|
|
598
|
+
- spec/models/asset_non_standard_input_reasons_spec.rb
|
|
599
|
+
- spec/models/get_live_stream_playback_id_response_spec.rb
|
|
600
|
+
- spec/models/simulcast_target_response_spec.rb
|
|
601
|
+
- spec/models/update_live_stream_embedded_subtitles_request_spec.rb
|
|
602
|
+
- spec/models/video_view_spec.rb
|
|
603
|
+
- spec/models/list_incidents_response_spec.rb
|
|
604
|
+
- spec/models/score_spec.rb
|
|
605
|
+
- spec/models/breakdown_value_spec.rb
|
|
606
|
+
- spec/models/list_all_metric_values_response_spec.rb
|
|
607
|
+
- spec/models/update_asset_mp4_support_request_spec.rb
|
|
608
|
+
- spec/models/upload_error_spec.rb
|
|
609
|
+
- spec/models/list_dimensions_response_spec.rb
|
|
610
|
+
- spec/models/playback_id_spec.rb
|
|
625
611
|
- spec/models/create_space_request_spec.rb
|
|
626
|
-
- spec/models/
|
|
612
|
+
- spec/models/get_real_time_histogram_timeseries_response_spec.rb
|
|
613
|
+
- spec/models/list_video_views_response_spec.rb
|
|
614
|
+
- spec/models/list_filter_values_response_spec.rb
|
|
615
|
+
- spec/models/list_video_view_exports_response_spec.rb
|
|
616
|
+
- spec/models/live_stream_embedded_subtitle_settings_spec.rb
|
|
617
|
+
- spec/models/create_asset_request_spec.rb
|
|
618
|
+
- spec/models/overall_values_spec.rb
|
|
619
|
+
- spec/models/real_time_histogram_timeseries_datapoint_spec.rb
|
|
620
|
+
- spec/models/create_broadcast_request_spec.rb
|
|
627
621
|
- spec/models/dimension_value_spec.rb
|
|
622
|
+
- spec/models/referrer_domain_restriction_spec.rb
|
|
628
623
|
- spec/models/create_playback_id_request_spec.rb
|
|
629
|
-
- spec/models/notification_rule_spec.rb
|
|
630
|
-
- spec/models/update_live_stream_request_spec.rb
|
|
631
|
-
- spec/models/get_asset_playback_id_response_spec.rb
|
|
632
|
-
- spec/models/input_settings_spec.rb
|
|
633
|
-
- spec/models/asset_response_spec.rb
|
|
634
|
-
- spec/models/asset_static_renditions_spec.rb
|
|
635
|
-
- spec/models/asset_static_renditions_files_spec.rb
|
|
636
|
-
- spec/models/create_upload_request_spec.rb
|
|
637
|
-
- spec/models/playback_id_spec.rb
|
|
638
|
-
- spec/models/score_spec.rb
|
|
639
|
-
- spec/models/list_filters_response_spec.rb
|
|
640
|
-
- spec/models/input_track_spec.rb
|
|
641
|
-
- spec/models/list_spaces_response_spec.rb
|
|
642
624
|
- spec/models/get_asset_or_live_stream_id_response_data_spec.rb
|
|
643
|
-
- spec/models/
|
|
644
|
-
- spec/models/
|
|
645
|
-
- spec/models/
|
|
646
|
-
- spec/models/
|
|
647
|
-
- spec/models/
|
|
648
|
-
- spec/models/
|
|
649
|
-
- spec/models/asset_errors_spec.rb
|
|
650
|
-
- spec/models/update_asset_request_spec.rb
|
|
625
|
+
- spec/models/real_time_histogram_timeseries_bucket_spec.rb
|
|
626
|
+
- spec/models/metric_spec.rb
|
|
627
|
+
- spec/models/incident_notification_rule_spec.rb
|
|
628
|
+
- spec/models/live_stream_status_spec.rb
|
|
629
|
+
- spec/models/list_real_time_dimensions_response_data_spec.rb
|
|
630
|
+
- spec/models/error_spec.rb
|
|
651
631
|
- spec/models/get_overall_values_response_spec.rb
|
|
652
|
-
- spec/models/
|
|
653
|
-
- spec/models/
|
|
654
|
-
- spec/models/create_live_stream_request_spec.rb
|
|
655
|
-
- spec/models/start_space_broadcast_response_spec.rb
|
|
656
|
-
- spec/models/list_signing_keys_response_spec.rb
|
|
632
|
+
- spec/models/video_view_event_spec.rb
|
|
633
|
+
- spec/models/update_referrer_domain_restriction_request_spec.rb
|
|
657
634
|
- spec/models/stop_space_broadcast_response_spec.rb
|
|
658
|
-
- spec/models/
|
|
635
|
+
- spec/models/list_breakdown_values_response_spec.rb
|
|
659
636
|
- spec/models/real_time_breakdown_value_spec.rb
|
|
660
|
-
- spec/models/real_time_histogram_timeseries_bucket_spec.rb
|
|
661
|
-
- spec/models/get_real_time_histogram_timeseries_response_meta_spec.rb
|
|
662
|
-
- spec/models/incident_breakdown_spec.rb
|
|
663
|
-
- spec/models/real_time_timeseries_datapoint_spec.rb
|
|
664
|
-
- spec/models/space_spec.rb
|
|
665
|
-
- spec/models/get_real_time_timeseries_response_spec.rb
|
|
666
|
-
- spec/models/list_video_views_response_spec.rb
|
|
667
|
-
- spec/models/create_track_response_spec.rb
|
|
668
|
-
- spec/models/create_simulcast_target_request_spec.rb
|
|
669
|
-
- spec/models/asset_non_standard_input_reasons_spec.rb
|
|
670
|
-
- spec/models/upload_error_spec.rb
|
|
671
|
-
- spec/models/list_playback_restrictions_response_spec.rb
|
|
672
|
-
- spec/models/filter_value_spec.rb
|
|
673
|
-
- spec/models/list_exports_response_spec.rb
|
|
674
|
-
- spec/models/list_dimension_values_response_spec.rb
|
|
675
637
|
- spec/models/list_assets_response_spec.rb
|
|
676
|
-
- spec/models/
|
|
638
|
+
- spec/models/signing_key_response_spec.rb
|
|
639
|
+
- spec/models/list_live_streams_response_spec.rb
|
|
640
|
+
- spec/models/get_asset_playback_id_response_spec.rb
|
|
641
|
+
- spec/models/abridged_video_view_spec.rb
|
|
642
|
+
- spec/models/list_dimension_values_response_spec.rb
|
|
643
|
+
- spec/models/filter_value_spec.rb
|
|
677
644
|
- spec/models/live_stream_spec.rb
|
|
678
|
-
- spec/models/
|
|
679
|
-
- spec/models/
|
|
680
|
-
- spec/models/
|
|
681
|
-
- spec/models/
|
|
645
|
+
- spec/models/create_track_response_spec.rb
|
|
646
|
+
- spec/models/simulcast_target_spec.rb
|
|
647
|
+
- spec/models/input_track_spec.rb
|
|
648
|
+
- spec/models/start_space_broadcast_response_spec.rb
|
|
682
649
|
- spec/models/delivery_report_spec.rb
|
|
683
|
-
- spec/models/
|
|
684
|
-
- spec/models/error_spec.rb
|
|
685
|
-
- spec/models/list_filter_values_response_spec.rb
|
|
686
|
-
- spec/models/get_live_stream_playback_id_response_spec.rb
|
|
687
|
-
- spec/models/list_insights_response_spec.rb
|
|
688
|
-
- spec/models/disable_live_stream_response_spec.rb
|
|
689
|
-
- spec/models/update_asset_mp4_support_request_spec.rb
|
|
690
|
-
- spec/models/broadcast_spec.rb
|
|
691
|
-
- spec/models/create_track_request_spec.rb
|
|
692
|
-
- spec/models/incident_notification_rule_spec.rb
|
|
650
|
+
- spec/models/asset_response_spec.rb
|
|
693
651
|
- spec/models/get_asset_or_live_stream_id_response_spec.rb
|
|
694
|
-
- spec/models/export_date_spec.rb
|
|
695
|
-
- spec/models/get_metric_timeseries_data_response_spec.rb
|
|
696
|
-
- spec/models/overall_values_spec.rb
|
|
697
|
-
- spec/models/track_spec.rb
|
|
698
|
-
- spec/models/upload_spec.rb
|
|
699
|
-
- spec/models/asset_spec.rb
|
|
700
|
-
- spec/models/list_delivery_usage_response_spec.rb
|
|
701
|
-
- spec/models/incident_notification_spec.rb
|
|
702
|
-
- spec/models/video_view_event_spec.rb
|
|
703
|
-
- spec/models/signing_key_response_spec.rb
|
|
704
|
-
- spec/models/asset_recording_times_spec.rb
|
|
705
|
-
- spec/models/referrer_domain_restriction_spec.rb
|
|
706
|
-
- spec/models/get_real_time_histogram_timeseries_response_spec.rb
|
|
707
|
-
- spec/models/signing_key_spec.rb
|
|
708
652
|
- spec/models/list_related_incidents_response_spec.rb
|
|
709
|
-
- spec/models/
|
|
653
|
+
- spec/models/list_errors_response_spec.rb
|
|
654
|
+
- spec/models/notification_rule_spec.rb
|
|
655
|
+
- spec/models/broadcast_spec.rb
|
|
656
|
+
- spec/models/list_uploads_response_spec.rb
|
|
657
|
+
- spec/models/create_playback_id_response_spec.rb
|
|
658
|
+
- spec/models/space_spec.rb
|
|
659
|
+
- spec/models/input_info_spec.rb
|
|
660
|
+
- spec/models/space_type_spec.rb
|
|
661
|
+
- spec/models/list_delivery_usage_response_spec.rb
|
|
710
662
|
- spec/models/upload_response_spec.rb
|
|
663
|
+
- spec/models/broadcast_layout_spec.rb
|
|
664
|
+
- spec/models/incident_response_spec.rb
|
|
665
|
+
- spec/models/list_exports_response_spec.rb
|
|
666
|
+
- spec/models/update_live_stream_request_spec.rb
|
|
667
|
+
- spec/models/broadcast_resolution_spec.rb
|
|
668
|
+
- spec/models/get_real_time_breakdown_response_spec.rb
|
|
669
|
+
- spec/models/broadcast_response_spec.rb
|
|
670
|
+
- spec/models/upload_spec.rb
|
|
671
|
+
- spec/models/input_file_spec.rb
|
|
672
|
+
- spec/models/incident_breakdown_spec.rb
|
|
673
|
+
- spec/models/update_asset_master_access_request_spec.rb
|
|
674
|
+
- spec/models/disable_live_stream_response_spec.rb
|
|
675
|
+
- spec/models/space_status_spec.rb
|
|
676
|
+
- spec/models/real_time_histogram_timeseries_bucket_values_spec.rb
|
|
677
|
+
- spec/models/asset_recording_times_spec.rb
|
|
678
|
+
- spec/models/export_date_spec.rb
|
|
679
|
+
- spec/models/asset_errors_spec.rb
|
|
680
|
+
- spec/models/playback_restriction_response_spec.rb
|
|
681
|
+
- spec/models/list_filters_response_spec.rb
|
|
682
|
+
- spec/models/get_metric_timeseries_data_response_spec.rb
|
|
683
|
+
- spec/models/real_time_timeseries_datapoint_spec.rb
|
|
684
|
+
- spec/models/incident_spec.rb
|
|
685
|
+
- spec/models/playback_policy_spec.rb
|
|
711
686
|
- spec/models/get_asset_input_info_response_spec.rb
|
|
712
|
-
- spec/models/
|
|
687
|
+
- spec/models/insight_spec.rb
|
|
688
|
+
- spec/models/create_upload_request_spec.rb
|
|
689
|
+
- spec/models/list_filters_response_data_spec.rb
|
|
690
|
+
- spec/models/asset_master_spec.rb
|
|
691
|
+
- spec/models/list_insights_response_spec.rb
|
|
692
|
+
- spec/models/playback_restriction_spec.rb
|
|
693
|
+
- spec/models/list_real_time_dimensions_response_spec.rb
|
|
694
|
+
- spec/models/input_settings_spec.rb
|
|
695
|
+
- spec/models/export_file_spec.rb
|
|
696
|
+
- spec/models/asset_static_renditions_files_spec.rb
|
|
697
|
+
- spec/models/incident_notification_spec.rb
|
|
698
|
+
- spec/models/create_simulcast_target_request_spec.rb
|
|
699
|
+
- spec/models/video_view_response_spec.rb
|
|
700
|
+
- spec/models/get_real_time_histogram_timeseries_response_meta_spec.rb
|
|
701
|
+
- spec/models/list_playback_restrictions_response_spec.rb
|
|
702
|
+
- spec/models/live_stream_response_spec.rb
|
|
703
|
+
- spec/models/asset_static_renditions_spec.rb
|
|
704
|
+
- spec/models/broadcast_status_spec.rb
|
|
705
|
+
- spec/models/signal_live_stream_complete_response_spec.rb
|
|
706
|
+
- spec/models/list_spaces_response_spec.rb
|
|
707
|
+
- spec/models/get_real_time_timeseries_response_spec.rb
|
|
708
|
+
- spec/models/update_asset_request_spec.rb
|
|
709
|
+
- spec/models/create_playback_restriction_request_spec.rb
|
|
710
|
+
- spec/models/create_live_stream_request_spec.rb
|
|
711
|
+
- spec/models/list_signing_keys_response_spec.rb
|
|
712
|
+
- spec/models/input_settings_overlay_settings_spec.rb
|
|
713
713
|
- spec/spec_helper.rb
|