Class: OCI::CloudMigrations::Models::VmTargetAsset

Inherits:
TargetAsset
  • Object
show all
Defined in:
lib/oci/cloud_migrations/models/vm_target_asset.rb

Overview

Description of the VM target asset.

Constant Summary collapse

PREFERRED_SHAPE_TYPE_ENUM =
[
  PREFERRED_SHAPE_TYPE_VM = 'VM'.freeze,
  PREFERRED_SHAPE_TYPE_VM_INTEL = 'VM_INTEL'.freeze,
  PREFERRED_SHAPE_TYPE_VM_INTEL_STANDARD = 'VM_INTEL_Standard'.freeze,
  PREFERRED_SHAPE_TYPE_VM_INTEL_DENS_IO = 'VM_INTEL_DensIO'.freeze,
  PREFERRED_SHAPE_TYPE_VM_INTEL_GPU = 'VM_INTEL_GPU'.freeze,
  PREFERRED_SHAPE_TYPE_VM_INTEL_OPTIMIZED = 'VM_INTEL_Optimized'.freeze,
  PREFERRED_SHAPE_TYPE_VM_AMD = 'VM_AMD'.freeze,
  PREFERRED_SHAPE_TYPE_VM_AMD_STANDARD = 'VM_AMD_Standard'.freeze,
  PREFERRED_SHAPE_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze

Constants inherited from TargetAsset

TargetAsset::LIFECYCLE_STATE_ENUM, TargetAsset::TYPE_ENUM

Instance Attribute Summary collapse

Attributes inherited from TargetAsset

#compartment_id, #compatibility_messages, #created_resource_id, #display_name, #estimated_cost, #id, #is_excluded_from_execution, #lifecycle_details, #lifecycle_state, #migration_asset, #migration_plan_id, #time_assessed, #time_created, #time_updated, #type

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from TargetAsset

get_subtype

Constructor Details

#initialize(attributes = {}) ⇒ VmTargetAsset

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):



130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
# File 'lib/oci/cloud_migrations/models/vm_target_asset.rb', line 130

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

  attributes['type'] = 'INSTANCE'

  super(attributes)

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

  self.preferred_shape_type = attributes[:'preferredShapeType'] if attributes[:'preferredShapeType']

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

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

  self.test_spec = attributes[:'testSpec'] if attributes[:'testSpec']

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

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

  self.block_volumes_performance = attributes[:'blockVolumesPerformance'] if attributes[:'blockVolumesPerformance']

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

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

  self.ms_license = attributes[:'msLicense'] if attributes[:'msLicense']

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

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

  self.user_spec = attributes[:'userSpec'] if attributes[:'userSpec']

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

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

  self.recommended_spec = attributes[:'recommendedSpec'] if attributes[:'recommendedSpec']

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

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

Instance Attribute Details

#block_volumes_performanceInteger

Performance of the block volumes.

Returns:

  • (Integer)


34
35
36
# File 'lib/oci/cloud_migrations/models/vm_target_asset.rb', line 34

def block_volumes_performance
  @block_volumes_performance
end

#ms_licenseString

Microsoft license for VM configuration.

Returns:

  • (String)


38
39
40
# File 'lib/oci/cloud_migrations/models/vm_target_asset.rb', line 38

def ms_license
  @ms_license
end

#preferred_shape_typeString

[Required] Preferred VM shape type that you provide.

Returns:

  • (String)


27
28
29
# File 'lib/oci/cloud_migrations/models/vm_target_asset.rb', line 27

def preferred_shape_type
  @preferred_shape_type
end


44
45
46
# File 'lib/oci/cloud_migrations/models/vm_target_asset.rb', line 44

def recommended_spec
  @recommended_spec
end

#test_specOCI::CloudMigrations::Models::LaunchInstanceDetails



30
31
32
# File 'lib/oci/cloud_migrations/models/vm_target_asset.rb', line 30

def test_spec
  @test_spec
end

#user_specOCI::CloudMigrations::Models::LaunchInstanceDetails



41
42
43
# File 'lib/oci/cloud_migrations/models/vm_target_asset.rb', line 41

def user_spec
  @user_spec
end

Class Method Details

.attribute_mapObject

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



47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# File 'lib/oci/cloud_migrations/models/vm_target_asset.rb', line 47

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'id': :'id',
    'display_name': :'displayName',
    'lifecycle_state': :'lifecycleState',
    'lifecycle_details': :'lifecycleDetails',
    'migration_plan_id': :'migrationPlanId',
    'compartment_id': :'compartmentId',
    'created_resource_id': :'createdResourceId',
    'type': :'type',
    'is_excluded_from_execution': :'isExcludedFromExecution',
    'compatibility_messages': :'compatibilityMessages',
    'estimated_cost': :'estimatedCost',
    'time_created': :'timeCreated',
    'time_updated': :'timeUpdated',
    'time_assessed': :'timeAssessed',
    'migration_asset': :'migrationAsset',
    'preferred_shape_type': :'preferredShapeType',
    'test_spec': :'testSpec',
    'block_volumes_performance': :'blockVolumesPerformance',
    'ms_license': :'msLicense',
    'user_spec': :'userSpec',
    'recommended_spec': :'recommendedSpec'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



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
# File 'lib/oci/cloud_migrations/models/vm_target_asset.rb', line 76

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'id': :'String',
    'display_name': :'String',
    'lifecycle_state': :'String',
    'lifecycle_details': :'String',
    'migration_plan_id': :'String',
    'compartment_id': :'String',
    'created_resource_id': :'String',
    'type': :'String',
    'is_excluded_from_execution': :'BOOLEAN',
    'compatibility_messages': :'Array<OCI::CloudMigrations::Models::CompatibilityMessage>',
    'estimated_cost': :'OCI::CloudMigrations::Models::CostEstimation',
    'time_created': :'DateTime',
    'time_updated': :'DateTime',
    'time_assessed': :'DateTime',
    'migration_asset': :'OCI::CloudMigrations::Models::MigrationAsset',
    'preferred_shape_type': :'String',
    'test_spec': :'OCI::CloudMigrations::Models::LaunchInstanceDetails',
    'block_volumes_performance': :'Integer',
    'ms_license': :'String',
    'user_spec': :'OCI::CloudMigrations::Models::LaunchInstanceDetails',
    'recommended_spec': :'OCI::CloudMigrations::Models::LaunchInstanceDetails'
    # 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



197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
# File 'lib/oci/cloud_migrations/models/vm_target_asset.rb', line 197

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

  self.class == other.class &&
    id == other.id &&
    display_name == other.display_name &&
    lifecycle_state == other.lifecycle_state &&
    lifecycle_details == other.lifecycle_details &&
    migration_plan_id == other.migration_plan_id &&
    compartment_id == other.compartment_id &&
    created_resource_id == other.created_resource_id &&
    type == other.type &&
    is_excluded_from_execution == other.is_excluded_from_execution &&
    compatibility_messages == other.compatibility_messages &&
    estimated_cost == other.estimated_cost &&
    time_created == other.time_created &&
    time_updated == other.time_updated &&
    time_assessed == other.time_assessed &&
    migration_asset == other.migration_asset &&
    preferred_shape_type == other.preferred_shape_type &&
    test_spec == other.test_spec &&
    block_volumes_performance == other.block_volumes_performance &&
    ms_license == other.ms_license &&
    user_spec == other.user_spec &&
    recommended_spec == other.recommended_spec
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



247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
# File 'lib/oci/cloud_migrations/models/vm_target_asset.rb', line 247

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


227
228
229
# File 'lib/oci/cloud_migrations/models/vm_target_asset.rb', line 227

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



236
237
238
# File 'lib/oci/cloud_migrations/models/vm_target_asset.rb', line 236

def hash
  [id, display_name, lifecycle_state, lifecycle_details, migration_plan_id, compartment_id, created_resource_id, type, is_excluded_from_execution, compatibility_messages, estimated_cost, time_created, time_updated, time_assessed, migration_asset, preferred_shape_type, test_spec, block_volumes_performance, ms_license, user_spec, recommended_spec].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



280
281
282
283
284
285
286
287
288
289
# File 'lib/oci/cloud_migrations/models/vm_target_asset.rb', line 280

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



274
275
276
# File 'lib/oci/cloud_migrations/models/vm_target_asset.rb', line 274

def to_s
  to_hash.to_s
end