Interface FileOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
File,File.Builder
public interface FileOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.TimestampgetCreateTime()The time when the File was created.com.google.protobuf.TimestampOrBuildergetCreateTimeOrBuilder()The time when the File was created.HashgetHashes(int index)The hashes of the file content.intgetHashesCount()The hashes of the file content.List<Hash>getHashesList()The hashes of the file content.HashOrBuildergetHashesOrBuilder(int index)The hashes of the file content.List<? extends HashOrBuilder>getHashesOrBuilderList()The hashes of the file content.StringgetName()The name of the file, for example: "projects/p1/locations/us-central1/repositories/repo1/files/a%2Fb%2Fc.txt".com.google.protobuf.ByteStringgetNameBytes()The name of the file, for example: "projects/p1/locations/us-central1/repositories/repo1/files/a%2Fb%2Fc.txt".StringgetOwner()The name of the Package or Version that owns this file, if any.com.google.protobuf.ByteStringgetOwnerBytes()The name of the Package or Version that owns this file, if any.longgetSizeBytes()The size of the File in bytes.com.google.protobuf.TimestampgetUpdateTime()The time when the File was last updated.com.google.protobuf.TimestampOrBuildergetUpdateTimeOrBuilder()The time when the File was last updated.booleanhasCreateTime()The time when the File was created.booleanhasUpdateTime()The time when the File was last updated.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
The name of the file, for example: "projects/p1/locations/us-central1/repositories/repo1/files/a%2Fb%2Fc.txt". If the file ID part contains slashes, they are escaped.
string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
The name of the file, for example: "projects/p1/locations/us-central1/repositories/repo1/files/a%2Fb%2Fc.txt". If the file ID part contains slashes, they are escaped.
string name = 1;- Returns:
- The bytes for name.
-
getSizeBytes
long getSizeBytes()
The size of the File in bytes.
int64 size_bytes = 3;- Returns:
- The sizeBytes.
-
getHashesList
List<Hash> getHashesList()
The hashes of the file content.
repeated .google.devtools.artifactregistry.v1beta2.Hash hashes = 4;
-
getHashes
Hash getHashes(int index)
The hashes of the file content.
repeated .google.devtools.artifactregistry.v1beta2.Hash hashes = 4;
-
getHashesCount
int getHashesCount()
The hashes of the file content.
repeated .google.devtools.artifactregistry.v1beta2.Hash hashes = 4;
-
getHashesOrBuilderList
List<? extends HashOrBuilder> getHashesOrBuilderList()
The hashes of the file content.
repeated .google.devtools.artifactregistry.v1beta2.Hash hashes = 4;
-
getHashesOrBuilder
HashOrBuilder getHashesOrBuilder(int index)
The hashes of the file content.
repeated .google.devtools.artifactregistry.v1beta2.Hash hashes = 4;
-
hasCreateTime
boolean hasCreateTime()
The time when the File was created.
.google.protobuf.Timestamp create_time = 5;- Returns:
- Whether the createTime field is set.
-
getCreateTime
com.google.protobuf.Timestamp getCreateTime()
The time when the File was created.
.google.protobuf.Timestamp create_time = 5;- Returns:
- The createTime.
-
getCreateTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder()
The time when the File was created.
.google.protobuf.Timestamp create_time = 5;
-
hasUpdateTime
boolean hasUpdateTime()
The time when the File was last updated.
.google.protobuf.Timestamp update_time = 6;- Returns:
- Whether the updateTime field is set.
-
getUpdateTime
com.google.protobuf.Timestamp getUpdateTime()
The time when the File was last updated.
.google.protobuf.Timestamp update_time = 6;- Returns:
- The updateTime.
-
getUpdateTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder()
The time when the File was last updated.
.google.protobuf.Timestamp update_time = 6;
-
getOwner
String getOwner()
The name of the Package or Version that owns this file, if any.
string owner = 7;- Returns:
- The owner.
-
getOwnerBytes
com.google.protobuf.ByteString getOwnerBytes()
The name of the Package or Version that owns this file, if any.
string owner = 7;- Returns:
- The bytes for owner.
-
-