Class: OCI::ApmSynthetics::Models::ScriptedRestMonitorConfiguration
- Inherits:
- 
      MonitorConfiguration
      
        - Object
- MonitorConfiguration
- OCI::ApmSynthetics::Models::ScriptedRestMonitorConfiguration
 
- Defined in:
- lib/oci/apm_synthetics/models/scripted_rest_monitor_configuration.rb
Overview
Configuration details for the SCRIPTED_REST monitor type.
Constant Summary collapse
- REQ_AUTHENTICATION_SCHEME_ENUM =
- [ REQ_AUTHENTICATION_SCHEME_NONE = 'NONE'.freeze, REQ_AUTHENTICATION_SCHEME_RESOURCE_PRINCIPAL = 'RESOURCE_PRINCIPAL'.freeze, REQ_AUTHENTICATION_SCHEME_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze 
Constants inherited from MonitorConfiguration
MonitorConfiguration::CONFIG_TYPE_ENUM
Instance Attribute Summary collapse
- #network_configuration ⇒ OCI::ApmSynthetics::Models::NetworkConfiguration
- 
  
    
      #req_authentication_scheme  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Request HTTP authentication scheme. 
- 
  
    
      #verify_response_codes  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Expected HTTP response codes. 
Attributes inherited from MonitorConfiguration
#config_type, #dns_configuration, #is_failure_retried
Class Method Summary collapse
- 
  
    
      .attribute_map  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Attribute mapping from ruby-style variable name to JSON key. 
- 
  
    
      .swagger_types  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Attribute type mapping. 
Instance Method Summary collapse
- 
  
    
      #==(other)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Checks equality by comparing each attribute. 
- 
  
    
      #build_from_hash(attributes)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Builds the object from hash. 
- #eql?(other) ⇒ Boolean
- 
  
    
      #hash  ⇒ Fixnum 
    
    
  
  
  
  
  
  
  
  
  
    Calculates hash code according to all attributes. 
- 
  
    
      #initialize(attributes = {})  ⇒ ScriptedRestMonitorConfiguration 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    Initializes the object. 
- 
  
    
      #to_hash  ⇒ Hash 
    
    
  
  
  
  
  
  
  
  
  
    Returns the object in the form of hash. 
- 
  
    
      #to_s  ⇒ String 
    
    
  
  
  
  
  
  
  
  
  
    Returns the string representation of the object. 
Methods inherited from MonitorConfiguration
Constructor Details
#initialize(attributes = {}) ⇒ ScriptedRestMonitorConfiguration
Initializes the object
| 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | # File 'lib/oci/apm_synthetics/models/scripted_rest_monitor_configuration.rb', line 70 def initialize(attributes = {}) return unless attributes.is_a?(Hash) attributes['configType'] = 'SCRIPTED_REST_CONFIG' super(attributes) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } self.req_authentication_scheme = attributes[:'reqAuthenticationScheme'] if attributes[:'reqAuthenticationScheme'] raise 'You cannot provide both :reqAuthenticationScheme and :req_authentication_scheme' if attributes.key?(:'reqAuthenticationScheme') && attributes.key?(:'req_authentication_scheme') self.req_authentication_scheme = attributes[:'req_authentication_scheme'] if attributes[:'req_authentication_scheme'] self.verify_response_codes = attributes[:'verifyResponseCodes'] if attributes[:'verifyResponseCodes'] raise 'You cannot provide both :verifyResponseCodes and :verify_response_codes' if attributes.key?(:'verifyResponseCodes') && attributes.key?(:'verify_response_codes') self.verify_response_codes = attributes[:'verify_response_codes'] if attributes[:'verify_response_codes'] self.network_configuration = attributes[:'networkConfiguration'] if attributes[:'networkConfiguration'] raise 'You cannot provide both :networkConfiguration and :network_configuration' if attributes.key?(:'networkConfiguration') && attributes.key?(:'network_configuration') self.network_configuration = attributes[:'network_configuration'] if attributes[:'network_configuration'] end | 
Instance Attribute Details
#network_configuration ⇒ OCI::ApmSynthetics::Models::NetworkConfiguration
| 29 30 31 | # File 'lib/oci/apm_synthetics/models/scripted_rest_monitor_configuration.rb', line 29 def network_configuration @network_configuration end | 
#req_authentication_scheme ⇒ String
Request HTTP authentication scheme.
| 21 22 23 | # File 'lib/oci/apm_synthetics/models/scripted_rest_monitor_configuration.rb', line 21 def req_authentication_scheme @req_authentication_scheme end | 
#verify_response_codes ⇒ Array<String>
Expected HTTP response codes. For status code range, set values such as 2xx, 3xx.
| 26 27 28 | # File 'lib/oci/apm_synthetics/models/scripted_rest_monitor_configuration.rb', line 26 def verify_response_codes @verify_response_codes end | 
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
| 32 33 34 35 36 37 38 39 40 41 42 43 | # File 'lib/oci/apm_synthetics/models/scripted_rest_monitor_configuration.rb', line 32 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'config_type': :'configType', 'is_failure_retried': :'isFailureRetried', 'dns_configuration': :'dnsConfiguration', 'req_authentication_scheme': :'reqAuthenticationScheme', 'verify_response_codes': :'verifyResponseCodes', 'network_configuration': :'networkConfiguration' # rubocop:enable Style/SymbolLiteral } end | 
.swagger_types ⇒ Object
Attribute type mapping.
| 46 47 48 49 50 51 52 53 54 55 56 57 | # File 'lib/oci/apm_synthetics/models/scripted_rest_monitor_configuration.rb', line 46 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'config_type': :'String', 'is_failure_retried': :'BOOLEAN', 'dns_configuration': :'OCI::ApmSynthetics::Models::DnsConfiguration', 'req_authentication_scheme': :'String', 'verify_response_codes': :'Array<String>', 'network_configuration': :'OCI::ApmSynthetics::Models::NetworkConfiguration' # rubocop:enable Style/SymbolLiteral } end | 
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
| 119 120 121 122 123 124 125 126 127 128 129 | # File 'lib/oci/apm_synthetics/models/scripted_rest_monitor_configuration.rb', line 119 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 && req_authentication_scheme == other.req_authentication_scheme && verify_response_codes == other.verify_response_codes && network_configuration == other.network_configuration end | 
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
| 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/scripted_rest_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
| 134 135 136 | # File 'lib/oci/apm_synthetics/models/scripted_rest_monitor_configuration.rb', line 134 def eql?(other) self == other end | 
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
| 143 144 145 | # File 'lib/oci/apm_synthetics/models/scripted_rest_monitor_configuration.rb', line 143 def hash [config_type, is_failure_retried, dns_configuration, req_authentication_scheme, verify_response_codes, network_configuration].hash end | 
#to_hash ⇒ 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/scripted_rest_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_s ⇒ String
Returns the string representation of the object
| 181 182 183 | # File 'lib/oci/apm_synthetics/models/scripted_rest_monitor_configuration.rb', line 181 def to_s to_hash.to_s end |