Interface UploadFileInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UploadFileInfo,UploadFileInfo.Builder
public interface UploadFileInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsHeaders(String key)Output only.Map<String,String>getHeaders()Deprecated.intgetHeadersCount()Output only.Map<String,String>getHeadersMap()Output only.StringgetHeadersOrDefault(String key, String defaultValue)Output only.StringgetHeadersOrThrow(String key)Output only.StringgetSignedUri()Output only.com.google.protobuf.ByteStringgetSignedUriBytes()Output only.com.google.protobuf.TimestampgetUriExpirationTime()Output only.com.google.protobuf.TimestampOrBuildergetUriExpirationTimeOrBuilder()Output only.booleanhasUriExpirationTime()Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSignedUri
String getSignedUri()
Output only. Upload URI for the file.
string signed_uri = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- The signedUri.
-
getSignedUriBytes
com.google.protobuf.ByteString getSignedUriBytes()
Output only. Upload URI for the file.
string signed_uri = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- The bytes for signedUri.
-
getHeadersCount
int getHeadersCount()
Output only. The headers that were used to sign the URI.
map<string, string> headers = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
containsHeaders
boolean containsHeaders(String key)
Output only. The headers that were used to sign the URI.
map<string, string> headers = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getHeaders
@Deprecated Map<String,String> getHeaders()
Deprecated.UsegetHeadersMap()instead.
-
getHeadersMap
Map<String,String> getHeadersMap()
Output only. The headers that were used to sign the URI.
map<string, string> headers = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getHeadersOrDefault
String getHeadersOrDefault(String key, String defaultValue)
Output only. The headers that were used to sign the URI.
map<string, string> headers = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getHeadersOrThrow
String getHeadersOrThrow(String key)
Output only. The headers that were used to sign the URI.
map<string, string> headers = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
hasUriExpirationTime
boolean hasUriExpirationTime()
Output only. Expiration time of the upload URI.
.google.protobuf.Timestamp uri_expiration_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- Whether the uriExpirationTime field is set.
-
getUriExpirationTime
com.google.protobuf.Timestamp getUriExpirationTime()
Output only. Expiration time of the upload URI.
.google.protobuf.Timestamp uri_expiration_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- The uriExpirationTime.
-
getUriExpirationTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getUriExpirationTimeOrBuilder()
Output only. Expiration time of the upload URI.
.google.protobuf.Timestamp uri_expiration_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
-