pub struct GoogleCloudDialogflowV2Environment {
pub agent_version: Option<String>,
pub description: Option<String>,
pub fulfillment: Option<GoogleCloudDialogflowV2Fulfillment>,
pub name: Option<String>,
pub state: Option<String>,
pub text_to_speech_settings: Option<GoogleCloudDialogflowV2TextToSpeechSettings>,
pub update_time: Option<DateTime<Utc>>,
}
Expand description
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.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- agent environments create projects (request|response)
- agent environments get projects (response)
- agent environments patch projects (request|response)
- locations agent environments create projects (request|response)
- locations agent environments get projects (response)
- locations agent environments patch projects (request|response)
Fields§
§agent_version: Option<String>
Optional. The agent version loaded into this environment. Supported formats: - projects//agent/versions/
- projects//locations//agent/versions/
description: Option<String>
Optional. The developer-provided description for this environment. The maximum length is 500 characters. If exceeded, the request is rejected.
fulfillment: Option<GoogleCloudDialogflowV2Fulfillment>
Optional. The fulfillment settings to use for this environment.
name: Option<String>
Output only. The unique identifier of this agent environment. Supported formats: - projects//agent/environments/
- projects//locations//agent/environments/
The environment ID for the default environment is -
.
state: Option<String>
Output only. The state of this environment. This field is read-only, i.e., it cannot be set by create and update methods.
text_to_speech_settings: Option<GoogleCloudDialogflowV2TextToSpeechSettings>
Optional. Text to speech settings for this environment.
update_time: Option<DateTime<Utc>>
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.
Trait Implementations§
Source§impl Clone for GoogleCloudDialogflowV2Environment
impl Clone for GoogleCloudDialogflowV2Environment
Source§fn clone(&self) -> GoogleCloudDialogflowV2Environment
fn clone(&self) -> GoogleCloudDialogflowV2Environment
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for GoogleCloudDialogflowV2Environment
impl Default for GoogleCloudDialogflowV2Environment
Source§fn default() -> GoogleCloudDialogflowV2Environment
fn default() -> GoogleCloudDialogflowV2Environment
Source§impl<'de> Deserialize<'de> for GoogleCloudDialogflowV2Environment
impl<'de> Deserialize<'de> for GoogleCloudDialogflowV2Environment
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl RequestValue for GoogleCloudDialogflowV2Environment
impl ResponseResult for GoogleCloudDialogflowV2Environment
Auto Trait Implementations§
impl Freeze for GoogleCloudDialogflowV2Environment
impl RefUnwindSafe for GoogleCloudDialogflowV2Environment
impl Send for GoogleCloudDialogflowV2Environment
impl Sync for GoogleCloudDialogflowV2Environment
impl Unpin for GoogleCloudDialogflowV2Environment
impl UnwindSafe for GoogleCloudDialogflowV2Environment
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more