pub struct GoogleCloudAiplatformV1beta1CreateFeatureRequest {
pub parent: Option<String>,
pub feature: Option<GoogleCloudAiplatformV1beta1Feature>,
pub feature_id: Option<String>,
}Expand description
Request message for FeaturestoreService.CreateFeature. Request message for FeatureRegistryService.CreateFeature.
This type is not used in any activity, and only used as part of another schema.
Fields§
§parent: Option<String>Required. The resource name of the EntityType or FeatureGroup to create a Feature. Format for entity_type as parent: projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type} Format for feature_group as parent: projects/{project}/locations/{location}/featureGroups/{feature_group}
feature: Option<GoogleCloudAiplatformV1beta1Feature>Required. The Feature to create.
feature_id: Option<String>Required. The ID to use for the Feature, which will become the final component of the Feature’s resource name. This value may be up to 128 characters, and valid characters are [a-z0-9_]. The first character cannot be a number. The value must be unique within an EntityType/FeatureGroup.
Trait Implementations§
Source§impl Clone for GoogleCloudAiplatformV1beta1CreateFeatureRequest
impl Clone for GoogleCloudAiplatformV1beta1CreateFeatureRequest
Source§fn clone(&self) -> GoogleCloudAiplatformV1beta1CreateFeatureRequest
fn clone(&self) -> GoogleCloudAiplatformV1beta1CreateFeatureRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GoogleCloudAiplatformV1beta1CreateFeatureRequest
impl Default for GoogleCloudAiplatformV1beta1CreateFeatureRequest
Source§fn default() -> GoogleCloudAiplatformV1beta1CreateFeatureRequest
fn default() -> GoogleCloudAiplatformV1beta1CreateFeatureRequest
Source§impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1beta1CreateFeatureRequest
impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1beta1CreateFeatureRequest
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 Part for GoogleCloudAiplatformV1beta1CreateFeatureRequest
Auto Trait Implementations§
impl Freeze for GoogleCloudAiplatformV1beta1CreateFeatureRequest
impl RefUnwindSafe for GoogleCloudAiplatformV1beta1CreateFeatureRequest
impl Send for GoogleCloudAiplatformV1beta1CreateFeatureRequest
impl Sync for GoogleCloudAiplatformV1beta1CreateFeatureRequest
impl Unpin for GoogleCloudAiplatformV1beta1CreateFeatureRequest
impl UnwindSafe for GoogleCloudAiplatformV1beta1CreateFeatureRequest
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