Send feedback
Class File (1.12.0)
Stay organized with collections
Save and categorize content based on your preferences.
Version 1.12.0 keyboard_arrow_down
public final class File extends GeneratedMessageV3 implements FileOrBuilder
Files store content that is potentially associated with Packages or Versions.
Protobuf type google.devtools.artifactregistry.v1.File
Static Fields
public static final int CREATE_TIME_FIELD_NUMBER
Field Value Type Description int
public static final int FETCH_TIME_FIELD_NUMBER
Field Value Type Description int
public static final int HASHES_FIELD_NUMBER
Field Value Type Description int
public static final int NAME_FIELD_NUMBER
Field Value Type Description int
public static final int OWNER_FIELD_NUMBER
Field Value Type Description int
public static final int SIZE_BYTES_FIELD_NUMBER
Field Value Type Description int
public static final int UPDATE_TIME_FIELD_NUMBER
Field Value Type Description int
Static Methods
public static File getDefaultInstance ()
Returns Type Description File
public static final Descriptors . Descriptor getDescriptor ()
public static File . Builder newBuilder ()
public static File . Builder newBuilder ( File prototype )
Parameter Name Description prototype
File
public static File parseDelimitedFrom ( InputStream input )
Returns Type Description File
public static File parseDelimitedFrom ( InputStream input , ExtensionRegistryLite extensionRegistry )
Returns Type Description File
public static File parseFrom ( byte [] data )
Parameter Name Description data
byte []
Returns Type Description File
public static File parseFrom ( byte [] data , ExtensionRegistryLite extensionRegistry )
Returns Type Description File
public static File parseFrom ( ByteString data )
Returns Type Description File
public static File parseFrom ( ByteString data , ExtensionRegistryLite extensionRegistry )
Returns Type Description File
public static File parseFrom ( CodedInputStream input )
Returns Type Description File
public static File parseFrom ( CodedInputStream input , ExtensionRegistryLite extensionRegistry )
Returns Type Description File
public static File parseFrom ( InputStream input )
Returns Type Description File
public static File parseFrom ( InputStream input , ExtensionRegistryLite extensionRegistry )
Returns Type Description File
public static File parseFrom ( ByteBuffer data )
Returns Type Description File
public static File parseFrom ( ByteBuffer data , ExtensionRegistryLite extensionRegistry )
Returns Type Description File
public static Parser<File> parser ()
Methods
public boolean equals ( Object obj )
Parameter Name Description obj
Object
Overrides
public Timestamp getCreateTime ()
Output only. The time when the File was created.
.google.protobuf.Timestamp create_time = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns Type Description Timestamp
The createTime.
public TimestampOrBuilder getCreateTimeOrBuilder ()
Output only. The time when the File was created.
.google.protobuf.Timestamp create_time = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
public File getDefaultInstanceForType ()
Returns Type Description File
public Timestamp getFetchTime ()
Output only. The time when the last attempt to refresh the file's data was
made. Only set when the repository is remote.
.google.protobuf.Timestamp fetch_time = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns Type Description Timestamp
The fetchTime.
public TimestampOrBuilder getFetchTimeOrBuilder ()
Output only. The time when the last attempt to refresh the file's data was
made. Only set when the repository is remote.
.google.protobuf.Timestamp fetch_time = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
public Hash getHashes ( int index )
The hashes of the file content.
repeated .google.devtools.artifactregistry.v1.Hash hashes = 4;
Parameter Name Description index
int
Returns Type Description Hash
public int getHashesCount ()
The hashes of the file content.
repeated .google.devtools.artifactregistry.v1.Hash hashes = 4;
Returns Type Description int
public List<Hash> getHashesList ()
The hashes of the file content.
repeated .google.devtools.artifactregistry.v1.Hash hashes = 4;
public HashOrBuilder getHashesOrBuilder ( int index )
The hashes of the file content.
repeated .google.devtools.artifactregistry.v1.Hash hashes = 4;
Parameter Name Description index
int
public List <? extends HashOrBuilder > getHashesOrBuilderList ()
The hashes of the file content.
repeated .google.devtools.artifactregistry.v1.Hash hashes = 4;
Returns Type Description List <? extends com.google.devtools.artifactregistry.v1.HashOrBuilder >
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 Type Description String
The name.
public 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 Type Description ByteString
The bytes for name.
The name of the Package or Version that owns this file, if any.
string owner = 7;
Returns Type Description String
The owner.
public ByteString getOwnerBytes ()
The name of the Package or Version that owns this file, if any.
string owner = 7;
Returns Type Description ByteString
The bytes for owner.
public Parser<File> getParserForType ()
Overrides
public int getSerializedSize ()
Returns Type Description int
Overrides
public long getSizeBytes ()
The size of the File in bytes.
int64 size_bytes = 3;
Returns Type Description long
The sizeBytes.
public final UnknownFieldSet getUnknownFields ()
Overrides
public Timestamp getUpdateTime ()
Output only. The time when the File was last updated.
.google.protobuf.Timestamp update_time = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns Type Description Timestamp
The updateTime.
public TimestampOrBuilder getUpdateTimeOrBuilder ()
Output only. The time when the File was last updated.
.google.protobuf.Timestamp update_time = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
public boolean hasCreateTime ()
Output only. The time when the File was created.
.google.protobuf.Timestamp create_time = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns Type Description boolean
Whether the createTime field is set.
public boolean hasFetchTime ()
Output only. The time when the last attempt to refresh the file's data was
made. Only set when the repository is remote.
.google.protobuf.Timestamp fetch_time = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns Type Description boolean
Whether the fetchTime field is set.
public boolean hasUpdateTime ()
Output only. The time when the File was last updated.
.google.protobuf.Timestamp update_time = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns Type Description boolean
Whether the updateTime field is set.
Returns Type Description int
Overrides
protected GeneratedMessageV3 . FieldAccessorTable internalGetFieldAccessorTable ()
Overrides
public final boolean isInitialized ()
Overrides
public File . Builder newBuilderForType ()
protected File . Builder newBuilderForType ( GeneratedMessageV3 . BuilderParent parent )
Overrides
protected Object newInstance ( GeneratedMessageV3 . UnusedPrivateParameter unused )
Overrides
public File . Builder toBuilder ()
public void writeTo ( CodedOutputStream output )
Overrides
Send feedback
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-02-14 UTC.
Need to tell us more?
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-14 UTC."],[],[]]