Interface SubAgentOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SubAgent,SubAgent.Builder
public interface SubAgentOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetEnvironment()Optional.com.google.protobuf.ByteStringgetEnvironmentBytes()Optional.StringgetProject()Required.com.google.protobuf.ByteStringgetProjectBytes()Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getProject
String getProject()
Required. The project of this agent. Format: `projects/<Project ID>` or `projects/<Project ID>/locations/<Location ID>`.string project = 1;- Returns:
- The project.
-
getProjectBytes
com.google.protobuf.ByteString getProjectBytes()
Required. The project of this agent. Format: `projects/<Project ID>` or `projects/<Project ID>/locations/<Location ID>`.string project = 1;- Returns:
- The bytes for project.
-
getEnvironment
String getEnvironment()
Optional. The unique identifier (`environment name` in dialogflow console) of this sub-agent environment. Assumes draft environment if `environment` is not set.
string environment = 2;- Returns:
- The environment.
-
getEnvironmentBytes
com.google.protobuf.ByteString getEnvironmentBytes()
Optional. The unique identifier (`environment name` in dialogflow console) of this sub-agent environment. Assumes draft environment if `environment` is not set.
string environment = 2;- Returns:
- The bytes for environment.
-
-