Class: Google::Apis::VmmigrationV1alpha1::ComputeEngineTargetDetails

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

Overview

ComputeEngineTargetDetails is a collection of details for creating a VM in a target Compute Engine project.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ComputeEngineTargetDetails

Returns a new instance of ComputeEngineTargetDetails.



930
931
932
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 930

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

Instance Attribute Details

#additional_licensesArray<String>

Additional licenses to assign to the VM. Corresponds to the JSON property additionalLicenses

Returns:

  • (Array<String>)


840
841
842
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 840

def additional_licenses
  @additional_licenses
end

#applied_licenseGoogle::Apis::VmmigrationV1alpha1::AppliedLicense

AppliedLicense holds the license data returned by adaptation module report. Corresponds to the JSON property appliedLicense



845
846
847
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 845

def applied_license
  @applied_license
end

#boot_optionString

The VM Boot Option, as set in the source VM. Corresponds to the JSON property bootOption

Returns:

  • (String)


850
851
852
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 850

def boot_option
  @boot_option
end

#compute_schedulingGoogle::Apis::VmmigrationV1alpha1::ComputeScheduling

Scheduling information for VM on maintenance/restart behaviour and node allocation in sole tenant nodes. Corresponds to the JSON property computeScheduling



856
857
858
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 856

def compute_scheduling
  @compute_scheduling
end

#disk_typeString

The disk type to use in the VM. Corresponds to the JSON property diskType

Returns:

  • (String)


861
862
863
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 861

def disk_type
  @disk_type
end

#hostnameString

The hostname to assign to the VM. Corresponds to the JSON property hostname

Returns:

  • (String)


866
867
868
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 866

def hostname
  @hostname
end

#labelsHash<String,String>

A map of labels to associate with the VM. Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


871
872
873
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 871

def labels
  @labels
end

#license_typeString

The license type to use in OS adaptation. Corresponds to the JSON property licenseType

Returns:

  • (String)


876
877
878
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 876

def license_type
  @license_type
end

#machine_typeString

The machine type to create the VM with. Corresponds to the JSON property machineType

Returns:

  • (String)


881
882
883
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 881

def machine_type
  @machine_type
end

#machine_type_seriesString

The machine type series to create the VM with. Corresponds to the JSON property machineTypeSeries

Returns:

  • (String)


886
887
888
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 886

def machine_type_series
  @machine_type_series
end

#metadataHash<String,String>

The metadata key/value pairs to assign to the VM. Corresponds to the JSON property metadata

Returns:

  • (Hash<String,String>)


891
892
893
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 891

def 
  @metadata
end

#network_interfacesArray<Google::Apis::VmmigrationV1alpha1::NetworkInterface>

List of NICs connected to this VM. Corresponds to the JSON property networkInterfaces



896
897
898
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 896

def network_interfaces
  @network_interfaces
end

#network_tagsArray<String>

A list of network tags to associate with the VM. Corresponds to the JSON property networkTags

Returns:

  • (Array<String>)


901
902
903
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 901

def network_tags
  @network_tags
end

#projectString

The Google Cloud target project ID or project name. Corresponds to the JSON property project

Returns:

  • (String)


906
907
908
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 906

def project
  @project
end

#secure_bootBoolean Also known as: secure_boot?

Defines whether the instance has Secure Boot enabled. This can be set to true only if the VM boot option is EFI. Corresponds to the JSON property secureBoot

Returns:

  • (Boolean)


912
913
914
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 912

def secure_boot
  @secure_boot
end

#service_accountString

The service account to associate the VM with. Corresponds to the JSON property serviceAccount

Returns:

  • (String)


918
919
920
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 918

def 
  @service_account
end

#vm_nameString

The name of the VM to create. Corresponds to the JSON property vmName

Returns:

  • (String)


923
924
925
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 923

def vm_name
  @vm_name
end

#zoneString

The zone in which to create the VM. Corresponds to the JSON property zone

Returns:

  • (String)


928
929
930
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 928

def zone
  @zone
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 935

def update!(**args)
  @additional_licenses = args[:additional_licenses] if args.key?(:additional_licenses)
  @applied_license = args[:applied_license] if args.key?(:applied_license)
  @boot_option = args[:boot_option] if args.key?(:boot_option)
  @compute_scheduling = args[:compute_scheduling] if args.key?(:compute_scheduling)
  @disk_type = args[:disk_type] if args.key?(:disk_type)
  @hostname = args[:hostname] if args.key?(:hostname)
  @labels = args[:labels] if args.key?(:labels)
  @license_type = args[:license_type] if args.key?(:license_type)
  @machine_type = args[:machine_type] if args.key?(:machine_type)
  @machine_type_series = args[:machine_type_series] if args.key?(:machine_type_series)
  @metadata = args[:metadata] if args.key?(:metadata)
  @network_interfaces = args[:network_interfaces] if args.key?(:network_interfaces)
  @network_tags = args[:network_tags] if args.key?(:network_tags)
  @project = args[:project] if args.key?(:project)
  @secure_boot = args[:secure_boot] if args.key?(:secure_boot)
  @service_account = args[:service_account] if args.key?(:service_account)
  @vm_name = args[:vm_name] if args.key?(:vm_name)
  @zone = args[:zone] if args.key?(:zone)
end