Interface ListFilesRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListFilesRequest
,ListFilesRequest.Builder
public interface ListFilesRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getFilter()
An expression for filtering the results of the request.com.google.protobuf.ByteString
getFilterBytes()
An expression for filtering the results of the request.int
getPageSize()
The maximum number of files to return.String
getPageToken()
The next_page_token value returned from a previous list request, if any.com.google.protobuf.ByteString
getPageTokenBytes()
The next_page_token value returned from a previous list request, if any.String
getParent()
The name of the repository whose files will be listed.com.google.protobuf.ByteString
getParentBytes()
The name of the repository whose files will be listed.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getParent
String getParent()
The name of the repository whose files will be listed. For example: "projects/p1/locations/us-central1/repositories/repo1
string parent = 1;
- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
The name of the repository whose files will be listed. For example: "projects/p1/locations/us-central1/repositories/repo1
string parent = 1;
- Returns:
- The bytes for parent.
-
getFilter
String getFilter()
An expression for filtering the results of the request. Filter rules are case insensitive. The fields eligible for filtering are: * `name` * `owner` An example of using a filter: * `name="projects/p1/locations/us-central1/repositories/repo1/files/a/b/*"` --> Files with an ID starting with "a/b/". * `owner="projects/p1/locations/us-central1/repositories/repo1/packages/pkg1/versions/1.0"` --> Files owned by the version `1.0` in package `pkg1`.
string filter = 4;
- Returns:
- The filter.
-
getFilterBytes
com.google.protobuf.ByteString getFilterBytes()
An expression for filtering the results of the request. Filter rules are case insensitive. The fields eligible for filtering are: * `name` * `owner` An example of using a filter: * `name="projects/p1/locations/us-central1/repositories/repo1/files/a/b/*"` --> Files with an ID starting with "a/b/". * `owner="projects/p1/locations/us-central1/repositories/repo1/packages/pkg1/versions/1.0"` --> Files owned by the version `1.0` in package `pkg1`.
string filter = 4;
- Returns:
- The bytes for filter.
-
getPageSize
int getPageSize()
The maximum number of files to return.
int32 page_size = 2;
- Returns:
- The pageSize.
-
getPageToken
String getPageToken()
The next_page_token value returned from a previous list request, if any.
string page_token = 3;
- Returns:
- The pageToken.
-
getPageTokenBytes
com.google.protobuf.ByteString getPageTokenBytes()
The next_page_token value returned from a previous list request, if any.
string page_token = 3;
- Returns:
- The bytes for pageToken.
-
-