Class: Azure::Security::Mgmt::V2017_08_01_preview::Models::Pricing

Inherits:
Resource
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2017-08-01-preview/generated/azure_mgmt_security/models/pricing.rb

Overview

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

Instance Attribute Summary collapse

Attributes inherited from Resource

#id, #name, #type

Class Method Summary collapse

Methods inherited from Resource

#resource_group

Instance Attribute Details

#pricing_tierPricingTier

‘Free’, ‘Standard’

Returns:

  • (PricingTier)

    Pricing tier type. Possible values include:



17
18
19
# File 'lib/2017-08-01-preview/generated/azure_mgmt_security/models/pricing.rb', line 17

def pricing_tier
  @pricing_tier
end

Class Method Details

.mapperObject

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



24
25
26
27
28
29
30
31
32
33
34
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
# 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