class OCI::Apigateway::Models::ApiSpecificationRouteRequestPolicies
Behavior applied to any requests received by the API on this route.
Attributes
@return [OCI::Apigateway::Models::BodyValidationRequestPolicy]
@return [OCI::Apigateway::Models::CorsPolicy]
@return [OCI::Apigateway::Models::HeaderTransformationPolicy]
@return [OCI::Apigateway::Models::HeaderValidationRequestPolicy]
@return [OCI::Apigateway::Models::QueryParameterTransformationPolicy]
@return [OCI::Apigateway::Models::QueryParameterValidationRequestPolicy]
@return [OCI::Apigateway::Models::ResponseCacheLookupPolicy]
Public Class Methods
Attribute mapping from ruby-style variable name to JSON key.
# File lib/oci/apigateway/models/api_specification_route_request_policies.rb, line 36 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'authorization': :'authorization', 'cors': :'cors', 'query_parameter_validations': :'queryParameterValidations', 'header_validations': :'headerValidations', 'body_validation': :'bodyValidation', 'header_transformations': :'headerTransformations', 'query_parameter_transformations': :'queryParameterTransformations', 'response_cache_lookup': :'responseCacheLookup' # rubocop:enable Style/SymbolLiteral } end
Initializes the object @param [Hash] attributes Model attributes in the form of hash @option attributes [OCI::Apigateway::Models::RouteAuthorizationPolicy] :authorization The value to assign to the {#authorization} property @option attributes [OCI::Apigateway::Models::CorsPolicy] :cors The value to assign to the {#cors} property @option attributes [OCI::Apigateway::Models::QueryParameterValidationRequestPolicy] :query_parameter_validations The value to assign to the {#query_parameter_validations} property @option attributes [OCI::Apigateway::Models::HeaderValidationRequestPolicy] :header_validations The value to assign to the {#header_validations} property @option attributes [OCI::Apigateway::Models::BodyValidationRequestPolicy] :body_validation The value to assign to the {#body_validation} property @option attributes [OCI::Apigateway::Models::HeaderTransformationPolicy] :header_transformations The value to assign to the {#header_transformations} property @option attributes [OCI::Apigateway::Models::QueryParameterTransformationPolicy] :query_parameter_transformations The value to assign to the {#query_parameter_transformations} property @option attributes [OCI::Apigateway::Models::ResponseCacheLookupPolicy] :response_cache_lookup The value to assign to the {#response_cache_lookup} property
# File lib/oci/apigateway/models/api_specification_route_request_policies.rb, line 81 def initialize(attributes = {}) return unless attributes.is_a?(Hash) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } self.authorization = attributes[:'authorization'] if attributes[:'authorization'] self.cors = attributes[:'cors'] if attributes[:'cors'] self.query_parameter_validations = attributes[:'queryParameterValidations'] if attributes[:'queryParameterValidations'] raise 'You cannot provide both :queryParameterValidations and :query_parameter_validations' if attributes.key?(:'queryParameterValidations') && attributes.key?(:'query_parameter_validations') self.query_parameter_validations = attributes[:'query_parameter_validations'] if attributes[:'query_parameter_validations'] self.header_validations = attributes[:'headerValidations'] if attributes[:'headerValidations'] raise 'You cannot provide both :headerValidations and :header_validations' if attributes.key?(:'headerValidations') && attributes.key?(:'header_validations') self.header_validations = attributes[:'header_validations'] if attributes[:'header_validations'] self.body_validation = attributes[:'bodyValidation'] if attributes[:'bodyValidation'] raise 'You cannot provide both :bodyValidation and :body_validation' if attributes.key?(:'bodyValidation') && attributes.key?(:'body_validation') self.body_validation = attributes[:'body_validation'] if attributes[:'body_validation'] self.header_transformations = attributes[:'headerTransformations'] if attributes[:'headerTransformations'] raise 'You cannot provide both :headerTransformations and :header_transformations' if attributes.key?(:'headerTransformations') && attributes.key?(:'header_transformations') self.header_transformations = attributes[:'header_transformations'] if attributes[:'header_transformations'] self.query_parameter_transformations = attributes[:'queryParameterTransformations'] if attributes[:'queryParameterTransformations'] raise 'You cannot provide both :queryParameterTransformations and :query_parameter_transformations' if attributes.key?(:'queryParameterTransformations') && attributes.key?(:'query_parameter_transformations') self.query_parameter_transformations = attributes[:'query_parameter_transformations'] if attributes[:'query_parameter_transformations'] self.response_cache_lookup = attributes[:'responseCacheLookup'] if attributes[:'responseCacheLookup'] raise 'You cannot provide both :responseCacheLookup and :response_cache_lookup' if attributes.key?(:'responseCacheLookup') && attributes.key?(:'response_cache_lookup') self.response_cache_lookup = attributes[:'response_cache_lookup'] if attributes[:'response_cache_lookup'] end
Attribute type mapping.
# File lib/oci/apigateway/models/api_specification_route_request_policies.rb, line 52 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'authorization': :'OCI::Apigateway::Models::RouteAuthorizationPolicy', 'cors': :'OCI::Apigateway::Models::CorsPolicy', 'query_parameter_validations': :'OCI::Apigateway::Models::QueryParameterValidationRequestPolicy', 'header_validations': :'OCI::Apigateway::Models::HeaderValidationRequestPolicy', 'body_validation': :'OCI::Apigateway::Models::BodyValidationRequestPolicy', 'header_transformations': :'OCI::Apigateway::Models::HeaderTransformationPolicy', 'query_parameter_transformations': :'OCI::Apigateway::Models::QueryParameterTransformationPolicy', 'response_cache_lookup': :'OCI::Apigateway::Models::ResponseCacheLookupPolicy' # rubocop:enable Style/SymbolLiteral } end
Public Instance Methods
Checks equality by comparing each attribute. @param [Object] other the other object to be compared
# File lib/oci/apigateway/models/api_specification_route_request_policies.rb, line 135 def ==(other) return true if equal?(other) self.class == other.class && authorization == other.authorization && cors == other.cors && query_parameter_validations == other.query_parameter_validations && header_validations == other.header_validations && body_validation == other.body_validation && header_transformations == other.header_transformations && query_parameter_transformations == other.query_parameter_transformations && response_cache_lookup == other.response_cache_lookup end
Builds the object from hash @param [Hash] attributes Model attributes in the form of hash @return [Object] Returns the model itself
# File lib/oci/apigateway/models/api_specification_route_request_policies.rb, line 172 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.swagger_types.each_pair do |key, type| if type =~ /^Array<(.*)>/i # check to ensure the input is an array given that the the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) public_method("#{key}=").call( attributes[self.class.attribute_map[key]] .map { |v| OCI::Internal::Util.convert_to_type(Regexp.last_match(1), v) } ) end elsif !attributes[self.class.attribute_map[key]].nil? public_method("#{key}=").call( OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]) ) end # or else data not found in attributes(hash), not an issue as the data can be optional end self end
@see the `==` method @param [Object] other the other object to be compared
# File lib/oci/apigateway/models/api_specification_route_request_policies.rb, line 152 def eql?(other) self == other end
Calculates hash code according to all attributes. @return [Fixnum] Hash code
# File lib/oci/apigateway/models/api_specification_route_request_policies.rb, line 161 def hash [authorization, cors, query_parameter_validations, header_validations, body_validation, header_transformations, query_parameter_transformations, response_cache_lookup].hash end
Returns the object in the form of hash @return [Hash] Returns the object in the form of hash
# File lib/oci/apigateway/models/api_specification_route_request_policies.rb, line 205 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = public_method(attr).call next if value.nil? && !instance_variable_defined?("@#{attr}") hash[param] = _to_hash(value) end hash end
Returns the string representation of the object @return [String] String presentation of the object
# File lib/oci/apigateway/models/api_specification_route_request_policies.rb, line 199 def to_s to_hash.to_s end
Private Instance Methods
Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value @param [Object] value Any valid value @return [Hash] Returns the value in the form of hash
# File lib/oci/apigateway/models/api_specification_route_request_policies.rb, line 222 def _to_hash(value) if value.is_a?(Array) value.compact.map { |v| _to_hash(v) } elsif value.is_a?(Hash) {}.tap do |hash| value.each { |k, v| hash[k] = _to_hash(v) } end elsif value.respond_to? :to_hash value.to_hash else value end end