Class: Google::Apis::ContaineranalysisV1beta1::GerritSourceContext
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContaineranalysisV1beta1::GerritSourceContext
 
 
- 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
A SourceContext referring to a Gerrit project.
Instance Attribute Summary collapse
- 
  
    
      #alias_context  ⇒ Google::Apis::ContaineranalysisV1beta1::AliasContext 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An alias to a repo revision.
 - 
  
    
      #gerrit_project  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The full project name within the host.
 - 
  
    
      #host_uri  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The URI of a running Gerrit instance.
 - 
  
    
      #revision_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A revision (commit) ID.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GerritSourceContext 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GerritSourceContext.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GerritSourceContext
Returns a new instance of GerritSourceContext.
      3910 3911 3912  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 3910 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#alias_context ⇒ Google::Apis::ContaineranalysisV1beta1::AliasContext
An alias to a repo revision.
Corresponds to the JSON property aliasContext
      3892 3893 3894  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 3892 def alias_context @alias_context end  | 
  
#gerrit_project ⇒ String
The full project name within the host. Projects may be nested, so "project/
subproject" is a valid project name. The "repo name" is the hostURI/project.
Corresponds to the JSON property gerritProject
      3898 3899 3900  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 3898 def gerrit_project @gerrit_project end  | 
  
#host_uri ⇒ String
The URI of a running Gerrit instance.
Corresponds to the JSON property hostUri
      3903 3904 3905  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 3903 def host_uri @host_uri end  | 
  
#revision_id ⇒ String
A revision (commit) ID.
Corresponds to the JSON property revisionId
      3908 3909 3910  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 3908 def revision_id @revision_id end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3915 3916 3917 3918 3919 3920  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 3915 def update!(**args) @alias_context = args[:alias_context] if args.key?(:alias_context) @gerrit_project = args[:gerrit_project] if args.key?(:gerrit_project) @host_uri = args[:host_uri] if args.key?(:host_uri) @revision_id = args[:revision_id] if args.key?(:revision_id) end  |