Sha256: cde9c582a0b7f234dc7470a5b2caca653e956de0cb31479edafc256a05336a1a
Contents?: true
Size: 1.69 KB
Versions: 1
Compression:
Stored size: 1.69 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ARM::Compute module Models # # Used for establishing the purchase context of any 3rd Party artifact # through MarketPlace. # class PurchasePlan include MsRestAzure include MsRest::JSONable # @return [String] The publisher ID. attr_accessor :publisher # @return [String] The plan ID. attr_accessor :name # @return [String] Specifies the product of the image from the # marketplace. This is the same value as Offer under the imageReference # element. attr_accessor :product # # Mapper for PurchasePlan class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'PurchasePlan', type: { name: 'Composite', class_name: 'PurchasePlan', model_properties: { publisher: { required: true, serialized_name: 'publisher', type: { name: 'String' } }, name: { required: true, serialized_name: 'name', type: { name: 'String' } }, product: { required: true, serialized_name: 'product', type: { name: 'String' } } } } } end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
azure_mgmt_compute-0.13.0 | lib/generated/azure_mgmt_compute/models/purchase_plan.rb |