Class: Google::Apis::ContaineranalysisV1beta1::AliasContext
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContaineranalysisV1beta1::AliasContext
 
 
- Includes:
 - Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/containeranalysis_v1beta1/classes.rb,
lib/google/apis/containeranalysis_v1beta1/representations.rb,
lib/google/apis/containeranalysis_v1beta1/representations.rb 
Overview
An alias to a repo revision.
Instance Attribute Summary collapse
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The alias kind.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The alias name.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ AliasContext 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of AliasContext.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ AliasContext
Returns a new instance of AliasContext.
      39 40 41  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 39 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#kind ⇒ String
The alias kind.
Corresponds to the JSON property kind
      32 33 34  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 32 def kind @kind end  | 
  
#name ⇒ String
The alias name.
Corresponds to the JSON property name
      37 38 39  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 37 def name @name end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      44 45 46 47  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 44 def update!(**args) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) end  |