Class: Google::Apis::AppengineV1::GceTag
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::AppengineV1::GceTag
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/appengine_v1/classes.rb,
lib/google/apis/appengine_v1/representations.rb,
lib/google/apis/appengine_v1/representations.rb 
Overview
For use only by GCE. GceTag is a wrapper around the GCE administrative tag with parent info.
Instance Attribute Summary collapse
- 
  
    
      #parent  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The parents(s) of the tag.
 - 
  
    
      #tag  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The administrative_tag name.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GceTag 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GceTag.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GceTag
Returns a new instance of GceTag.
      1177 1178 1179  | 
    
      # File 'lib/google/apis/appengine_v1/classes.rb', line 1177 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#parent ⇒ Array<String>
The parents(s) of the tag. Eg. projects/123, folders/456 It usually contains
only one parent. But, in some corner cases, it can contain multiple parents.
Currently, organizations are not supported.
Corresponds to the JSON property parent
      1170 1171 1172  | 
    
      # File 'lib/google/apis/appengine_v1/classes.rb', line 1170 def parent @parent end  | 
  
#tag ⇒ String
The administrative_tag name.
Corresponds to the JSON property tag
      1175 1176 1177  | 
    
      # File 'lib/google/apis/appengine_v1/classes.rb', line 1175 def tag @tag end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1182 1183 1184 1185  | 
    
      # File 'lib/google/apis/appengine_v1/classes.rb', line 1182 def update!(**args) @parent = args[:parent] if args.key?(:parent) @tag = args[:tag] if args.key?(:tag) end  |