Class: OCI::Ocvp::Models::DatastoreAttachment

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/ocvp/models/datastore_attachment.rb

Overview

The details about attachment of datastore

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ DatastoreAttachment

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :volume_iqn (String)

    The value to assign to the #volume_iqn property

  • :block_volume_id (String)

    The value to assign to the #block_volume_id property

  • :datastore_id (String)

    The value to assign to the #datastore_id property

  • :ip_address (String)

    The value to assign to the #ip_address property

  • :port (Integer)

    The value to assign to the #port property



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
99
100
101
# File 'lib/oci/ocvp/models/datastore_attachment.rb', line 70

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

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

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

  self.block_volume_id = attributes[:'blockVolumeId'] if attributes[:'blockVolumeId']

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

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

  self.datastore_id = attributes[:'datastoreId'] if attributes[:'datastoreId']

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

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

  self.ip_address = attributes[:'ipAddress'] if attributes[:'ipAddress']

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

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

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

Instance Attribute Details

#block_volume_idString

[Required] The OCID of the Block Volume that belongs to the datastore.

Returns:

  • (String)


18
19
20
# File 'lib/oci/ocvp/models/datastore_attachment.rb', line 18

def block_volume_id
  @block_volume_id
end

#datastore_idString

[Required] The OCIDs of the Datastore that ESXi host is attached to.

Returns:

  • (String)


23
24
25
# File 'lib/oci/ocvp/models/datastore_attachment.rb', line 23

def datastore_id
  @datastore_id
end

#ip_addressString

[Required] The IP address of datastore attachment.

Returns:

  • (String)


27
28
29
# File 'lib/oci/ocvp/models/datastore_attachment.rb', line 27

def ip_address
  @ip_address
end

#portInteger

[Required] The port of datastore attachment.

Returns:

  • (Integer)


31
32
33
# File 'lib/oci/ocvp/models/datastore_attachment.rb', line 31

def port
  @port
end

#volume_iqnString

[Required] An IQN of the Block Storage Volume.

Returns:

  • (String)


14
15
16
# File 'lib/oci/ocvp/models/datastore_attachment.rb', line 14

def volume_iqn
  @volume_iqn
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
# File 'lib/oci/ocvp/models/datastore_attachment.rb', line 34

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'volume_iqn': :'volumeIqn',
    'block_volume_id': :'blockVolumeId',
    'datastore_id': :'datastoreId',
    'ip_address': :'ipAddress',
    'port': :'port'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



47
48
49
50
51
52
53
54
55
56
57
# File 'lib/oci/ocvp/models/datastore_attachment.rb', line 47

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'volume_iqn': :'String',
    'block_volume_id': :'String',
    'datastore_id': :'String',
    'ip_address': :'String',
    'port': :'Integer'
    # 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



110
111
112
113
114
115
116
117
118
119
# File 'lib/oci/ocvp/models/datastore_attachment.rb', line 110

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

  self.class == other.class &&
    volume_iqn == other.volume_iqn &&
    block_volume_id == other.block_volume_id &&
    datastore_id == other.datastore_id &&
    ip_address == other.ip_address &&
    port == other.port
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



144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
# File 'lib/oci/ocvp/models/datastore_attachment.rb', line 144

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


124
125
126
# File 'lib/oci/ocvp/models/datastore_attachment.rb', line 124

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



133
134
135
# File 'lib/oci/ocvp/models/datastore_attachment.rb', line 133

def hash
  [volume_iqn, block_volume_id, datastore_id, ip_address, port].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



177
178
179
180
181
182
183
184
185
186
# File 'lib/oci/ocvp/models/datastore_attachment.rb', line 177

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



171
172
173
# File 'lib/oci/ocvp/models/datastore_attachment.rb', line 171

def to_s
  to_hash.to_s
end