class Google::Apis::VmmigrationV1alpha1::VmwareSourceDetails

VmwareSourceDetails message describes a specific source details for the vmware source type.

Attributes

password[RW]

Input only. The credentials password. This is write only and can not be read in a GET operation. Corresponds to the JSON property ‘password` @return [String]

thumbprint[RW]

The thumbprint representing the certificate for the vcenter. Corresponds to the JSON property ‘thumbprint` @return [String]

username[RW]

The credentials username. Corresponds to the JSON property ‘username` @return [String]

vcenter_ip[RW]

The ip address of the vcenter this Source represents. Corresponds to the JSON property ‘vcenterIp` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/vmmigration_v1alpha1/classes.rb, line 2542
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/vmmigration_v1alpha1/classes.rb, line 2547
def update!(**args)
  @password = args[:password] if args.key?(:password)
  @thumbprint = args[:thumbprint] if args.key?(:thumbprint)
  @username = args[:username] if args.key?(:username)
  @vcenter_ip = args[:vcenter_ip] if args.key?(:vcenter_ip)
end