Class: Google::Apis::CloudfunctionsV2alpha::SourceProvenance

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudfunctions_v2alpha/classes.rb,
lib/google/apis/cloudfunctions_v2alpha/representations.rb,
lib/google/apis/cloudfunctions_v2alpha/representations.rb

Overview

Provenance of the source. Ways to find the original source, or verify that some source was used for this build.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SourceProvenance

Returns a new instance of SourceProvenance.



2075
2076
2077
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 2075

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

Instance Attribute Details

#git_uriString

A copy of the build's source.git_uri, if exists, with any commits resolved. Corresponds to the JSON property gitUri

Returns:

  • (String)


2063
2064
2065
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 2063

def git_uri
  @git_uri
end

#resolved_repo_sourceGoogle::Apis::CloudfunctionsV2alpha::RepoSource

Location of the source in a Google Cloud Source Repository. Corresponds to the JSON property resolvedRepoSource



2068
2069
2070
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 2068

def resolved_repo_source
  @resolved_repo_source
end

#resolved_storage_sourceGoogle::Apis::CloudfunctionsV2alpha::StorageSource

Location of the source in an archive file in Google Cloud Storage. Corresponds to the JSON property resolvedStorageSource



2073
2074
2075
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 2073

def resolved_storage_source
  @resolved_storage_source
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2080
2081
2082
2083
2084
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 2080

def update!(**args)
  @git_uri = args[:git_uri] if args.key?(:git_uri)
  @resolved_repo_source = args[:resolved_repo_source] if args.key?(:resolved_repo_source)
  @resolved_storage_source = args[:resolved_storage_source] if args.key?(:resolved_storage_source)
end