Show / Hide Table of Contents

Class GoogleCloudDialogflowV2Environment

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. For more information, see the versions and environments guide.

Inheritance
System.Object
GoogleCloudDialogflowV2Environment
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Dialogflow.v2.Data
Assembly: Google.Apis.Dialogflow.v2.dll
Syntax
public class GoogleCloudDialogflowV2Environment : IDirectResponseSchema

Properties

AgentVersion

Optional. The agent version loaded into this environment. Supported formats: - projects//agent/versions/ - projects//locations//agent/versions/

Declaration
[JsonProperty("agentVersion")]
public virtual string AgentVersion { get; set; }
Property Value
Type Description
System.String

Description

Optional. The developer-provided description for this environment. The maximum length is 500 characters. If exceeded, the request is rejected.

Declaration
[JsonProperty("description")]
public virtual string Description { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Fulfillment

Optional. The fulfillment settings to use for this environment.

Declaration
[JsonProperty("fulfillment")]
public virtual GoogleCloudDialogflowV2Fulfillment Fulfillment { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2Fulfillment

Name

Output only. The unique identifier of this agent environment. Supported formats: - projects//agent/environments/ - projects//locations//agent/environments/

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
System.String

State

Output only. The state of this environment. This field is read-only, i.e., it cannot be set by create and update methods.

Declaration
[JsonProperty("state")]
public virtual string State { get; set; }
Property Value
Type Description
System.String

TextToSpeechSettings

Optional. Text to speech settings for this environment.

Declaration
[JsonProperty("textToSpeechSettings")]
public virtual GoogleCloudDialogflowV2TextToSpeechSettings TextToSpeechSettings { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2TextToSpeechSettings

UpdateTime

Output only. The last update time of this environment. This field is read-only, i.e., it cannot be set by create and update methods.

Declaration
[JsonProperty("updateTime")]
public virtual object UpdateTime { get; set; }
Property Value
Type Description
System.Object

Implements

IDirectResponseSchema
In This Article
Back to top