Class: Azure::MediaServices::Mgmt::V2018_07_01::Models::FilterTrackPropertyCondition
- Inherits:
-
Object
- Object
- Azure::MediaServices::Mgmt::V2018_07_01::Models::FilterTrackPropertyCondition
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-07-01/generated/azure_mgmt_media_services/models/filter_track_property_condition.rb
Overview
The class to specify one track property condition.
Instance Attribute Summary collapse
-
#operation ⇒ FilterTrackPropertyCompareOperation
condition operation.
-
#property ⇒ FilterTrackPropertyType
values include: ‘Unknown’, ‘Type’, ‘Name’, ‘Language’, ‘FourCC’, ‘Bitrate’.
-
#value ⇒ String
The track property value.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for FilterTrackPropertyCondition class as Ruby Hash.
Instance Attribute Details
#operation ⇒ FilterTrackPropertyCompareOperation
condition operation. Possible values include: ‘Equal’, ‘NotEqual’
25 26 27 |
# File 'lib/2018-07-01/generated/azure_mgmt_media_services/models/filter_track_property_condition.rb', line 25 def operation @operation end |
#property ⇒ FilterTrackPropertyType
values include: ‘Unknown’, ‘Type’, ‘Name’, ‘Language’, ‘FourCC’, ‘Bitrate’
18 19 20 |
# File 'lib/2018-07-01/generated/azure_mgmt_media_services/models/filter_track_property_condition.rb', line 18 def property @property end |
#value ⇒ String
Returns The track property value.
21 22 23 |
# File 'lib/2018-07-01/generated/azure_mgmt_media_services/models/filter_track_property_condition.rb', line 21 def value @value end |
Class Method Details
.mapper ⇒ Object
Mapper for FilterTrackPropertyCondition class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2018-07-01/generated/azure_mgmt_media_services/models/filter_track_property_condition.rb', line 32 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'FilterTrackPropertyCondition', type: { name: 'Composite', class_name: 'FilterTrackPropertyCondition', model_properties: { property: { client_side_validation: true, required: true, serialized_name: 'property', type: { name: 'String' } }, value: { client_side_validation: true, required: true, serialized_name: 'value', type: { name: 'String' } }, operation: { client_side_validation: true, required: true, serialized_name: 'operation', type: { name: 'String' } } } } } end |