Class: OCI::GenerativeAiAgent::Models::IdcsSecret
- Inherits:
-
SecretDetail
- Object
- SecretDetail
- OCI::GenerativeAiAgent::Models::IdcsSecret
- Defined in:
- lib/oci/generative_ai_agent/models/idcs_secret.rb
Overview
The details of IDCS configured as OpenID setting in OpenSearch.
Constant Summary
Constants inherited from SecretDetail
Instance Attribute Summary collapse
-
#client_id ⇒ String
[Required] The IDCS Connect clientId.
-
#idcs_url ⇒ String
[Required] The URL represent authentication url of the IDCS.
-
#scope_url ⇒ String
[Required] Fully qualified scope url.
-
#vault_secret_id ⇒ String
[Required] The OCID of the secret for client secret.
Attributes inherited from SecretDetail
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 = {}) ⇒ IdcsSecret
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 SecretDetail
Constructor Details
#initialize(attributes = {}) ⇒ IdcsSecret
Initializes the object
66 67 68 69 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 98 99 |
# File 'lib/oci/generative_ai_agent/models/idcs_secret.rb', line 66 def initialize(attributes = {}) return unless attributes.is_a?(Hash) attributes['type'] = 'IDCS_SECRET' super(attributes) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } self.idcs_url = attributes[:'idcsUrl'] if attributes[:'idcsUrl'] raise 'You cannot provide both :idcsUrl and :idcs_url' if attributes.key?(:'idcsUrl') && attributes.key?(:'idcs_url') self.idcs_url = attributes[:'idcs_url'] if attributes[:'idcs_url'] self.client_id = attributes[:'clientId'] if attributes[:'clientId'] raise 'You cannot provide both :clientId and :client_id' if attributes.key?(:'clientId') && attributes.key?(:'client_id') self.client_id = attributes[:'client_id'] if attributes[:'client_id'] self.vault_secret_id = attributes[:'vaultSecretId'] if attributes[:'vaultSecretId'] raise 'You cannot provide both :vaultSecretId and :vault_secret_id' if attributes.key?(:'vaultSecretId') && attributes.key?(:'vault_secret_id') self.vault_secret_id = attributes[:'vault_secret_id'] if attributes[:'vault_secret_id'] self.scope_url = attributes[:'scopeUrl'] if attributes[:'scopeUrl'] raise 'You cannot provide both :scopeUrl and :scope_url' if attributes.key?(:'scopeUrl') && attributes.key?(:'scope_url') self.scope_url = attributes[:'scope_url'] if attributes[:'scope_url'] end |
Instance Attribute Details
#client_id ⇒ String
[Required] The IDCS Connect clientId.
20 21 22 |
# File 'lib/oci/generative_ai_agent/models/idcs_secret.rb', line 20 def client_id @client_id end |
#idcs_url ⇒ String
[Required] The URL represent authentication url of the IDCS.
16 17 18 |
# File 'lib/oci/generative_ai_agent/models/idcs_secret.rb', line 16 def idcs_url @idcs_url end |
#scope_url ⇒ String
[Required] Fully qualified scope url
28 29 30 |
# File 'lib/oci/generative_ai_agent/models/idcs_secret.rb', line 28 def scope_url @scope_url end |
#vault_secret_id ⇒ String
[Required] The OCID of the secret for client secret.
24 25 26 |
# File 'lib/oci/generative_ai_agent/models/idcs_secret.rb', line 24 def vault_secret_id @vault_secret_id end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
31 32 33 34 35 36 37 38 39 40 41 |
# File 'lib/oci/generative_ai_agent/models/idcs_secret.rb', line 31 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'type': :'type', 'idcs_url': :'idcsUrl', 'client_id': :'clientId', 'vault_secret_id': :'vaultSecretId', 'scope_url': :'scopeUrl' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/oci/generative_ai_agent/models/idcs_secret.rb', line 44 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'type': :'String', 'idcs_url': :'String', 'client_id': :'String', 'vault_secret_id': :'String', 'scope_url': :'String' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
108 109 110 111 112 113 114 115 116 117 |
# File 'lib/oci/generative_ai_agent/models/idcs_secret.rb', line 108 def ==(other) return true if equal?(other) self.class == other.class && type == other.type && idcs_url == other.idcs_url && client_id == other.client_id && vault_secret_id == other.vault_secret_id && scope_url == other.scope_url end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 |
# File 'lib/oci/generative_ai_agent/models/idcs_secret.rb', line 142 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
122 123 124 |
# File 'lib/oci/generative_ai_agent/models/idcs_secret.rb', line 122 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
131 132 133 |
# File 'lib/oci/generative_ai_agent/models/idcs_secret.rb', line 131 def hash [type, idcs_url, client_id, vault_secret_id, scope_url].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
175 176 177 178 179 180 181 182 183 184 |
# File 'lib/oci/generative_ai_agent/models/idcs_secret.rb', line 175 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
169 170 171 |
# File 'lib/oci/generative_ai_agent/models/idcs_secret.rb', line 169 def to_s to_hash.to_s end |