Class: Google::Apis::GkehubV1beta::KubernetesMetadata
- Inherits:
-
Object
- Object
- Google::Apis::GkehubV1beta::KubernetesMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/gkehub_v1beta/classes.rb,
lib/google/apis/gkehub_v1beta/representations.rb,
lib/google/apis/gkehub_v1beta/representations.rb
Overview
KubernetesMetadata provides informational metadata for Memberships representing Kubernetes clusters.
Instance Attribute Summary collapse
-
#kubernetes_api_server_version ⇒ String
Output only.
-
#memory_mb ⇒ Fixnum
Output only.
-
#node_count ⇒ Fixnum
Output only.
-
#node_provider_id ⇒ String
Output only.
-
#update_time ⇒ String
Output only.
-
#vcpu_count ⇒ Fixnum
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ KubernetesMetadata
constructor
A new instance of KubernetesMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ KubernetesMetadata
Returns a new instance of KubernetesMetadata.
3356 3357 3358 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 3356 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kubernetes_api_server_version ⇒ String
Output only. Kubernetes API server version string as reported by /version.
Corresponds to the JSON property kubernetesApiServerVersion
3323 3324 3325 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 3323 def kubernetes_api_server_version @kubernetes_api_server_version end |
#memory_mb ⇒ Fixnum
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
3329 3330 3331 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 3329 def memory_mb @memory_mb end |
#node_count ⇒ Fixnum
Output only. Node count as reported by Kubernetes nodes resources.
Corresponds to the JSON property nodeCount
3334 3335 3336 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 3334 def node_count @node_count end |
#node_provider_id ⇒ String
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
3342 3343 3344 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 3342 def node_provider_id @node_provider_id end |
#update_time ⇒ String
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
3349 3350 3351 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 3349 def update_time @update_time end |
#vcpu_count ⇒ Fixnum
Output only. vCPU count as reported by Kubernetes nodes resources.
Corresponds to the JSON property vcpuCount
3354 3355 3356 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 3354 def vcpu_count @vcpu_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3361 3362 3363 3364 3365 3366 3367 3368 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 3361 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 |