Class: Google::Apis::GkeonpremV1::VmwareAdminVipConfig
- Inherits:
-
Object
- Object
- Google::Apis::GkeonpremV1::VmwareAdminVipConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/gkeonprem_v1/classes.rb,
lib/google/apis/gkeonprem_v1/representations.rb,
lib/google/apis/gkeonprem_v1/representations.rb more...
Overview
VmwareAdminVipConfig for VMware load balancer configurations.
Instance Attribute Summary collapse
-
#addons_vip ⇒ String
The VIP to configure the load balancer for add-ons.
-
#control_plane_vip ⇒ String
The VIP which you previously set aside for the Kubernetes API of the admin cluster.
Instance Method Summary collapse
-
#initialize(**args) ⇒ VmwareAdminVipConfig
constructor
A new instance of VmwareAdminVipConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ VmwareAdminVipConfig
Returns a new instance of VmwareAdminVipConfig.
4407 4408 4409 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 4407 def initialize(**args) update!(**args) end |
Instance Attribute Details
#addons_vip ⇒ String
The VIP to configure the load balancer for add-ons.
Corresponds to the JSON property addonsVip
4399 4400 4401 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 4399 def addons_vip @addons_vip end |
#control_plane_vip ⇒ String
The VIP which you previously set aside for the Kubernetes API of the admin
cluster.
Corresponds to the JSON property controlPlaneVip
4405 4406 4407 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 4405 def control_plane_vip @control_plane_vip end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4412 4413 4414 4415 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 4412 def update!(**args) @addons_vip = args[:addons_vip] if args.key?(:addons_vip) @control_plane_vip = args[:control_plane_vip] if args.key?(:control_plane_vip) end |