Class: OCI::Apigateway::Models::SetHeaderPolicyItem

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/apigateway/models/set_header_policy_item.rb

Overview

Set will add a new header if it was not in the original request. If the header already exists on the request, you can choose to override, append, or skip it.

Constant Summary collapse

IF_EXISTS_ENUM =
[
  IF_EXISTS_OVERWRITE = 'OVERWRITE'.freeze,
  IF_EXISTS_APPEND = 'APPEND'.freeze,
  IF_EXISTS_SKIP = 'SKIP'.freeze,
  IF_EXISTS_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ SetHeaderPolicyItem

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash

Options Hash (attributes):

  • :name (String)

    The value to assign to the #name property

  • :values (Array<String>)

    The value to assign to the #values property

  • :if_exists (String)

    The value to assign to the #if_exists property



69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# File 'lib/oci/apigateway/models/set_header_policy_item.rb', line 69

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.name = attributes[:'name'] if attributes[:'name']

  self.values = attributes[:'values'] if attributes[:'values']

  self.if_exists = attributes[:'ifExists'] if attributes[:'ifExists']
  self.if_exists = "OVERWRITE" if if_exists.nil? && !attributes.key?(:'ifExists') # rubocop:disable Style/StringLiterals

  raise 'You cannot provide both :ifExists and :if_exists' if attributes.key?(:'ifExists') && attributes.key?(:'if_exists')

  self.if_exists = attributes[:'if_exists'] if attributes[:'if_exists']
  self.if_exists = "OVERWRITE" if if_exists.nil? && !attributes.key?(:'ifExists') && !attributes.key?(:'if_exists') # rubocop:disable Style/StringLiterals
end

Instance Attribute Details

#if_existsString

If a header with the same name already exists in the request, OVERWRITE will overwrite the value, APPEND will append to the existing value, or SKIP will keep the existing value.

Returns:

  • (String)


36
37
38
# File 'lib/oci/apigateway/models/set_header_policy_item.rb', line 36

def if_exists
  @if_exists
end

#nameString

[Required] The case-insensitive name of the header. This name must be unique across transformation policies.

Returns:

  • (String)


24
25
26
# File 'lib/oci/apigateway/models/set_header_policy_item.rb', line 24

def name
  @name
end

#valuesArray<String>

[Required] A list of new values. Each value can be a constant or may include one or more expressions enclosed within ${} delimiters.

Returns:

  • (Array<String>)


30
31
32
# File 'lib/oci/apigateway/models/set_header_policy_item.rb', line 30

def values
  @values
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



39
40
41
42
43
44
45
46
47
# File 'lib/oci/apigateway/models/set_header_policy_item.rb', line 39

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'name': :'name',
    'values': :'values',
    'if_exists': :'ifExists'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



50
51
52
53
54
55
56
57
58
# File 'lib/oci/apigateway/models/set_header_policy_item.rb', line 50

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'name': :'String',
    'values': :'Array<String>',
    'if_exists': :'String'
    # rubocop:enable Style/SymbolLiteral
  }
end

Instance Method Details

#==(other) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • other (Object)

    the other object to be compared



108
109
110
111
112
113
114
115
# File 'lib/oci/apigateway/models/set_header_policy_item.rb', line 108

def ==(other)
  return true if equal?(other)

  self.class == other.class &&
    name == other.name &&
    values == other.values &&
    if_exists == other.if_exists
end

#build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
# File 'lib/oci/apigateway/models/set_header_policy_item.rb', line 140

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

#eql?(other) ⇒ Boolean

Parameters:

  • other (Object)

    the other object to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


120
121
122
# File 'lib/oci/apigateway/models/set_header_policy_item.rb', line 120

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



129
130
131
# File 'lib/oci/apigateway/models/set_header_policy_item.rb', line 129

def hash
  [name, values, if_exists].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



173
174
175
176
177
178
179
180
181
182
# File 'lib/oci/apigateway/models/set_header_policy_item.rb', line 173

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

#to_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



167
168
169
# File 'lib/oci/apigateway/models/set_header_policy_item.rb', line 167

def to_s
  to_hash.to_s
end