=begin #Datadog API V1 Collection #Collection of all Datadog Public endpoints. The version of the OpenAPI document: 1.0 Contact: support@datadoghq.com Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2020-Present Datadog, Inc. =end require 'date' require 'time' module DatadogAPIClient::V1 # Parsing options for variables to extract. class SyntheticsParsingOptions include BaseGenericModel # When type is `http_header`, name of the header to use to extract the value. attr_accessor :field # Name of the variable to extract. attr_accessor :name # Details of the parser to use for the global variable. attr_accessor :parser # Determines whether or not the extracted value will be obfuscated. attr_accessor :secure # Property of the Synthetic Test Response to use for a Synthetic global variable. attr_accessor :type # Attribute mapping from ruby-style variable name to JSON key. # @!visibility private def self.attribute_map { :'field' => :'field', :'name' => :'name', :'parser' => :'parser', :'secure' => :'secure', :'type' => :'type' } end # Attribute type mapping. # @!visibility private def self.openapi_types { :'field' => :'String', :'name' => :'String', :'parser' => :'SyntheticsVariableParser', :'secure' => :'Boolean', :'type' => :'SyntheticsGlobalVariableParseTestOptionsType' } end # Initializes the object # @param attributes [Hash] Model attributes in the form of hash # @!visibility private def initialize(attributes = {}) if (!attributes.is_a?(Hash)) fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V1::SyntheticsParsingOptions` initialize method" end # check to see if the attribute exists and convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| if (!self.class.attribute_map.key?(k.to_sym)) fail ArgumentError, "`#{k}` is not a valid attribute in `DatadogAPIClient::V1::SyntheticsParsingOptions`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect end h[k.to_sym] = v } if attributes.key?(:'field') self.field = attributes[:'field'] end if attributes.key?(:'name') self.name = attributes[:'name'] end if attributes.key?(:'parser') self.parser = attributes[:'parser'] end if attributes.key?(:'secure') self.secure = attributes[:'secure'] end if attributes.key?(:'type') self.type = attributes[:'type'] end end # Checks equality by comparing each attribute. # @param o [Object] Object to be compared # @!visibility private def ==(o) return true if self.equal?(o) self.class == o.class && field == o.field && name == o.name && parser == o.parser && secure == o.secure && type == o.type end # Calculates hash code according to all attributes. # @return [Integer] Hash code # @!visibility private def hash [field, name, parser, secure, type].hash end end end