Struct google_api_proto::google::cloud::aiplatform::v1beta1::IndexEndpoint
source · pub struct IndexEndpoint {Show 16 fields
pub name: String,
pub display_name: String,
pub description: String,
pub deployed_indexes: Vec<DeployedIndex>,
pub etag: String,
pub labels: BTreeMap<String, String>,
pub create_time: Option<Timestamp>,
pub update_time: Option<Timestamp>,
pub network: String,
pub enable_private_service_connect: bool,
pub private_service_connect_config: Option<PrivateServiceConnectConfig>,
pub public_endpoint_enabled: bool,
pub public_endpoint_domain_name: String,
pub encryption_spec: Option<EncryptionSpec>,
pub satisfies_pzs: bool,
pub satisfies_pzi: bool,
}
Expand description
Indexes are deployed into it. An IndexEndpoint can have multiple DeployedIndexes.
Fields§
§name: String
Output only. The resource name of the IndexEndpoint.
display_name: 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.
description: String
The description of the IndexEndpoint.
deployed_indexes: Vec<DeployedIndex>
Output only. The indexes deployed in this endpoint.
etag: String
Used to perform consistent read-modify-write updates. If not set, a blind “overwrite” update happens.
labels: BTreeMap<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<Timestamp>
Output only. Timestamp when this IndexEndpoint was created.
update_time: Option<Timestamp>
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.
network: 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][google.cloud.aiplatform.v1beta1.IndexEndpoint.network] and [private_service_connect_config][google.cloud.aiplatform.v1beta1.IndexEndpoint.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.
enable_private_service_connect: bool
Optional. Deprecated: If true, expose the IndexEndpoint via private service connect.
Only one of the fields, [network][google.cloud.aiplatform.v1beta1.IndexEndpoint.network] or [enable_private_service_connect][google.cloud.aiplatform.v1beta1.IndexEndpoint.enable_private_service_connect], can be set.
private_service_connect_config: Option<PrivateServiceConnectConfig>
Optional. Configuration for private service connect.
[network][google.cloud.aiplatform.v1beta1.IndexEndpoint.network] and [private_service_connect_config][google.cloud.aiplatform.v1beta1.IndexEndpoint.private_service_connect_config] are mutually exclusive.
public_endpoint_enabled: bool
Optional. If true, the deployed index will be accessible through public endpoint.
public_endpoint_domain_name: String
Output only. If [public_endpoint_enabled][google.cloud.aiplatform.v1beta1.IndexEndpoint.public_endpoint_enabled] is true, this field will be populated with the domain name to use for this index endpoint.
encryption_spec: Option<EncryptionSpec>
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.
satisfies_pzs: bool
Output only. Reserved for future use.
satisfies_pzi: bool
Output only. Reserved for future use.
Trait Implementations§
source§impl Clone for IndexEndpoint
impl Clone for IndexEndpoint
source§fn clone(&self) -> IndexEndpoint
fn clone(&self) -> IndexEndpoint
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for IndexEndpoint
impl Debug for IndexEndpoint
source§impl Default for IndexEndpoint
impl Default for IndexEndpoint
source§impl Message for IndexEndpoint
impl Message for IndexEndpoint
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for IndexEndpoint
impl PartialEq for IndexEndpoint
source§fn eq(&self, other: &IndexEndpoint) -> bool
fn eq(&self, other: &IndexEndpoint) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for IndexEndpoint
Auto Trait Implementations§
impl Freeze for IndexEndpoint
impl RefUnwindSafe for IndexEndpoint
impl Send for IndexEndpoint
impl Sync for IndexEndpoint
impl Unpin for IndexEndpoint
impl UnwindSafe for IndexEndpoint
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request