Class: OCI::Vault::Models::CreateSecretDetails

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/vault/models/create_secret_details.rb

Overview

The details of the secret that you want to create.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ CreateSecretDetails

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):



133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
# File 'lib/oci/vault/models/create_secret_details.rb', line 133

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.compartment_id = attributes[:'compartmentId'] if attributes[:'compartmentId']

  raise 'You cannot provide both :compartmentId and :compartment_id' if attributes.key?(:'compartmentId') && attributes.key?(:'compartment_id')

  self.compartment_id = attributes[:'compartment_id'] if attributes[:'compartment_id']

  self.defined_tags = attributes[:'definedTags'] if attributes[:'definedTags']

  raise 'You cannot provide both :definedTags and :defined_tags' if attributes.key?(:'definedTags') && attributes.key?(:'defined_tags')

  self.defined_tags = attributes[:'defined_tags'] if attributes[:'defined_tags']

  self.description = attributes[:'description'] if attributes[:'description']

  self.freeform_tags = attributes[:'freeformTags'] if attributes[:'freeformTags']

  raise 'You cannot provide both :freeformTags and :freeform_tags' if attributes.key?(:'freeformTags') && attributes.key?(:'freeform_tags')

  self.freeform_tags = attributes[:'freeform_tags'] if attributes[:'freeform_tags']

  self.key_id = attributes[:'keyId'] if attributes[:'keyId']

  raise 'You cannot provide both :keyId and :key_id' if attributes.key?(:'keyId') && attributes.key?(:'key_id')

  self.key_id = attributes[:'key_id'] if attributes[:'key_id']

  self. = attributes[:'metadata'] if attributes[:'metadata']

  self.secret_content = attributes[:'secretContent'] if attributes[:'secretContent']

  raise 'You cannot provide both :secretContent and :secret_content' if attributes.key?(:'secretContent') && attributes.key?(:'secret_content')

  self.secret_content = attributes[:'secret_content'] if attributes[:'secret_content']

  self.rotation_config = attributes[:'rotationConfig'] if attributes[:'rotationConfig']

  raise 'You cannot provide both :rotationConfig and :rotation_config' if attributes.key?(:'rotationConfig') && attributes.key?(:'rotation_config')

  self.rotation_config = attributes[:'rotation_config'] if attributes[:'rotation_config']

  self.secret_name = attributes[:'secretName'] if attributes[:'secretName']

  raise 'You cannot provide both :secretName and :secret_name' if attributes.key?(:'secretName') && attributes.key?(:'secret_name')

  self.secret_name = attributes[:'secret_name'] if attributes[:'secret_name']

  self.secret_rules = attributes[:'secretRules'] if attributes[:'secretRules']

  raise 'You cannot provide both :secretRules and :secret_rules' if attributes.key?(:'secretRules') && attributes.key?(:'secret_rules')

  self.secret_rules = attributes[:'secret_rules'] if attributes[:'secret_rules']

  self.vault_id = attributes[:'vaultId'] if attributes[:'vaultId']

  raise 'You cannot provide both :vaultId and :vault_id' if attributes.key?(:'vaultId') && attributes.key?(:'vault_id')

  self.vault_id = attributes[:'vault_id'] if attributes[:'vault_id']

  self.secret_generation_context = attributes[:'secretGenerationContext'] if attributes[:'secretGenerationContext']

  raise 'You cannot provide both :secretGenerationContext and :secret_generation_context' if attributes.key?(:'secretGenerationContext') && attributes.key?(:'secret_generation_context')

  self.secret_generation_context = attributes[:'secret_generation_context'] if attributes[:'secret_generation_context']

  self.enable_auto_generation = attributes[:'enableAutoGeneration'] unless attributes[:'enableAutoGeneration'].nil?

  raise 'You cannot provide both :enableAutoGeneration and :enable_auto_generation' if attributes.key?(:'enableAutoGeneration') && attributes.key?(:'enable_auto_generation')

  self.enable_auto_generation = attributes[:'enable_auto_generation'] unless attributes[:'enable_auto_generation'].nil?
end

Instance Attribute Details

#compartment_idString

[Required] The OCID of the compartment where you want to create the secret.

Returns:

  • (String)


13
14
15
# File 'lib/oci/vault/models/create_secret_details.rb', line 13

def compartment_id
  @compartment_id
end

#defined_tagsHash<String, Hash<String, Object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {\"Operations\": {\"CostCenter\": \"42\"}}

Returns:

  • (Hash<String, Hash<String, Object>>)


20
21
22
# File 'lib/oci/vault/models/create_secret_details.rb', line 20

def defined_tags
  @defined_tags
end

#descriptionString

A brief description of the secret. Avoid entering confidential information.

Returns:

  • (String)


24
25
26
# File 'lib/oci/vault/models/create_secret_details.rb', line 24

def description
  @description
end

#enable_auto_generationBOOLEAN

The value of this flag determines whether or not secret content will be generated automatically. If not set, it defaults to false.

Returns:

  • (BOOLEAN)


70
71
72
# File 'lib/oci/vault/models/create_secret_details.rb', line 70

def enable_auto_generation
  @enable_auto_generation
end

#freeform_tagsHash<String, String>

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {\"Department\": \"Finance\"}

Returns:

  • (Hash<String, String>)


31
32
33
# File 'lib/oci/vault/models/create_secret_details.rb', line 31

def freeform_tags
  @freeform_tags
end

#key_idString

[Required] The OCID of the master encryption key that is used to encrypt the secret. You must specify a symmetric key to encrypt the secret during import to the vault. You cannot encrypt secrets with asymmetric keys. Furthermore, the key must exist in the vault that you specify.

Returns:

  • (String)


36
37
38
# File 'lib/oci/vault/models/create_secret_details.rb', line 36

def key_id
  @key_id
end

#metadataHash<String, Object>

Additional metadata that you can use to provide context about how to use the secret during rotation or other administrative tasks. For example, for a secret that you use to connect to a database, the additional metadata might specify the connection endpoint and the connection string. Provide additional metadata as key-value pairs.

Returns:

  • (Hash<String, Object>)


43
44
45
# File 'lib/oci/vault/models/create_secret_details.rb', line 43

def 
  @metadata
end

#rotation_configOCI::Vault::Models::RotationConfig



49
50
51
# File 'lib/oci/vault/models/create_secret_details.rb', line 49

def rotation_config
  @rotation_config
end

#secret_contentOCI::Vault::Models::SecretContentDetails



46
47
48
# File 'lib/oci/vault/models/create_secret_details.rb', line 46

def secret_content
  @secret_content
end

#secret_generation_contextOCI::Vault::Models::SecretGenerationContext



65
66
67
# File 'lib/oci/vault/models/create_secret_details.rb', line 65

def secret_generation_context
  @secret_generation_context
end

#secret_nameString

[Required] A user-friendly name for the secret. Secret names should be unique within a vault. Avoid entering confidential information. Valid characters are uppercase or lowercase letters, numbers, hyphens, underscores, and periods.

Returns:

  • (String)


54
55
56
# File 'lib/oci/vault/models/create_secret_details.rb', line 54

def secret_name
  @secret_name
end

#secret_rulesArray<OCI::Vault::Models::SecretRule>

A list of rules to control how the secret is used and managed.

Returns:



58
59
60
# File 'lib/oci/vault/models/create_secret_details.rb', line 58

def secret_rules
  @secret_rules
end

#vault_idString

[Required] The OCID of the vault where you want to create the secret.

Returns:

  • (String)


62
63
64
# File 'lib/oci/vault/models/create_secret_details.rb', line 62

def vault_id
  @vault_id
end

Class Method Details

.attribute_mapObject

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



73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# File 'lib/oci/vault/models/create_secret_details.rb', line 73

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'compartment_id': :'compartmentId',
    'defined_tags': :'definedTags',
    'description': :'description',
    'freeform_tags': :'freeformTags',
    'key_id': :'keyId',
    'metadata': :'metadata',
    'secret_content': :'secretContent',
    'rotation_config': :'rotationConfig',
    'secret_name': :'secretName',
    'secret_rules': :'secretRules',
    'vault_id': :'vaultId',
    'secret_generation_context': :'secretGenerationContext',
    'enable_auto_generation': :'enableAutoGeneration'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# File 'lib/oci/vault/models/create_secret_details.rb', line 94

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'compartment_id': :'String',
    'defined_tags': :'Hash<String, Hash<String, Object>>',
    'description': :'String',
    'freeform_tags': :'Hash<String, String>',
    'key_id': :'String',
    'metadata': :'Hash<String, Object>',
    'secret_content': :'OCI::Vault::Models::SecretContentDetails',
    'rotation_config': :'OCI::Vault::Models::RotationConfig',
    'secret_name': :'String',
    'secret_rules': :'Array<OCI::Vault::Models::SecretRule>',
    'vault_id': :'String',
    'secret_generation_context': :'OCI::Vault::Models::SecretGenerationContext',
    'enable_auto_generation': :'BOOLEAN'
    # 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



217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
# File 'lib/oci/vault/models/create_secret_details.rb', line 217

def ==(other)
  return true if equal?(other)

  self.class == other.class &&
    compartment_id == other.compartment_id &&
    defined_tags == other.defined_tags &&
    description == other.description &&
    freeform_tags == other.freeform_tags &&
    key_id == other.key_id &&
     == other. &&
    secret_content == other.secret_content &&
    rotation_config == other.rotation_config &&
    secret_name == other.secret_name &&
    secret_rules == other.secret_rules &&
    vault_id == other.vault_id &&
    secret_generation_context == other.secret_generation_context &&
    enable_auto_generation == other.enable_auto_generation
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



259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
# File 'lib/oci/vault/models/create_secret_details.rb', line 259

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


239
240
241
# File 'lib/oci/vault/models/create_secret_details.rb', line 239

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



248
249
250
# File 'lib/oci/vault/models/create_secret_details.rb', line 248

def hash
  [compartment_id, defined_tags, description, freeform_tags, key_id, , secret_content, rotation_config, secret_name, secret_rules, vault_id, secret_generation_context, enable_auto_generation].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



292
293
294
295
296
297
298
299
300
301
# File 'lib/oci/vault/models/create_secret_details.rb', line 292

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



286
287
288
# File 'lib/oci/vault/models/create_secret_details.rb', line 286

def to_s
  to_hash.to_s
end