Class: Google::Apis::NetworkmanagementV1beta1::GkeMasterInfo

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/networkmanagement_v1beta1/classes.rb,
lib/google/apis/networkmanagement_v1beta1/representations.rb,
lib/google/apis/networkmanagement_v1beta1/representations.rb

Overview

For display only. Metadata associated with a Google Kubernetes Engine (GKE) cluster master.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GkeMasterInfo

Returns a new instance of GkeMasterInfo.



1079
1080
1081
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 1079

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#cluster_network_uriString

URI of a GKE cluster network. Corresponds to the JSON property clusterNetworkUri

Returns:

  • (String)


1062
1063
1064
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 1062

def cluster_network_uri
  @cluster_network_uri
end

#cluster_uriString

URI of a GKE cluster. Corresponds to the JSON property clusterUri

Returns:

  • (String)


1067
1068
1069
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 1067

def cluster_uri
  @cluster_uri
end

#external_ipString

External IP address of a GKE cluster master. Corresponds to the JSON property externalIp

Returns:

  • (String)


1072
1073
1074
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 1072

def external_ip
  @external_ip
end

#internal_ipString

Internal IP address of a GKE cluster master. Corresponds to the JSON property internalIp

Returns:

  • (String)


1077
1078
1079
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 1077

def internal_ip
  @internal_ip
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1084
1085
1086
1087
1088
1089
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 1084

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