Class: OCI::CloudBridge::Models::ImportInventoryViaAssetsDetails
- Inherits:
-
ImportInventoryDetails
- Object
- ImportInventoryDetails
- OCI::CloudBridge::Models::ImportInventoryViaAssetsDetails
- Defined in:
- lib/oci/cloud_bridge/models/import_inventory_via_assets_details.rb
Overview
Details for importing assets from a file.
Constant Summary collapse
- ASSET_TYPE_ENUM =
[ ASSET_TYPE_VMWARE_VM = 'VMWARE_VM'.freeze, ASSET_TYPE_VM = 'VM'.freeze ].freeze
Constants inherited from ImportInventoryDetails
OCI::CloudBridge::Models::ImportInventoryDetails::RESOURCE_TYPE_ENUM
Instance Attribute Summary collapse
-
#asset_type ⇒ String
The type of asset.
-
#data ⇒ String
The file body to be sent in the request.
Attributes inherited from ImportInventoryDetails
#compartment_id, #defined_tags, #freeform_tags, #resource_type
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 = {}) ⇒ ImportInventoryViaAssetsDetails
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.
Methods inherited from ImportInventoryDetails
Constructor Details
#initialize(attributes = {}) ⇒ ImportInventoryViaAssetsDetails
Initializes the object
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
# File 'lib/oci/cloud_bridge/models/import_inventory_via_assets_details.rb', line 64 def initialize(attributes = {}) return unless attributes.is_a?(Hash) attributes['resourceType'] = 'ASSET' super(attributes) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } self.data = attributes[:'data'] if attributes[:'data'] self.asset_type = attributes[:'assetType'] if attributes[:'assetType'] raise 'You cannot provide both :assetType and :asset_type' if attributes.key?(:'assetType') && attributes.key?(:'asset_type') self.asset_type = attributes[:'asset_type'] if attributes[:'asset_type'] end |
Instance Attribute Details
#asset_type ⇒ String
The type of asset.
23 24 25 |
# File 'lib/oci/cloud_bridge/models/import_inventory_via_assets_details.rb', line 23 def asset_type @asset_type end |
#data ⇒ String
The file body to be sent in the request.
19 20 21 |
# File 'lib/oci/cloud_bridge/models/import_inventory_via_assets_details.rb', line 19 def data @data end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
26 27 28 29 30 31 32 33 34 35 36 37 |
# File 'lib/oci/cloud_bridge/models/import_inventory_via_assets_details.rb', line 26 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'compartment_id': :'compartmentId', 'resource_type': :'resourceType', 'freeform_tags': :'freeformTags', 'defined_tags': :'definedTags', 'data': :'data', 'asset_type': :'assetType' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/oci/cloud_bridge/models/import_inventory_via_assets_details.rb', line 40 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'compartment_id': :'String', 'resource_type': :'String', 'freeform_tags': :'Hash<String, String>', 'defined_tags': :'Hash<String, Hash<String, Object>>', 'data': :'String', 'asset_type': :'String' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
98 99 100 101 102 103 104 105 106 107 108 |
# File 'lib/oci/cloud_bridge/models/import_inventory_via_assets_details.rb', line 98 def ==(other) return true if equal?(other) self.class == other.class && compartment_id == other.compartment_id && resource_type == other.resource_type && == other. && == other. && data == other.data && asset_type == other.asset_type end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
# File 'lib/oci/cloud_bridge/models/import_inventory_via_assets_details.rb', line 133 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
113 114 115 |
# File 'lib/oci/cloud_bridge/models/import_inventory_via_assets_details.rb', line 113 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
122 123 124 |
# File 'lib/oci/cloud_bridge/models/import_inventory_via_assets_details.rb', line 122 def hash [compartment_id, resource_type, , , data, asset_type].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
166 167 168 169 170 171 172 173 174 175 |
# File 'lib/oci/cloud_bridge/models/import_inventory_via_assets_details.rb', line 166 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
160 161 162 |
# File 'lib/oci/cloud_bridge/models/import_inventory_via_assets_details.rb', line 160 def to_s to_hash.to_s end |