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

Commit 46755bf

Browse files
feat: Implementation of Source Manifests: - Added message StorageSourceManifest as an option for the Source message - Added StorageSourceManifest field to the SourceProvenance message (#473)
PiperOrigin-RevId: 372331161 Source-Author: Google APIs <[email protected]> Source-Date: Thu May 6 06:39:02 2021 -0700 Source-Repo: googleapis/googleapis Source-Sha: 87a6ce53d346be19f40bab61154f78afe2bf00fa Source-Link: googleapis/googleapis@87a6ce5
1 parent 0cb4ac2 commit 46755bf

File tree

9 files changed

+2227
-397
lines changed

9 files changed

+2227
-397
lines changed

proto-google-cloud-build-v1/src/main/java/com/google/cloudbuild/v1/Cloudbuild.java

Lines changed: 417 additions & 395 deletions
Large diffs are not rendered by default.

proto-google-cloud-build-v1/src/main/java/com/google/cloudbuild/v1/Source.java

Lines changed: 331 additions & 0 deletions
Large diffs are not rendered by default.

proto-google-cloud-build-v1/src/main/java/com/google/cloudbuild/v1/SourceOrBuilder.java

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,5 +96,43 @@ public interface SourceOrBuilder
9696
*/
9797
com.google.cloudbuild.v1.RepoSourceOrBuilder getRepoSourceOrBuilder();
9898

99+
/**
100+
*
101+
*
102+
* <pre>
103+
* If provided, get the source from this manifest in Google Cloud Storage.
104+
* This feature is in Preview.
105+
* </pre>
106+
*
107+
* <code>.google.devtools.cloudbuild.v1.StorageSourceManifest storage_source_manifest = 8;</code>
108+
*
109+
* @return Whether the storageSourceManifest field is set.
110+
*/
111+
boolean hasStorageSourceManifest();
112+
/**
113+
*
114+
*
115+
* <pre>
116+
* If provided, get the source from this manifest in Google Cloud Storage.
117+
* This feature is in Preview.
118+
* </pre>
119+
*
120+
* <code>.google.devtools.cloudbuild.v1.StorageSourceManifest storage_source_manifest = 8;</code>
121+
*
122+
* @return The storageSourceManifest.
123+
*/
124+
com.google.cloudbuild.v1.StorageSourceManifest getStorageSourceManifest();
125+
/**
126+
*
127+
*
128+
* <pre>
129+
* If provided, get the source from this manifest in Google Cloud Storage.
130+
* This feature is in Preview.
131+
* </pre>
132+
*
133+
* <code>.google.devtools.cloudbuild.v1.StorageSourceManifest storage_source_manifest = 8;</code>
134+
*/
135+
com.google.cloudbuild.v1.StorageSourceManifestOrBuilder getStorageSourceManifestOrBuilder();
136+
99137
public com.google.cloudbuild.v1.Source.SourceCase getSourceCase();
100138
}

0 commit comments

Comments
 (0)