Class: Google::Apis::GkeonpremV1::VmwareAdminManualLbConfig
- Inherits:
-
Object
- Object
- Google::Apis::GkeonpremV1::VmwareAdminManualLbConfig
- 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
Instance Attribute Summary collapse
-
#addons_node_port ⇒ Fixnum
NodePort for add-ons server in the admin cluster.
-
#control_plane_node_port ⇒ Fixnum
NodePort for control plane service.
-
#ingress_http_node_port ⇒ Fixnum
NodePort for ingress service's http.
-
#ingress_https_node_port ⇒ Fixnum
NodePort for ingress service's https.
-
#konnectivity_server_node_port ⇒ Fixnum
NodePort for konnectivity server service running as a sidecar in each kube- apiserver pod (ex. 30564).
Instance Method Summary collapse
-
#initialize(**args) ⇒ VmwareAdminManualLbConfig
constructor
A new instance of VmwareAdminManualLbConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ VmwareAdminManualLbConfig
Returns a new instance of VmwareAdminManualLbConfig.
3732 3733 3734 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 3732 def initialize(**args) update!(**args) end |
Instance Attribute Details
#addons_node_port ⇒ Fixnum
NodePort for add-ons server in the admin cluster.
Corresponds to the JSON property addonsNodePort
3706 3707 3708 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 3706 def addons_node_port @addons_node_port end |
#control_plane_node_port ⇒ Fixnum
NodePort for control plane service. The Kubernetes API server in the admin
cluster is implemented as a Service of type NodePort (ex. 30968).
Corresponds to the JSON property controlPlaneNodePort
3712 3713 3714 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 3712 def control_plane_node_port @control_plane_node_port end |
#ingress_http_node_port ⇒ Fixnum
NodePort for ingress service's http. The ingress service in the admin cluster
is implemented as a Service of type NodePort (ex. 32527).
Corresponds to the JSON property ingressHttpNodePort
3718 3719 3720 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 3718 def ingress_http_node_port @ingress_http_node_port end |
#ingress_https_node_port ⇒ Fixnum
NodePort for ingress service's https. The ingress service in the admin cluster
is implemented as a Service of type NodePort (ex. 30139).
Corresponds to the JSON property ingressHttpsNodePort
3724 3725 3726 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 3724 def ingress_https_node_port @ingress_https_node_port end |
#konnectivity_server_node_port ⇒ Fixnum
NodePort for konnectivity server service running as a sidecar in each kube-
apiserver pod (ex. 30564).
Corresponds to the JSON property konnectivityServerNodePort
3730 3731 3732 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 3730 def konnectivity_server_node_port @konnectivity_server_node_port end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3737 3738 3739 3740 3741 3742 3743 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 3737 def update!(**args) @addons_node_port = args[:addons_node_port] if args.key?(:addons_node_port) @control_plane_node_port = args[:control_plane_node_port] if args.key?(:control_plane_node_port) @ingress_http_node_port = args[:ingress_http_node_port] if args.key?(:ingress_http_node_port) @ingress_https_node_port = args[:ingress_https_node_port] if args.key?(:ingress_https_node_port) @konnectivity_server_node_port = args[:konnectivity_server_node_port] if args.key?(:konnectivity_server_node_port) end |