class Google::Apis::AppengineV1beta4::SourceReference

A reference to a particular snapshot of the source tree used to build and deploy the application.

Attributes

repository[RW]

Optional. A 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 (and persistent) identifier of the deployed revision, i.e. any kind of aliases including 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 generated/google/apis/appengine_v1beta4/classes.rb, line 1172
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/appengine_v1beta4/classes.rb, line 1177
def update!(**args)
  @repository = args[:repository] if args.key?(:repository)
  @revision_id = args[:revision_id] if args.key?(:revision_id)
end