Skip to content

Commit 10a3eb2

Browse files
authored
Regenerate from latest OpenAPI spec and RC for 3.11.3 (#69)
* Renerate from latest (local) OpenAPI spec * Setuptools was removed in 3.12.x, so pinning python to 3.11.x as a quick fix
1 parent c4c52b4 commit 10a3eb2

File tree

11 files changed

+13
-13
lines changed

11 files changed

+13
-13
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Install Python 3.x
1717
uses: actions/setup-python@v1
1818
with:
19-
python-version: '3.x'
19+
python-version: '3.11.x'
2020
- name: Install Python Dependencies
2121
run: python setup.py install
2222
- name: Run Integration Tests

docs/Asset.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Name | Type | Description | Notes
1010
**max_stored_resolution** | **str** | This field is deprecated. Please use `resolution_tier` instead. The maximum resolution that has been stored for the asset. The asset may be delivered at lower resolutions depending on the device and bandwidth, however it cannot be delivered at a higher value than is stored. | [optional]
1111
**resolution_tier** | **str** | The resolution tier that the asset was ingested at, affecting billing for ingest & storage. This field also represents the highest resolution tier that the content can be delivered at, however the actual resolution may be lower depending on the device, bandwidth, and exact resolution of the uploaded asset. | [optional]
1212
**max_resolution_tier** | **str** | Max resolution tier can be used to control the maximum `resolution_tier` your asset is encoded, stored, and streamed at. If not set, this defaults to `1080p`. | [optional]
13-
**encoding_tier** | **str** | The encoding tier informs the cost, quality, and available platform features for the asset. By default the `smart` encoding tier is used. | [optional]
13+
**encoding_tier** | **str** | The encoding tier informs the cost, quality, and available platform features for the asset. By default the `smart` encoding tier is used. [See the guide for more details.](https://docs.mux.com/guides/video/use-encoding-tiers) | [optional]
1414
**max_stored_frame_rate** | **float** | The maximum frame rate that has been stored for the asset. The asset may be delivered at lower frame rates depending on the device and bandwidth, however it cannot be delivered at a higher value than is stored. This field may return -1 if the frame rate of the input cannot be reliably determined. | [optional]
1515
**aspect_ratio** | **str** | The aspect ratio of the asset in the form of `width:height`, for example `16:9`. | [optional]
1616
**playback_ids** | [**list[PlaybackID]**](PlaybackID.md) | An array of Playback ID objects. Use these to create HLS playback URLs. See [Play your videos](https://docs.mux.com/guides/video/play-your-videos) for more details. | [optional]

docs/CreateAssetRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Name | Type | Description | Notes
1212
**master_access** | **str** | Specify what level (if any) of support for master access. Master access can be enabled temporarily for your asset to be downloaded. See the [Download your videos guide](/guides/video/download-your-videos) for more information. | [optional]
1313
**test** | **bool** | Marks the asset as a test asset when the value is set to true. A Test asset can help evaluate the Mux Video APIs without incurring any cost. There is no limit on number of test assets created. Test asset are watermarked with the Mux logo, limited to 10 seconds, deleted after 24 hrs. | [optional]
1414
**max_resolution_tier** | **str** | Max resolution tier can be used to control the maximum `resolution_tier` your asset is encoded, stored, and streamed at. If not set, this defaults to `1080p`. | [optional]
15-
**encoding_tier** | **str** | The encoding tier informs the cost, quality, and available platform features for the asset. By default the `smart` encoding tier is used. | [optional]
15+
**encoding_tier** | **str** | The encoding tier informs the cost, quality, and available platform features for the asset. By default the `smart` encoding tier is used. [See the guide for more details.](https://docs.mux.com/guides/video/use-encoding-tiers) | [optional]
1616

1717
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1818

gen/generator-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"packageName": "mux_python",
44
"projectName": "mux_python",
55
"licenseInfo" : "MIT",
6-
"packageVersion": "3.11.2"
6+
"packageVersion": "3.11.3"
77
}

mux_python/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
from __future__ import absolute_import
1717

18-
__version__ = "3.11.2"
18+
__version__ = "3.11.3"
1919

2020
# import apis into sdk package
2121
from mux_python.api.assets_api import AssetsApi

mux_python/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7979
self.default_headers[header_name] = header_value
8080
self.cookie = cookie
8181
# Set default User-Agent.
82-
self.user_agent = 'OpenAPI-Generator/3.11.2/python'
82+
self.user_agent = 'OpenAPI-Generator/3.11.3/python'
8383
self.client_side_validation = configuration.client_side_validation
8484

8585
def __enter__(self):

mux_python/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ def to_debug_report(self):
406406
"OS: {env}\n"\
407407
"Python Version: {pyversion}\n"\
408408
"Version of the API: v1\n"\
409-
"SDK Package Version: 3.11.2".\
409+
"SDK Package Version: 3.11.3".\
410410
format(env=sys.platform, pyversion=sys.version)
411411

412412
def get_host_settings(self):

mux_python/models/asset.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ def max_resolution_tier(self, max_resolution_tier):
375375
def encoding_tier(self):
376376
"""Gets the encoding_tier of this Asset. # noqa: E501
377377
378-
The encoding tier informs the cost, quality, and available platform features for the asset. By default the `smart` encoding tier is used. # noqa: E501
378+
The encoding tier informs the cost, quality, and available platform features for the asset. By default the `smart` encoding tier is used. [See the guide for more details.](https://docs.mux.com/guides/video/use-encoding-tiers) # noqa: E501
379379
380380
:return: The encoding_tier of this Asset. # noqa: E501
381381
:rtype: str
@@ -386,7 +386,7 @@ def encoding_tier(self):
386386
def encoding_tier(self, encoding_tier):
387387
"""Sets the encoding_tier of this Asset.
388388
389-
The encoding tier informs the cost, quality, and available platform features for the asset. By default the `smart` encoding tier is used. # noqa: E501
389+
The encoding tier informs the cost, quality, and available platform features for the asset. By default the `smart` encoding tier is used. [See the guide for more details.](https://docs.mux.com/guides/video/use-encoding-tiers) # noqa: E501
390390
391391
:param encoding_tier: The encoding_tier of this Asset. # noqa: E501
392392
:type encoding_tier: str

mux_python/models/create_asset_request.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ def max_resolution_tier(self, max_resolution_tier):
328328
def encoding_tier(self):
329329
"""Gets the encoding_tier of this CreateAssetRequest. # noqa: E501
330330
331-
The encoding tier informs the cost, quality, and available platform features for the asset. By default the `smart` encoding tier is used. # noqa: E501
331+
The encoding tier informs the cost, quality, and available platform features for the asset. By default the `smart` encoding tier is used. [See the guide for more details.](https://docs.mux.com/guides/video/use-encoding-tiers) # noqa: E501
332332
333333
:return: The encoding_tier of this CreateAssetRequest. # noqa: E501
334334
:rtype: str
@@ -339,7 +339,7 @@ def encoding_tier(self):
339339
def encoding_tier(self, encoding_tier):
340340
"""Sets the encoding_tier of this CreateAssetRequest.
341341
342-
The encoding tier informs the cost, quality, and available platform features for the asset. By default the `smart` encoding tier is used. # noqa: E501
342+
The encoding tier informs the cost, quality, and available platform features for the asset. By default the `smart` encoding tier is used. [See the guide for more details.](https://docs.mux.com/guides/video/use-encoding-tiers) # noqa: E501
343343
344344
:param encoding_tier: The encoding_tier of this CreateAssetRequest. # noqa: E501
345345
:type encoding_tier: str

mux_python/models/track.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ def text_source(self, text_source):
365365
:param text_source: The text_source of this Track. # noqa: E501
366366
:type text_source: str
367367
"""
368-
allowed_values = ["uploaded", "embedded", "generated_live", "generated_live_final"] # noqa: E501
368+
allowed_values = ["uploaded", "embedded", "generated_live", "generated_live_final", "generated_vod"] # noqa: E501
369369
if self.local_vars_configuration.client_side_validation and text_source not in allowed_values: # noqa: E501
370370
raise ValueError(
371371
"Invalid value for `text_source` ({0}), must be one of {1}" # noqa: E501

0 commit comments

Comments
 (0)