Class: Google::Apis::ClouddebuggerV2::GitSourceContext
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ClouddebuggerV2::GitSourceContext
 
- Defined in:
- generated/google/apis/clouddebugger_v2/classes.rb,
 generated/google/apis/clouddebugger_v2/representations.rb,
 generated/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. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ GitSourceContext
Returns a new instance of GitSourceContext
| 550 551 552 | # File 'generated/google/apis/clouddebugger_v2/classes.rb', line 550 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#revision_id ⇒ String
Git commit hash.
required.
Corresponds to the JSON property revisionId
| 543 544 545 | # File 'generated/google/apis/clouddebugger_v2/classes.rb', line 543 def revision_id @revision_id end | 
#url ⇒ String
Git repository URL.
Corresponds to the JSON property url
| 548 549 550 | # File 'generated/google/apis/clouddebugger_v2/classes.rb', line 548 def url @url end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 555 556 557 558 | # File 'generated/google/apis/clouddebugger_v2/classes.rb', line 555 def update!(**args) @revision_id = args[:revision_id] if args.key?(:revision_id) @url = args[:url] if args.key?(:url) end |