Class: Azure::Compute::Mgmt::V2017_03_30::Models::Plan

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

Overview

Specifies information about the marketplace image used to create the virtual machine. This element is only used for marketplace images. Before you can use a marketplace image from an API, you must enable the image for programmatic use. In the Azure portal, find the marketplace image that you want to use and then click **Want to deploy programmatically, Get Started ->**. Enter any required information and then click Save.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#nameString

Returns The plan ID.

Returns:

  • (String)

    The plan ID.



21
22
23
# File 'lib/2017-03-30/generated/azure_mgmt_compute/models/plan.rb', line 21

def name
  @name
end

#productString

marketplace. This is the same value as Offer under the imageReference element.

Returns:

  • (String)

    Specifies the product of the image from the



29
30
31
# File 'lib/2017-03-30/generated/azure_mgmt_compute/models/plan.rb', line 29

def product
  @product
end

#promotion_codeString

Returns The promotion code.

Returns:

  • (String)

    The promotion code.



32
33
34
# File 'lib/2017-03-30/generated/azure_mgmt_compute/models/plan.rb', line 32

def promotion_code
  @promotion_code
end

#publisherString

Returns The publisher ID.

Returns:

  • (String)

    The publisher ID.



24
25
26
# File 'lib/2017-03-30/generated/azure_mgmt_compute/models/plan.rb', line 24

def publisher
  @publisher
end

Class Method Details

.mapperObject

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



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
# File 'lib/2017-03-30/generated/azure_mgmt_compute/models/plan.rb', line 39

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