Class: Azure::ARM::Compute::Models::Sku

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/azure_mgmt_compute/models/sku.rb

Overview

Describes a virtual machine scale set sku.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#capacityInteger

Returns Gets or sets the sku capacity.

Returns:

  • (Integer)

    Gets or sets the sku capacity.



22
23
24
# File 'lib/azure_mgmt_compute/models/sku.rb', line 22

def capacity
  @capacity
end

#nameString

Returns Gets or sets the sku name.

Returns:

  • (String)

    Gets or sets the sku name.



16
17
18
# File 'lib/azure_mgmt_compute/models/sku.rb', line 16

def name
  @name
end

#tierString

Returns Gets or sets the sku tier.

Returns:

  • (String)

    Gets or sets the sku tier.



19
20
21
# File 'lib/azure_mgmt_compute/models/sku.rb', line 19

def tier
  @tier
end

Class Method Details

.deserialize_object(object) ⇒ Sku

Deserializes given Ruby Hash into Model object.

Parameters:

  • object (Hash)

    Ruby Hash object to deserialize.

Returns:

  • (Sku)

    Deserialized object.



57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# File 'lib/azure_mgmt_compute/models/sku.rb', line 57

def self.deserialize_object(object)
  return if object.nil?
  output_object = Sku.new

  deserialized_property = object['name']
  output_object.name = deserialized_property

  deserialized_property = object['tier']
  output_object.tier = deserialized_property

  deserialized_property = object['capacity']
  deserialized_property = Integer(deserialized_property) unless deserialized_property.to_s.empty?
  output_object.capacity = deserialized_property

  output_object
end

.serialize_object(object) ⇒ Hash

Serializes given Model object into Ruby Hash.

Parameters:

  • object

    Model object to serialize.

Returns:

  • (Hash)

    Serialized object in form of Ruby Hash.



36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'lib/azure_mgmt_compute/models/sku.rb', line 36

def self.serialize_object(object)
  object.validate
  output_object = {}

  serialized_property = object.name
  output_object['name'] = serialized_property unless serialized_property.nil?

  serialized_property = object.tier
  output_object['tier'] = serialized_property unless serialized_property.nil?

  serialized_property = object.capacity
  output_object['capacity'] = serialized_property unless serialized_property.nil?

  output_object
end

Instance Method Details

#validateObject

Validate the object. Throws ValidationError if validation fails.



27
28
29
# File 'lib/azure_mgmt_compute/models/sku.rb', line 27

def validate
  # Nothing to validate
end