Class: Google::Apis::VmwareengineV1::Vcenter
- Inherits:
-
Object
- Object
- Google::Apis::VmwareengineV1::Vcenter
- 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
-
#fqdn ⇒ String
Fully qualified domain name of the appliance.
-
#internal_ip ⇒ String
Internal IP address of the appliance.
-
#state ⇒ String
Output only.
-
#version ⇒ String
Version of the appliance.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Vcenter
constructor
A new instance of Vcenter.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Vcenter
Returns a new instance of Vcenter.
4132 4133 4134 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 4132 def initialize(**args) update!(**args) end |
Instance Attribute Details
#fqdn ⇒ String
Fully qualified domain name of the appliance.
Corresponds to the JSON property fqdn
4115 4116 4117 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 4115 def fqdn @fqdn end |
#internal_ip ⇒ String
Internal IP address of the appliance.
Corresponds to the JSON property internalIp
4120 4121 4122 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 4120 def internal_ip @internal_ip end |
#state ⇒ String
Output only. The state of the appliance.
Corresponds to the JSON property state
4125 4126 4127 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 4125 def state @state end |
#version ⇒ String
Version of the appliance.
Corresponds to the JSON property version
4130 4131 4132 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 4130 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4137 4138 4139 4140 4141 4142 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 4137 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 |