Class: OperatorService
operatorservice.v1.OperatorService
OperatorService API defines how Temporal SDKs and other clients interact with the Temporal server to perform administrative functions like registering a search attribute or a namespace. APIs in this file could be not compatible with Temporal Cloud, hence it's usage in SDKs should be limited by designated APIs that clearly state that they shouldn't be used by the main Application (Workflows & Activities) framework.
Hierarchy
-
Service↳
OperatorService
Constructors
constructor
• new OperatorService(rpcImpl, requestDelimited?, responseDelimited?): OperatorService
Constructs a new OperatorService service.
Parameters
| Name | Type | Description |
|---|---|---|
rpcImpl | RPCImpl | RPC implementation |
requestDelimited? | boolean | Whether requests are length-delimited |
responseDelimited? | boolean | Whether responses are length-delimited |
Returns
Overrides
$protobuf.rpc.Service.constructor
Properties
requestDelimited
• requestDelimited: boolean
Whether requests are length-delimited.
Inherited from
$protobuf.rpc.Service.requestDelimited
responseDelimited
• responseDelimited: boolean
Whether responses are length-delimited.
Inherited from
$protobuf.rpc.Service.responseDelimited
rpcImpl
• rpcImpl: null | RPCImpl
RPC implementation. Becomes null once the service is ended.
Inherited from
$protobuf.rpc.Service.rpcImpl
Methods
addOrUpdateRemoteCluster
▸ addOrUpdateRemoteCluster(request, callback): void
AddOrUpdateRemoteCluster adds or updates remote cluster.
Parameters
| Name | Type | Description |
|---|---|---|
request | IAddOrUpdateRemoteClusterRequest | AddOrUpdateRemoteClusterRequest message or plain object |
callback | AddOrUpdateRemoteClusterCallback | Node-style callback called with the error, if any, and AddOrUpdateRemoteClusterResponse |
Returns
void
▸ addOrUpdateRemoteCluster(request): Promise<AddOrUpdateRemoteClusterResponse>
AddOrUpdateRemoteCluster adds or updates remote cluster.
Parameters
| Name | Type | Description |
|---|---|---|
request | IAddOrUpdateRemoteClusterRequest | AddOrUpdateRemoteClusterRequest message or plain object |
Returns
Promise<AddOrUpdateRemoteClusterResponse>
Promise
addSearchAttributes
▸ addSearchAttributes(request, callback): void
AddSearchAttributes add custom search attributes.
Returns ALREADY_EXISTS status code if a Search Attribute with any of the specified names already exists Returns INTERNAL status code with temporal.api.errordetails.v1.SystemWorkflowFailure in Error Details if registration process fails,
Parameters
| Name | Type | Description |
|---|---|---|
request | IAddSearchAttributesRequest | AddSearchAttributesRequest message or plain object |
callback | AddSearchAttributesCallback | Node-style callback called with the error, if any, and AddSearchAttributesResponse |
Returns
void
▸ addSearchAttributes(request): Promise<AddSearchAttributesResponse>
AddSearchAttributes add custom search attributes.
Returns ALREADY_EXISTS status code if a Search Attribute with any of the specified names already exists Returns INTERNAL status code with temporal.api.errordetails.v1.SystemWorkflowFailure in Error Details if registration process fails,
Parameters
| Name | Type | Description |
|---|---|---|
request | IAddSearchAttributesRequest | AddSearchAttributesRequest message or plain object |
Returns
Promise<AddSearchAttributesResponse>
Promise
createNexusEndpoint
▸ createNexusEndpoint(request, callback): void
Create a Nexus endpoint. This will fail if an endpoint with the same name is already registered with a status of ALREADY_EXISTS. Returns the created endpoint with its initial version. You may use this version for subsequent updates.
Parameters
| Name | Type | Description |
|---|---|---|
request | ICreateNexusEndpointRequest | CreateNexusEndpointRequest message or plain object |
callback | CreateNexusEndpointCallback | Node-style callback called with the error, if any, and CreateNexusEndpointResponse |
Returns
void
▸ createNexusEndpoint(request): Promise<CreateNexusEndpointResponse>
Create a Nexus endpoint. This will fail if an endpoint with the same name is already registered with a status of ALREADY_EXISTS. Returns the created endpoint with its initial version. You may use this version for subsequent updates.
Parameters
| Name | Type | Description |
|---|---|---|
request | ICreateNexusEndpointRequest | CreateNexusEndpointRequest message or plain object |
Returns
Promise<CreateNexusEndpointResponse>
Promise
deleteNamespace
▸ deleteNamespace(request, callback): void
DeleteNamespace synchronously deletes a namespace and asynchronously reclaims all namespace resources.
Parameters
| Name | Type | Description |
|---|---|---|
request | IDeleteNamespaceRequest | DeleteNamespaceRequest message or plain object |
callback | DeleteNamespaceCallback | Node-style callback called with the error, if any, and DeleteNamespaceResponse |
Returns
void
▸ deleteNamespace(request): Promise<DeleteNamespaceResponse>
DeleteNamespace synchronously deletes a namespace and asynchronously reclaims all namespace resources.
Parameters
| Name | Type | Description |
|---|---|---|
request | IDeleteNamespaceRequest | DeleteNamespaceRequest message or plain object |
Returns
Promise<DeleteNamespaceResponse>
Promise
deleteNexusEndpoint
▸ deleteNexusEndpoint(request, callback): void
Delete an incoming Nexus service by ID.
Parameters
| Name | Type | Description |
|---|---|---|
request | IDeleteNexusEndpointRequest | DeleteNexusEndpointRequest message or plain object |
callback | DeleteNexusEndpointCallback | Node-style callback called with the error, if any, and DeleteNexusEndpointResponse |
Returns
void
▸ deleteNexusEndpoint(request): Promise<DeleteNexusEndpointResponse>
Delete an incoming Nexus service by ID.
Parameters
| Name | Type | Description |
|---|---|---|
request | IDeleteNexusEndpointRequest | DeleteNexusEndpointRequest message or plain object |
Returns
Promise<DeleteNexusEndpointResponse>
Promise
emit
▸ emit(evt, ...args): this
Emits an event by calling its listeners with the specified arguments.
Parameters
| Name | Type | Description |
|---|---|---|
evt | string | Event name |
...args | any[] | Arguments |
Returns
this
this
Inherited from
$protobuf.rpc.Service.emit
end
▸ end(endedByRPC?): Service
Ends this service and emits the end event.
Parameters
| Name | Type | Description |
|---|---|---|
endedByRPC? | boolean | Whether the service has been ended by the RPC implementation. |
Returns
Service
this
Inherited from
$protobuf.rpc.Service.end
getNexusEndpoint
▸ getNexusEndpoint(request, callback): void
Get a registered Nexus endpoint by ID. The returned version can be used for optimistic updates.
Parameters
| Name | Type | Description |
|---|---|---|
request | IGetNexusEndpointRequest | GetNexusEndpointRequest message or plain object |
callback | GetNexusEndpointCallback | Node-style callback called with the error, if any, and GetNexusEndpointResponse |
Returns
void
▸ getNexusEndpoint(request): Promise<GetNexusEndpointResponse>
Get a registered Nexus endpoint by ID. The returned version can be used for optimistic updates.
Parameters
| Name | Type | Description |
|---|---|---|
request | IGetNexusEndpointRequest | GetNexusEndpointRequest message or plain object |
Returns
Promise<GetNexusEndpointResponse>
Promise
listClusters
▸ listClusters(request, callback): void
ListClusters returns information about Temporal clusters.
Parameters
| Name | Type | Description |
|---|---|---|
request | IListClustersRequest | ListClustersRequest message or plain object |
callback | ListClustersCallback | Node-style callback called with the error, if any, and ListClustersResponse |
Returns
void
▸ listClusters(request): Promise<ListClustersResponse>
ListClusters returns information about Temporal clusters.
Parameters
| Name | Type | Description |
|---|---|---|
request | IListClustersRequest | ListClustersRequest message or plain object |
Returns
Promise<ListClustersResponse>
Promise
listNexusEndpoints
▸ listNexusEndpoints(request, callback): void
List all Nexus endpoints for the cluster, sorted by ID in ascending order. Set page_token in the request to the next_page_token field of the previous response to get the next page of results. An empty next_page_token indicates that there are no more results. During pagination, a newly added service with an ID lexicographically earlier than the previous page's last endpoint's ID may be missed.
Parameters
| Name | Type | Description |
|---|---|---|
request | IListNexusEndpointsRequest | ListNexusEndpointsRequest message or plain object |
callback | ListNexusEndpointsCallback | Node-style callback called with the error, if any, and ListNexusEndpointsResponse |
Returns
void
▸ listNexusEndpoints(request): Promise<ListNexusEndpointsResponse>
List all Nexus endpoints for the cluster, sorted by ID in ascending order. Set page_token in the request to the next_page_token field of the previous response to get the next page of results. An empty next_page_token indicates that there are no more results. During pagination, a newly added service with an ID lexicographically earlier than the previous page's last endpoint's ID may be missed.
Parameters
| Name | Type | Description |
|---|---|---|
request | IListNexusEndpointsRequest | ListNexusEndpointsRequest message or plain object |
Returns
Promise<ListNexusEndpointsResponse>
Promise