Class: Google::Apis::VmwareengineV1::Vcenter

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

Overview

Details about a vCenter Server management appliance.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Vcenter

Returns a new instance of Vcenter.



3071
3072
3073
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 3071

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

Instance Attribute Details

#fqdnString

Fully qualified domain name of the appliance. Corresponds to the JSON property fqdn

Returns:

  • (String)


3054
3055
3056
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 3054

def fqdn
  @fqdn
end

#internal_ipString

Internal IP address of the appliance. Corresponds to the JSON property internalIp

Returns:

  • (String)


3059
3060
3061
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 3059

def internal_ip
  @internal_ip
end

#stateString

Output only. The state of the appliance. Corresponds to the JSON property state

Returns:

  • (String)


3064
3065
3066
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 3064

def state
  @state
end

#versionString

Version of the appliance. Corresponds to the JSON property version

Returns:

  • (String)


3069
3070
3071
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 3069

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3076
3077
3078
3079
3080
3081
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 3076

def update!(**args)
  @fqdn = args[:fqdn] if args.key?(:fqdn)
  @internal_ip = args[:internal_ip] if args.key?(:internal_ip)
  @state = args[:state] if args.key?(:state)
  @version = args[:version] if args.key?(:version)
end