Class: Google::Apis::AppengineV1beta4::SourceReference

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/appengine_v1beta4/classes.rb,
generated/google/apis/appengine_v1beta4/representations.rb,
generated/google/apis/appengine_v1beta4/representations.rb

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ SourceReference

Returns a new instance of SourceReference



1624
1625
1626
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1624

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#repositoryString

URI string identifying the repository. Example: "https://source.developers. google.com/p/app-123/r/default" Corresponds to the JSON property repository

Returns:

  • (String)


1615
1616
1617
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1615

def repository
  @repository
end

#revision_idString

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

Returns:

  • (String)


1622
1623
1624
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1622

def revision_id
  @revision_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1629
1630
1631
1632
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1629

def update!(**args)
  @repository = args[:repository] if args.key?(:repository)
  @revision_id = args[:revision_id] if args.key?(:revision_id)
end