Interface ListDataPoliciesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListDataPoliciesResponse
,ListDataPoliciesResponse.Builder
public interface ListDataPoliciesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataPolicy
getDataPolicies(int index)
Data policies that belong to the requested project.int
getDataPoliciesCount()
Data policies that belong to the requested project.List<DataPolicy>
getDataPoliciesList()
Data policies that belong to the requested project.DataPolicyOrBuilder
getDataPoliciesOrBuilder(int index)
Data policies that belong to the requested project.List<? extends DataPolicyOrBuilder>
getDataPoliciesOrBuilderList()
Data policies that belong to the requested project.String
getNextPageToken()
Token used to retrieve the next page of results, or empty if there are no more results.com.google.protobuf.ByteString
getNextPageTokenBytes()
Token used to retrieve the next page of results, or empty if there are no more results.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDataPoliciesList
List<DataPolicy> getDataPoliciesList()
Data policies that belong to the requested project.
repeated .google.cloud.bigquery.datapolicies.v1beta1.DataPolicy data_policies = 1;
-
getDataPolicies
DataPolicy getDataPolicies(int index)
Data policies that belong to the requested project.
repeated .google.cloud.bigquery.datapolicies.v1beta1.DataPolicy data_policies = 1;
-
getDataPoliciesCount
int getDataPoliciesCount()
Data policies that belong to the requested project.
repeated .google.cloud.bigquery.datapolicies.v1beta1.DataPolicy data_policies = 1;
-
getDataPoliciesOrBuilderList
List<? extends DataPolicyOrBuilder> getDataPoliciesOrBuilderList()
Data policies that belong to the requested project.
repeated .google.cloud.bigquery.datapolicies.v1beta1.DataPolicy data_policies = 1;
-
getDataPoliciesOrBuilder
DataPolicyOrBuilder getDataPoliciesOrBuilder(int index)
Data policies that belong to the requested project.
repeated .google.cloud.bigquery.datapolicies.v1beta1.DataPolicy data_policies = 1;
-
getNextPageToken
String getNextPageToken()
Token used to retrieve the next page of results, or empty if there are no more results.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Token used to retrieve the next page of results, or empty if there are no more results.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-