Class: Azure::ARM::Compute::Models::Plan

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

Overview

Plan for the resource.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#nameString

Returns The plan ID.

Returns:

  • (String)

    The plan ID.



16
17
18
# File 'lib/generated/azure_mgmt_compute/models/plan.rb', line 16

def name
  @name
end

#productString

Returns The offer ID.

Returns:

  • (String)

    The offer ID.



22
23
24
# File 'lib/generated/azure_mgmt_compute/models/plan.rb', line 22

def product
  @product
end

#promotion_codeString

Returns The promotion code.

Returns:

  • (String)

    The promotion code.



25
26
27
# File 'lib/generated/azure_mgmt_compute/models/plan.rb', line 25

def promotion_code
  @promotion_code
end

#publisherString

Returns The publisher ID.

Returns:

  • (String)

    The publisher ID.



19
20
21
# File 'lib/generated/azure_mgmt_compute/models/plan.rb', line 19

def publisher
  @publisher
end

Class Method Details

.mapperObject

Mapper for Plan 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
69
70
71
# File 'lib/generated/azure_mgmt_compute/models/plan.rb', line 32

def self.mapper()
  {
    required: false,
    serialized_name: 'Plan',
    type: {
      name: 'Composite',
      class_name: 'Plan',
      model_properties: {
        name: {
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        publisher: {
          required: false,
          serialized_name: 'publisher',
          type: {
            name: 'String'
          }
        },
        product: {
          required: false,
          serialized_name: 'product',
          type: {
            name: 'String'
          }
        },
        promotion_code: {
          required: false,
          serialized_name: 'promotionCode',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end