Class: Google::Apis::GkehubV1::GkeCluster
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::GkehubV1::GkeCluster
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/gkehub_v1/classes.rb,
lib/google/apis/gkehub_v1/representations.rb,
lib/google/apis/gkehub_v1/representations.rb 
Overview
GkeCluster contains information specific to GKE clusters.
Instance Attribute Summary collapse
- 
  
    
      #cluster_missing  ⇒ Boolean 
    
    
      (also: #cluster_missing?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 - 
  
    
      #resource_link  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Immutable.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GkeCluster 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GkeCluster.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GkeCluster
Returns a new instance of GkeCluster.
      2550 2551 2552  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 2550 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#cluster_missing ⇒ Boolean Also known as: cluster_missing?
Output only. If cluster_missing is set then it denotes that the GKE cluster no
longer exists in the GKE Control Plane.
Corresponds to the JSON property clusterMissing
      2540 2541 2542  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 2540 def cluster_missing @cluster_missing end  | 
  
#resource_link ⇒ String
Immutable. Self-link of the Google Cloud resource for the GKE cluster. For
example: //container.googleapis.com/projects/my-project/locations/us-west1-a/
clusters/my-cluster Zonal clusters are also supported.
Corresponds to the JSON property resourceLink
      2548 2549 2550  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 2548 def resource_link @resource_link end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2555 2556 2557 2558  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 2555 def update!(**args) @cluster_missing = args[:cluster_missing] if args.key?(:cluster_missing) @resource_link = args[:resource_link] if args.key?(:resource_link) end  |