Class: Google::Apis::VmwareengineV1::Hcx
- Inherits:
-
Object
- Object
- Google::Apis::VmwareengineV1::Hcx
- 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
-
#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) ⇒ Hcx
constructor
A new instance of Hcx.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Hcx
Returns a new instance of Hcx.
730 731 732 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 730 def initialize(**args) update!(**args) end |
Instance Attribute Details
#fqdn ⇒ String
Fully qualified domain name of the appliance.
Corresponds to the JSON property fqdn
713 714 715 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 713 def fqdn @fqdn end |
#internal_ip ⇒ String
Internal IP address of the appliance.
Corresponds to the JSON property internalIp
718 719 720 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 718 def internal_ip @internal_ip end |
#state ⇒ String
Output only. The state of the appliance.
Corresponds to the JSON property state
723 724 725 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 723 def state @state end |
#version ⇒ String
Version of the appliance.
Corresponds to the JSON property version
728 729 730 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 728 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
735 736 737 738 739 740 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 735 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 |