Skip to content
This repository has been archived by the owner on Sep 16, 2023. It is now read-only.

feat: Implementation of Source Manifests: - Added message StorageSourceManifest as an option for the Source message - Added StorageSourceManifest field to the SourceProvenance message #473

Merged
merged 1 commit into from May 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Expand Up @@ -96,5 +96,43 @@ public interface SourceOrBuilder
*/
com.google.cloudbuild.v1.RepoSourceOrBuilder getRepoSourceOrBuilder();

/**
*
*
* <pre>
* If provided, get the source from this manifest in Google Cloud Storage.
* This feature is in Preview.
* </pre>
*
* <code>.google.devtools.cloudbuild.v1.StorageSourceManifest storage_source_manifest = 8;</code>
*
* @return Whether the storageSourceManifest field is set.
*/
boolean hasStorageSourceManifest();
/**
*
*
* <pre>
* If provided, get the source from this manifest in Google Cloud Storage.
* This feature is in Preview.
* </pre>
*
* <code>.google.devtools.cloudbuild.v1.StorageSourceManifest storage_source_manifest = 8;</code>
*
* @return The storageSourceManifest.
*/
com.google.cloudbuild.v1.StorageSourceManifest getStorageSourceManifest();
/**
*
*
* <pre>
* If provided, get the source from this manifest in Google Cloud Storage.
* This feature is in Preview.
* </pre>
*
* <code>.google.devtools.cloudbuild.v1.StorageSourceManifest storage_source_manifest = 8;</code>
*/
com.google.cloudbuild.v1.StorageSourceManifestOrBuilder getStorageSourceManifestOrBuilder();

public com.google.cloudbuild.v1.Source.SourceCase getSourceCase();
}