public sealed class Environment : IMessage<Environment>, IEquatable<Environment>, IDeepCloneable<Environment>, IBufferMessage, IMessage
Represents an environment for an agent. You can create multiple versions of your agent and publish them to separate environments. When you edit an agent, you are editing the draft agent. At any point, you can save the draft agent as an agent version, which is an immutable snapshot of your agent. When you save the draft agent, it is published to the default environment. When you create agent versions, you can publish them to custom environments. You can create a variety of custom environments for testing, development, production, etc.
Implements
IMessage<Environment>, IEquatable<Environment>, IDeepCloneable<Environment>, IBufferMessage, IMessageNamespace
Google.Cloud.Dialogflow.Cx.V3Assembly
Google.Cloud.Dialogflow.Cx.V3.dll
Constructors
Environment()
public Environment()
Environment(Environment)
public Environment(Environment other)
Parameter | |
---|---|
Name | Description |
other | Environment |
Properties
Description
public string Description { get; set; }
The human-readable description of the environment. The maximum length is 500 characters. If exceeded, the request is rejected.
Property Value | |
---|---|
Type | Description |
String |
DisplayName
public string DisplayName { get; set; }
Required. The human-readable name of the environment (unique in an agent). Limit of 64 characters.
Property Value | |
---|---|
Type | Description |
String |
EnvironmentName
public EnvironmentName EnvironmentName { get; set; }
EnvironmentName-typed view over the Name resource name property.
Property Value | |
---|---|
Type | Description |
EnvironmentName |
Name
public string Name { get; set; }
The name of the environment.
Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent
ID>/environments/<Environment ID>
.
Property Value | |
---|---|
Type | Description |
String |
TestCasesConfig
public Environment.Types.TestCasesConfig TestCasesConfig { get; set; }
The test cases config for continuous tests of this environment.
Property Value | |
---|---|
Type | Description |
Environment.Types.TestCasesConfig |
UpdateTime
public Timestamp UpdateTime { get; set; }
Output only. Update time of this environment.
Property Value | |
---|---|
Type | Description |
Timestamp |
VersionConfigs
public RepeatedField<Environment.Types.VersionConfig> VersionConfigs { get; }
Required. 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.
Property Value | |
---|---|
Type | Description |
RepeatedField<Environment.Types.VersionConfig> |