pub struct GoogleCloudAiplatformV1IndexEndpoint {Show 14 fields
pub network: Option<String>,
pub name: Option<String>,
pub enable_private_service_connect: Option<bool>,
pub labels: Option<HashMap<String, String>>,
pub create_time: Option<DateTime<Utc>>,
pub display_name: Option<String>,
pub encryption_spec: Option<GoogleCloudAiplatformV1EncryptionSpec>,
pub public_endpoint_domain_name: Option<String>,
pub update_time: Option<DateTime<Utc>>,
pub private_service_connect_config: Option<GoogleCloudAiplatformV1PrivateServiceConnectConfig>,
pub deployed_indexes: Option<Vec<GoogleCloudAiplatformV1DeployedIndex>>,
pub public_endpoint_enabled: Option<bool>,
pub description: Option<String>,
pub etag: Option<String>,
}
Expand description
Indexes are deployed into it. An IndexEndpoint can have multiple DeployedIndexes.
§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).
- locations index endpoints patch projects (request|response)
- locations index endpoints get projects (response)
- locations index endpoints create projects (request)
Fields§
§network: Option<String>
Optional. The full name of the Google Compute Engine network to which the IndexEndpoint should be peered. Private services access must already be configured for the network. If left unspecified, the Endpoint is not peered with any network. network and private_service_connect_config are mutually exclusive. Format: projects/{project}/global/networks/{network}
. Where {project} is a project number, as in ‘12345’, and {network} is network name.
name: Option<String>
Output only. The resource name of the IndexEndpoint.
enable_private_service_connect: Option<bool>
Optional. Deprecated: If true, expose the IndexEndpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.
labels: Option<HashMap<String, String>>
The labels with user-defined metadata to organize your IndexEndpoints. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information and examples of labels.
create_time: Option<DateTime<Utc>>
Output only. Timestamp when this IndexEndpoint was created.
display_name: Option<String>
Required. The display name of the IndexEndpoint. The name can be up to 128 characters long and can consist of any UTF-8 characters.
encryption_spec: Option<GoogleCloudAiplatformV1EncryptionSpec>
Immutable. Customer-managed encryption key spec for an IndexEndpoint. If set, this IndexEndpoint and all sub-resources of this IndexEndpoint will be secured by this key.
public_endpoint_domain_name: Option<String>
Output only. If public_endpoint_enabled is true, this field will be populated with the domain name to use for this index endpoint.
update_time: Option<DateTime<Utc>>
Output only. Timestamp when this IndexEndpoint was last updated. This timestamp is not updated when the endpoint’s DeployedIndexes are updated, e.g. due to updates of the original Indexes they are the deployments of.
private_service_connect_config: Option<GoogleCloudAiplatformV1PrivateServiceConnectConfig>
Optional. Configuration for private service connect. network and private_service_connect_config are mutually exclusive.
deployed_indexes: Option<Vec<GoogleCloudAiplatformV1DeployedIndex>>
Output only. The indexes deployed in this endpoint.
public_endpoint_enabled: Option<bool>
Optional. If true, the deployed index will be accessible through public endpoint.
description: Option<String>
The description of the IndexEndpoint.
etag: Option<String>
Used to perform consistent read-modify-write updates. If not set, a blind “overwrite” update happens.
Trait Implementations§
Source§impl Clone for GoogleCloudAiplatformV1IndexEndpoint
impl Clone for GoogleCloudAiplatformV1IndexEndpoint
Source§fn clone(&self) -> GoogleCloudAiplatformV1IndexEndpoint
fn clone(&self) -> GoogleCloudAiplatformV1IndexEndpoint
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for GoogleCloudAiplatformV1IndexEndpoint
impl Default for GoogleCloudAiplatformV1IndexEndpoint
Source§fn default() -> GoogleCloudAiplatformV1IndexEndpoint
fn default() -> GoogleCloudAiplatformV1IndexEndpoint
Source§impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1IndexEndpoint
impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1IndexEndpoint
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 GoogleCloudAiplatformV1IndexEndpoint
impl ResponseResult for GoogleCloudAiplatformV1IndexEndpoint
Auto Trait Implementations§
impl Freeze for GoogleCloudAiplatformV1IndexEndpoint
impl RefUnwindSafe for GoogleCloudAiplatformV1IndexEndpoint
impl Send for GoogleCloudAiplatformV1IndexEndpoint
impl Sync for GoogleCloudAiplatformV1IndexEndpoint
impl Unpin for GoogleCloudAiplatformV1IndexEndpoint
impl UnwindSafe for GoogleCloudAiplatformV1IndexEndpoint
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