Sha256: f83d09cd44e6269114a73f6eac2a27278c740987890b58327c5eaa90161cb55e
Contents?: true
Size: 1.75 KB
Versions: 12
Compression:
Stored size: 1.75 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::MediaServices::Mgmt::V2018_03_30_preview module Models # # Represents an output file produced. # class OutputFile include MsRestAzure # @return [Array<String>] The list of labels that describe how the # encoder should multiplex video and audio into an output file. For # example, if the encoder is producing two video layers with labels v1 # and v2, and one audio layer with label a1, then an array like '[v1, # a1]' tells the encoder to produce an output file with the video track # represented by v1 and the audio track represented by a1. attr_accessor :labels # # Mapper for OutputFile class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'OutputFile', type: { name: 'Composite', class_name: 'OutputFile', model_properties: { labels: { client_side_validation: true, required: false, serialized_name: 'labels', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } } } } } end end end end
Version data entries
12 entries across 12 versions & 1 rubygems