Class: OCI::Ocvp::Models::DatastoreAttachment
- Inherits:
-
Object
- Object
- OCI::Ocvp::Models::DatastoreAttachment
- Defined in:
- lib/oci/ocvp/models/datastore_attachment.rb
Overview
The details about attachment of datastore
Instance Attribute Summary collapse
-
#block_volume_id ⇒ String
[Required] The OCID of the Block Volume that belongs to the datastore.
-
#datastore_id ⇒ String
[Required] The OCIDs of the Datastore that ESXi host is attached to.
-
#ip_address ⇒ String
[Required] The IP address of datastore attachment.
-
#port ⇒ Integer
[Required] The port of datastore attachment.
-
#volume_iqn ⇒ String
[Required] An IQN of the Block Storage Volume.
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 = {}) ⇒ DatastoreAttachment
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 = {}) ⇒ DatastoreAttachment
Initializes the object
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_id ⇒ String
[Required] The OCID of the Block Volume that belongs to the datastore.
18 19 20 |
# File 'lib/oci/ocvp/models/datastore_attachment.rb', line 18 def block_volume_id @block_volume_id end |
#datastore_id ⇒ String
[Required] The OCIDs of the Datastore that ESXi host is attached to.
23 24 25 |
# File 'lib/oci/ocvp/models/datastore_attachment.rb', line 23 def datastore_id @datastore_id end |
#ip_address ⇒ String
[Required] The IP address of datastore attachment.
27 28 29 |
# File 'lib/oci/ocvp/models/datastore_attachment.rb', line 27 def ip_address @ip_address end |
#port ⇒ Integer
[Required] The port of datastore attachment.
31 32 33 |
# File 'lib/oci/ocvp/models/datastore_attachment.rb', line 31 def port @port end |
#volume_iqn ⇒ String
[Required] An IQN of the Block Storage Volume.
14 15 16 |
# File 'lib/oci/ocvp/models/datastore_attachment.rb', line 14 def volume_iqn @volume_iqn end |
Class Method Details
.attribute_map ⇒ Object
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_types ⇒ Object
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.
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
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
124 125 126 |
# File 'lib/oci/ocvp/models/datastore_attachment.rb', line 124 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
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_hash ⇒ 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_s ⇒ String
Returns the string representation of the object
171 172 173 |
# File 'lib/oci/ocvp/models/datastore_attachment.rb', line 171 def to_s to_hash.to_s end |