# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ARM::NotificationHubs module Models # # Namespace/NotificationHub Connection String # class ResourceListKeys include MsRestAzure # @return [String] Gets or sets the primaryConnectionString of the # created Namespace AuthorizationRule. attr_accessor :primary_connection_string # @return [String] Gets or sets the secondaryConnectionString of the # created Namespace AuthorizationRule attr_accessor :secondary_connection_string # # 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.primary_connection_string output_object['primaryConnectionString'] = serialized_property unless serialized_property.nil? serialized_property = object.secondary_connection_string output_object['secondaryConnectionString'] = 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 [ResourceListKeys] Deserialized object. # def self.deserialize_object(object) return if object.nil? output_object = ResourceListKeys.new deserialized_property = object['primaryConnectionString'] output_object.primary_connection_string = deserialized_property deserialized_property = object['secondaryConnectionString'] output_object.secondary_connection_string = deserialized_property output_object end end end end