Class: Google::Apis::MigrationcenterV1::PlatformDetails

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/migrationcenter_v1/classes.rb,
lib/google/apis/migrationcenter_v1/representations.rb,
lib/google/apis/migrationcenter_v1/representations.rb

Overview

Information about the platform.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PlatformDetails

Returns a new instance of PlatformDetails.



3575
3576
3577
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3575

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#aws_ec2_detailsGoogle::Apis::MigrationcenterV1::AwsEc2PlatformDetails

AWS EC2 specific details. Corresponds to the JSON property awsEc2Details



3553
3554
3555
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3553

def aws_ec2_details
  @aws_ec2_details
end

#azure_vm_detailsGoogle::Apis::MigrationcenterV1::AzureVmPlatformDetails

Azure VM specific details. Corresponds to the JSON property azureVmDetails



3558
3559
3560
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3558

def azure_vm_details
  @azure_vm_details
end

#generic_detailsGoogle::Apis::MigrationcenterV1::GenericPlatformDetails

Generic platform details. Corresponds to the JSON property genericDetails



3563
3564
3565
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3563

def generic_details
  @generic_details
end

#physical_detailsGoogle::Apis::MigrationcenterV1::PhysicalPlatformDetails

Platform specific details for Physical Machines. Corresponds to the JSON property physicalDetails



3568
3569
3570
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3568

def physical_details
  @physical_details
end

#vmware_detailsGoogle::Apis::MigrationcenterV1::VmwarePlatformDetails

VMware specific details. Corresponds to the JSON property vmwareDetails



3573
3574
3575
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3573

def vmware_details
  @vmware_details
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3580
3581
3582
3583
3584
3585
3586
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3580

def update!(**args)
  @aws_ec2_details = args[:aws_ec2_details] if args.key?(:aws_ec2_details)
  @azure_vm_details = args[:azure_vm_details] if args.key?(:azure_vm_details)
  @generic_details = args[:generic_details] if args.key?(:generic_details)
  @physical_details = args[:physical_details] if args.key?(:physical_details)
  @vmware_details = args[:vmware_details] if args.key?(:vmware_details)
end