Class: Azure::ServiceFabric::V6_3_0_9::Models::StringPropertyValue

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

Overview

Describes a Service Fabric property value of type String.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeStringPropertyValue

Returns a new instance of StringPropertyValue.



16
17
18
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/string_property_value.rb', line 16

def initialize
  @Kind = "String"
end

Instance Attribute Details

#dataString

Returns The data of the property value.

Returns:

  • (String)

    The data of the property value.



23
24
25
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/string_property_value.rb', line 23

def data
  @data
end

#KindObject

Returns the value of attribute Kind.



20
21
22
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/string_property_value.rb', line 20

def Kind
  @Kind
end

Class Method Details

.mapperObject

Mapper for StringPropertyValue 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
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/string_property_value.rb', line 30

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'String',
    type: {
      name: 'Composite',
      class_name: 'StringPropertyValue',
      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: 'String'
          }
        }
      }
    }
  }
end