Class: Azure::MediaServices::Mgmt::V2018_03_30_preview::Models::JobInputClip
- Inherits:
-
JobInput
- Object
- JobInput
- Azure::MediaServices::Mgmt::V2018_03_30_preview::Models::JobInputClip
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-03-30-preview/generated/azure_mgmt_media_services/models/job_input_clip.rb
Overview
Represents input files for a Job.
Direct Known Subclasses
Instance Attribute Summary collapse
-
#files ⇒ Array<String>
List of files.
-
#odatatype ⇒ Object
Returns the value of attribute odatatype.
Attributes inherited from JobInput
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for JobInputClip class as Ruby Hash.
Instance Method Summary collapse
-
#initialize ⇒ JobInputClip
constructor
A new instance of JobInputClip.
Constructor Details
#initialize ⇒ JobInputClip
16 17 18 |
# File 'lib/2018-03-30-preview/generated/azure_mgmt_media_services/models/job_input_clip.rb', line 16 def initialize @odatatype = "#Microsoft.Media.JobInputClip" end |
Instance Attribute Details
#files ⇒ Array<String>
23 24 25 |
# File 'lib/2018-03-30-preview/generated/azure_mgmt_media_services/models/job_input_clip.rb', line 23 def files @files end |
#odatatype ⇒ Object
Returns the value of attribute odatatype.
20 21 22 |
# File 'lib/2018-03-30-preview/generated/azure_mgmt_media_services/models/job_input_clip.rb', line 20 def odatatype @odatatype end |
Class Method Details
.mapper ⇒ Object
Mapper for JobInputClip class as Ruby Hash. This will be used for serialization/deserialization.
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 74 |
# File 'lib/2018-03-30-preview/generated/azure_mgmt_media_services/models/job_input_clip.rb', line 30 def self.mapper() { client_side_validation: true, required: false, serialized_name: '#Microsoft.Media.JobInputClip', type: { name: 'Composite', class_name: 'JobInputClip', model_properties: { label: { client_side_validation: true, required: false, serialized_name: 'label', type: { name: 'String' } }, odatatype: { client_side_validation: true, required: true, serialized_name: '@odata\\.type', type: { name: 'String' } }, files: { client_side_validation: true, required: false, serialized_name: 'files', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } } } } } end |