Class: Azure::ARM::Features::Models::FeatureResult

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/generated/azure_mgmt_features/models/feature_result.rb

Overview

Previewed feature information.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#idString

Returns Gets or sets the Id of the feature.

Returns:

  • (String)

    Gets or sets the Id of the feature.



23
24
25
# File 'lib/generated/azure_mgmt_features/models/feature_result.rb', line 23

def id
  @id
end

#nameString

Returns Gets or sets the name of the feature.

Returns:

  • (String)

    Gets or sets the name of the feature.



16
17
18
# File 'lib/generated/azure_mgmt_features/models/feature_result.rb', line 16

def name
  @name
end

#propertiesFeatureProperties

previewed feature.

Returns:



20
21
22
# File 'lib/generated/azure_mgmt_features/models/feature_result.rb', line 20

def properties
  @properties
end

#typeString

Returns Gets or sets the type of the feature.

Returns:

  • (String)

    Gets or sets the type of the feature.



26
27
28
# File 'lib/generated/azure_mgmt_features/models/feature_result.rb', line 26

def type
  @type
end

Class Method Details

.mapperObject

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



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
# File 'lib/generated/azure_mgmt_features/models/feature_result.rb', line 33

def self.mapper()
  {
    required: false,
    serialized_name: 'FeatureResult',
    type: {
      name: 'Composite',
      class_name: 'FeatureResult',
      model_properties: {
        name: {
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        properties: {
          required: false,
          serialized_name: 'properties',
          type: {
            name: 'Composite',
            class_name: 'FeatureProperties'
          }
        },
        id: {
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        type: {
          required: false,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end