Class: Google::Apis::VmwareengineV1::Nsx
- Inherits:
-
Object
- Object
- Google::Apis::VmwareengineV1::Nsx
- 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 NSX 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) ⇒ Nsx
constructor
A new instance of Nsx.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Nsx
Returns a new instance of Nsx.
2947 2948 2949 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 2947 def initialize(**args) update!(**args) end |
Instance Attribute Details
#fqdn ⇒ String
Fully qualified domain name of the appliance.
Corresponds to the JSON property fqdn
2930 2931 2932 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 2930 def fqdn @fqdn end |
#internal_ip ⇒ String
Internal IP address of the appliance.
Corresponds to the JSON property internalIp
2935 2936 2937 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 2935 def internal_ip @internal_ip end |
#state ⇒ String
Output only. The state of the appliance.
Corresponds to the JSON property state
2940 2941 2942 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 2940 def state @state end |
#version ⇒ String
Version of the appliance.
Corresponds to the JSON property version
2945 2946 2947 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 2945 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2952 2953 2954 2955 2956 2957 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 2952 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 |