Class: Google::Apis::GkehubV1alpha::KubernetesMetadata

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

Overview

KubernetesMetadata provides informational metadata for Memberships representing Kubernetes clusters.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ KubernetesMetadata

Returns a new instance of KubernetesMetadata.



2125
2126
2127
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 2125

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

Instance Attribute Details

#kubernetes_api_server_versionString

Output only. Kubernetes API server version string as reported by /version. Corresponds to the JSON property kubernetesApiServerVersion

Returns:

  • (String)


2092
2093
2094
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 2092

def kubernetes_api_server_version
  @kubernetes_api_server_version
end

#memory_mbFixnum

Output only. The total memory capacity as reported by the sum of all Kubernetes nodes resources, defined in MB. Corresponds to the JSON property memoryMb

Returns:

  • (Fixnum)


2098
2099
2100
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 2098

def memory_mb
  @memory_mb
end

#node_countFixnum

Output only. Node count as reported by Kubernetes nodes resources. Corresponds to the JSON property nodeCount

Returns:

  • (Fixnum)


2103
2104
2105
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 2103

def node_count
  @node_count
end

#node_provider_idString

Output only. Node providerID as reported by the first node in the list of nodes on the Kubernetes endpoint. On Kubernetes platforms that support zero- node clusters (like GKE-on-GCP), the node_count will be zero and the node_provider_id will be empty. Corresponds to the JSON property nodeProviderId

Returns:

  • (String)


2111
2112
2113
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 2111

def node_provider_id
  @node_provider_id
end

#update_timeString

Output only. The time at which these details were last updated. This update_time is different from the Membership-level update_time since EndpointDetails are updated internally for API consumers. Corresponds to the JSON property updateTime

Returns:

  • (String)


2118
2119
2120
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 2118

def update_time
  @update_time
end

#vcpu_countFixnum

Output only. vCPU count as reported by Kubernetes nodes resources. Corresponds to the JSON property vcpuCount

Returns:

  • (Fixnum)


2123
2124
2125
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 2123

def vcpu_count
  @vcpu_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2130
2131
2132
2133
2134
2135
2136
2137
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 2130

def update!(**args)
  @kubernetes_api_server_version = args[:kubernetes_api_server_version] if args.key?(:kubernetes_api_server_version)
  @memory_mb = args[:memory_mb] if args.key?(:memory_mb)
  @node_count = args[:node_count] if args.key?(:node_count)
  @node_provider_id = args[:node_provider_id] if args.key?(:node_provider_id)
  @update_time = args[:update_time] if args.key?(:update_time)
  @vcpu_count = args[:vcpu_count] if args.key?(:vcpu_count)
end