class Azure::Security::Mgmt::V2017_08_01_preview::Models::Pricing

Pricing tier will be applied for the scope based on the resource ID

Attributes

pricing_tier[RW]

@return [PricingTier] Pricing tier type. Possible values include: 'Free', 'Standard'

Public Class Methods

mapper() click to toggle source

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

# File lib/2017-08-01-preview/generated/azure_mgmt_security/models/pricing.rb, line 24
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'Pricing',
    type: {
      name: 'Composite',
      class_name: 'Pricing',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        pricing_tier: {
          client_side_validation: true,
          required: true,
          serialized_name: 'properties.pricingTier',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end