Class: Google::Apis::OndemandscanningV1::SourceContext
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::OndemandscanningV1::SourceContext
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/ondemandscanning_v1/classes.rb,
lib/google/apis/ondemandscanning_v1/representations.rb,
lib/google/apis/ondemandscanning_v1/representations.rb 
Overview
A SourceContext is a reference to a tree of files. A SourceContext together with a path point to a unique revision of a single file or directory.
Instance Attribute Summary collapse
- 
  
    
      #cloud_repo  ⇒ Google::Apis::OndemandscanningV1::CloudRepoSourceContext 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A CloudRepoSourceContext denotes a particular revision in a Google Cloud Source Repo.
 - 
  
    
      #gerrit  ⇒ Google::Apis::OndemandscanningV1::GerritSourceContext 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A SourceContext referring to a Gerrit project.
 - 
  
    
      #git  ⇒ Google::Apis::OndemandscanningV1::GitSourceContext 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A GitSourceContext denotes a particular revision in a third party Git repository (e.g., GitHub).
 - 
  
    
      #labels  ⇒ Hash<String,String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Labels with user defined metadata.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SourceContext 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of SourceContext.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ SourceContext
Returns a new instance of SourceContext.
      3360 3361 3362  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 3360 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#cloud_repo ⇒ Google::Apis::OndemandscanningV1::CloudRepoSourceContext
A CloudRepoSourceContext denotes a particular revision in a Google Cloud
Source Repo.
Corresponds to the JSON property cloudRepo
      3342 3343 3344  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 3342 def cloud_repo @cloud_repo end  | 
  
#gerrit ⇒ Google::Apis::OndemandscanningV1::GerritSourceContext
A SourceContext referring to a Gerrit project.
Corresponds to the JSON property gerrit
      3347 3348 3349  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 3347 def gerrit @gerrit end  | 
  
#git ⇒ Google::Apis::OndemandscanningV1::GitSourceContext
A GitSourceContext denotes a particular revision in a third party Git
repository (e.g., GitHub).
Corresponds to the JSON property git
      3353 3354 3355  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 3353 def git @git end  | 
  
#labels ⇒ Hash<String,String>
Labels with user defined metadata.
Corresponds to the JSON property labels
      3358 3359 3360  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 3358 def labels @labels end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3365 3366 3367 3368 3369 3370  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 3365 def update!(**args) @cloud_repo = args[:cloud_repo] if args.key?(:cloud_repo) @gerrit = args[:gerrit] if args.key?(:gerrit) @git = args[:git] if args.key?(:git) @labels = args[:labels] if args.key?(:labels) end  |