Class: Google::Apis::OndemandscanningV1::ProjectRepoId
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::OndemandscanningV1::ProjectRepoId
 
 
- 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
Selects a repo using a Google Cloud Platform project ID (e.g., winged-cargo-31) and a repo name within that project.
Instance Attribute Summary collapse
- 
  
    
      #project_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the project.
 - 
  
    
      #repo_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the repo.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ProjectRepoId 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ProjectRepoId.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ ProjectRepoId
Returns a new instance of ProjectRepoId.
      2541 2542 2543  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2541 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#project_id ⇒ String
The ID of the project.
Corresponds to the JSON property projectId
      2534 2535 2536  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2534 def project_id @project_id end  | 
  
#repo_name ⇒ String
The name of the repo. Leave empty for the default repo.
Corresponds to the JSON property repoName
      2539 2540 2541  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2539 def repo_name @repo_name end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2546 2547 2548 2549  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2546 def update!(**args) @project_id = args[:project_id] if args.key?(:project_id) @repo_name = args[:repo_name] if args.key?(:repo_name) end  |