class Google::Apis::AppengineV1beta4::SourceReference
Reference to a particular snapshot of the source tree used to build and deploy the application.
Attributes
repository[RW]
URI string identifying the repository. Example: “source.developers. google.com/p/app-123/r/default” Corresponds to the JSON property `repository` @return [String]
revision_id[RW]
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` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/appengine_v1beta4/classes.rb, line 1676 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/appengine_v1beta4/classes.rb, line 1681 def update!(**args) @repository = args[:repository] if args.key?(:repository) @revision_id = args[:revision_id] if args.key?(:revision_id) end