Class: OCI::ApmSynthetics::Models::DnsSecMonitorConfiguration

Inherits:
MonitorConfiguration show all
Defined in:
lib/oci/apm_synthetics/models/dns_sec_monitor_configuration.rb

Overview

Request configuration details for the DNSSEC monitor type.

Constant Summary collapse

RECORD_TYPE_ENUM =
[
  RECORD_TYPE_A = 'A'.freeze,
  RECORD_TYPE_AAAA = 'AAAA'.freeze,
  RECORD_TYPE_ANY = 'ANY'.freeze,
  RECORD_TYPE_CNAME = 'CNAME'.freeze,
  RECORD_TYPE_DNSKEY = 'DNSKEY'.freeze,
  RECORD_TYPE_DS = 'DS'.freeze,
  RECORD_TYPE_MX = 'MX'.freeze,
  RECORD_TYPE_NS = 'NS'.freeze,
  RECORD_TYPE_NSEC = 'NSEC'.freeze,
  RECORD_TYPE_NULL_REC = 'NULL_REC'.freeze,
  RECORD_TYPE_PTR = 'PTR'.freeze,
  RECORD_TYPE_RRSIG = 'RRSIG'.freeze,
  RECORD_TYPE_SOA = 'SOA'.freeze,
  RECORD_TYPE_TXT = 'TXT'.freeze,
  RECORD_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze

Constants inherited from MonitorConfiguration

MonitorConfiguration::CONFIG_TYPE_ENUM

Instance Attribute Summary collapse

Attributes inherited from MonitorConfiguration

#config_type, #dns_configuration, #is_failure_retried

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from MonitorConfiguration

get_subtype

Constructor Details

#initialize(attributes = {}) ⇒ DnsSecMonitorConfiguration

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):



77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# File 'lib/oci/apm_synthetics/models/dns_sec_monitor_configuration.rb', line 77

def initialize(attributes = {})
  return unless attributes.is_a?(Hash)

  attributes['configType'] = 'DNSSEC_CONFIG'

  super(attributes)

  # convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }

  self.record_type = attributes[:'recordType'] if attributes[:'recordType']

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

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

  self.verify_response_content = attributes[:'verifyResponseContent'] if attributes[:'verifyResponseContent']

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

  self.verify_response_content = attributes[:'verify_response_content'] if attributes[:'verify_response_content']
end

Instance Attribute Details

#record_typeString

DNS record type.

Returns:

  • (String)


33
34
35
# File 'lib/oci/apm_synthetics/models/dns_sec_monitor_configuration.rb', line 33

def record_type
  @record_type
end

#verify_response_contentString

Verify response content against regular expression based string. If response content does not match the verifyResponseContent value, then it will be considered a failure.

Returns:

  • (String)


39
40
41
# File 'lib/oci/apm_synthetics/models/dns_sec_monitor_configuration.rb', line 39

def verify_response_content
  @verify_response_content
end

Class Method Details

.attribute_mapObject

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



42
43
44
45
46
47
48
49
50
51
52
# File 'lib/oci/apm_synthetics/models/dns_sec_monitor_configuration.rb', line 42

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'config_type': :'configType',
    'is_failure_retried': :'isFailureRetried',
    'dns_configuration': :'dnsConfiguration',
    'record_type': :'recordType',
    'verify_response_content': :'verifyResponseContent'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



55
56
57
58
59
60
61
62
63
64
65
# File 'lib/oci/apm_synthetics/models/dns_sec_monitor_configuration.rb', line 55

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'config_type': :'String',
    'is_failure_retried': :'BOOLEAN',
    'dns_configuration': :'OCI::ApmSynthetics::Models::DnsConfiguration',
    'record_type': :'String',
    'verify_response_content': :'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



120
121
122
123
124
125
126
127
128
129
# File 'lib/oci/apm_synthetics/models/dns_sec_monitor_configuration.rb', line 120

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

  self.class == other.class &&
    config_type == other.config_type &&
    is_failure_retried == other.is_failure_retried &&
    dns_configuration == other.dns_configuration &&
    record_type == other.record_type &&
    verify_response_content == other.verify_response_content
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



154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
# File 'lib/oci/apm_synthetics/models/dns_sec_monitor_configuration.rb', line 154

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


134
135
136
# File 'lib/oci/apm_synthetics/models/dns_sec_monitor_configuration.rb', line 134

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



143
144
145
# File 'lib/oci/apm_synthetics/models/dns_sec_monitor_configuration.rb', line 143

def hash
  [config_type, is_failure_retried, dns_configuration, record_type, verify_response_content].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



187
188
189
190
191
192
193
194
195
196
# File 'lib/oci/apm_synthetics/models/dns_sec_monitor_configuration.rb', line 187

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



181
182
183
# File 'lib/oci/apm_synthetics/models/dns_sec_monitor_configuration.rb', line 181

def to_s
  to_hash.to_s
end