Class: OCI::Core::Models::LaunchAttachIScsiVolumeDetails

Inherits:
LaunchAttachVolumeDetails show all
Defined in:
lib/oci/core/models/launch_attach_i_scsi_volume_details.rb

Overview

Details specific to ISCSI type volume attachments.

Constant Summary collapse

ENCRYPTION_IN_TRANSIT_TYPE_ENUM =
[
  ENCRYPTION_IN_TRANSIT_TYPE_NONE = 'NONE'.freeze,
  ENCRYPTION_IN_TRANSIT_TYPE_BM_ENCRYPTION_IN_TRANSIT = 'BM_ENCRYPTION_IN_TRANSIT'.freeze
].freeze

Instance Attribute Summary collapse

Attributes inherited from LaunchAttachVolumeDetails

#device, #display_name, #is_read_only, #is_shareable, #launch_create_volume_details, #type, #volume_id

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from LaunchAttachVolumeDetails

get_subtype

Constructor Details

#initialize(attributes = {}) ⇒ LaunchAttachIScsiVolumeDetails

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):



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
109
110
111
112
113
# File 'lib/oci/core/models/launch_attach_i_scsi_volume_details.rb', line 84

def initialize(attributes = {})
  return unless attributes.is_a?(Hash)

  attributes['type'] = 'iscsi'

  super(attributes)

  # convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }

  self.use_chap = attributes[:'useChap'] unless attributes[:'useChap'].nil?

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

  self.use_chap = attributes[:'use_chap'] unless attributes[:'use_chap'].nil?

  self.encryption_in_transit_type = attributes[:'encryptionInTransitType'] if attributes[:'encryptionInTransitType']
  self.encryption_in_transit_type = "NONE" if encryption_in_transit_type.nil? && !attributes.key?(:'encryptionInTransitType') # rubocop:disable Style/StringLiterals

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

  self.encryption_in_transit_type = attributes[:'encryption_in_transit_type'] if attributes[:'encryption_in_transit_type']
  self.encryption_in_transit_type = "NONE" if encryption_in_transit_type.nil? && !attributes.key?(:'encryptionInTransitType') && !attributes.key?(:'encryption_in_transit_type') # rubocop:disable Style/StringLiterals

  self. = attributes[:'isAgentAutoIscsiLoginEnabled'] unless attributes[:'isAgentAutoIscsiLoginEnabled'].nil?

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

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

Instance Attribute Details

#encryption_in_transit_typeString

Refer the top-level definition of encryptionInTransitType. The default value is NONE.

Returns:

  • (String)


26
27
28
# File 'lib/oci/core/models/launch_attach_i_scsi_volume_details.rb', line 26

def encryption_in_transit_type
  @encryption_in_transit_type
end

#is_agent_auto_iscsi_login_enabledBOOLEAN

Whether to enable Oracle Cloud Agent to perform the iSCSI login and logout commands after the volume attach or detach operations for non multipath-enabled iSCSI attachments.

Returns:

  • (BOOLEAN)


31
32
33
# File 'lib/oci/core/models/launch_attach_i_scsi_volume_details.rb', line 31

def 
  @is_agent_auto_iscsi_login_enabled
end

#use_chapBOOLEAN

Whether to use CHAP authentication for the volume attachment. Defaults to false.

Returns:

  • (BOOLEAN)


20
21
22
# File 'lib/oci/core/models/launch_attach_i_scsi_volume_details.rb', line 20

def use_chap
  @use_chap
end

Class Method Details

.attribute_mapObject

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



34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/oci/core/models/launch_attach_i_scsi_volume_details.rb', line 34

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'device': :'device',
    'display_name': :'displayName',
    'is_read_only': :'isReadOnly',
    'is_shareable': :'isShareable',
    'type': :'type',
    'volume_id': :'volumeId',
    'launch_create_volume_details': :'launchCreateVolumeDetails',
    'use_chap': :'useChap',
    'encryption_in_transit_type': :'encryptionInTransitType',
    'is_agent_auto_iscsi_login_enabled': :'isAgentAutoIscsiLoginEnabled'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# File 'lib/oci/core/models/launch_attach_i_scsi_volume_details.rb', line 52

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'device': :'String',
    'display_name': :'String',
    'is_read_only': :'BOOLEAN',
    'is_shareable': :'BOOLEAN',
    'type': :'String',
    'volume_id': :'String',
    'launch_create_volume_details': :'OCI::Core::Models::LaunchCreateVolumeDetails',
    'use_chap': :'BOOLEAN',
    'encryption_in_transit_type': :'String',
    'is_agent_auto_iscsi_login_enabled': :'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



130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# File 'lib/oci/core/models/launch_attach_i_scsi_volume_details.rb', line 130

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

  self.class == other.class &&
    device == other.device &&
    display_name == other.display_name &&
    is_read_only == other.is_read_only &&
    is_shareable == other.is_shareable &&
    type == other.type &&
    volume_id == other.volume_id &&
    launch_create_volume_details == other.launch_create_volume_details &&
    use_chap == other.use_chap &&
    encryption_in_transit_type == other.encryption_in_transit_type &&
     == other.
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



169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
# File 'lib/oci/core/models/launch_attach_i_scsi_volume_details.rb', line 169

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


149
150
151
# File 'lib/oci/core/models/launch_attach_i_scsi_volume_details.rb', line 149

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



158
159
160
# File 'lib/oci/core/models/launch_attach_i_scsi_volume_details.rb', line 158

def hash
  [device, display_name, is_read_only, is_shareable, type, volume_id, launch_create_volume_details, use_chap, encryption_in_transit_type, ].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



202
203
204
205
206
207
208
209
210
211
# File 'lib/oci/core/models/launch_attach_i_scsi_volume_details.rb', line 202

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



196
197
198
# File 'lib/oci/core/models/launch_attach_i_scsi_volume_details.rb', line 196

def to_s
  to_hash.to_s
end