Class: Google::Apis::MigrationcenterV1::PlatformDetails
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1::PlatformDetails
- 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
-
#aws_ec2_details ⇒ Google::Apis::MigrationcenterV1::AwsEc2PlatformDetails
AWS EC2 specific details.
-
#azure_vm_details ⇒ Google::Apis::MigrationcenterV1::AzureVmPlatformDetails
Azure VM specific details.
-
#generic_details ⇒ Google::Apis::MigrationcenterV1::GenericPlatformDetails
Generic platform details.
-
#physical_details ⇒ Google::Apis::MigrationcenterV1::PhysicalPlatformDetails
Platform specific details for Physical Machines.
-
#vmware_details ⇒ Google::Apis::MigrationcenterV1::VmwarePlatformDetails
VMware specific details.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PlatformDetails
constructor
A new instance of PlatformDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PlatformDetails
Returns a new instance of PlatformDetails.
3519 3520 3521 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3519 def initialize(**args) update!(**args) end |
Instance Attribute Details
#aws_ec2_details ⇒ Google::Apis::MigrationcenterV1::AwsEc2PlatformDetails
AWS EC2 specific details.
Corresponds to the JSON property awsEc2Details
3497 3498 3499 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3497 def aws_ec2_details @aws_ec2_details end |
#azure_vm_details ⇒ Google::Apis::MigrationcenterV1::AzureVmPlatformDetails
Azure VM specific details.
Corresponds to the JSON property azureVmDetails
3502 3503 3504 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3502 def azure_vm_details @azure_vm_details end |
#generic_details ⇒ Google::Apis::MigrationcenterV1::GenericPlatformDetails
Generic platform details.
Corresponds to the JSON property genericDetails
3507 3508 3509 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3507 def generic_details @generic_details end |
#physical_details ⇒ Google::Apis::MigrationcenterV1::PhysicalPlatformDetails
Platform specific details for Physical Machines.
Corresponds to the JSON property physicalDetails
3512 3513 3514 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3512 def physical_details @physical_details end |
#vmware_details ⇒ Google::Apis::MigrationcenterV1::VmwarePlatformDetails
VMware specific details.
Corresponds to the JSON property vmwareDetails
3517 3518 3519 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3517 def vmware_details @vmware_details end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3524 3525 3526 3527 3528 3529 3530 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3524 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 |