Package com.google.cloud.gsuiteaddons.v1
Class GSuiteAddOnsGrpc.GSuiteAddOnsBlockingStub
- java.lang.Object
-
- io.grpc.stub.AbstractStub<S>
-
- io.grpc.stub.AbstractBlockingStub<GSuiteAddOnsGrpc.GSuiteAddOnsBlockingStub>
-
- com.google.cloud.gsuiteaddons.v1.GSuiteAddOnsGrpc.GSuiteAddOnsBlockingStub
-
- Enclosing class:
- GSuiteAddOnsGrpc
public static final class GSuiteAddOnsGrpc.GSuiteAddOnsBlockingStub extends io.grpc.stub.AbstractBlockingStub<GSuiteAddOnsGrpc.GSuiteAddOnsBlockingStub>
A stub to allow clients to do synchronous rpc calls to service GSuiteAddOns.A 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 Concrete Methods Modifier and Type Method Description protected GSuiteAddOnsGrpc.GSuiteAddOnsBlockingStub
build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
Deployment
createDeployment(CreateDeploymentRequest request)
Creates a deployment with the specified name and configuration.com.google.protobuf.Empty
deleteDeployment(DeleteDeploymentRequest request)
Deletes the deployment with the given name.Authorization
getAuthorization(GetAuthorizationRequest request)
Gets the authorization information for deployments in a given project.Deployment
getDeployment(GetDeploymentRequest request)
Gets the deployment with the specified name.InstallStatus
getInstallStatus(GetInstallStatusRequest request)
Fetches the install status of a developer mode deployment.com.google.protobuf.Empty
installDeployment(InstallDeploymentRequest request)
Installs a deployment in developer mode.ListDeploymentsResponse
listDeployments(ListDeploymentsRequest request)
Lists all deployments in a particular project.Deployment
replaceDeployment(ReplaceDeploymentRequest request)
Creates or replaces a deployment with the specified name.com.google.protobuf.Empty
uninstallDeployment(UninstallDeploymentRequest request)
Uninstalls a developer mode deployment.
-
-
-
Method Detail
-
build
protected GSuiteAddOnsGrpc.GSuiteAddOnsBlockingStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
- Specified by:
build
in classio.grpc.stub.AbstractStub<GSuiteAddOnsGrpc.GSuiteAddOnsBlockingStub>
-
getAuthorization
public Authorization getAuthorization(GetAuthorizationRequest request)
Gets the authorization information for deployments in a given project.
-
createDeployment
public Deployment createDeployment(CreateDeploymentRequest request)
Creates a deployment with the specified name and configuration.
-
replaceDeployment
public Deployment replaceDeployment(ReplaceDeploymentRequest request)
Creates or replaces a deployment with the specified name.
-
getDeployment
public Deployment getDeployment(GetDeploymentRequest request)
Gets the deployment with the specified name.
-
listDeployments
public ListDeploymentsResponse listDeployments(ListDeploymentsRequest request)
Lists all deployments in a particular project.
-
deleteDeployment
public com.google.protobuf.Empty deleteDeployment(DeleteDeploymentRequest request)
Deletes the deployment with the given name.
-
installDeployment
public com.google.protobuf.Empty installDeployment(InstallDeploymentRequest request)
Installs a deployment in developer mode. See: https://developers.google.com/gsuite/add-ons/how-tos/testing-gsuite-addons.
-
uninstallDeployment
public com.google.protobuf.Empty uninstallDeployment(UninstallDeploymentRequest request)
Uninstalls a developer mode deployment. See: https://developers.google.com/gsuite/add-ons/how-tos/testing-gsuite-addons.
-
getInstallStatus
public InstallStatus getInstallStatus(GetInstallStatusRequest request)
Fetches the install status of a developer mode deployment.
-
-