Class Environment (2.15.0)

Environment(mapping=None, *, ignore_unknown_fields=False, **kwargs)

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 <https://cloud.google.com/dialogflow/docs/agents-versions>__.

Attributes

NameDescription
name str
Output only. The unique identifier of this agent environment. Supported formats: - ``projects/
description str
Optional. The developer-provided description for this environment. The maximum length is 500 characters. If exceeded, the request is rejected.
agent_version str
Optional. The agent version loaded into this environment. Supported formats: - ``projects/
state google.cloud.dialogflow_v2.types.Environment.State
Output only. The state of this environment. This field is read-only, i.e., it cannot be set by create and update methods.
update_time google.protobuf.timestamp_pb2.Timestamp
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.
text_to_speech_settings google.cloud.dialogflow_v2.types.TextToSpeechSettings
Optional. Text to speech settings for this environment.
fulfillment google.cloud.dialogflow_v2.types.Fulfillment
Optional. The fulfillment settings to use for this environment.

Inheritance

builtins.object > proto.message.Message > Environment

Classes

State

State(value)

Represents an environment state. When an environment is pointed to a new agent version, the environment is temporarily set to the LOADING state. During that time, the environment keeps on serving the previous version of the agent. After the new agent version is done loading, the environment is set back to the RUNNING state.