Sha256: c21c1b7c2d31322c85c2fa1a814b2794469e051ac4d6d65229c63452cdfecb92
Contents?: true
Size: 1.82 KB
Versions: 3
Compression:
Stored size: 1.82 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ARM::Compute module Models # # The Usage Names. # class UsageName include MsRestAzure # @return [String] Gets or sets a string describing the resource name. attr_accessor :value # @return [String] Gets or sets a localized string describing the # resource name. attr_accessor :localized_value # # Validate the object. Throws ValidationError if validation fails. # def validate # Nothing to validate end # # Serializes given Model object into Ruby Hash. # @param object Model object to serialize. # @return [Hash] Serialized object in form of Ruby Hash. # 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 # # Deserializes given Ruby Hash into Model object. # @param object [Hash] Ruby Hash object to deserialize. # @return [UsageName] Deserialized object. # 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 end end end
Version data entries
3 entries across 3 versions & 1 rubygems