Class: Google::Apis::LoggingV1beta3::SourceReference
- Inherits:
-
Object
- Object
- Google::Apis::LoggingV1beta3::SourceReference
- Includes:
- Core::Hashable
- Defined in:
- generated/google/apis/logging_v1beta3/classes.rb,
generated/google/apis/logging_v1beta3/representations.rb,
generated/google/apis/logging_v1beta3/representations.rb
Overview
A reference to a particular snapshot of the source tree used to build and deploy an application.
Instance Attribute Summary collapse
-
#repository ⇒ String
Optional.
-
#revision_id ⇒ String
The canonical (and 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::Hashable
Constructor Details
#initialize(**args) ⇒ SourceReference
Returns a new instance of SourceReference
1067 1068 1069 |
# File 'generated/google/apis/logging_v1beta3/classes.rb', line 1067 def initialize(**args) update!(**args) end |
Instance Attribute Details
#repository ⇒ String
Optional. A URI string identifying the repository. Example: "https://github.
com/GoogleCloudPlatform/kubernetes.git"
Corresponds to the JSON property repository
1059 1060 1061 |
# File 'generated/google/apis/logging_v1beta3/classes.rb', line 1059 def repository @repository end |
#revision_id ⇒ String
The canonical (and persistent) identifier of the deployed revision. Example (
git): "0035781c50ec7aa23385dc841529ce8a4b70db1b"
Corresponds to the JSON property revisionId
1065 1066 1067 |
# File 'generated/google/apis/logging_v1beta3/classes.rb', line 1065 def revision_id @revision_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1072 1073 1074 1075 |
# File 'generated/google/apis/logging_v1beta3/classes.rb', line 1072 def update!(**args) @repository = args[:repository] unless args[:repository].nil? @revision_id = args[:revision_id] unless args[:revision_id].nil? end |