pub struct GoogleCloudAiplatformV1MergeVersionAliasesRequest {
pub version_aliases: Option<Vec<String>>,
}Expand description
Request message for ModelService.MergeVersionAliases.
§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).
Fields§
§version_aliases: Option<Vec<String>>Required. The set of version aliases to merge. The alias should be at most 128 characters, and match a-z{0,126}[a-z-0-9]. Add the - prefix to an alias means removing that alias from the version. - is NOT counted in the 128 characters. Example: -golden means removing the golden alias from the version. There is NO ordering in aliases, which means 1) The aliases returned from GetModel API might not have the exactly same order from this MergeVersionAliases API. 2) Adding and deleting the same alias in the request is not recommended, and the 2 operations will be cancelled out.
Trait Implementations§
Source§impl Clone for GoogleCloudAiplatformV1MergeVersionAliasesRequest
impl Clone for GoogleCloudAiplatformV1MergeVersionAliasesRequest
Source§fn clone(&self) -> GoogleCloudAiplatformV1MergeVersionAliasesRequest
fn clone(&self) -> GoogleCloudAiplatformV1MergeVersionAliasesRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GoogleCloudAiplatformV1MergeVersionAliasesRequest
impl Default for GoogleCloudAiplatformV1MergeVersionAliasesRequest
Source§fn default() -> GoogleCloudAiplatformV1MergeVersionAliasesRequest
fn default() -> GoogleCloudAiplatformV1MergeVersionAliasesRequest
Source§impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1MergeVersionAliasesRequest
impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1MergeVersionAliasesRequest
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 GoogleCloudAiplatformV1MergeVersionAliasesRequest
Auto Trait Implementations§
impl Freeze for GoogleCloudAiplatformV1MergeVersionAliasesRequest
impl RefUnwindSafe for GoogleCloudAiplatformV1MergeVersionAliasesRequest
impl Send for GoogleCloudAiplatformV1MergeVersionAliasesRequest
impl Sync for GoogleCloudAiplatformV1MergeVersionAliasesRequest
impl Unpin for GoogleCloudAiplatformV1MergeVersionAliasesRequest
impl UnwindSafe for GoogleCloudAiplatformV1MergeVersionAliasesRequest
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