Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR mediaservices/resource-manager] [Portal Generated] Review request for Microsoft.Media to add version 2018-07-01 #3801

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion azure-mgmt-media/azure/mgmt/media/models/aac_audio.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class AacAudio(Audio):
'channels': {'key': 'channels', 'type': 'int'},
'sampling_rate': {'key': 'samplingRate', 'type': 'int'},
'bitrate': {'key': 'bitrate', 'type': 'int'},
'profile': {'key': 'profile', 'type': 'AacAudioProfile'},
'profile': {'key': 'profile', 'type': 'str'},
}

def __init__(self, **kwargs):
Expand Down
2 changes: 1 addition & 1 deletion azure-mgmt-media/azure/mgmt/media/models/aac_audio_py3.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class AacAudio(Audio):
'channels': {'key': 'channels', 'type': 'int'},
'sampling_rate': {'key': 'samplingRate', 'type': 'int'},
'bitrate': {'key': 'bitrate', 'type': 'int'},
'profile': {'key': 'profile', 'type': 'AacAudioProfile'},
'profile': {'key': 'profile', 'type': 'str'},
}

def __init__(self, *, label: str=None, channels: int=None, sampling_rate: int=None, bitrate: int=None, profile=None, **kwargs) -> None:
Expand Down
2 changes: 1 addition & 1 deletion azure-mgmt-media/azure/mgmt/media/models/asset.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class Asset(ProxyResource):
'description': {'key': 'properties.description', 'type': 'str'},
'container': {'key': 'properties.container', 'type': 'str'},
'storage_account_name': {'key': 'properties.storageAccountName', 'type': 'str'},
'storage_encryption_format': {'key': 'properties.storageEncryptionFormat', 'type': 'AssetStorageEncryptionFormat'},
'storage_encryption_format': {'key': 'properties.storageEncryptionFormat', 'type': 'str'},
}

def __init__(self, **kwargs):
Expand Down
2 changes: 1 addition & 1 deletion azure-mgmt-media/azure/mgmt/media/models/asset_py3.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class Asset(ProxyResource):
'description': {'key': 'properties.description', 'type': 'str'},
'container': {'key': 'properties.container', 'type': 'str'},
'storage_account_name': {'key': 'properties.storageAccountName', 'type': 'str'},
'storage_encryption_format': {'key': 'properties.storageEncryptionFormat', 'type': 'AssetStorageEncryptionFormat'},
'storage_encryption_format': {'key': 'properties.storageEncryptionFormat', 'type': 'str'},
}

def __init__(self, *, alternate_id: str=None, description: str=None, container: str=None, storage_account_name: str=None, **kwargs) -> None:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ class EncoderNamedPreset(str, Enum):
h264_single_bitrate_sd = "H264SingleBitrateSD" #: Produces an MP4 file where the video is encoded with H.264 codec at 2200 kbps and a picture height of 480 pixels, and the stereo audio is encoded with AAC-LC codec at 64 kbps.
h264_single_bitrate720p = "H264SingleBitrate720p" #: Produces an MP4 file where the video is encoded with H.264 codec at 4500 kbps and a picture height of 720 pixels, and the stereo audio is encoded with AAC-LC codec at 64 kbps.
h264_single_bitrate1080p = "H264SingleBitrate1080p" #: Produces an MP4 file where the video is encoded with H.264 codec at 6750 kbps and a picture height of 1080 pixels, and the stereo audio is encoded with AAC-LC codec at 64 kbps.
adaptive_streaming = "AdaptiveStreaming" #: Produces a set of GOP aligned MP4 files with H.264 video and stereo AAC audio. Auto-generates a bitrate ladder based on the input resolution and bitrate. The auto-generated preset will never exceed the input resolution and bitrate. For example, if the input is 720p at 3 Mbps, output will remain 720p at best, and will start at rates lower than 3 Mbps. The output will will have video and audio in separate MP4 files, which is optimal for adaptive streaming.
adaptive_streaming = "AdaptiveStreaming" #: Produces a set of GOP aligned MP4 files with H.264 video and stereo AAC audio. Auto-generates a bitrate ladder based on the input resolution and bitrate. The auto-generated preset will never exceed the input resolution and bitrate. For example, if the input is 720p at 3 Mbps, output will remain 720p at best, and will start at rates lower than 3 Mbps. The output will have video and audio in separate MP4 files, which is optimal for adaptive streaming.
aac_good_quality_audio = "AACGoodQualityAudio" #: Produces a single MP4 file containing only stereo audio encoded at 192 kbps.
h264_multiple_bitrate1080p = "H264MultipleBitrate1080p" #: Produces a set of 8 GOP-aligned MP4 files, ranging from 6000 kbps to 400 kbps, and stereo AAC audio. Resolution starts at 1080p and goes down to 360p.
h264_multiple_bitrate720p = "H264MultipleBitrate720p" #: Produces a set of 6 GOP-aligned MP4 files, ranging from 3400 kbps to 400 kbps, and stereo AAC audio. Resolution starts at 720p and goes down to 360p.
Expand Down Expand Up @@ -282,6 +282,7 @@ class LiveEventEncodingType(str, Enum):

none = "None"
basic = "Basic"
standard = "Standard"


class LiveEventResourceState(str, Enum):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class BuiltInStandardEncoderPreset(Preset):

_attribute_map = {
'odatatype': {'key': '@odata\\.type', 'type': 'str'},
'preset_name': {'key': 'presetName', 'type': 'EncoderNamedPreset'},
'preset_name': {'key': 'presetName', 'type': 'str'},
}

def __init__(self, **kwargs):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class BuiltInStandardEncoderPreset(Preset):

_attribute_map = {
'odatatype': {'key': '@odata\\.type', 'type': 'str'},
'preset_name': {'key': 'presetName', 'type': 'EncoderNamedPreset'},
'preset_name': {'key': 'presetName', 'type': 'str'},
}

def __init__(self, *, preset_name, **kwargs) -> None:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class ContentKeyPolicyFairPlayConfiguration(ContentKeyPolicyConfiguration):
'ask': {'key': 'ask', 'type': 'bytearray'},
'fair_play_pfx_password': {'key': 'fairPlayPfxPassword', 'type': 'str'},
'fair_play_pfx': {'key': 'fairPlayPfx', 'type': 'str'},
'rental_and_lease_key_type': {'key': 'rentalAndLeaseKeyType', 'type': 'ContentKeyPolicyFairPlayRentalAndLeaseKeyType'},
'rental_and_lease_key_type': {'key': 'rentalAndLeaseKeyType', 'type': 'str'},
'rental_duration': {'key': 'rentalDuration', 'type': 'long'},
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class ContentKeyPolicyFairPlayConfiguration(ContentKeyPolicyConfiguration):
'ask': {'key': 'ask', 'type': 'bytearray'},
'fair_play_pfx_password': {'key': 'fairPlayPfxPassword', 'type': 'str'},
'fair_play_pfx': {'key': 'fairPlayPfx', 'type': 'str'},
'rental_and_lease_key_type': {'key': 'rentalAndLeaseKeyType', 'type': 'ContentKeyPolicyFairPlayRentalAndLeaseKeyType'},
'rental_and_lease_key_type': {'key': 'rentalAndLeaseKeyType', 'type': 'str'},
'rental_duration': {'key': 'rentalDuration', 'type': 'long'},
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ class ContentKeyPolicyPlayReadyLicense(Model):
'relative_expiration_date': {'key': 'relativeExpirationDate', 'type': 'duration'},
'grace_period': {'key': 'gracePeriod', 'type': 'duration'},
'play_right': {'key': 'playRight', 'type': 'ContentKeyPolicyPlayReadyPlayRight'},
'license_type': {'key': 'licenseType', 'type': 'ContentKeyPolicyPlayReadyLicenseType'},
'license_type': {'key': 'licenseType', 'type': 'str'},
'content_key_location': {'key': 'contentKeyLocation', 'type': 'ContentKeyPolicyPlayReadyContentKeyLocation'},
'content_type': {'key': 'contentType', 'type': 'ContentKeyPolicyPlayReadyContentType'},
'content_type': {'key': 'contentType', 'type': 'str'},
}

def __init__(self, **kwargs):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ class ContentKeyPolicyPlayReadyLicense(Model):
'relative_expiration_date': {'key': 'relativeExpirationDate', 'type': 'duration'},
'grace_period': {'key': 'gracePeriod', 'type': 'duration'},
'play_right': {'key': 'playRight', 'type': 'ContentKeyPolicyPlayReadyPlayRight'},
'license_type': {'key': 'licenseType', 'type': 'ContentKeyPolicyPlayReadyLicenseType'},
'license_type': {'key': 'licenseType', 'type': 'str'},
'content_key_location': {'key': 'contentKeyLocation', 'type': 'ContentKeyPolicyPlayReadyContentKeyLocation'},
'content_type': {'key': 'contentType', 'type': 'ContentKeyPolicyPlayReadyContentType'},
'content_type': {'key': 'contentType', 'type': 'str'},
}

def __init__(self, *, allow_test_devices: bool, license_type, content_key_location, content_type, begin_date=None, expiration_date=None, relative_begin_date=None, relative_expiration_date=None, grace_period=None, play_right=None, **kwargs) -> None:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class ContentKeyPolicyPlayReadyPlayRight(Model):
'digital_video_only_content_restriction': {'key': 'digitalVideoOnlyContentRestriction', 'type': 'bool'},
'image_constraint_for_analog_component_video_restriction': {'key': 'imageConstraintForAnalogComponentVideoRestriction', 'type': 'bool'},
'image_constraint_for_analog_computer_monitor_restriction': {'key': 'imageConstraintForAnalogComputerMonitorRestriction', 'type': 'bool'},
'allow_passing_video_content_to_unknown_output': {'key': 'allowPassingVideoContentToUnknownOutput', 'type': 'ContentKeyPolicyPlayReadyUnknownOutputPassingOption'},
'allow_passing_video_content_to_unknown_output': {'key': 'allowPassingVideoContentToUnknownOutput', 'type': 'str'},
'uncompressed_digital_video_opl': {'key': 'uncompressedDigitalVideoOpl', 'type': 'int'},
'compressed_digital_video_opl': {'key': 'compressedDigitalVideoOpl', 'type': 'int'},
'analog_video_opl': {'key': 'analogVideoOpl', 'type': 'int'},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class ContentKeyPolicyPlayReadyPlayRight(Model):
'digital_video_only_content_restriction': {'key': 'digitalVideoOnlyContentRestriction', 'type': 'bool'},
'image_constraint_for_analog_component_video_restriction': {'key': 'imageConstraintForAnalogComponentVideoRestriction', 'type': 'bool'},
'image_constraint_for_analog_computer_monitor_restriction': {'key': 'imageConstraintForAnalogComputerMonitorRestriction', 'type': 'bool'},
'allow_passing_video_content_to_unknown_output': {'key': 'allowPassingVideoContentToUnknownOutput', 'type': 'ContentKeyPolicyPlayReadyUnknownOutputPassingOption'},
'allow_passing_video_content_to_unknown_output': {'key': 'allowPassingVideoContentToUnknownOutput', 'type': 'str'},
'uncompressed_digital_video_opl': {'key': 'uncompressedDigitalVideoOpl', 'type': 'int'},
'compressed_digital_video_opl': {'key': 'compressedDigitalVideoOpl', 'type': 'int'},
'analog_video_opl': {'key': 'analogVideoOpl', 'type': 'int'},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class ContentKeyPolicyTokenRestriction(ContentKeyPolicyRestriction):
'primary_verification_key': {'key': 'primaryVerificationKey', 'type': 'ContentKeyPolicyRestrictionTokenKey'},
'alternate_verification_keys': {'key': 'alternateVerificationKeys', 'type': '[ContentKeyPolicyRestrictionTokenKey]'},
'required_claims': {'key': 'requiredClaims', 'type': '[ContentKeyPolicyTokenClaim]'},
'restriction_token_type': {'key': 'restrictionTokenType', 'type': 'ContentKeyPolicyRestrictionTokenType'},
'restriction_token_type': {'key': 'restrictionTokenType', 'type': 'str'},
'open_id_connect_discovery_document': {'key': 'openIdConnectDiscoveryDocument', 'type': 'str'},
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class ContentKeyPolicyTokenRestriction(ContentKeyPolicyRestriction):
'primary_verification_key': {'key': 'primaryVerificationKey', 'type': 'ContentKeyPolicyRestrictionTokenKey'},
'alternate_verification_keys': {'key': 'alternateVerificationKeys', 'type': '[ContentKeyPolicyRestrictionTokenKey]'},
'required_claims': {'key': 'requiredClaims', 'type': '[ContentKeyPolicyTokenClaim]'},
'restriction_token_type': {'key': 'restrictionTokenType', 'type': 'ContentKeyPolicyRestrictionTokenType'},
'restriction_token_type': {'key': 'restrictionTokenType', 'type': 'str'},
'open_id_connect_discovery_document': {'key': 'openIdConnectDiscoveryDocument', 'type': 'str'},
}

Expand Down
4 changes: 2 additions & 2 deletions azure-mgmt-media/azure/mgmt/media/models/deinterlace.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ class Deinterlace(Model):
"""

_attribute_map = {
'parity': {'key': 'parity', 'type': 'DeinterlaceParity'},
'mode': {'key': 'mode', 'type': 'DeinterlaceMode'},
'parity': {'key': 'parity', 'type': 'str'},
'mode': {'key': 'mode', 'type': 'str'},
}

def __init__(self, **kwargs):
Expand Down
4 changes: 2 additions & 2 deletions azure-mgmt-media/azure/mgmt/media/models/deinterlace_py3.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ class Deinterlace(Model):
"""

_attribute_map = {
'parity': {'key': 'parity', 'type': 'DeinterlaceParity'},
'mode': {'key': 'mode', 'type': 'DeinterlaceMode'},
'parity': {'key': 'parity', 'type': 'str'},
'mode': {'key': 'mode', 'type': 'str'},
}

def __init__(self, *, parity=None, mode=None, **kwargs) -> None:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class EnvelopeEncryption(Model):
:param content_keys: Representing default content key for each encryption
scheme and separate content keys for specific tracks
:type content_keys: ~azure.mgmt.media.models.StreamingPolicyContentKeys
:param custom_key_acquisition_url_template: KeyAcquistionUrlTemplate is
:param custom_key_acquisition_url_template: KeyAcquisitionUrlTemplate is
used to point to user specified service to delivery content keys
:type custom_key_acquisition_url_template: str
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class EnvelopeEncryption(Model):
:param content_keys: Representing default content key for each encryption
scheme and separate content keys for specific tracks
:type content_keys: ~azure.mgmt.media.models.StreamingPolicyContentKeys
:param custom_key_acquisition_url_template: KeyAcquistionUrlTemplate is
:param custom_key_acquisition_url_template: KeyAcquisitionUrlTemplate is
used to point to user specified service to delivery content keys
:type custom_key_acquisition_url_template: str
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ class FilterTrackPropertyCondition(Model):
}

_attribute_map = {
'property': {'key': 'property', 'type': 'FilterTrackPropertyType'},
'property': {'key': 'property', 'type': 'str'},
'value': {'key': 'value', 'type': 'str'},
'operation': {'key': 'operation', 'type': 'FilterTrackPropertyCompareOperation'},
'operation': {'key': 'operation', 'type': 'str'},
}

def __init__(self, **kwargs):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ class FilterTrackPropertyCondition(Model):
}

_attribute_map = {
'property': {'key': 'property', 'type': 'FilterTrackPropertyType'},
'property': {'key': 'property', 'type': 'str'},
'value': {'key': 'value', 'type': 'str'},
'operation': {'key': 'operation', 'type': 'FilterTrackPropertyCompareOperation'},
'operation': {'key': 'operation', 'type': 'str'},
}

def __init__(self, *, property, value: str, operation, **kwargs) -> None:
Expand Down
2 changes: 1 addition & 1 deletion azure-mgmt-media/azure/mgmt/media/models/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class Filters(Model):

_attribute_map = {
'deinterlace': {'key': 'deinterlace', 'type': 'Deinterlace'},
'rotation': {'key': 'rotation', 'type': 'Rotation'},
'rotation': {'key': 'rotation', 'type': 'str'},
'crop': {'key': 'crop', 'type': 'Rectangle'},
'overlays': {'key': 'overlays', 'type': '[Overlay]'},
}
Expand Down
2 changes: 1 addition & 1 deletion azure-mgmt-media/azure/mgmt/media/models/filters_py3.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class Filters(Model):

_attribute_map = {
'deinterlace': {'key': 'deinterlace', 'type': 'Deinterlace'},
'rotation': {'key': 'rotation', 'type': 'Rotation'},
'rotation': {'key': 'rotation', 'type': 'str'},
'crop': {'key': 'crop', 'type': 'Rectangle'},
'overlays': {'key': 'overlays', 'type': '[Overlay]'},
}
Expand Down
4 changes: 2 additions & 2 deletions azure-mgmt-media/azure/mgmt/media/models/h264_layer.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,11 @@ class H264Layer(VideoLayer):
'frame_rate': {'key': 'frameRate', 'type': 'str'},
'slices': {'key': 'slices', 'type': 'int'},
'adaptive_bframe': {'key': 'adaptiveBFrame', 'type': 'bool'},
'profile': {'key': 'profile', 'type': 'H264VideoProfile'},
'profile': {'key': 'profile', 'type': 'str'},
'level': {'key': 'level', 'type': 'str'},
'buffer_window': {'key': 'bufferWindow', 'type': 'duration'},
'reference_frames': {'key': 'referenceFrames', 'type': 'int'},
'entropy_mode': {'key': 'entropyMode', 'type': 'EntropyMode'},
'entropy_mode': {'key': 'entropyMode', 'type': 'str'},
}

def __init__(self, **kwargs):
Expand Down
4 changes: 2 additions & 2 deletions azure-mgmt-media/azure/mgmt/media/models/h264_layer_py3.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,11 @@ class H264Layer(VideoLayer):
'frame_rate': {'key': 'frameRate', 'type': 'str'},
'slices': {'key': 'slices', 'type': 'int'},
'adaptive_bframe': {'key': 'adaptiveBFrame', 'type': 'bool'},
'profile': {'key': 'profile', 'type': 'H264VideoProfile'},
'profile': {'key': 'profile', 'type': 'str'},
'level': {'key': 'level', 'type': 'str'},
'buffer_window': {'key': 'bufferWindow', 'type': 'duration'},
'reference_frames': {'key': 'referenceFrames', 'type': 'int'},
'entropy_mode': {'key': 'entropyMode', 'type': 'EntropyMode'},
'entropy_mode': {'key': 'entropyMode', 'type': 'str'},
}

def __init__(self, *, width: str=None, height: str=None, label: str=None, bitrate: int=None, max_bitrate: int=None, b_frames: int=None, frame_rate: str=None, slices: int=None, adaptive_bframe: bool=None, profile=None, level: str=None, buffer_window=None, reference_frames: int=None, entropy_mode=None, **kwargs) -> None:
Expand Down
4 changes: 2 additions & 2 deletions azure-mgmt-media/azure/mgmt/media/models/h264_video.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ class H264Video(Video):
'label': {'key': 'label', 'type': 'str'},
'odatatype': {'key': '@odata\\.type', 'type': 'str'},
'key_frame_interval': {'key': 'keyFrameInterval', 'type': 'duration'},
'stretch_mode': {'key': 'stretchMode', 'type': 'StretchMode'},
'stretch_mode': {'key': 'stretchMode', 'type': 'str'},
'scene_change_detection': {'key': 'sceneChangeDetection', 'type': 'bool'},
'complexity': {'key': 'complexity', 'type': 'H264Complexity'},
'complexity': {'key': 'complexity', 'type': 'str'},
'layers': {'key': 'layers', 'type': '[H264Layer]'},
}

Expand Down
4 changes: 2 additions & 2 deletions azure-mgmt-media/azure/mgmt/media/models/h264_video_py3.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ class H264Video(Video):
'label': {'key': 'label', 'type': 'str'},
'odatatype': {'key': '@odata\\.type', 'type': 'str'},
'key_frame_interval': {'key': 'keyFrameInterval', 'type': 'duration'},
'stretch_mode': {'key': 'stretchMode', 'type': 'StretchMode'},
'stretch_mode': {'key': 'stretchMode', 'type': 'str'},
'scene_change_detection': {'key': 'sceneChangeDetection', 'type': 'bool'},
'complexity': {'key': 'complexity', 'type': 'H264Complexity'},
'complexity': {'key': 'complexity', 'type': 'str'},
'layers': {'key': 'layers', 'type': '[H264Layer]'},
}

Expand Down
2 changes: 1 addition & 1 deletion azure-mgmt-media/azure/mgmt/media/models/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class Image(Video):
'label': {'key': 'label', 'type': 'str'},
'odatatype': {'key': '@odata\\.type', 'type': 'str'},
'key_frame_interval': {'key': 'keyFrameInterval', 'type': 'duration'},
'stretch_mode': {'key': 'stretchMode', 'type': 'StretchMode'},
'stretch_mode': {'key': 'stretchMode', 'type': 'str'},
'start': {'key': 'start', 'type': 'str'},
'step': {'key': 'step', 'type': 'str'},
'range': {'key': 'range', 'type': 'str'},
Expand Down
2 changes: 1 addition & 1 deletion azure-mgmt-media/azure/mgmt/media/models/image_py3.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class Image(Video):
'label': {'key': 'label', 'type': 'str'},
'odatatype': {'key': '@odata\\.type', 'type': 'str'},
'key_frame_interval': {'key': 'keyFrameInterval', 'type': 'duration'},
'stretch_mode': {'key': 'stretchMode', 'type': 'StretchMode'},
'stretch_mode': {'key': 'stretchMode', 'type': 'str'},
'start': {'key': 'start', 'type': 'str'},
'step': {'key': 'step', 'type': 'str'},
'range': {'key': 'range', 'type': 'str'},
Expand Down
4 changes: 2 additions & 2 deletions azure-mgmt-media/azure/mgmt/media/models/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@ class Job(ProxyResource):
'name': {'key': 'name', 'type': 'str'},
'type': {'key': 'type', 'type': 'str'},
'created': {'key': 'properties.created', 'type': 'iso-8601'},
'state': {'key': 'properties.state', 'type': 'JobState'},
'state': {'key': 'properties.state', 'type': 'str'},
'description': {'key': 'properties.description', 'type': 'str'},
'input': {'key': 'properties.input', 'type': 'JobInput'},
'last_modified': {'key': 'properties.lastModified', 'type': 'iso-8601'},
'outputs': {'key': 'properties.outputs', 'type': '[JobOutput]'},
'priority': {'key': 'properties.priority', 'type': 'Priority'},
'priority': {'key': 'properties.priority', 'type': 'str'},
'correlation_data': {'key': 'properties.correlationData', 'type': '{str}'},
}

Expand Down
Loading