Class: Azure::ContainerService::Mgmt::V2019_04_30::Models::PurchasePlan

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2019-04-30/generated/azure_mgmt_container_service/models/purchase_plan.rb

Overview

Used for establishing the purchase context of any 3rd Party artifact through MarketPlace.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#nameString

Returns The plan ID.

Returns:

  • (String)

    The plan ID.



17
18
19
# File 'lib/2019-04-30/generated/azure_mgmt_container_service/models/purchase_plan.rb', line 17

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



22
23
24
# File 'lib/2019-04-30/generated/azure_mgmt_container_service/models/purchase_plan.rb', line 22

def product
  @product
end

#promotion_codeString

Returns The promotion code.

Returns:

  • (String)

    The promotion code.



25
26
27
# File 'lib/2019-04-30/generated/azure_mgmt_container_service/models/purchase_plan.rb', line 25

def promotion_code
  @promotion_code
end

#publisherString

Returns The plan ID.

Returns:

  • (String)

    The plan ID.



28
29
30
# File 'lib/2019-04-30/generated/azure_mgmt_container_service/models/purchase_plan.rb', line 28

def publisher
  @publisher
end

Class Method Details

.mapperObject

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



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
74
75
76
77
78
79
# File 'lib/2019-04-30/generated/azure_mgmt_container_service/models/purchase_plan.rb', line 35

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