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 boolean
containsHeaders(String key)
Output only.Map<String,String>
getHeaders()
Deprecated.int
getHeadersCount()
Output only.Map<String,String>
getHeadersMap()
Output only.String
getHeadersOrDefault(String key, String defaultValue)
Output only.String
getHeadersOrThrow(String key)
Output only.String
getSignedUri()
Output only.com.google.protobuf.ByteString
getSignedUriBytes()
Output only.com.google.protobuf.Timestamp
getUriExpirationTime()
Output only.com.google.protobuf.TimestampOrBuilder
getUriExpirationTimeOrBuilder()
Output only.boolean
hasUriExpirationTime()
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];
-
-