Class: Azure::ServiceFabric::V6_4_0_36::Models::BinaryPropertyValue

Inherits:
PropertyValue
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/6.4.0.36/generated/azure_service_fabric/models/binary_property_value.rb

Overview

Describes a Service Fabric property value of type Binary.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeBinaryPropertyValue

Returns a new instance of BinaryPropertyValue.



16
17
18
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/binary_property_value.rb', line 16

def initialize
  @Kind = "Binary"
end

Instance Attribute Details

#dataArray<Integer>

Each element of array is a number between 0 and 255.

Returns:

  • (Array<Integer>)

    Array of bytes to be sent as an integer array.



24
25
26
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/binary_property_value.rb', line 24

def data
  @data
end

#KindObject

Returns the value of attribute Kind.



20
21
22
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/binary_property_value.rb', line 20

def Kind
  @Kind
end

Class Method Details

.mapperObject

Mapper for BinaryPropertyValue 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
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/binary_property_value.rb', line 31

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'Binary',
    type: {
      name: 'Composite',
      class_name: 'BinaryPropertyValue',
      model_properties: {
        Kind: {
          client_side_validation: true,
          required: true,
          serialized_name: 'Kind',
          type: {
            name: 'String'
          }
        },
        data: {
          client_side_validation: true,
          required: true,
          serialized_name: 'Data',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'NumberElementType',
                type: {
                  name: 'Number'
                }
            }
          }
        }
      }
    }
  }
end