Skip to content

Commit bdbef6a

Browse files
author
SDKAuto
committed
CodeGen from PR 16431 in Azure/azure-rest-api-specs
Merge 55237cfe8ea393799b30c95c029cfee68aa09574 into 62ec790
1 parent 14496e7 commit bdbef6a

File tree

5 files changed

+31
-25
lines changed

5 files changed

+31
-25
lines changed

sdk/media/azure-mgmt-media/_meta.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"autorest": "3.4.5",
33
"use": [
4-
"@autorest/[email protected].3",
4+
"@autorest/[email protected].4",
55
"@autorest/[email protected]"
66
],
7-
"commit": "9d35bc9e89687145294705eb72e378bd83c1520c",
7+
"commit": "0418ecbffbf97c145408c915d741d7c73ab2295c",
88
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
9-
"autorest_command": "autorest specification/mediaservices/resource-manager/readme.md --multiapi --python --python-mode=update --python-sdks-folder=/home/vsts/work/1/s/azure-sdk-for-python/sdk --track2 --use=@autorest/[email protected].3 --use=@autorest/[email protected] --version=3.4.5",
9+
"autorest_command": "autorest specification/mediaservices/resource-manager/readme.md --multiapi --python --python-mode=update --python-sdks-folder=/home/vsts/work/1/s/azure-sdk-for-python/sdk --track2 --use=@autorest/[email protected].4 --use=@autorest/[email protected] --version=3.4.5",
1010
"readme": "specification/mediaservices/resource-manager/readme.md"
1111
}

sdk/media/azure-mgmt-media/azure/mgmt/media/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "8.0.0"
9+
VERSION = "1.0.0b1"

sdk/media/azure-mgmt-media/azure/mgmt/media/models/_azure_media_services_enums.py

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -572,25 +572,29 @@ class JobState(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
572572
SCHEDULED = "Scheduled"
573573

574574
class LiveEventEncodingType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
575-
"""Live event type. When encodingType is set to None, the service simply passes through the
576-
incoming video and audio layer(s) to the output. When encodingType is set to Standard or
577-
Premium1080p, a live encoder transcodes the incoming stream into multiple bitrates or layers.
578-
See https://go.microsoft.com/fwlink/?linkid=2095101 for more information. This property cannot
579-
be modified after the live event is created.
575+
"""Live event type. When encodingType is set to PassthroughBasic or PassthroughStandard, the
576+
service simply passes through the incoming video and audio layer(s) to the output. When
577+
encodingType is set to Standard or Premium1080p, a live encoder transcodes the incoming stream
578+
into multiple bitrates or layers. See https://go.microsoft.com/fwlink/?linkid=2095101 for more
579+
information. This property cannot be modified after the live event is created.
580580
"""
581581

582-
#: A contribution live encoder sends a multiple bitrate stream. The ingested stream passes through
583-
#: the live event without any further processing. It is also called the pass-through mode.
582+
#: This is the same as PassthroughStandard, please see description below. This enumeration value
583+
#: is being deprecated.
584584
NONE = "None"
585585
#: A contribution live encoder sends a single bitrate stream to the live event and Media Services
586586
#: creates multiple bitrate streams. The output cannot exceed 720p in resolution.
587587
STANDARD = "Standard"
588588
#: A contribution live encoder sends a single bitrate stream to the live event and Media Services
589589
#: creates multiple bitrate streams. The output cannot exceed 1080p in resolution.
590590
PREMIUM1080_P = "Premium1080p"
591-
#: Pending update...
591+
#: The ingested stream passes through the live event from the contribution encoder without any
592+
#: further processing. In the PassthroughBasic mode, ingestion is limited to up to 5Mbps and only
593+
#: 1 concurrent live output is allowed. Live transcription is not available.
592594
PASSTHROUGH_BASIC = "PassthroughBasic"
593-
#: Pending update...
595+
#: The ingested stream passes through the live event from the contribution encoder without any
596+
#: further processing. Live transcription is available. Ingestion bitrate limits are much higher
597+
#: and up to 3 concurrent live outputs are allowed.
594598
PASSTHROUGH_STANDARD = "PassthroughStandard"
595599

596600
class LiveEventInputProtocol(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):

sdk/media/azure-mgmt-media/azure/mgmt/media/models/_models.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4861,12 +4861,13 @@ def __init__(
48614861
class LiveEventEncoding(msrest.serialization.Model):
48624862
"""Specifies the live event type and optional encoding settings for encoding live events.
48634863
4864-
:param encoding_type: Live event type. When encodingType is set to None, the service simply
4865-
passes through the incoming video and audio layer(s) to the output. When encodingType is set to
4866-
Standard or Premium1080p, a live encoder transcodes the incoming stream into multiple bitrates
4867-
or layers. See https://go.microsoft.com/fwlink/?linkid=2095101 for more information. This
4868-
property cannot be modified after the live event is created. Possible values include: "None",
4869-
"Standard", "Premium1080p", "PassthroughBasic", "PassthroughStandard".
4864+
:param encoding_type: Live event type. When encodingType is set to PassthroughBasic or
4865+
PassthroughStandard, the service simply passes through the incoming video and audio layer(s) to
4866+
the output. When encodingType is set to Standard or Premium1080p, a live encoder transcodes the
4867+
incoming stream into multiple bitrates or layers. See
4868+
https://go.microsoft.com/fwlink/?linkid=2095101 for more information. This property cannot be
4869+
modified after the live event is created. Possible values include: "None", "Standard",
4870+
"Premium1080p", "PassthroughBasic", "PassthroughStandard".
48704871
:type encoding_type: str or ~azure.mgmt.media.models.LiveEventEncodingType
48714872
:param preset_name: The optional encoding preset name, used when encodingType is not None. This
48724873
value is specified at creation time and cannot be updated. If the encodingType is set to

sdk/media/azure-mgmt-media/azure/mgmt/media/models/_models_py3.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5290,12 +5290,13 @@ def __init__(
52905290
class LiveEventEncoding(msrest.serialization.Model):
52915291
"""Specifies the live event type and optional encoding settings for encoding live events.
52925292
5293-
:param encoding_type: Live event type. When encodingType is set to None, the service simply
5294-
passes through the incoming video and audio layer(s) to the output. When encodingType is set to
5295-
Standard or Premium1080p, a live encoder transcodes the incoming stream into multiple bitrates
5296-
or layers. See https://go.microsoft.com/fwlink/?linkid=2095101 for more information. This
5297-
property cannot be modified after the live event is created. Possible values include: "None",
5298-
"Standard", "Premium1080p", "PassthroughBasic", "PassthroughStandard".
5293+
:param encoding_type: Live event type. When encodingType is set to PassthroughBasic or
5294+
PassthroughStandard, the service simply passes through the incoming video and audio layer(s) to
5295+
the output. When encodingType is set to Standard or Premium1080p, a live encoder transcodes the
5296+
incoming stream into multiple bitrates or layers. See
5297+
https://go.microsoft.com/fwlink/?linkid=2095101 for more information. This property cannot be
5298+
modified after the live event is created. Possible values include: "None", "Standard",
5299+
"Premium1080p", "PassthroughBasic", "PassthroughStandard".
52995300
:type encoding_type: str or ~azure.mgmt.media.models.LiveEventEncodingType
53005301
:param preset_name: The optional encoding preset name, used when encodingType is not None. This
53015302
value is specified at creation time and cannot be updated. If the encodingType is set to

0 commit comments

Comments
 (0)