# 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::CDN::Mgmt::V2017_10_12 module Models # # The pricing tier (defines a CDN provider, feature list and rate) of the # CDN profile. # class Sku include MsRestAzure # @return [SkuName] Name of the pricing tier. Possible values include: # 'Standard_Verizon', 'Premium_Verizon', 'Custom_Verizon', # 'Standard_Akamai', 'Standard_ChinaCdn', 'Standard_Microsoft' attr_accessor :name # # Mapper for Sku class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Sku', type: { name: 'Composite', class_name: 'Sku', model_properties: { name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } } } } } end end end end