pub struct GoogleCloudAiplatformV1DeployedModel {Show 14 fields
pub shared_resources: Option<String>,
pub create_time: Option<DateTime<Utc>>,
pub explanation_spec: Option<GoogleCloudAiplatformV1ExplanationSpec>,
pub disable_explanations: Option<bool>,
pub enable_access_logging: Option<bool>,
pub model_version_id: Option<String>,
pub disable_container_logging: Option<bool>,
pub model: Option<String>,
pub id: Option<String>,
pub display_name: Option<String>,
pub automatic_resources: Option<GoogleCloudAiplatformV1AutomaticResources>,
pub service_account: Option<String>,
pub dedicated_resources: Option<GoogleCloudAiplatformV1DedicatedResources>,
pub private_endpoints: Option<GoogleCloudAiplatformV1PrivateEndpoints>,
}Expand description
A deployment of a Model. Endpoints contain one or more DeployedModels.
This type is not used in any activity, and only used as part of another schema.
Fields§
The resource name of the shared DeploymentResourcePool to deploy on. Format: projects/{project}/locations/{location}/deploymentResourcePools/{deployment_resource_pool}
create_time: Option<DateTime<Utc>>Output only. Timestamp when the DeployedModel was created.
explanation_spec: Option<GoogleCloudAiplatformV1ExplanationSpec>Explanation configuration for this DeployedModel. When deploying a Model using EndpointService.DeployModel, this value overrides the value of Model.explanation_spec. All fields of explanation_spec are optional in the request. If a field of explanation_spec is not populated, the value of the same field of Model.explanation_spec is inherited. If the corresponding Model.explanation_spec is not populated, all fields of the explanation_spec will be used for the explanation configuration.
disable_explanations: Option<bool>If true, deploy the model without explainable feature, regardless the existence of Model.explanation_spec or explanation_spec.
enable_access_logging: Option<bool>If true, online prediction access logs are sent to Cloud Logging. These logs are like standard server access logs, containing information like timestamp and latency for each prediction request. Note that 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.
model_version_id: Option<String>Output only. The version ID of the model that is deployed.
disable_container_logging: Option<bool>For custom-trained Models and AutoML Tabular Models, the container of the DeployedModel instances will send stderr and stdout streams to Cloud 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.
model: Option<String>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. The resource name may contain version id or version alias to specify the version. Example: projects/{project}/locations/{location}/models/{model}@2 or projects/{project}/locations/{location}/models/{model}@golden if no version is specified, the default version will be deployed.
id: Option<String>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]/.
display_name: Option<String>The display name of the DeployedModel. If not provided upon creation, the Model’s display_name is used.
automatic_resources: Option<GoogleCloudAiplatformV1AutomaticResources>A description of resources that to large degree are decided by Vertex AI, and require only a modest additional configuration.
service_account: Option<String>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.
dedicated_resources: Option<GoogleCloudAiplatformV1DedicatedResources>A description of resources that are dedicated to the DeployedModel, and that need a higher degree of manual configuration.
private_endpoints: Option<GoogleCloudAiplatformV1PrivateEndpoints>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 is configured.
Trait Implementations§
Source§impl Clone for GoogleCloudAiplatformV1DeployedModel
impl Clone for GoogleCloudAiplatformV1DeployedModel
Source§fn clone(&self) -> GoogleCloudAiplatformV1DeployedModel
fn clone(&self) -> GoogleCloudAiplatformV1DeployedModel
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GoogleCloudAiplatformV1DeployedModel
impl Default for GoogleCloudAiplatformV1DeployedModel
Source§fn default() -> GoogleCloudAiplatformV1DeployedModel
fn default() -> GoogleCloudAiplatformV1DeployedModel
Source§impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1DeployedModel
impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1DeployedModel
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 GoogleCloudAiplatformV1DeployedModel
Auto Trait Implementations§
impl Freeze for GoogleCloudAiplatformV1DeployedModel
impl RefUnwindSafe for GoogleCloudAiplatformV1DeployedModel
impl Send for GoogleCloudAiplatformV1DeployedModel
impl Sync for GoogleCloudAiplatformV1DeployedModel
impl Unpin for GoogleCloudAiplatformV1DeployedModel
impl UnwindSafe for GoogleCloudAiplatformV1DeployedModel
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