pub struct GoogleCloudDialogflowV2Version {
pub create_time: Option<DateTime<Utc>>,
pub description: Option<String>,
pub name: Option<String>,
pub status: Option<String>,
pub version_number: Option<i32>,
}
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 versions create projects (request|response)
- agent versions get projects (response)
- agent versions patch projects (request|response)
- locations agent versions create projects (request|response)
- locations agent versions get projects (response)
- locations agent versions patch projects (request|response)
Fields§
§create_time: Option<DateTime<Utc>>
Output only. The creation time of this version. This field is read-only, i.e., it cannot be set by create and update methods.
description: Option<String>
Optional. The developer-provided description of this version.
name: Option<String>
Output only. The unique identifier of this agent version. Supported formats: - projects//agent/versions/
- projects//locations//agent/versions/
status: Option<String>
Output only. The status of this version. This field is read-only and cannot be set by create and update methods.
version_number: Option<i32>
Output only. The sequential number of this version. This field is read-only which means it cannot be set by create and update methods.
Trait Implementations§
Source§impl Clone for GoogleCloudDialogflowV2Version
impl Clone for GoogleCloudDialogflowV2Version
Source§fn clone(&self) -> GoogleCloudDialogflowV2Version
fn clone(&self) -> GoogleCloudDialogflowV2Version
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for GoogleCloudDialogflowV2Version
impl Default for GoogleCloudDialogflowV2Version
Source§fn default() -> GoogleCloudDialogflowV2Version
fn default() -> GoogleCloudDialogflowV2Version
Source§impl<'de> Deserialize<'de> for GoogleCloudDialogflowV2Version
impl<'de> Deserialize<'de> for GoogleCloudDialogflowV2Version
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 GoogleCloudDialogflowV2Version
impl ResponseResult for GoogleCloudDialogflowV2Version
Auto Trait Implementations§
impl Freeze for GoogleCloudDialogflowV2Version
impl RefUnwindSafe for GoogleCloudDialogflowV2Version
impl Send for GoogleCloudDialogflowV2Version
impl Sync for GoogleCloudDialogflowV2Version
impl Unpin for GoogleCloudDialogflowV2Version
impl UnwindSafe for GoogleCloudDialogflowV2Version
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