- 3.10.0 (latest)
- 3.9.0
- 3.8.0
- 3.7.0
- 3.6.0
- 3.5.0
- 3.4.0
- 3.3.0
- 3.2.0
- 3.1.0
- 3.0.0
- 2.28.0
- 2.27.0
- 2.26.0
- 2.25.0
- 2.24.0
- 2.23.0
- 2.22.0
- 2.21.0
- 2.20.0
- 2.19.0
- 2.18.0
- 2.17.0
- 2.16.0
- 2.15.0
- 2.14.0
- 2.13.0
- 2.12.0
- 2.11.0
- 2.10.0
- 2.9.0
- 2.8.0
- 2.7.0
- 2.6.0
- 2.5.0
- 2.4.0
- 2.3.0
- 2.2.0
- 2.1.0
- 2.0.0
- 1.8.0
- 1.7.0
- 1.6.0
- 1.5.0
- 1.4.0
- 1.3.0
- 1.2.0
- 1.1.0
- 1.0.0
public sealed class DeployedIndex : IMessage<DeployedIndex>, IEquatable<DeployedIndex>, IDeepCloneable<DeployedIndex>, IBufferMessage, IMessage
Reference documentation and code samples for the Cloud AI Platform v1 API class DeployedIndex.
A deployment of an Index. IndexEndpoints contain one or more DeployedIndexes.
Implements
IMessageDeployedIndex, IEquatableDeployedIndex, IDeepCloneableDeployedIndex, IBufferMessage, IMessageNamespace
Google.Cloud.AIPlatform.V1Assembly
Google.Cloud.AIPlatform.V1.dll
Constructors
DeployedIndex()
public DeployedIndex()
DeployedIndex(DeployedIndex)
public DeployedIndex(DeployedIndex other)
Parameter | |
---|---|
Name | Description |
other |
DeployedIndex |
Properties
AutomaticResources
public AutomaticResources AutomaticResources { get; set; }
Optional. A description of resources that the DeployedIndex uses, which to large degree are decided by Vertex AI, and optionally allows only a modest additional configuration. If min_replica_count is not set, the default value is 2 (we don't provide SLA when min_replica_count=1). If max_replica_count is not set, the default value is min_replica_count. The max allowed replica count is 1000.
Property Value | |
---|---|
Type | Description |
AutomaticResources |
CreateTime
public Timestamp CreateTime { get; set; }
Output only. Timestamp when the DeployedIndex was created.
Property Value | |
---|---|
Type | Description |
Timestamp |
DedicatedResources
public DedicatedResources DedicatedResources { get; set; }
Optional. A description of resources that are dedicated to the DeployedIndex, and that need a higher degree of manual configuration. The field min_replica_count must be set to a value strictly greater than 0, or else validation will fail. We don't provide SLA when min_replica_count=1. If max_replica_count is not set, the default value is min_replica_count. The max allowed replica count is 1000.
Available machine types for SMALL shard: e2-standard-2 and all machine types available for MEDIUM and LARGE shard.
Available machine types for MEDIUM shard: e2-standard-16 and all machine types available for LARGE shard.
Available machine types for LARGE shard: e2-highmem-16, n2d-standard-32.
n1-standard-16 and n1-standard-32 are still available, but we recommend e2-standard-16 and e2-highmem-16 for cost efficiency.
Property Value | |
---|---|
Type | Description |
DedicatedResources |
DeployedIndexAuthConfig
public DeployedIndexAuthConfig DeployedIndexAuthConfig { get; set; }
Optional. If set, the authentication is enabled for the private endpoint.
Property Value | |
---|---|
Type | Description |
DeployedIndexAuthConfig |
DeploymentGroup
public string DeploymentGroup { get; set; }
Optional. The deployment group can be no longer than 64 characters (eg: 'test', 'prod'). If not set, we will use the 'default' deployment group.
Creating deployment_groups
with reserved_ip_ranges
is a recommended
practice when the peered network has multiple peering ranges. This creates
your deployments from predictable IP spaces for easier traffic
administration. Also, one deployment_group (except 'default') can only be
used with the same reserved_ip_ranges which means if the deployment_group
has been used with reserved_ip_ranges: [a, b, c], using it with [a, b] or
[d, e] is disallowed.
Note: we only support up to 5 deployment groups(not including 'default').
Property Value | |
---|---|
Type | Description |
string |
DisplayName
public string DisplayName { get; set; }
The display name of the DeployedIndex. If not provided upon creation, the Index's display_name is used.
Property Value | |
---|---|
Type | Description |
string |
EnableAccessLogging
public bool EnableAccessLogging { get; set; }
Optional. If true, private endpoint's access logs are sent to Cloud Logging.
These logs are like standard server access logs, containing information like timestamp and latency for each MatchRequest.
Note that logs may incur a cost, especially if the deployed index receives a high queries per second rate (QPS). Estimate your costs before enabling this option.
Property Value | |
---|---|
Type | Description |
bool |
Id
public string Id { get; set; }
Required. The user specified ID of the DeployedIndex. The ID can be up to 128 characters long and must start with a letter and only contain letters, numbers, and underscores. The ID must be unique within the project it is created in.
Property Value | |
---|---|
Type | Description |
string |
Index
public string Index { get; set; }
Required. The name of the Index this is the deployment of. We may refer to this Index as the DeployedIndex's "original" Index.
Property Value | |
---|---|
Type | Description |
string |
IndexAsIndexName
public IndexName IndexAsIndexName { get; set; }
Property Value | |
---|---|
Type | Description |
IndexName |
IndexSyncTime
public Timestamp IndexSyncTime { get; set; }
Output only. The DeployedIndex may depend on various data on its original Index. Additionally when certain changes to the original Index are being done (e.g. when what the Index contains is being changed) the DeployedIndex may be asynchronously updated in the background to reflect these changes. If this timestamp's value is at least the [Index.update_time][google.cloud.aiplatform.v1.Index.update_time] of the original Index, it means that this DeployedIndex and the original Index are in sync. If this timestamp is older, then to see which updates this DeployedIndex already contains (and which it does not), one must [list][google.longrunning.Operations.ListOperations] the operations that are running on the original Index. Only the successfully completed Operations with [update_time][google.cloud.aiplatform.v1.GenericOperationMetadata.update_time] equal or before this sync time are contained in this DeployedIndex.
Property Value | |
---|---|
Type | Description |
Timestamp |
PrivateEndpoints
public IndexPrivateEndpoints PrivateEndpoints { get; set; }
Output only. Provides paths for users to send requests directly to the deployed index services running on Cloud via private services access. This field is populated if [network][google.cloud.aiplatform.v1.IndexEndpoint.network] is configured.
Property Value | |
---|---|
Type | Description |
IndexPrivateEndpoints |
ReservedIpRanges
public RepeatedField<string> ReservedIpRanges { get; }
Optional. A list of reserved ip ranges under the VPC network that can be used for this DeployedIndex.
If set, we will deploy the index within the provided ip ranges. Otherwise, the index might be deployed to any ip ranges under the provided VPC network.
The value should be the name of the address (https://cloud.google.com/compute/docs/reference/rest/v1/addresses) Example: ['vertex-ai-ip-range'].
For more information about subnets and network IP ranges, please see https://cloud.google.com/vpc/docs/subnets#manually_created_subnet_ip_ranges.
Property Value | |
---|---|
Type | Description |
RepeatedFieldstring |