Class: Google::Apis::VmmigrationV1alpha1::VmwareSourceDetails

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

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ VmwareSourceDetails

Returns a new instance of VmwareSourceDetails.



4866
4867
4868
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 4866

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

Instance Attribute Details

#passwordString

Input only. The credentials password. This is write only and can not be read in a GET operation. Corresponds to the JSON property password

Returns:

  • (String)


4844
4845
4846
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 4844

def password
  @password
end

#resolved_vcenter_hostString

The hostname of the vcenter. Corresponds to the JSON property resolvedVcenterHost

Returns:

  • (String)


4849
4850
4851
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 4849

def resolved_vcenter_host
  @resolved_vcenter_host
end

#thumbprintString

The thumbprint representing the certificate for the vcenter. Corresponds to the JSON property thumbprint

Returns:

  • (String)


4854
4855
4856
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 4854

def thumbprint
  @thumbprint
end

#usernameString

The credentials username. Corresponds to the JSON property username

Returns:

  • (String)


4859
4860
4861
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 4859

def username
  @username
end

#vcenter_ipString

The ip address of the vcenter this Source represents. Corresponds to the JSON property vcenterIp

Returns:

  • (String)


4864
4865
4866
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 4864

def vcenter_ip
  @vcenter_ip
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4871
4872
4873
4874
4875
4876
4877
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 4871

def update!(**args)
  @password = args[:password] if args.key?(:password)
  @resolved_vcenter_host = args[:resolved_vcenter_host] if args.key?(:resolved_vcenter_host)
  @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