Interface EnvironmentHistoryOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
EnvironmentHistory,EnvironmentHistory.Builder
public interface EnvironmentHistoryOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EnvironmentHistory.EntrygetEntries(int index)Output only.intgetEntriesCount()Output only.List<EnvironmentHistory.Entry>getEntriesList()Output only.EnvironmentHistory.EntryOrBuildergetEntriesOrBuilder(int index)Output only.List<? extends EnvironmentHistory.EntryOrBuilder>getEntriesOrBuilderList()Output only.StringgetNextPageToken()Output only.com.google.protobuf.ByteStringgetNextPageTokenBytes()Output only.StringgetParent()Output only.com.google.protobuf.ByteStringgetParentBytes()Output only.-
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()
Output only. The name of the environment this history is for. Supported formats: - `projects/<Project ID>/agent/environments/<Environment ID>` - `projects/<Project ID>/locations/<Location ID>/agent/environments/<Environment ID>`string parent = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Output only. The name of the environment this history is for. Supported formats: - `projects/<Project ID>/agent/environments/<Environment ID>` - `projects/<Project ID>/locations/<Location ID>/agent/environments/<Environment ID>`string parent = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- The bytes for parent.
-
getEntriesList
List<EnvironmentHistory.Entry> getEntriesList()
Output only. The list of agent environments. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.v2beta1.EnvironmentHistory.Entry entries = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getEntries
EnvironmentHistory.Entry getEntries(int index)
Output only. The list of agent environments. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.v2beta1.EnvironmentHistory.Entry entries = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getEntriesCount
int getEntriesCount()
Output only. The list of agent environments. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.v2beta1.EnvironmentHistory.Entry entries = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getEntriesOrBuilderList
List<? extends EnvironmentHistory.EntryOrBuilder> getEntriesOrBuilderList()
Output only. The list of agent environments. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.v2beta1.EnvironmentHistory.Entry entries = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getEntriesOrBuilder
EnvironmentHistory.EntryOrBuilder getEntriesOrBuilder(int index)
Output only. The list of agent environments. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.v2beta1.EnvironmentHistory.Entry entries = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getNextPageToken
String getNextPageToken()
Output only. Token to retrieve the next page of results, or empty if there are no more results in the list.
string next_page_token = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Output only. Token to retrieve the next page of results, or empty if there are no more results in the list.
string next_page_token = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- The bytes for nextPageToken.
-
-