Class: Google::Apis::GkehubV1::ResourceManifest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::GkehubV1::ResourceManifest
 
 
- 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
ResourceManifest represents a single Kubernetes resource to be applied to the cluster.
Instance Attribute Summary collapse
- 
  
    
      #cluster_scoped  ⇒ Boolean 
    
    
      (also: #cluster_scoped?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Whether the resource provided in the manifest is
cluster_scoped. - 
  
    
      #manifest  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
YAML manifest of the resource.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ResourceManifest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ResourceManifest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ ResourceManifest
Returns a new instance of ResourceManifest.
      5147 5148 5149  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 5147 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#cluster_scoped ⇒ Boolean Also known as: cluster_scoped?
Whether the resource provided in the manifest is cluster_scoped. If unset,
the manifest is assumed to be namespace scoped. This field is used for REST
mapping when applying the resource in a cluster.
Corresponds to the JSON property clusterScoped
      5139 5140 5141  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 5139 def cluster_scoped @cluster_scoped end  | 
  
#manifest ⇒ String
YAML manifest of the resource.
Corresponds to the JSON property manifest
      5145 5146 5147  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 5145 def manifest @manifest end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      5152 5153 5154 5155  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 5152 def update!(**args) @cluster_scoped = args[:cluster_scoped] if args.key?(:cluster_scoped) @manifest = args[:manifest] if args.key?(:manifest) end  |