[BindServiceMethod(typeof(RegistrationService), "BindService")]
public abstract class RegistrationServiceBase
Base class for server-side implementations of RegistrationService
Namespace
Google.Cloud.ServiceDirectory.V1Assembly
Google.Cloud.ServiceDirectory.V1.dll
Methods
CreateEndpoint(CreateEndpointRequest, ServerCallContext)
public virtual Task<Endpoint> CreateEndpoint(CreateEndpointRequest request, ServerCallContext context)
Creates a endpoint, and returns the new Endpoint.
Parameters | |
---|---|
Name | Description |
request | CreateEndpointRequest The request received from the client. |
context | ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
Task<Endpoint> | The response to send back to the client (wrapped by a task). |
CreateNamespace(CreateNamespaceRequest, ServerCallContext)
public virtual Task<Namespace> CreateNamespace(CreateNamespaceRequest request, ServerCallContext context)
Creates a namespace, and returns the new Namespace.
Parameters | |
---|---|
Name | Description |
request | CreateNamespaceRequest The request received from the client. |
context | ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
Task<Namespace> | The response to send back to the client (wrapped by a task). |
CreateService(CreateServiceRequest, ServerCallContext)
public virtual Task<Service> CreateService(CreateServiceRequest request, ServerCallContext context)
Creates a service, and returns the new Service.
Parameters | |
---|---|
Name | Description |
request | CreateServiceRequest The request received from the client. |
context | ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
Task<Service> | The response to send back to the client (wrapped by a task). |
DeleteEndpoint(DeleteEndpointRequest, ServerCallContext)
public virtual Task<Empty> DeleteEndpoint(DeleteEndpointRequest request, ServerCallContext context)
Deletes a endpoint.
Parameters | |
---|---|
Name | Description |
request | DeleteEndpointRequest The request received from the client. |
context | ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
Task<Empty> | The response to send back to the client (wrapped by a task). |
DeleteNamespace(DeleteNamespaceRequest, ServerCallContext)
public virtual Task<Empty> DeleteNamespace(DeleteNamespaceRequest request, ServerCallContext context)
Deletes a namespace. This also deletes all services and endpoints in the namespace.
Parameters | |
---|---|
Name | Description |
request | DeleteNamespaceRequest The request received from the client. |
context | ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
Task<Empty> | The response to send back to the client (wrapped by a task). |
DeleteService(DeleteServiceRequest, ServerCallContext)
public virtual Task<Empty> DeleteService(DeleteServiceRequest request, ServerCallContext context)
Deletes a service. This also deletes all endpoints associated with the service.
Parameters | |
---|---|
Name | Description |
request | DeleteServiceRequest The request received from the client. |
context | ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
Task<Empty> | The response to send back to the client (wrapped by a task). |
GetEndpoint(GetEndpointRequest, ServerCallContext)
public virtual Task<Endpoint> GetEndpoint(GetEndpointRequest request, ServerCallContext context)
Gets a endpoint.
Parameters | |
---|---|
Name | Description |
request | GetEndpointRequest The request received from the client. |
context | ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
Task<Endpoint> | The response to send back to the client (wrapped by a task). |
GetIamPolicy(GetIamPolicyRequest, ServerCallContext)
public virtual Task<Policy> GetIamPolicy(GetIamPolicyRequest request, ServerCallContext context)
Gets the IAM Policy for a resource (namespace or service only).
Parameters | |
---|---|
Name | Description |
request | GetIamPolicyRequest The request received from the client. |
context | ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
Task<Policy> | The response to send back to the client (wrapped by a task). |
GetNamespace(GetNamespaceRequest, ServerCallContext)
public virtual Task<Namespace> GetNamespace(GetNamespaceRequest request, ServerCallContext context)
Gets a namespace.
Parameters | |
---|---|
Name | Description |
request | GetNamespaceRequest The request received from the client. |
context | ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
Task<Namespace> | The response to send back to the client (wrapped by a task). |
GetService(GetServiceRequest, ServerCallContext)
public virtual Task<Service> GetService(GetServiceRequest request, ServerCallContext context)
Gets a service.
Parameters | |
---|---|
Name | Description |
request | GetServiceRequest The request received from the client. |
context | ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
Task<Service> | The response to send back to the client (wrapped by a task). |
ListEndpoints(ListEndpointsRequest, ServerCallContext)
public virtual Task<ListEndpointsResponse> ListEndpoints(ListEndpointsRequest request, ServerCallContext context)
Lists all endpoints.
Parameters | |
---|---|
Name | Description |
request | ListEndpointsRequest The request received from the client. |
context | ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
Task<ListEndpointsResponse> | The response to send back to the client (wrapped by a task). |
ListNamespaces(ListNamespacesRequest, ServerCallContext)
public virtual Task<ListNamespacesResponse> ListNamespaces(ListNamespacesRequest request, ServerCallContext context)
Lists all namespaces.
Parameters | |
---|---|
Name | Description |
request | ListNamespacesRequest The request received from the client. |
context | ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
Task<ListNamespacesResponse> | The response to send back to the client (wrapped by a task). |
ListServices(ListServicesRequest, ServerCallContext)
public virtual Task<ListServicesResponse> ListServices(ListServicesRequest request, ServerCallContext context)
Lists all services belonging to a namespace.
Parameters | |
---|---|
Name | Description |
request | ListServicesRequest The request received from the client. |
context | ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
Task<ListServicesResponse> | The response to send back to the client (wrapped by a task). |
SetIamPolicy(SetIamPolicyRequest, ServerCallContext)
public virtual Task<Policy> SetIamPolicy(SetIamPolicyRequest request, ServerCallContext context)
Sets the IAM Policy for a resource (namespace or service only).
Parameters | |
---|---|
Name | Description |
request | SetIamPolicyRequest The request received from the client. |
context | ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
Task<Policy> | The response to send back to the client (wrapped by a task). |
TestIamPermissions(TestIamPermissionsRequest, ServerCallContext)
public virtual Task<TestIamPermissionsResponse> TestIamPermissions(TestIamPermissionsRequest request, ServerCallContext context)
Tests IAM permissions for a resource (namespace or service only).
Parameters | |
---|---|
Name | Description |
request | TestIamPermissionsRequest The request received from the client. |
context | ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
Task<TestIamPermissionsResponse> | The response to send back to the client (wrapped by a task). |
UpdateEndpoint(UpdateEndpointRequest, ServerCallContext)
public virtual Task<Endpoint> UpdateEndpoint(UpdateEndpointRequest request, ServerCallContext context)
Updates a endpoint.
Parameters | |
---|---|
Name | Description |
request | UpdateEndpointRequest The request received from the client. |
context | ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
Task<Endpoint> | The response to send back to the client (wrapped by a task). |
UpdateNamespace(UpdateNamespaceRequest, ServerCallContext)
public virtual Task<Namespace> UpdateNamespace(UpdateNamespaceRequest request, ServerCallContext context)
Updates a namespace.
Parameters | |
---|---|
Name | Description |
request | UpdateNamespaceRequest The request received from the client. |
context | ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
Task<Namespace> | The response to send back to the client (wrapped by a task). |
UpdateService(UpdateServiceRequest, ServerCallContext)
public virtual Task<Service> UpdateService(UpdateServiceRequest request, ServerCallContext context)
Updates a service.
Parameters | |
---|---|
Name | Description |
request | UpdateServiceRequest The request received from the client. |
context | ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
Task<Service> | The response to send back to the client (wrapped by a task). |