Class: Google::Apis::GkehubV1beta1::OnPremCluster

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

Overview

OnPremCluster contains information specific to GKE On-Prem clusters.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ OnPremCluster

Returns a new instance of OnPremCluster.



1114
1115
1116
# File 'lib/google/apis/gkehub_v1beta1/classes.rb', line 1114

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

Instance Attribute Details

#admin_clusterBoolean Also known as: admin_cluster?

Immutable. Whether the cluster is an admin cluster. Corresponds to the JSON property adminCluster

Returns:

  • (Boolean)


1091
1092
1093
# File 'lib/google/apis/gkehub_v1beta1/classes.rb', line 1091

def admin_cluster
  @admin_cluster
end

#cluster_missingBoolean Also known as: cluster_missing?

Output only. If cluster_missing is set then it denotes that API(gkeonprem. googleapis.com) resource for this GKE On-Prem cluster no longer exists. Corresponds to the JSON property clusterMissing

Returns:

  • (Boolean)


1098
1099
1100
# File 'lib/google/apis/gkehub_v1beta1/classes.rb', line 1098

def cluster_missing
  @cluster_missing
end

#cluster_typeString

Immutable. The on prem cluster's type. Corresponds to the JSON property clusterType

Returns:

  • (String)


1104
1105
1106
# File 'lib/google/apis/gkehub_v1beta1/classes.rb', line 1104

def cluster_type
  @cluster_type
end

Immutable. Self-link of the GCP resource for the GKE On-Prem cluster. For example: //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/ vmwareClusters/my-cluster //gkeonprem.googleapis.com/projects/my-project/ locations/us-west1-a/bareMetalClusters/my-cluster Corresponds to the JSON property resourceLink

Returns:

  • (String)


1112
1113
1114
# File 'lib/google/apis/gkehub_v1beta1/classes.rb', line 1112

def resource_link
  @resource_link
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1119
1120
1121
1122
1123
1124
# File 'lib/google/apis/gkehub_v1beta1/classes.rb', line 1119

def update!(**args)
  @admin_cluster = args[:admin_cluster] if args.key?(:admin_cluster)
  @cluster_missing = args[:cluster_missing] if args.key?(:cluster_missing)
  @cluster_type = args[:cluster_type] if args.key?(:cluster_type)
  @resource_link = args[:resource_link] if args.key?(:resource_link)
end