Class: Azure::ARM::Compute::Models::UsageName
- Inherits:
-
Object
- Object
- Azure::ARM::Compute::Models::UsageName
- Includes:
- MsRestAzure
- Defined in:
- lib/azure_mgmt_compute/models/usage_name.rb
Overview
The Usage Names.
Instance Attribute Summary collapse
-
#localized_value ⇒ String
resource name.
-
#value ⇒ String
Gets or sets a string describing the resource name.
Class Method Summary collapse
-
.deserialize_object(object) ⇒ UsageName
Deserializes given Ruby Hash into Model object.
-
.serialize_object(object) ⇒ Hash
Serializes given Model object into Ruby Hash.
Instance Method Summary collapse
-
#validate ⇒ Object
Validate the object.
Instance Attribute Details
#localized_value ⇒ String
resource name.
20 21 22 |
# File 'lib/azure_mgmt_compute/models/usage_name.rb', line 20 def localized_value @localized_value end |
#value ⇒ String
Returns Gets or sets a string describing the resource name.
16 17 18 |
# File 'lib/azure_mgmt_compute/models/usage_name.rb', line 16 def value @value end |
Class Method Details
.deserialize_object(object) ⇒ UsageName
Deserializes given Ruby Hash into Model object.
52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
# File 'lib/azure_mgmt_compute/models/usage_name.rb', line 52 def self.deserialize_object(object) return if object.nil? output_object = UsageName.new deserialized_property = object['value'] output_object.value = deserialized_property deserialized_property = object['localizedValue'] output_object.localized_value = deserialized_property output_object.validate output_object end |
.serialize_object(object) ⇒ Hash
Serializes given Model object into Ruby Hash.
34 35 36 37 38 39 40 41 42 43 44 45 |
# File 'lib/azure_mgmt_compute/models/usage_name.rb', line 34 def self.serialize_object(object) object.validate output_object = {} serialized_property = object.value output_object['value'] = serialized_property unless serialized_property.nil? serialized_property = object.localized_value output_object['localizedValue'] = serialized_property unless serialized_property.nil? output_object end |
Instance Method Details
#validate ⇒ Object
Validate the object. Throws ValidationError if validation fails.
25 26 27 |
# File 'lib/azure_mgmt_compute/models/usage_name.rb', line 25 def validate # Nothing to validate end |