Class: Google::Apis::MigrationcenterV1alpha1::PlatformDetails

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/migrationcenter_v1alpha1/classes.rb,
lib/google/apis/migrationcenter_v1alpha1/representations.rb,
lib/google/apis/migrationcenter_v1alpha1/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.



4915
4916
4917
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4915

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

Instance Attribute Details

#aws_ec2_detailsGoogle::Apis::MigrationcenterV1alpha1::AwsEc2PlatformDetails

AWS EC2 specific details. Corresponds to the JSON property awsEc2Details



4893
4894
4895
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4893

def aws_ec2_details
  @aws_ec2_details
end

#azure_vm_detailsGoogle::Apis::MigrationcenterV1alpha1::AzureVmPlatformDetails

Azure VM specific details. Corresponds to the JSON property azureVmDetails



4898
4899
4900
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4898

def azure_vm_details
  @azure_vm_details
end

#generic_detailsGoogle::Apis::MigrationcenterV1alpha1::GenericPlatformDetails

Generic platform details. Corresponds to the JSON property genericDetails



4903
4904
4905
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4903

def generic_details
  @generic_details
end

#physical_detailsGoogle::Apis::MigrationcenterV1alpha1::PhysicalPlatformDetails

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



4908
4909
4910
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4908

def physical_details
  @physical_details
end

#vmware_detailsGoogle::Apis::MigrationcenterV1alpha1::VmwarePlatformDetails

VMware specific details. Corresponds to the JSON property vmwareDetails



4913
4914
4915
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4913

def vmware_details
  @vmware_details
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4920
4921
4922
4923
4924
4925
4926
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4920

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