Class: OCI::FleetAppsManagement::Models::KmsKeyVariableDependsOn

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/fleet_apps_management/models/kms_key_variable_depends_on.rb

Overview

Depends on object.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ KmsKeyVariableDependsOn

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :compartment_id (String)

    The value to assign to the #compartment_id property

  • :vault_id (String)

    The value to assign to the #vault_id property

  • :protection_mode (String)

    The value to assign to the #protection_mode property

  • :algorithm (String)

    The value to assign to the #algorithm property

  • :length (Integer)

    The value to assign to the #length property

  • :curve_id (String)

    The value to assign to the #curve_id property



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
100
101
102
103
104
105
106
107
108
# File 'lib/oci/fleet_apps_management/models/kms_key_variable_depends_on.rb', line 75

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

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

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

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

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

  self.curve_id = attributes[:'curveId'] if attributes[:'curveId']

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

  self.curve_id = attributes[:'curve_id'] if attributes[:'curve_id']
end

Instance Attribute Details

#algorithmString

Key cryptographic algorithm (RSA, AES, etc).

Returns:

  • (String)


25
26
27
# File 'lib/oci/fleet_apps_management/models/kms_key_variable_depends_on.rb', line 25

def algorithm
  @algorithm
end

#compartment_idString

[Required] OCID of the compartment.

Returns:

  • (String)


13
14
15
# File 'lib/oci/fleet_apps_management/models/kms_key_variable_depends_on.rb', line 13

def compartment_id
  @compartment_id
end

#curve_idString

Curve identifier for key creation.

Returns:

  • (String)


33
34
35
# File 'lib/oci/fleet_apps_management/models/kms_key_variable_depends_on.rb', line 33

def curve_id
  @curve_id
end

#lengthInteger

Length of the cryptographic key in bits.

Returns:

  • (Integer)


29
30
31
# File 'lib/oci/fleet_apps_management/models/kms_key_variable_depends_on.rb', line 29

def length
  @length
end

#protection_modeString

The KMS crypto protection mode string.

Returns:

  • (String)


21
22
23
# File 'lib/oci/fleet_apps_management/models/kms_key_variable_depends_on.rb', line 21

def protection_mode
  @protection_mode
end

#vault_idString

[Required] OCID of the Vault.

Returns:

  • (String)


17
18
19
# File 'lib/oci/fleet_apps_management/models/kms_key_variable_depends_on.rb', line 17

def vault_id
  @vault_id
end

Class Method Details

.attribute_mapObject

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



36
37
38
39
40
41
42
43
44
45
46
47
# File 'lib/oci/fleet_apps_management/models/kms_key_variable_depends_on.rb', line 36

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'compartment_id': :'compartmentId',
    'vault_id': :'vaultId',
    'protection_mode': :'protectionMode',
    'algorithm': :'algorithm',
    'length': :'length',
    'curve_id': :'curveId'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



50
51
52
53
54
55
56
57
58
59
60
61
# File 'lib/oci/fleet_apps_management/models/kms_key_variable_depends_on.rb', line 50

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'compartment_id': :'String',
    'vault_id': :'String',
    'protection_mode': :'String',
    'algorithm': :'String',
    'length': :'Integer',
    'curve_id': :'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



117
118
119
120
121
122
123
124
125
126
127
# File 'lib/oci/fleet_apps_management/models/kms_key_variable_depends_on.rb', line 117

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

  self.class == other.class &&
    compartment_id == other.compartment_id &&
    vault_id == other.vault_id &&
    protection_mode == other.protection_mode &&
    algorithm == other.algorithm &&
    length == other.length &&
    curve_id == other.curve_id
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



152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
# File 'lib/oci/fleet_apps_management/models/kms_key_variable_depends_on.rb', line 152

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


132
133
134
# File 'lib/oci/fleet_apps_management/models/kms_key_variable_depends_on.rb', line 132

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



141
142
143
# File 'lib/oci/fleet_apps_management/models/kms_key_variable_depends_on.rb', line 141

def hash
  [compartment_id, vault_id, protection_mode, algorithm, length, curve_id].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



185
186
187
188
189
190
191
192
193
194
# File 'lib/oci/fleet_apps_management/models/kms_key_variable_depends_on.rb', line 185

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



179
180
181
# File 'lib/oci/fleet_apps_management/models/kms_key_variable_depends_on.rb', line 179

def to_s
  to_hash.to_s
end