Class EndpointServiceGrpc.EndpointServiceBlockingStub
- java.lang.Object
-
- io.grpc.stub.AbstractStub<S>
-
- io.grpc.stub.AbstractBlockingStub<EndpointServiceGrpc.EndpointServiceBlockingStub>
-
- com.google.cloud.aiplatform.v1beta1.EndpointServiceGrpc.EndpointServiceBlockingStub
-
- Enclosing class:
- EndpointServiceGrpc
public static final class EndpointServiceGrpc.EndpointServiceBlockingStub extends io.grpc.stub.AbstractBlockingStub<EndpointServiceGrpc.EndpointServiceBlockingStub>
A stub to allow clients to do synchronous rpc calls to service EndpointService.A service for managing Vertex AI's Endpoints.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected EndpointServiceGrpc.EndpointServiceBlockingStub
build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
com.google.longrunning.Operation
createEndpoint(CreateEndpointRequest request)
Creates an Endpoint.com.google.longrunning.Operation
deleteEndpoint(DeleteEndpointRequest request)
Deletes an Endpoint.com.google.longrunning.Operation
deployModel(DeployModelRequest request)
Deploys a Model into this Endpoint, creating a DeployedModel within it.Endpoint
getEndpoint(GetEndpointRequest request)
Gets an Endpoint.ListEndpointsResponse
listEndpoints(ListEndpointsRequest request)
Lists Endpoints in a Location.com.google.longrunning.Operation
mutateDeployedModel(MutateDeployedModelRequest request)
Updates an existing deployed model.com.google.longrunning.Operation
undeployModel(UndeployModelRequest request)
Undeploys a Model from an Endpoint, removing a DeployedModel from it, and freeing all resources it's using.Endpoint
updateEndpoint(UpdateEndpointRequest request)
Updates an Endpoint.
-
-
-
Method Detail
-
build
protected EndpointServiceGrpc.EndpointServiceBlockingStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
- Specified by:
build
in classio.grpc.stub.AbstractStub<EndpointServiceGrpc.EndpointServiceBlockingStub>
-
createEndpoint
public com.google.longrunning.Operation createEndpoint(CreateEndpointRequest request)
Creates an Endpoint.
-
getEndpoint
public Endpoint getEndpoint(GetEndpointRequest request)
Gets an Endpoint.
-
listEndpoints
public ListEndpointsResponse listEndpoints(ListEndpointsRequest request)
Lists Endpoints in a Location.
-
updateEndpoint
public Endpoint updateEndpoint(UpdateEndpointRequest request)
Updates an Endpoint.
-
deleteEndpoint
public com.google.longrunning.Operation deleteEndpoint(DeleteEndpointRequest request)
Deletes an Endpoint.
-
deployModel
public com.google.longrunning.Operation deployModel(DeployModelRequest request)
Deploys a Model into this Endpoint, creating a DeployedModel within it.
-
undeployModel
public com.google.longrunning.Operation undeployModel(UndeployModelRequest request)
Undeploys a Model from an Endpoint, removing a DeployedModel from it, and freeing all resources it's using.
-
mutateDeployedModel
public com.google.longrunning.Operation mutateDeployedModel(MutateDeployedModelRequest request)
Updates an existing deployed model. Updatable fields include `min_replica_count`, `max_replica_count`, `autoscaling_metric_specs`, `disable_container_logging` (v1 only), and `enable_container_logging` (v1beta1 only).
-
-