Class DeployedModel (2.0.0)

public sealed class DeployedModel : IMessage<DeployedModel>, IEquatable<DeployedModel>, IDeepCloneable<DeployedModel>, IBufferMessage, IMessage

A deployment of a Model. Endpoints contain one or more DeployedModels.

Inheritance

Object > DeployedModel

Namespace

Google.Cloud.AIPlatform.V1

Assembly

Google.Cloud.AIPlatform.V1.dll

Constructors

DeployedModel()

public DeployedModel()

DeployedModel(DeployedModel)

public DeployedModel(DeployedModel other)
Parameter
NameDescription
otherDeployedModel

Properties

AutomaticResources

public AutomaticResources AutomaticResources { get; set; }

A description of resources that to large degree are decided by Vertex AI, and require only a modest additional configuration.

Property Value
TypeDescription
AutomaticResources

CreateTime

public Timestamp CreateTime { get; set; }

Output only. Timestamp when the DeployedModel was created.

Property Value
TypeDescription
Timestamp

DedicatedResources

public DedicatedResources DedicatedResources { get; set; }

A description of resources that are dedicated to the DeployedModel, and that need a higher degree of manual configuration.

Property Value
TypeDescription
DedicatedResources

DisableContainerLogging

public bool DisableContainerLogging { get; set; }

For custom-trained Models and AutoML Tabular Models, the container of the DeployedModel instances will send stderr and stdout streams to Stackdriver Logging by default. Please note that the logs incur cost, which are subject to Cloud Logging pricing.

User can disable container logging by setting this flag to true.

Property Value
TypeDescription
Boolean

DisplayName

public string DisplayName { get; set; }

The display name of the DeployedModel. If not provided upon creation, the Model's display_name is used.

Property Value
TypeDescription
String

EnableAccessLogging

public bool EnableAccessLogging { get; set; }

These logs are like standard server access logs, containing information like timestamp and latency for each prediction request.

Note that Stackdriver logs may incur a cost, especially if your project receives prediction requests at a high queries per second rate (QPS). Estimate your costs before enabling this option.

Property Value
TypeDescription
Boolean

ExplanationSpec

public ExplanationSpec ExplanationSpec { get; set; }

Explanation configuration for this DeployedModel.

When deploying a Model using [EndpointService.DeployModel][google.cloud.aiplatform.v1.EndpointService.DeployModel], this value overrides the value of [Model.explanation_spec][google.cloud.aiplatform.v1.Model.explanation_spec]. All fields of [explanation_spec][google.cloud.aiplatform.v1.DeployedModel.explanation_spec] are optional in the request. If a field of [explanation_spec][google.cloud.aiplatform.v1.DeployedModel.explanation_spec] is not populated, the value of the same field of [Model.explanation_spec][google.cloud.aiplatform.v1.Model.explanation_spec] is inherited. If the corresponding [Model.explanation_spec][google.cloud.aiplatform.v1.Model.explanation_spec] is not populated, all fields of the [explanation_spec][google.cloud.aiplatform.v1.DeployedModel.explanation_spec] will be used for the explanation configuration.

Property Value
TypeDescription
ExplanationSpec

Id

public string Id { get; set; }

Immutable. The ID of the DeployedModel. If not provided upon deployment, Vertex AI will generate a value for this ID.

This value should be 1-10 characters, and valid characters are /[0-9]/.

Property Value
TypeDescription
String

Model

public string Model { get; set; }

Required. The resource name of the Model that this is the deployment of. Note that the Model may be in a different location than the DeployedModel's Endpoint.

Property Value
TypeDescription
String

ModelAsModelName

public ModelName ModelAsModelName { get; set; }

ModelName-typed view over the Model resource name property.

Property Value
TypeDescription
ModelName

PredictionResourcesCase

public DeployedModel.PredictionResourcesOneofCase PredictionResourcesCase { get; }
Property Value
TypeDescription
DeployedModel.PredictionResourcesOneofCase

PrivateEndpoints

public PrivateEndpoints PrivateEndpoints { get; set; }

Output only. Provide paths for users to send predict/explain/health requests directly to the deployed model services running on Cloud via private services access. This field is populated if [network][google.cloud.aiplatform.v1.Endpoint.network] is configured.

Property Value
TypeDescription
PrivateEndpoints

ServiceAccount

public string ServiceAccount { get; set; }

The service account that the DeployedModel's container runs as. Specify the email address of the service account. If this service account is not specified, the container runs as a service account that doesn't have access to the resource project.

Users deploying the Model must have the iam.serviceAccounts.actAs permission on this service account.

Property Value
TypeDescription
String