Class: Google::Apis::ClouddebuggerV2::GitSourceContext
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ClouddebuggerV2::GitSourceContext
 
 
- Includes:
 - Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/clouddebugger_v2/classes.rb,
lib/google/apis/clouddebugger_v2/representations.rb,
lib/google/apis/clouddebugger_v2/representations.rb 
Overview
A GitSourceContext denotes a particular revision in a third party Git repository (e.g. GitHub).
Instance Attribute Summary collapse
- 
  
    
      #revision_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Git commit hash.
 - 
  
    
      #url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Git repository URL.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GitSourceContext 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GitSourceContext.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GitSourceContext
Returns a new instance of GitSourceContext.
      559 560 561  | 
    
      # File 'lib/google/apis/clouddebugger_v2/classes.rb', line 559 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#revision_id ⇒ String
Git commit hash. required.
Corresponds to the JSON property revisionId
      552 553 554  | 
    
      # File 'lib/google/apis/clouddebugger_v2/classes.rb', line 552 def revision_id @revision_id end  | 
  
#url ⇒ String
Git repository URL.
Corresponds to the JSON property url
      557 558 559  | 
    
      # File 'lib/google/apis/clouddebugger_v2/classes.rb', line 557 def url @url end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      564 565 566 567  | 
    
      # File 'lib/google/apis/clouddebugger_v2/classes.rb', line 564 def update!(**args) @revision_id = args[:revision_id] if args.key?(:revision_id) @url = args[:url] if args.key?(:url) end  |