Class: OCI::GenerativeAiAgent::Models::IdcsSecret

Inherits:
SecretDetail
  • Object
show all
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

SecretDetail::TYPE_ENUM

Instance Attribute Summary collapse

Attributes inherited from SecretDetail

#type

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from SecretDetail

get_subtype

Constructor Details

#initialize(attributes = {}) ⇒ IdcsSecret

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :idcs_url (String)

    The value to assign to the #idcs_url property

  • :client_id (String)

    The value to assign to the #client_id property

  • :vault_secret_id (String)

    The value to assign to the #vault_secret_id property

  • :scope_url (String)

    The value to assign to the #scope_url property



65
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
# File 'lib/oci/generative_ai_agent/models/idcs_secret.rb', line 65

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_idString

[Required] The IDCS Connect clientId.

Returns:

  • (String)


19
20
21
# File 'lib/oci/generative_ai_agent/models/idcs_secret.rb', line 19

def client_id
  @client_id
end

#idcs_urlString

[Required] The URL represent authentication url of the IDCS.

Returns:

  • (String)


15
16
17
# File 'lib/oci/generative_ai_agent/models/idcs_secret.rb', line 15

def idcs_url
  @idcs_url
end

#scope_urlString

[Required] Fully qualified scope url

Returns:

  • (String)


27
28
29
# File 'lib/oci/generative_ai_agent/models/idcs_secret.rb', line 27

def scope_url
  @scope_url
end

#vault_secret_idString

[Required] The OCID of the secret for client secret.

Returns:

  • (String)


23
24
25
# File 'lib/oci/generative_ai_agent/models/idcs_secret.rb', line 23

def vault_secret_id
  @vault_secret_id
end

Class Method Details

.attribute_mapObject

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



30
31
32
33
34
35
36
37
38
39
40
# File 'lib/oci/generative_ai_agent/models/idcs_secret.rb', line 30

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_typesObject

Attribute type mapping.



43
44
45
46
47
48
49
50
51
52
53
# File 'lib/oci/generative_ai_agent/models/idcs_secret.rb', line 43

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.

Parameters:

  • other (Object)

    the other object to be compared



107
108
109
110
111
112
113
114
115
116
# File 'lib/oci/generative_ai_agent/models/idcs_secret.rb', line 107

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

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
# File 'lib/oci/generative_ai_agent/models/idcs_secret.rb', line 141

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


121
122
123
# File 'lib/oci/generative_ai_agent/models/idcs_secret.rb', line 121

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



130
131
132
# File 'lib/oci/generative_ai_agent/models/idcs_secret.rb', line 130

def hash
  [type, idcs_url, client_id, vault_secret_id, scope_url].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



174
175
176
177
178
179
180
181
182
183
# File 'lib/oci/generative_ai_agent/models/idcs_secret.rb', line 174

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



168
169
170
# File 'lib/oci/generative_ai_agent/models/idcs_secret.rb', line 168

def to_s
  to_hash.to_s
end