Class: Google::Apis::LoggingV2::SourceReference

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

Overview

A reference to a particular snapshot of the source tree used to build and deploy an 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.



2019
2020
2021
# File 'generated/google/apis/logging_v2/classes.rb', line 2019

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

Instance Attribute Details

#repositoryString

Optional. A URI string identifying the repository. Example: "https://github. com/GoogleCloudPlatform/kubernetes.git" Corresponds to the JSON property repository

Returns:

  • (String)


2011
2012
2013
# File 'generated/google/apis/logging_v2/classes.rb', line 2011

def repository
  @repository
end

#revision_idString

The canonical and persistent identifier of the deployed revision. Example (git) : "0035781c50ec7aa23385dc841529ce8a4b70db1b" Corresponds to the JSON property revisionId

Returns:

  • (String)


2017
2018
2019
# File 'generated/google/apis/logging_v2/classes.rb', line 2017

def revision_id
  @revision_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2024
2025
2026
2027
# File 'generated/google/apis/logging_v2/classes.rb', line 2024

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