Interface CreateEnvironmentRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateEnvironmentRequest
,CreateEnvironmentRequest.Builder
public interface CreateEnvironmentRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Environment
getEnvironment()
Required.String
getEnvironmentId()
Required.com.google.protobuf.ByteString
getEnvironmentIdBytes()
Required.EnvironmentOrBuilder
getEnvironmentOrBuilder()
Required.String
getParent()
Required.com.google.protobuf.ByteString
getParentBytes()
Required.boolean
hasEnvironment()
Required.-
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()
Required. The agent to create an environment for. Supported formats: - `projects/<Project ID>/agent` - `projects/<Project ID>/locations/<Location ID>/agent`
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Required. The agent to create an environment for. Supported formats: - `projects/<Project ID>/agent` - `projects/<Project ID>/locations/<Location ID>/agent`
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The bytes for parent.
-
hasEnvironment
boolean hasEnvironment()
Required. The environment to create.
.google.cloud.dialogflow.v2beta1.Environment environment = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the environment field is set.
-
getEnvironment
Environment getEnvironment()
Required. The environment to create.
.google.cloud.dialogflow.v2beta1.Environment environment = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The environment.
-
getEnvironmentOrBuilder
EnvironmentOrBuilder getEnvironmentOrBuilder()
Required. The environment to create.
.google.cloud.dialogflow.v2beta1.Environment environment = 2 [(.google.api.field_behavior) = REQUIRED];
-
getEnvironmentId
String getEnvironmentId()
Required. The unique id of the new environment.
string environment_id = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The environmentId.
-
getEnvironmentIdBytes
com.google.protobuf.ByteString getEnvironmentIdBytes()
Required. The unique id of the new environment.
string environment_id = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for environmentId.
-
-