Interface EnvironmentOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Environment,Environment.Builder
public interface EnvironmentOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDescription()The human-readable description of the environment.com.google.protobuf.ByteStringgetDescriptionBytes()The human-readable description of the environment.StringgetDisplayName()Required.com.google.protobuf.ByteStringgetDisplayNameBytes()Required.StringgetName()The name of the environment.com.google.protobuf.ByteStringgetNameBytes()The name of the environment.Environment.TestCasesConfiggetTestCasesConfig()The test cases config for continuous tests of this environment.Environment.TestCasesConfigOrBuildergetTestCasesConfigOrBuilder()The test cases config for continuous tests of this environment.com.google.protobuf.TimestampgetUpdateTime()Output only.com.google.protobuf.TimestampOrBuildergetUpdateTimeOrBuilder()Output only.Environment.VersionConfiggetVersionConfigs(int index)A list of configurations for flow versions.intgetVersionConfigsCount()A list of configurations for flow versions.List<Environment.VersionConfig>getVersionConfigsList()A list of configurations for flow versions.Environment.VersionConfigOrBuildergetVersionConfigsOrBuilder(int index)A list of configurations for flow versions.List<? extends Environment.VersionConfigOrBuilder>getVersionConfigsOrBuilderList()A list of configurations for flow versions.Environment.WebhookConfiggetWebhookConfig()The webhook configuration for this environment.Environment.WebhookConfigOrBuildergetWebhookConfigOrBuilder()The webhook configuration for this environment.booleanhasTestCasesConfig()The test cases config for continuous tests of this environment.booleanhasUpdateTime()Output only.booleanhasWebhookConfig()The webhook configuration for this environment.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
The name of the environment. Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>`.
string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
The name of the environment. Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>`.
string name = 1;- Returns:
- The bytes for name.
-
getDisplayName
String getDisplayName()
Required. The human-readable name of the environment (unique in an agent). Limit of 64 characters.
string display_name = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The displayName.
-
getDisplayNameBytes
com.google.protobuf.ByteString getDisplayNameBytes()
Required. The human-readable name of the environment (unique in an agent). Limit of 64 characters.
string display_name = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The bytes for displayName.
-
getDescription
String getDescription()
The human-readable description of the environment. The maximum length is 500 characters. If exceeded, the request is rejected.
string description = 3;- Returns:
- The description.
-
getDescriptionBytes
com.google.protobuf.ByteString getDescriptionBytes()
The human-readable description of the environment. The maximum length is 500 characters. If exceeded, the request is rejected.
string description = 3;- Returns:
- The bytes for description.
-
getVersionConfigsList
List<Environment.VersionConfig> getVersionConfigsList()
A list of configurations for flow versions. You should include version configs for all flows that are reachable from [`Start Flow`][Agent.start_flow] in the agent. Otherwise, an error will be returned.
repeated .google.cloud.dialogflow.cx.v3beta1.Environment.VersionConfig version_configs = 6;
-
getVersionConfigs
Environment.VersionConfig getVersionConfigs(int index)
A list of configurations for flow versions. You should include version configs for all flows that are reachable from [`Start Flow`][Agent.start_flow] in the agent. Otherwise, an error will be returned.
repeated .google.cloud.dialogflow.cx.v3beta1.Environment.VersionConfig version_configs = 6;
-
getVersionConfigsCount
int getVersionConfigsCount()
A list of configurations for flow versions. You should include version configs for all flows that are reachable from [`Start Flow`][Agent.start_flow] in the agent. Otherwise, an error will be returned.
repeated .google.cloud.dialogflow.cx.v3beta1.Environment.VersionConfig version_configs = 6;
-
getVersionConfigsOrBuilderList
List<? extends Environment.VersionConfigOrBuilder> getVersionConfigsOrBuilderList()
A list of configurations for flow versions. You should include version configs for all flows that are reachable from [`Start Flow`][Agent.start_flow] in the agent. Otherwise, an error will be returned.
repeated .google.cloud.dialogflow.cx.v3beta1.Environment.VersionConfig version_configs = 6;
-
getVersionConfigsOrBuilder
Environment.VersionConfigOrBuilder getVersionConfigsOrBuilder(int index)
A list of configurations for flow versions. You should include version configs for all flows that are reachable from [`Start Flow`][Agent.start_flow] in the agent. Otherwise, an error will be returned.
repeated .google.cloud.dialogflow.cx.v3beta1.Environment.VersionConfig version_configs = 6;
-
hasUpdateTime
boolean hasUpdateTime()
Output only. Update time of this environment.
.google.protobuf.Timestamp update_time = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- Whether the updateTime field is set.
-
getUpdateTime
com.google.protobuf.Timestamp getUpdateTime()
Output only. Update time of this environment.
.google.protobuf.Timestamp update_time = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- The updateTime.
-
getUpdateTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder()
Output only. Update time of this environment.
.google.protobuf.Timestamp update_time = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
hasTestCasesConfig
boolean hasTestCasesConfig()
The test cases config for continuous tests of this environment.
.google.cloud.dialogflow.cx.v3beta1.Environment.TestCasesConfig test_cases_config = 7;- Returns:
- Whether the testCasesConfig field is set.
-
getTestCasesConfig
Environment.TestCasesConfig getTestCasesConfig()
The test cases config for continuous tests of this environment.
.google.cloud.dialogflow.cx.v3beta1.Environment.TestCasesConfig test_cases_config = 7;- Returns:
- The testCasesConfig.
-
getTestCasesConfigOrBuilder
Environment.TestCasesConfigOrBuilder getTestCasesConfigOrBuilder()
The test cases config for continuous tests of this environment.
.google.cloud.dialogflow.cx.v3beta1.Environment.TestCasesConfig test_cases_config = 7;
-
hasWebhookConfig
boolean hasWebhookConfig()
The webhook configuration for this environment.
.google.cloud.dialogflow.cx.v3beta1.Environment.WebhookConfig webhook_config = 10;- Returns:
- Whether the webhookConfig field is set.
-
getWebhookConfig
Environment.WebhookConfig getWebhookConfig()
The webhook configuration for this environment.
.google.cloud.dialogflow.cx.v3beta1.Environment.WebhookConfig webhook_config = 10;- Returns:
- The webhookConfig.
-
getWebhookConfigOrBuilder
Environment.WebhookConfigOrBuilder getWebhookConfigOrBuilder()
The webhook configuration for this environment.
.google.cloud.dialogflow.cx.v3beta1.Environment.WebhookConfig webhook_config = 10;
-
-