Class: Google::Apis::AppengineV1beta5::SourceReference
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AppengineV1beta5::SourceReference
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/appengine_v1beta5/classes.rb,
 generated/google/apis/appengine_v1beta5/representations.rb,
 generated/google/apis/appengine_v1beta5/representations.rb
Overview
Reference to a particular snapshot of the source tree used to build and deploy the application.
Instance Attribute Summary collapse
- 
  
    
      #repository  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    URI string identifying the repository. 
- 
  
    
      #revision_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The canonical, persistent identifier of the deployed revision. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SourceReference 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of SourceReference. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SourceReference
Returns a new instance of SourceReference
| 1686 1687 1688 | # File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1686 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#repository ⇒ String
URI string identifying the repository. Example: "https://source.developers.
google.com/p/app-123/r/default"
Corresponds to the JSON property repository
| 1677 1678 1679 | # File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1677 def repository @repository end | 
#revision_id ⇒ String
The canonical, persistent identifier of the deployed revision. Aliases that
include tags or branch names are not allowed. Example (git): "
2198322f89e0bb2e25021667c2ed489d1fd34e6b"
Corresponds to the JSON property revisionId
| 1684 1685 1686 | # File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1684 def revision_id @revision_id end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1691 1692 1693 1694 | # File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1691 def update!(**args) @repository = args[:repository] if args.key?(:repository) @revision_id = args[:revision_id] if args.key?(:revision_id) end |