Class: Azure::MediaServices::Mgmt::V2020_05_01::Models::TransportStreamFormat
- Inherits:
-
MultiBitrateFormat
- Object
- Format
- MultiBitrateFormat
- Azure::MediaServices::Mgmt::V2020_05_01::Models::TransportStreamFormat
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-05-01/generated/azure_mgmt_media_services/models/transport_stream_format.rb
Overview
Describes the properties for generating an MPEG-2 Transport Stream (ISO/IEC 13818-1) output video file(s).
Instance Attribute Summary collapse
-
#odatatype ⇒ Object
Returns the value of attribute odatatype.
Attributes inherited from MultiBitrateFormat
Attributes inherited from Format
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for TransportStreamFormat class as Ruby Hash.
Instance Method Summary collapse
-
#initialize ⇒ TransportStreamFormat
constructor
A new instance of TransportStreamFormat.
Constructor Details
#initialize ⇒ TransportStreamFormat
17 18 19 |
# File 'lib/2020-05-01/generated/azure_mgmt_media_services/models/transport_stream_format.rb', line 17 def initialize @odatatype = "#Microsoft.Media.TransportStreamFormat" end |
Instance Attribute Details
#odatatype ⇒ Object
Returns the value of attribute odatatype.
21 22 23 |
# File 'lib/2020-05-01/generated/azure_mgmt_media_services/models/transport_stream_format.rb', line 21 def odatatype @odatatype end |
Class Method Details
.mapper ⇒ Object
Mapper for TransportStreamFormat class as Ruby Hash. This will be used for serialization/deserialization.
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
# File 'lib/2020-05-01/generated/azure_mgmt_media_services/models/transport_stream_format.rb', line 28 def self.mapper() { client_side_validation: true, required: false, serialized_name: '#Microsoft.Media.TransportStreamFormat', type: { name: 'Composite', class_name: 'TransportStreamFormat', model_properties: { filename_pattern: { client_side_validation: true, required: true, serialized_name: 'filenamePattern', type: { name: 'String' } }, odatatype: { client_side_validation: true, required: true, serialized_name: '@odata\\.type', type: { name: 'String' } }, output_files: { client_side_validation: true, required: false, serialized_name: 'outputFiles', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'OutputFileElementType', type: { name: 'Composite', class_name: 'OutputFile' } } } } } } } end |