Class: Azure::MediaServices::Mgmt::V2018_07_01::Models::JpgLayer

Inherits:
Layer
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2018-07-01/generated/azure_mgmt_media_services/models/jpg_layer.rb

Overview

Describes the settings to produce a JPEG image from the input video.

Instance Attribute Summary collapse

Attributes inherited from Layer

#height, #label, #width

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeJpgLayer

Returns a new instance of JpgLayer.



16
17
18
# File 'lib/2018-07-01/generated/azure_mgmt_media_services/models/jpg_layer.rb', line 16

def initialize
  @odatatype = "#Microsoft.Media.JpgLayer"
end

Instance Attribute Details

#odatatypeObject

Returns the value of attribute odatatype.



20
21
22
# File 'lib/2018-07-01/generated/azure_mgmt_media_services/models/jpg_layer.rb', line 20

def odatatype
  @odatatype
end

#qualityInteger

from 0-100 and the default is 70.

Returns:

  • (Integer)

    The compression quality of the JPEG output. Range is



24
25
26
# File 'lib/2018-07-01/generated/azure_mgmt_media_services/models/jpg_layer.rb', line 24

def quality
  @quality
end

Class Method Details

.mapperObject

Mapper for JpgLayer class as Ruby Hash. This will be used for serialization/deserialization.



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
75
76
77
78
79
80
81
82
83
# File 'lib/2018-07-01/generated/azure_mgmt_media_services/models/jpg_layer.rb', line 31

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: '#Microsoft.Media.JpgLayer',
    type: {
      name: 'Composite',
      class_name: 'JpgLayer',
      model_properties: {
        width: {
          client_side_validation: true,
          required: false,
          serialized_name: 'width',
          type: {
            name: 'String'
          }
        },
        height: {
          client_side_validation: true,
          required: false,
          serialized_name: 'height',
          type: {
            name: 'String'
          }
        },
        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'
          }
        },
        quality: {
          client_side_validation: true,
          required: false,
          serialized_name: 'quality',
          type: {
            name: 'Number'
          }
        }
      }
    }
  }
end