Class: Google::Apis::NetworkmanagementV1beta1::GkeMasterInfo
- Inherits:
-
Object
- Object
- Google::Apis::NetworkmanagementV1beta1::GkeMasterInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/networkmanagement_v1beta1/classes.rb,
generated/google/apis/networkmanagement_v1beta1/representations.rb,
generated/google/apis/networkmanagement_v1beta1/representations.rb
Overview
For display only. Metadata associated with a Google Kubernetes Engine cluster master.
Instance Attribute Summary collapse
-
#cluster_network_uri ⇒ String
URI of a Google Kubernetes Engine cluster network.
-
#cluster_uri ⇒ String
URI of a Google Kubernetes Engine cluster.
-
#external_ip ⇒ String
External IP address of a Google Kubernetes Engine cluster master.
-
#internal_ip ⇒ String
Internal IP address of a Google Kubernetes Engine cluster master.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GkeMasterInfo
constructor
A new instance of GkeMasterInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GkeMasterInfo
Returns a new instance of GkeMasterInfo.
766 767 768 |
# File 'generated/google/apis/networkmanagement_v1beta1/classes.rb', line 766 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cluster_network_uri ⇒ String
URI of a Google Kubernetes Engine cluster network.
Corresponds to the JSON property clusterNetworkUri
749 750 751 |
# File 'generated/google/apis/networkmanagement_v1beta1/classes.rb', line 749 def cluster_network_uri @cluster_network_uri end |
#cluster_uri ⇒ String
URI of a Google Kubernetes Engine cluster.
Corresponds to the JSON property clusterUri
754 755 756 |
# File 'generated/google/apis/networkmanagement_v1beta1/classes.rb', line 754 def cluster_uri @cluster_uri end |
#external_ip ⇒ String
External IP address of a Google Kubernetes Engine cluster master.
Corresponds to the JSON property externalIp
759 760 761 |
# File 'generated/google/apis/networkmanagement_v1beta1/classes.rb', line 759 def external_ip @external_ip end |
#internal_ip ⇒ String
Internal IP address of a Google Kubernetes Engine cluster master.
Corresponds to the JSON property internalIp
764 765 766 |
# File 'generated/google/apis/networkmanagement_v1beta1/classes.rb', line 764 def internal_ip @internal_ip end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
771 772 773 774 775 776 |
# File 'generated/google/apis/networkmanagement_v1beta1/classes.rb', line 771 def update!(**args) @cluster_network_uri = args[:cluster_network_uri] if args.key?(:cluster_network_uri) @cluster_uri = args[:cluster_uri] if args.key?(:cluster_uri) @external_ip = args[:external_ip] if args.key?(:external_ip) @internal_ip = args[:internal_ip] if args.key?(:internal_ip) end |