Package ai.vespa.hosted.cd
Interface Deployment
public interface Deployment
A deployment of a Vespa application, which contains endpoints for document retrieval.
- Author:
- jonmv
-
Method Summary
Modifier and TypeMethodDescriptionThe time at which the deployment was last updated with a new platform or application version.Returns an Endpoint in the cluster with the given id.platform()
The Vespa runtime version of the deployment, e.g., 8.16.32.long
revision()
The build number assigned to the application revision of the deployment, e.g., 496.
-
Method Details
-
endpoint
Returns an Endpoint in the cluster with the given id. -
platform
String platform()The Vespa runtime version of the deployment, e.g., 8.16.32. -
revision
long revision()The build number assigned to the application revision of the deployment, e.g., 496. -
deployedAt
Instant deployedAt()The time at which the deployment was last updated with a new platform or application version.
-