Package com.google.cloud.gsuiteaddons.v1
Interface GSuiteAddOnsGrpc.AsyncService
-
- All Known Implementing Classes:
GSuiteAddOnsGrpc.GSuiteAddOnsImplBase
- Enclosing class:
- GSuiteAddOnsGrpc
public static interface GSuiteAddOnsGrpc.AsyncServiceA service for managing Google Workspace Add-ons deployments. A Google Workspace Add-on is a third-party embedded component that can be installed in Google Workspace Applications like Gmail, Calendar, Drive, and the Google Docs, Sheets, and Slides editors. Google Workspace Add-ons can display UI cards, receive contextual information from the host application, and perform actions in the host application (See: https://developers.google.com/gsuite/add-ons/overview for more information). A Google Workspace Add-on deployment resource specifies metadata about the add-on, including a specification of the entry points in the host application that trigger add-on executions (see: https://developers.google.com/gsuite/add-ons/concepts/gsuite-manifests). Add-on deployments defined via the Google Workspace Add-ons API define their entrypoints using HTTPS URLs (See: https://developers.google.com/gsuite/add-ons/guides/alternate-runtimes), A Google Workspace Add-on deployment can be installed in developer mode, which allows an add-on developer to test the experience an end-user would see when installing and running the add-on in their G Suite applications. When running in developer mode, more detailed error messages are exposed in the add-on UI to aid in debugging. A Google Workspace Add-on deployment can be published to Google Workspace Marketplace, which allows other Google Workspace users to discover and install the add-on. See: https://developers.google.com/gsuite/add-ons/how-tos/publish-add-on-overview for details.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default voidcreateDeployment(CreateDeploymentRequest request, io.grpc.stub.StreamObserver<Deployment> responseObserver)Creates a deployment with the specified name and configuration.default voiddeleteDeployment(DeleteDeploymentRequest request, io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)Deletes the deployment with the given name.default voidgetAuthorization(GetAuthorizationRequest request, io.grpc.stub.StreamObserver<Authorization> responseObserver)Gets the authorization information for deployments in a given project.default voidgetDeployment(GetDeploymentRequest request, io.grpc.stub.StreamObserver<Deployment> responseObserver)Gets the deployment with the specified name.default voidgetInstallStatus(GetInstallStatusRequest request, io.grpc.stub.StreamObserver<InstallStatus> responseObserver)Fetches the install status of a developer mode deployment.default voidinstallDeployment(InstallDeploymentRequest request, io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)Installs a deployment in developer mode.default voidlistDeployments(ListDeploymentsRequest request, io.grpc.stub.StreamObserver<ListDeploymentsResponse> responseObserver)Lists all deployments in a particular project.default voidreplaceDeployment(ReplaceDeploymentRequest request, io.grpc.stub.StreamObserver<Deployment> responseObserver)Creates or replaces a deployment with the specified name.default voiduninstallDeployment(UninstallDeploymentRequest request, io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)Uninstalls a developer mode deployment.
-
-
-
Method Detail
-
getAuthorization
default void getAuthorization(GetAuthorizationRequest request, io.grpc.stub.StreamObserver<Authorization> responseObserver)
Gets the authorization information for deployments in a given project.
-
createDeployment
default void createDeployment(CreateDeploymentRequest request, io.grpc.stub.StreamObserver<Deployment> responseObserver)
Creates a deployment with the specified name and configuration.
-
replaceDeployment
default void replaceDeployment(ReplaceDeploymentRequest request, io.grpc.stub.StreamObserver<Deployment> responseObserver)
Creates or replaces a deployment with the specified name.
-
getDeployment
default void getDeployment(GetDeploymentRequest request, io.grpc.stub.StreamObserver<Deployment> responseObserver)
Gets the deployment with the specified name.
-
listDeployments
default void listDeployments(ListDeploymentsRequest request, io.grpc.stub.StreamObserver<ListDeploymentsResponse> responseObserver)
Lists all deployments in a particular project.
-
deleteDeployment
default void deleteDeployment(DeleteDeploymentRequest request, io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
Deletes the deployment with the given name.
-
installDeployment
default void installDeployment(InstallDeploymentRequest request, io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
Installs a deployment in developer mode. See: https://developers.google.com/gsuite/add-ons/how-tos/testing-gsuite-addons.
-
uninstallDeployment
default void uninstallDeployment(UninstallDeploymentRequest request, io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
Uninstalls a developer mode deployment. See: https://developers.google.com/gsuite/add-ons/how-tos/testing-gsuite-addons.
-
getInstallStatus
default void getInstallStatus(GetInstallStatusRequest request, io.grpc.stub.StreamObserver<InstallStatus> responseObserver)
Fetches the install status of a developer mode deployment.
-
-