Class: Google::Apis::GkeonpremV1::VmwareAdminF5BigIpConfig
- Inherits:
-
Object
- Object
- Google::Apis::GkeonpremV1::VmwareAdminF5BigIpConfig
- 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
Overview
VmwareAdminF5BigIpConfig represents configuration parameters for an F5 BIG-IP load balancer.
Instance Attribute Summary collapse
-
#address ⇒ String
The load balancer's IP address.
-
#partition ⇒ String
The preexisting partition to be used by the load balancer.
-
#snat_pool ⇒ String
The pool name.
Instance Method Summary collapse
-
#initialize(**args) ⇒ VmwareAdminF5BigIpConfig
constructor
A new instance of VmwareAdminF5BigIpConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ VmwareAdminF5BigIpConfig
Returns a new instance of VmwareAdminF5BigIpConfig.
3817 3818 3819 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 3817 def initialize(**args) update!(**args) end |
Instance Attribute Details
#address ⇒ String
The load balancer's IP address.
Corresponds to the JSON property address
3804 3805 3806 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 3804 def address @address end |
#partition ⇒ String
The preexisting partition to be used by the load balancer. This partition is
usually created for the admin cluster for example: 'my-f5-admin-partition'.
Corresponds to the JSON property partition
3810 3811 3812 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 3810 def partition @partition end |
#snat_pool ⇒ String
The pool name. Only necessary, if using SNAT.
Corresponds to the JSON property snatPool
3815 3816 3817 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 3815 def snat_pool @snat_pool end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3822 3823 3824 3825 3826 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 3822 def update!(**args) @address = args[:address] if args.key?(:address) @partition = args[:partition] if args.key?(:partition) @snat_pool = args[:snat_pool] if args.key?(:snat_pool) end |