Package com.google.privacy.dlp.v2
Interface ListDlpJobsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListDlpJobsResponse,ListDlpJobsResponse.Builder
public interface ListDlpJobsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DlpJobgetJobs(int index)A list of DlpJobs that matches the specified filter in the request.intgetJobsCount()A list of DlpJobs that matches the specified filter in the request.List<DlpJob>getJobsList()A list of DlpJobs that matches the specified filter in the request.DlpJobOrBuildergetJobsOrBuilder(int index)A list of DlpJobs that matches the specified filter in the request.List<? extends DlpJobOrBuilder>getJobsOrBuilderList()A list of DlpJobs that matches the specified filter in the request.StringgetNextPageToken()The standard List next-page token.com.google.protobuf.ByteStringgetNextPageTokenBytes()The standard List next-page token.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getJobsList
List<DlpJob> getJobsList()
A list of DlpJobs that matches the specified filter in the request.
repeated .google.privacy.dlp.v2.DlpJob jobs = 1;
-
getJobs
DlpJob getJobs(int index)
A list of DlpJobs that matches the specified filter in the request.
repeated .google.privacy.dlp.v2.DlpJob jobs = 1;
-
getJobsCount
int getJobsCount()
A list of DlpJobs that matches the specified filter in the request.
repeated .google.privacy.dlp.v2.DlpJob jobs = 1;
-
getJobsOrBuilderList
List<? extends DlpJobOrBuilder> getJobsOrBuilderList()
A list of DlpJobs that matches the specified filter in the request.
repeated .google.privacy.dlp.v2.DlpJob jobs = 1;
-
getJobsOrBuilder
DlpJobOrBuilder getJobsOrBuilder(int index)
A list of DlpJobs that matches the specified filter in the request.
repeated .google.privacy.dlp.v2.DlpJob jobs = 1;
-
getNextPageToken
String getNextPageToken()
The standard List next-page token.
string next_page_token = 2;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
The standard List next-page token.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-