import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Gets an Endpoint. */ export declare function getEndpoint(args: GetEndpointArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetEndpointArgs { endpointId: string; location: string; project?: string; } export interface GetEndpointResult { /** * Timestamp when this Endpoint was created. */ readonly createTime: string; /** * The models deployed in this Endpoint. To add or remove DeployedModels use EndpointService.DeployModel and EndpointService.UndeployModel respectively. */ readonly deployedModels: outputs.aiplatform.v1beta1.GoogleCloudAiplatformV1beta1DeployedModelResponse[]; /** * The description of the Endpoint. */ readonly description: string; /** * The display name of the Endpoint. The name can be up to 128 characters long and can consist of any UTF-8 characters. */ readonly displayName: string; /** * Deprecated: If true, expose the Endpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set. * * @deprecated Deprecated: If true, expose the Endpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set. */ readonly enablePrivateServiceConnect: boolean; /** * Customer-managed encryption key spec for an Endpoint. If set, this Endpoint and all sub-resources of this Endpoint will be secured by this key. */ readonly encryptionSpec: outputs.aiplatform.v1beta1.GoogleCloudAiplatformV1beta1EncryptionSpecResponse; /** * Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */ readonly etag: string; /** * The labels with user-defined metadata to organize your Endpoints. 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. */ readonly labels: { [key: string]: string; }; /** * Resource name of the Model Monitoring job associated with this Endpoint if monitoring is enabled by JobService.CreateModelDeploymentMonitoringJob. Format: `projects/{project}/locations/{location}/modelDeploymentMonitoringJobs/{model_deployment_monitoring_job}` */ readonly modelDeploymentMonitoringJob: string; /** * The resource name of the Endpoint. */ readonly name: string; /** * Optional. The full name of the Google Compute Engine [network](https://cloud.google.com//compute/docs/networks-and-firewalls#networks) to which the Endpoint should be peered. Private services access must already be configured for the network. If left unspecified, the Endpoint is not peered with any network. Only one of the fields, network or enable_private_service_connect, can be set. [Format](https://cloud.google.com/compute/docs/reference/rest/v1/networks/insert): `projects/{project}/global/networks/{network}`. Where `{project}` is a project number, as in `12345`, and `{network}` is network name. */ readonly network: string; /** * Configures the request-response logging for online prediction. */ readonly predictRequestResponseLoggingConfig: outputs.aiplatform.v1beta1.GoogleCloudAiplatformV1beta1PredictRequestResponseLoggingConfigResponse; /** * A map from a DeployedModel's ID to the percentage of this Endpoint's traffic that should be forwarded to that DeployedModel. If a DeployedModel's ID is not listed in this map, then it receives no traffic. The traffic percentage values must add up to 100, or map must be empty if the Endpoint is to not accept any traffic at a moment. */ readonly trafficSplit: { [key: string]: string; }; /** * Timestamp when this Endpoint was last updated. */ readonly updateTime: string; } /** * Gets an Endpoint. */ export declare function getEndpointOutput(args: GetEndpointOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetEndpointOutputArgs { endpointId: pulumi.Input; location: pulumi.Input; project?: pulumi.Input; }