# 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::Web module Models # # Cross-Origin Resource Sharing (CORS) settings for the web app. # class CorsSettings include MsRestAzure # @return [Array] Gets or sets the list of origins that should # be allowed to make cross-origin # calls (for example: http://example.com:12345). Use "*" to # allow all. attr_accessor :allowed_origins # # Validate the object. Throws ValidationError if validation fails. # def validate @allowed_origins.each{ |e| e.validate if e.respond_to?(:validate) } unless @allowed_origins.nil? 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.allowed_origins output_object['allowedOrigins'] = 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 [CorsSettings] Deserialized object. # def self.deserialize_object(object) return if object.nil? output_object = CorsSettings.new deserialized_property = object['allowedOrigins'] output_object.allowed_origins = deserialized_property output_object end end end end