mux_ruby 3.5.1 → 3.5.2
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/SpacesApi.md +7 -7
- data/gen/generator-config.json +1 -1
- data/lib/mux_ruby/api/spaces_api.rb +7 -7
- data/lib/mux_ruby/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dd38dc911b0fd31d8689bbe417515a3bfc2558471109affd2351fe92acfd75e1
|
4
|
+
data.tar.gz: b758460cb7bb4dab0c867798d665acfa25600d2a97b89a38fc7ee04699b9c47a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 22c5a221c34578f6ef0c01fb661e69d01f48f10033225f2489015f68cb5d004b94d847015d0f73de7f9b75e72221a28bb8c4919764762e10f463742b9f09ea96
|
7
|
+
data.tar.gz: 8bf7ea579f6ff5eeb608deb4e478e5813db49047b85740180c15c931141372aa88b2e6c593ddcbb28313cd2847e219fb436786a0d678c498be2bbf602fc8c894
|
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.2
|
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.2.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.2.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.2'
|
53
53
|
|
54
54
|
### Install from Git
|
55
55
|
|
data/docs/SpacesApi.md
CHANGED
@@ -5,14 +5,14 @@ All URIs are relative to *https://api.mux.com*
|
|
5
5
|
| Method | HTTP request | Description |
|
6
6
|
| ------ | ------------ | ----------- |
|
7
7
|
| [**create_space**](SpacesApi.md#create_space) | **POST** /video/v1/spaces | Create a space |
|
8
|
-
| [**create_space_broadcast**](SpacesApi.md#create_space_broadcast) | **POST** /video/v1/spaces
|
9
|
-
| [**delete_space**](SpacesApi.md#delete_space) | **DELETE** /video/v1/spaces
|
10
|
-
| [**delete_space_broadcast**](SpacesApi.md#delete_space_broadcast) | **DELETE** /video/v1/spaces
|
11
|
-
| [**get_space**](SpacesApi.md#get_space) | **GET** /video/v1/spaces
|
12
|
-
| [**get_space_broadcast**](SpacesApi.md#get_space_broadcast) | **GET** /video/v1/spaces
|
8
|
+
| [**create_space_broadcast**](SpacesApi.md#create_space_broadcast) | **POST** /video/v1/spaces/{SPACE_ID}/broadcasts | Create a space broadcast |
|
9
|
+
| [**delete_space**](SpacesApi.md#delete_space) | **DELETE** /video/v1/spaces/{SPACE_ID} | Delete a space |
|
10
|
+
| [**delete_space_broadcast**](SpacesApi.md#delete_space_broadcast) | **DELETE** /video/v1/spaces/{SPACE_ID}/broadcasts/{BROADCAST_ID} | Delete a space broadcast |
|
11
|
+
| [**get_space**](SpacesApi.md#get_space) | **GET** /video/v1/spaces/{SPACE_ID} | Retrieve a space |
|
12
|
+
| [**get_space_broadcast**](SpacesApi.md#get_space_broadcast) | **GET** /video/v1/spaces/{SPACE_ID}/broadcasts/{BROADCAST_ID} | Retrieve space broadcast |
|
13
13
|
| [**list_spaces**](SpacesApi.md#list_spaces) | **GET** /video/v1/spaces | List spaces |
|
14
|
-
| [**start_space_broadcast**](SpacesApi.md#start_space_broadcast) | **POST** /video/v1/spaces
|
15
|
-
| [**stop_space_broadcast**](SpacesApi.md#stop_space_broadcast) | **POST** /video/v1/spaces
|
14
|
+
| [**start_space_broadcast**](SpacesApi.md#start_space_broadcast) | **POST** /video/v1/spaces/{SPACE_ID}/broadcasts/{BROADCAST_ID}/start | Start a space broadcast |
|
15
|
+
| [**stop_space_broadcast**](SpacesApi.md#stop_space_broadcast) | **POST** /video/v1/spaces/{SPACE_ID}/broadcasts/{BROADCAST_ID}/stop | Stop a space broadcast |
|
16
16
|
|
17
17
|
|
18
18
|
## create_space
|
data/gen/generator-config.json
CHANGED
@@ -114,7 +114,7 @@ module MuxRuby
|
|
114
114
|
fail ArgumentError, "Missing the required parameter 'create_broadcast_request' when calling SpacesApi.create_space_broadcast"
|
115
115
|
end
|
116
116
|
# resource path
|
117
|
-
local_var_path = '/video/v1/spaces
|
117
|
+
local_var_path = '/video/v1/spaces/{SPACE_ID}/broadcasts'.sub('{' + 'SPACE_ID' + '}', CGI.escape(space_id.to_s))
|
118
118
|
|
119
119
|
# query parameters
|
120
120
|
query_params = opts[:query_params] || {}
|
@@ -179,7 +179,7 @@ module MuxRuby
|
|
179
179
|
fail ArgumentError, "Missing the required parameter 'space_id' when calling SpacesApi.delete_space"
|
180
180
|
end
|
181
181
|
# resource path
|
182
|
-
local_var_path = '/video/v1/spaces
|
182
|
+
local_var_path = '/video/v1/spaces/{SPACE_ID}'.sub('{' + 'SPACE_ID' + '}', CGI.escape(space_id.to_s))
|
183
183
|
|
184
184
|
# query parameters
|
185
185
|
query_params = opts[:query_params] || {}
|
@@ -246,7 +246,7 @@ module MuxRuby
|
|
246
246
|
fail ArgumentError, "Missing the required parameter 'broadcast_id' when calling SpacesApi.delete_space_broadcast"
|
247
247
|
end
|
248
248
|
# resource path
|
249
|
-
local_var_path = '/video/v1/spaces
|
249
|
+
local_var_path = '/video/v1/spaces/{SPACE_ID}/broadcasts/{BROADCAST_ID}'.sub('{' + 'SPACE_ID' + '}', CGI.escape(space_id.to_s)).sub('{' + 'BROADCAST_ID' + '}', CGI.escape(broadcast_id.to_s))
|
250
250
|
|
251
251
|
# query parameters
|
252
252
|
query_params = opts[:query_params] || {}
|
@@ -307,7 +307,7 @@ module MuxRuby
|
|
307
307
|
fail ArgumentError, "Missing the required parameter 'space_id' when calling SpacesApi.get_space"
|
308
308
|
end
|
309
309
|
# resource path
|
310
|
-
local_var_path = '/video/v1/spaces
|
310
|
+
local_var_path = '/video/v1/spaces/{SPACE_ID}'.sub('{' + 'SPACE_ID' + '}', CGI.escape(space_id.to_s))
|
311
311
|
|
312
312
|
# query parameters
|
313
313
|
query_params = opts[:query_params] || {}
|
@@ -376,7 +376,7 @@ module MuxRuby
|
|
376
376
|
fail ArgumentError, "Missing the required parameter 'broadcast_id' when calling SpacesApi.get_space_broadcast"
|
377
377
|
end
|
378
378
|
# resource path
|
379
|
-
local_var_path = '/video/v1/spaces
|
379
|
+
local_var_path = '/video/v1/spaces/{SPACE_ID}/broadcasts/{BROADCAST_ID}'.sub('{' + 'SPACE_ID' + '}', CGI.escape(space_id.to_s)).sub('{' + 'BROADCAST_ID' + '}', CGI.escape(broadcast_id.to_s))
|
380
380
|
|
381
381
|
# query parameters
|
382
382
|
query_params = opts[:query_params] || {}
|
@@ -508,7 +508,7 @@ module MuxRuby
|
|
508
508
|
fail ArgumentError, "Missing the required parameter 'broadcast_id' when calling SpacesApi.start_space_broadcast"
|
509
509
|
end
|
510
510
|
# resource path
|
511
|
-
local_var_path = '/video/v1/spaces
|
511
|
+
local_var_path = '/video/v1/spaces/{SPACE_ID}/broadcasts/{BROADCAST_ID}/start'.sub('{' + 'SPACE_ID' + '}', CGI.escape(space_id.to_s)).sub('{' + 'BROADCAST_ID' + '}', CGI.escape(broadcast_id.to_s))
|
512
512
|
|
513
513
|
# query parameters
|
514
514
|
query_params = opts[:query_params] || {}
|
@@ -577,7 +577,7 @@ module MuxRuby
|
|
577
577
|
fail ArgumentError, "Missing the required parameter 'broadcast_id' when calling SpacesApi.stop_space_broadcast"
|
578
578
|
end
|
579
579
|
# resource path
|
580
|
-
local_var_path = '/video/v1/spaces
|
580
|
+
local_var_path = '/video/v1/spaces/{SPACE_ID}/broadcasts/{BROADCAST_ID}/stop'.sub('{' + 'SPACE_ID' + '}', CGI.escape(space_id.to_s)).sub('{' + 'BROADCAST_ID' + '}', CGI.escape(broadcast_id.to_s))
|
581
581
|
|
582
582
|
# query parameters
|
583
583
|
query_params = opts[:query_params] || {}
|
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.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mux
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-06-
|
11
|
+
date: 2022-06-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|