1 /* 2 * Copyright 2020 Google LLC 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * https://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 // Generated by the protocol buffer compiler. DO NOT EDIT! 17 // source: google/devtools/cloudbuild/v1/cloudbuild.proto 18 19 package com.google.cloudbuild.v1; 20 21 public interface UploadedPythonPackageOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.devtools.cloudbuild.v1.UploadedPythonPackage) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * URI of the uploaded artifact. 31 * </pre> 32 * 33 * <code>string uri = 1;</code> 34 * 35 * @return The uri. 36 */ getUri()37 java.lang.String getUri(); 38 /** 39 * 40 * 41 * <pre> 42 * URI of the uploaded artifact. 43 * </pre> 44 * 45 * <code>string uri = 1;</code> 46 * 47 * @return The bytes for uri. 48 */ getUriBytes()49 com.google.protobuf.ByteString getUriBytes(); 50 51 /** 52 * 53 * 54 * <pre> 55 * Hash types and values of the Python Artifact. 56 * </pre> 57 * 58 * <code>.google.devtools.cloudbuild.v1.FileHashes file_hashes = 2;</code> 59 * 60 * @return Whether the fileHashes field is set. 61 */ hasFileHashes()62 boolean hasFileHashes(); 63 /** 64 * 65 * 66 * <pre> 67 * Hash types and values of the Python Artifact. 68 * </pre> 69 * 70 * <code>.google.devtools.cloudbuild.v1.FileHashes file_hashes = 2;</code> 71 * 72 * @return The fileHashes. 73 */ getFileHashes()74 com.google.cloudbuild.v1.FileHashes getFileHashes(); 75 /** 76 * 77 * 78 * <pre> 79 * Hash types and values of the Python Artifact. 80 * </pre> 81 * 82 * <code>.google.devtools.cloudbuild.v1.FileHashes file_hashes = 2;</code> 83 */ getFileHashesOrBuilder()84 com.google.cloudbuild.v1.FileHashesOrBuilder getFileHashesOrBuilder(); 85 86 /** 87 * 88 * 89 * <pre> 90 * Output only. Stores timing information for pushing the specified artifact. 91 * </pre> 92 * 93 * <code> 94 * .google.devtools.cloudbuild.v1.TimeSpan push_timing = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; 95 * </code> 96 * 97 * @return Whether the pushTiming field is set. 98 */ hasPushTiming()99 boolean hasPushTiming(); 100 /** 101 * 102 * 103 * <pre> 104 * Output only. Stores timing information for pushing the specified artifact. 105 * </pre> 106 * 107 * <code> 108 * .google.devtools.cloudbuild.v1.TimeSpan push_timing = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; 109 * </code> 110 * 111 * @return The pushTiming. 112 */ getPushTiming()113 com.google.cloudbuild.v1.TimeSpan getPushTiming(); 114 /** 115 * 116 * 117 * <pre> 118 * Output only. Stores timing information for pushing the specified artifact. 119 * </pre> 120 * 121 * <code> 122 * .google.devtools.cloudbuild.v1.TimeSpan push_timing = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; 123 * </code> 124 */ getPushTimingOrBuilder()125 com.google.cloudbuild.v1.TimeSpanOrBuilder getPushTimingOrBuilder(); 126 } 127