class Azure::Security::Mgmt::V2018_06_01::Models::Pricing

Azure Security Center is provided in two pricing tiers: free and standard, with the standard tier available with a trial period. The standard tier offers advanced security capabilities, while the free tier offers basic security features.

Attributes

free_trial_remaining_time[RW]

@return [Duration] The duration left for the subscriptions free trial period - in ISO 8601 format (e.g. P3Y6M4DT12H30M5S).

pricing_tier[RW]

@return [PricingTier] The pricing tier value. Azure Security Center is provided in two pricing tiers: free and standard, with the standard tier available with a trial period. The standard tier offers advanced security capabilities, while the free tier offers basic security features. Possible values include: 'Free', 'Standard'

Private Class Methods

mapper() click to toggle source

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

# File lib/2018-06-01/generated/azure_mgmt_security/models/pricing.rb, line 34
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'
          }
        },
        free_trial_remaining_time: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.freeTrialRemainingTime',
          type: {
            name: 'TimeSpan'
          }
        }
      }
    }
  }
end