Class: OCI::LogAnalytics::Models::CredentialEndpoint
- Inherits:
-
Object
- Object
- OCI::LogAnalytics::Models::CredentialEndpoint
- Defined in:
- lib/oci/log_analytics/models/credential_endpoint.rb
Overview
The endpoint from where to fetch a credential, for example, the OAuth 2.0 token.
Instance Attribute Summary collapse
-
#description ⇒ String
The credential endpoint description.
-
#endpoint_id ⇒ Integer
The endpoint unique identifier.
-
#model ⇒ String
The credential endpoint model.
-
#name ⇒ String
[Required] The credential endpoint name.
- #proxy ⇒ OCI::LogAnalytics::Models::EndpointProxy
-
#request ⇒ OCI::LogAnalytics::Models::EndpointRequest
This attribute is required.
- #response ⇒ OCI::LogAnalytics::Models::EndpointResponse
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 = {}) ⇒ CredentialEndpoint
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.
Constructor Details
#initialize(attributes = {}) ⇒ CredentialEndpoint
Initializes the object
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
# File 'lib/oci/log_analytics/models/credential_endpoint.rb', line 80 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.description = attributes[:'description'] if attributes[:'description'] self.model = attributes[:'model'] if attributes[:'model'] self.endpoint_id = attributes[:'endpointId'] if attributes[:'endpointId'] raise 'You cannot provide both :endpointId and :endpoint_id' if attributes.key?(:'endpointId') && attributes.key?(:'endpoint_id') self.endpoint_id = attributes[:'endpoint_id'] if attributes[:'endpoint_id'] self.request = attributes[:'request'] if attributes[:'request'] self.response = attributes[:'response'] if attributes[:'response'] self.proxy = attributes[:'proxy'] if attributes[:'proxy'] end |
Instance Attribute Details
#description ⇒ String
The credential endpoint description.
17 18 19 |
# File 'lib/oci/log_analytics/models/credential_endpoint.rb', line 17 def description @description end |
#endpoint_id ⇒ Integer
The endpoint unique identifier.
25 26 27 |
# File 'lib/oci/log_analytics/models/credential_endpoint.rb', line 25 def endpoint_id @endpoint_id end |
#model ⇒ String
The credential endpoint model.
21 22 23 |
# File 'lib/oci/log_analytics/models/credential_endpoint.rb', line 21 def model @model end |
#name ⇒ String
[Required] The credential endpoint name.
13 14 15 |
# File 'lib/oci/log_analytics/models/credential_endpoint.rb', line 13 def name @name end |
#proxy ⇒ OCI::LogAnalytics::Models::EndpointProxy
35 36 37 |
# File 'lib/oci/log_analytics/models/credential_endpoint.rb', line 35 def proxy @proxy end |
#request ⇒ OCI::LogAnalytics::Models::EndpointRequest
This attribute is required.
29 30 31 |
# File 'lib/oci/log_analytics/models/credential_endpoint.rb', line 29 def request @request end |
#response ⇒ OCI::LogAnalytics::Models::EndpointResponse
32 33 34 |
# File 'lib/oci/log_analytics/models/credential_endpoint.rb', line 32 def response @response end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
38 39 40 41 42 43 44 45 46 47 48 49 50 |
# File 'lib/oci/log_analytics/models/credential_endpoint.rb', line 38 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'name': :'name', 'description': :'description', 'model': :'model', 'endpoint_id': :'endpointId', 'request': :'request', 'response': :'response', 'proxy': :'proxy' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
53 54 55 56 57 58 59 60 61 62 63 64 65 |
# File 'lib/oci/log_analytics/models/credential_endpoint.rb', line 53 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'name': :'String', 'description': :'String', 'model': :'String', 'endpoint_id': :'Integer', 'request': :'OCI::LogAnalytics::Models::EndpointRequest', 'response': :'OCI::LogAnalytics::Models::EndpointResponse', 'proxy': :'OCI::LogAnalytics::Models::EndpointProxy' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
112 113 114 115 116 117 118 119 120 121 122 123 |
# File 'lib/oci/log_analytics/models/credential_endpoint.rb', line 112 def ==(other) return true if equal?(other) self.class == other.class && name == other.name && description == other.description && model == other.model && endpoint_id == other.endpoint_id && request == other.request && response == other.response && proxy == other.proxy end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 |
# File 'lib/oci/log_analytics/models/credential_endpoint.rb', line 148 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
128 129 130 |
# File 'lib/oci/log_analytics/models/credential_endpoint.rb', line 128 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
137 138 139 |
# File 'lib/oci/log_analytics/models/credential_endpoint.rb', line 137 def hash [name, description, model, endpoint_id, request, response, proxy].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
181 182 183 184 185 186 187 188 189 190 |
# File 'lib/oci/log_analytics/models/credential_endpoint.rb', line 181 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
175 176 177 |
# File 'lib/oci/log_analytics/models/credential_endpoint.rb', line 175 def to_s to_hash.to_s end |