Package com.google.cloud.dataplex.v1
Interface ListActionsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListActionsResponse,ListActionsResponse.Builder
public interface ListActionsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ActiongetActions(int index)Actions under the given parent lake/zone/asset.intgetActionsCount()Actions under the given parent lake/zone/asset.List<Action>getActionsList()Actions under the given parent lake/zone/asset.ActionOrBuildergetActionsOrBuilder(int index)Actions under the given parent lake/zone/asset.List<? extends ActionOrBuilder>getActionsOrBuilderList()Actions under the given parent lake/zone/asset.StringgetNextPageToken()Token to retrieve the next page of results, or empty if there are no more results in the list.com.google.protobuf.ByteStringgetNextPageTokenBytes()Token to retrieve the next page of results, or empty if there are no more results in the list.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getActionsList
List<Action> getActionsList()
Actions under the given parent lake/zone/asset.
repeated .google.cloud.dataplex.v1.Action actions = 1;
-
getActions
Action getActions(int index)
Actions under the given parent lake/zone/asset.
repeated .google.cloud.dataplex.v1.Action actions = 1;
-
getActionsCount
int getActionsCount()
Actions under the given parent lake/zone/asset.
repeated .google.cloud.dataplex.v1.Action actions = 1;
-
getActionsOrBuilderList
List<? extends ActionOrBuilder> getActionsOrBuilderList()
Actions under the given parent lake/zone/asset.
repeated .google.cloud.dataplex.v1.Action actions = 1;
-
getActionsOrBuilder
ActionOrBuilder getActionsOrBuilder(int index)
Actions under the given parent lake/zone/asset.
repeated .google.cloud.dataplex.v1.Action actions = 1;
-
getNextPageToken
String getNextPageToken()
Token to retrieve the next page of results, or empty if there are no more results in the list.
string next_page_token = 2;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Token to retrieve the next page of results, or empty if there are no more results in the list.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-