Class: OCI::Vault::Models::CreateSecretDetails
- Inherits:
-
Object
- Object
- OCI::Vault::Models::CreateSecretDetails
- 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
-
#compartment_id ⇒ String
[Required] The OCID of the compartment where you want to create the secret.
-
#defined_tags ⇒ Hash<String, Hash<String, Object>>
Defined tags for this resource.
-
#description ⇒ String
A brief description of the secret.
-
#enable_auto_generation ⇒ BOOLEAN
The value of this flag determines whether or not secret content will be generated automatically.
-
#freeform_tags ⇒ Hash<String, String>
Free-form tags for this resource.
-
#key_id ⇒ String
[Required] The OCID of the master encryption key that is used to encrypt the secret.
-
#metadata ⇒ Hash<String, Object>
Additional metadata that you can use to provide context about how to use the secret during rotation or other administrative tasks.
- #replication_config ⇒ OCI::Vault::Models::ReplicationConfig
- #rotation_config ⇒ OCI::Vault::Models::RotationConfig
- #secret_content ⇒ OCI::Vault::Models::SecretContentDetails
- #secret_generation_context ⇒ OCI::Vault::Models::SecretGenerationContext
-
#secret_name ⇒ String
[Required] A user-friendly name for the secret.
-
#secret_rules ⇒ Array<OCI::Vault::Models::SecretRule>
A list of rules to control how the secret is used and managed.
-
#vault_id ⇒ String
[Required] The OCID of the vault where you want to create the secret.
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 = {}) ⇒ CreateSecretDetails
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 = {}) ⇒ CreateSecretDetails
Initializes the object
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 209 210 211 212 213 214 215 216 217 218 219 220 |
# File 'lib/oci/vault/models/create_secret_details.rb', line 139 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. = attributes[:'definedTags'] if attributes[:'definedTags'] raise 'You cannot provide both :definedTags and :defined_tags' if attributes.key?(:'definedTags') && attributes.key?(:'defined_tags') self. = attributes[:'defined_tags'] if attributes[:'defined_tags'] self.description = attributes[:'description'] if attributes[:'description'] self. = attributes[:'freeformTags'] if attributes[:'freeformTags'] raise 'You cannot provide both :freeformTags and :freeform_tags' if attributes.key?(:'freeformTags') && attributes.key?(:'freeform_tags') self. = 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.replication_config = attributes[:'replicationConfig'] if attributes[:'replicationConfig'] raise 'You cannot provide both :replicationConfig and :replication_config' if attributes.key?(:'replicationConfig') && attributes.key?(:'replication_config') self.replication_config = attributes[:'replication_config'] if attributes[:'replication_config'] 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_id ⇒ String
[Required] The OCID of the compartment where you want to create the secret.
13 14 15 |
# File 'lib/oci/vault/models/create_secret_details.rb', line 13 def compartment_id @compartment_id end |
#defined_tags ⇒ Hash<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\"}}
20 21 22 |
# File 'lib/oci/vault/models/create_secret_details.rb', line 20 def @defined_tags end |
#description ⇒ String
A brief description of the secret. Avoid entering confidential information.
24 25 26 |
# File 'lib/oci/vault/models/create_secret_details.rb', line 24 def description @description end |
#enable_auto_generation ⇒ BOOLEAN
The value of this flag determines whether or not secret content will be generated automatically. If not set, it defaults to false.
73 74 75 |
# File 'lib/oci/vault/models/create_secret_details.rb', line 73 def enable_auto_generation @enable_auto_generation end |
#freeform_tags ⇒ Hash<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\"}
31 32 33 |
# File 'lib/oci/vault/models/create_secret_details.rb', line 31 def @freeform_tags end |
#key_id ⇒ String
[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.
36 37 38 |
# File 'lib/oci/vault/models/create_secret_details.rb', line 36 def key_id @key_id end |
#metadata ⇒ Hash<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.
43 44 45 |
# File 'lib/oci/vault/models/create_secret_details.rb', line 43 def @metadata end |
#replication_config ⇒ OCI::Vault::Models::ReplicationConfig
49 50 51 |
# File 'lib/oci/vault/models/create_secret_details.rb', line 49 def replication_config @replication_config end |
#rotation_config ⇒ OCI::Vault::Models::RotationConfig
52 53 54 |
# File 'lib/oci/vault/models/create_secret_details.rb', line 52 def rotation_config @rotation_config end |
#secret_content ⇒ OCI::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_context ⇒ OCI::Vault::Models::SecretGenerationContext
68 69 70 |
# File 'lib/oci/vault/models/create_secret_details.rb', line 68 def secret_generation_context @secret_generation_context end |
#secret_name ⇒ String
[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.
57 58 59 |
# File 'lib/oci/vault/models/create_secret_details.rb', line 57 def secret_name @secret_name end |
#secret_rules ⇒ Array<OCI::Vault::Models::SecretRule>
A list of rules to control how the secret is used and managed.
61 62 63 |
# File 'lib/oci/vault/models/create_secret_details.rb', line 61 def secret_rules @secret_rules end |
#vault_id ⇒ String
[Required] The OCID of the vault where you want to create the secret.
65 66 67 |
# File 'lib/oci/vault/models/create_secret_details.rb', line 65 def vault_id @vault_id end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
# File 'lib/oci/vault/models/create_secret_details.rb', line 76 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', 'replication_config': :'replicationConfig', '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_types ⇒ Object
Attribute type mapping.
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
# File 'lib/oci/vault/models/create_secret_details.rb', line 98 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', 'replication_config': :'OCI::Vault::Models::ReplicationConfig', '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.
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 |
# File 'lib/oci/vault/models/create_secret_details.rb', line 229 def ==(other) return true if equal?(other) self.class == other.class && compartment_id == other.compartment_id && == other. && description == other.description && == other. && key_id == other.key_id && == other. && secret_content == other.secret_content && replication_config == other.replication_config && 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
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 |
# File 'lib/oci/vault/models/create_secret_details.rb', line 272 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
252 253 254 |
# File 'lib/oci/vault/models/create_secret_details.rb', line 252 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
261 262 263 |
# File 'lib/oci/vault/models/create_secret_details.rb', line 261 def hash [compartment_id, , description, , key_id, , secret_content, replication_config, rotation_config, secret_name, secret_rules, vault_id, secret_generation_context, enable_auto_generation].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
305 306 307 308 309 310 311 312 313 314 |
# File 'lib/oci/vault/models/create_secret_details.rb', line 305 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
299 300 301 |
# File 'lib/oci/vault/models/create_secret_details.rb', line 299 def to_s to_hash.to_s end |