Class: Google::Apis::VmwareengineV1::Hcx

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 HCX Cloud Manager appliance.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Hcx

Returns a new instance of Hcx.



1238
1239
1240
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1238

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)


1221
1222
1223
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1221

def fqdn
  @fqdn
end

#internal_ipString

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

Returns:

  • (String)


1226
1227
1228
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1226

def internal_ip
  @internal_ip
end

#stateString

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

Returns:

  • (String)


1231
1232
1233
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1231

def state
  @state
end

#versionString

Version of the appliance. Corresponds to the JSON property version

Returns:

  • (String)


1236
1237
1238
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1236

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1243
1244
1245
1246
1247
1248
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1243

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