Class: Google::Apis::ClouddebuggerV2::CloudRepoSourceContext
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ClouddebuggerV2::CloudRepoSourceContext
 
- 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 CloudRepoSourceContext denotes a particular revision in a cloud repo (a repo hosted by the Google Cloud Platform).
Instance Attribute Summary collapse
- 
  
    
      #alias_context  ⇒ Google::Apis::ClouddebuggerV2::AliasContext 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An alias to a repo revision. 
- 
  
    
      #alias_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of an alias (branch, tag, etc.). 
- 
  
    
      #repo_id  ⇒ Google::Apis::ClouddebuggerV2::RepoId 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A unique identifier for a cloud repo. 
- 
  
    
      #revision_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A revision ID. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CloudRepoSourceContext 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of CloudRepoSourceContext. 
- 
  
    
      #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) ⇒ CloudRepoSourceContext
Returns a new instance of CloudRepoSourceContext
| 220 221 222 | # File 'generated/google/apis/clouddebugger_v2/classes.rb', line 220 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#alias_context ⇒ Google::Apis::ClouddebuggerV2::AliasContext
An alias to a repo revision.
Corresponds to the JSON property aliasContext
| 203 204 205 | # File 'generated/google/apis/clouddebugger_v2/classes.rb', line 203 def alias_context @alias_context end | 
#alias_name ⇒ String
The name of an alias (branch, tag, etc.).
Corresponds to the JSON property aliasName
| 208 209 210 | # File 'generated/google/apis/clouddebugger_v2/classes.rb', line 208 def alias_name @alias_name end | 
#repo_id ⇒ Google::Apis::ClouddebuggerV2::RepoId
A unique identifier for a cloud repo.
Corresponds to the JSON property repoId
| 213 214 215 | # File 'generated/google/apis/clouddebugger_v2/classes.rb', line 213 def repo_id @repo_id end | 
#revision_id ⇒ String
A revision ID.
Corresponds to the JSON property revisionId
| 218 219 220 | # File 'generated/google/apis/clouddebugger_v2/classes.rb', line 218 def revision_id @revision_id end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 225 226 227 228 229 230 | # File 'generated/google/apis/clouddebugger_v2/classes.rb', line 225 def update!(**args) @alias_context = args[:alias_context] if args.key?(:alias_context) @alias_name = args[:alias_name] if args.key?(:alias_name) @repo_id = args[:repo_id] if args.key?(:repo_id) @revision_id = args[:revision_id] if args.key?(:revision_id) end |