Package io.dapr.client
Class DaprClientGrpc
java.lang.Object
io.dapr.client.DaprClientGrpc
- All Implemented Interfaces:
DaprClient,Closeable,AutoCloseable
public class DaprClientGrpc extends Object
An adapter for the GRPC Client.
- See Also:
DaprGrpc,DaprClient
-
Field Summary
Fields Modifier and Type Field Description protected DaprObjectSerializerobjectSerializerA utility class for serialize and deserialize the transient objects.protected DaprObjectSerializerstateSerializerA utility class for serialize and deserialize state objects. -
Method Summary
Modifier and Type Method Description voidclose()Closes the ManagedChannel for GRPC.reactor.core.publisher.Mono<Response<Void>>deleteState(DeleteStateRequest request)Delete a state.reactor.core.publisher.Mono<Void>deleteState(String stateStoreName, String key)Delete a state.reactor.core.publisher.Mono<Void>deleteState(String stateStoreName, String key, String etag, StateOptions options)Delete a state.reactor.core.publisher.Mono<Response<Void>>executeTransaction(ExecuteStateTransactionRequest request)Execute a transaction.reactor.core.publisher.Mono<Void>executeTransaction(String stateStoreName, List<TransactionalStateOperation<?>> operations)Execute a transaction.reactor.core.publisher.Mono<Response<Map<String,String>>>getSecret(GetSecretRequest request)Fetches a secret from the configured vault.reactor.core.publisher.Mono<Map<String,String>>getSecret(String secretStoreName, String secretName)Fetches a secret from the configured vault.reactor.core.publisher.Mono<Map<String,String>>getSecret(String secretStoreName, String key, Map<String,String> metadata)Fetches a secret from the configured vault.<T> reactor.core.publisher.Mono<Response<State<T>>>getState(GetStateRequest request, TypeRef<T> type)Retrieve a State based on their key.<T> reactor.core.publisher.Mono<State<T>>getState(String stateStoreName, State<T> state, TypeRef<T> type)Retrieve a State based on their key.<T> reactor.core.publisher.Mono<State<T>>getState(String stateStoreName, State<T> state, Class<T> clazz)Retrieve a State based on their key.<T> reactor.core.publisher.Mono<State<T>>getState(String stateStoreName, String key, TypeRef<T> type)Retrieve a State based on their key.<T> reactor.core.publisher.Mono<State<T>>getState(String stateStoreName, String key, Class<T> clazz)Retrieve a State based on their key.<T> reactor.core.publisher.Mono<State<T>>getState(String stateStoreName, String key, String etag, StateOptions options, TypeRef<T> type)Retrieve a State based on their key.<T> reactor.core.publisher.Mono<State<T>>getState(String stateStoreName, String key, String etag, StateOptions options, Class<T> clazz)Retrieve a State based on their key.<T> reactor.core.publisher.Mono<Response<List<State<T>>>>getStates(GetStatesRequest request, TypeRef<T> type)Retrieve bulk States based on their keys.<T> reactor.core.publisher.Mono<List<State<T>>>getStates(String stateStoreName, List<String> keys, TypeRef<T> type)Retrieve bulk States based on their keys.<T> reactor.core.publisher.Mono<List<State<T>>>getStates(String stateStoreName, List<String> keys, Class<T> clazz)Retrieve bulk States based on their keys.<T> reactor.core.publisher.Mono<Response<T>>invokeBinding(InvokeBindingRequest request, TypeRef<T> type)Invokes a Binding operation.reactor.core.publisher.Mono<byte[]>invokeBinding(String name, String operation, byte[] data, Map<String,String> metadata)Invokes a Binding operation, skipping serialization.reactor.core.publisher.Mono<Void>invokeBinding(String name, String operation, Object data)Invokes a Binding operation.<T> reactor.core.publisher.Mono<T>invokeBinding(String name, String operation, Object data, TypeRef<T> type)Invokes a Binding operation.<T> reactor.core.publisher.Mono<T>invokeBinding(String name, String operation, Object data, Class<T> clazz)Invokes a Binding operation.<T> reactor.core.publisher.Mono<T>invokeBinding(String name, String operation, Object data, Map<String,String> metadata, TypeRef<T> type)Invokes a Binding operation.<T> reactor.core.publisher.Mono<T>invokeBinding(String name, String operation, Object data, Map<String,String> metadata, Class<T> clazz)Invokes a Binding operation.<T> reactor.core.publisher.Mono<Response<T>>invokeService(InvokeServiceRequest invokeServiceRequest, TypeRef<T> type)Invoke a service method.reactor.core.publisher.Mono<byte[]>invokeService(String appId, String method, byte[] request, HttpExtension httpExtension, Map<String,String> metadata)Invoke a service method, without using serialization.reactor.core.publisher.Mono<Void>invokeService(String appId, String method, HttpExtension httpExtension, Map<String,String> metadata)Invoke a service method, using serialization.<T> reactor.core.publisher.Mono<T>invokeService(String appId, String method, HttpExtension httpExtension, Map<String,String> metadata, TypeRef<T> type)Invoke a service method, using serialization.<T> reactor.core.publisher.Mono<T>invokeService(String appId, String method, HttpExtension httpExtension, Map<String,String> metadata, Class<T> clazz)Invoke a service method, using serialization.reactor.core.publisher.Mono<Void>invokeService(String appId, String method, Object request, HttpExtension httpExtension)Invoke a service method, using serialization.<T> reactor.core.publisher.Mono<T>invokeService(String appId, String method, Object request, HttpExtension httpExtension, TypeRef<T> type)Invoke a service method, using serialization.<T> reactor.core.publisher.Mono<T>invokeService(String appId, String method, Object request, HttpExtension httpExtension, Class<T> clazz)Invoke a service method, using serialization.reactor.core.publisher.Mono<Void>invokeService(String appId, String method, Object request, HttpExtension httpExtension, Map<String,String> metadata)Invoke a service method, using serialization.<T> reactor.core.publisher.Mono<T>invokeService(String appId, String method, Object request, HttpExtension httpExtension, Map<String,String> metadata, TypeRef<T> type)Invoke a service method, using serialization.<T> reactor.core.publisher.Mono<T>invokeService(String appId, String method, Object request, HttpExtension httpExtension, Map<String,String> metadata, Class<T> clazz)Invoke a service method, using serialization.reactor.core.publisher.Mono<Response<Void>>publishEvent(PublishEventRequest request)Publish an event.reactor.core.publisher.Mono<Void>publishEvent(String pubsubName, String topic, Object data)Publish an event.reactor.core.publisher.Mono<Void>publishEvent(String pubsubName, String topic, Object data, Map<String,String> metadata)Publish an event.reactor.core.publisher.Mono<Void>saveState(String stateStoreName, String key, Object value)Save/Update a state.reactor.core.publisher.Mono<Void>saveState(String stateStoreName, String key, String etag, Object value, StateOptions options)Save/Update a state.reactor.core.publisher.Mono<Response<Void>>saveStates(SaveStateRequest request)Save/Update a list of states.reactor.core.publisher.Mono<Void>saveStates(String stateStoreName, List<State<?>> states)Save/Update a list of states.
-
Field Details
-
objectSerializer
A utility class for serialize and deserialize the transient objects. -
stateSerializer
A utility class for serialize and deserialize state objects.
-
-
Method Details
-
publishEvent
Publish an event.- Parameters:
request- the request for the publish event.- Returns:
- a Mono plan of a Dapr's void response.
-
invokeService
public <T> reactor.core.publisher.Mono<Response<T>> invokeService(InvokeServiceRequest invokeServiceRequest, TypeRef<T> type)Invoke a service method.- Type Parameters:
T- The Type of the return, use byte[] to skip serialization.- Parameters:
invokeServiceRequest- Request object.type- The Type needed as return for the call.- Returns:
- A Mono Plan of type T.
-
invokeBinding
public <T> reactor.core.publisher.Mono<Response<T>> invokeBinding(InvokeBindingRequest request, TypeRef<T> type)Invokes a Binding operation.- Type Parameters:
T- The type of the return- Parameters:
request- The binding invocation request.type- The type being returned.- Returns:
- a Mono plan of type T.
-
getState
public <T> reactor.core.publisher.Mono<Response<State<T>>> getState(GetStateRequest request, TypeRef<T> type)Retrieve a State based on their key.- Type Parameters:
T- The Type of the return.- Parameters:
request- The request to get state.type- The Type of State needed as return.- Returns:
- A Mono Plan for the requested State.
-
getStates
public <T> reactor.core.publisher.Mono<Response<List<State<T>>>> getStates(GetStatesRequest request, TypeRef<T> type)Retrieve bulk States based on their keys.- Type Parameters:
T- The Type of the return.- Parameters:
request- The request to get state.type- The Type of State needed as return.- Returns:
- A Mono Plan for the requested State.
-
executeTransaction
public reactor.core.publisher.Mono<Response<Void>> executeTransaction(ExecuteStateTransactionRequest request)Execute a transaction.- Parameters:
request- Request to execute transaction.- Returns:
- a Mono plan of type Response Void
-
saveStates
Save/Update a list of states.- Parameters:
request- Request to save states.- Returns:
- a Mono plan of type Void.
-
deleteState
Delete a state.- Parameters:
request- Request to delete a state.- Returns:
- a Mono plan of type Void.
-
getSecret
public reactor.core.publisher.Mono<Response<Map<String,String>>> getSecret(GetSecretRequest request)Fetches a secret from the configured vault.- Parameters:
request- Request to fetch secret.- Returns:
- Key-value pairs for the secret.
-
close
Closes the ManagedChannel for GRPC.- Throws:
IOException- on exception.- See Also:
ManagedChannel.shutdown()
-
publishEvent
public reactor.core.publisher.Mono<Void> publishEvent(String pubsubName, String topic, Object data)Publish an event.- Specified by:
publishEventin interfaceDaprClient- Parameters:
pubsubName- the pubsub name we will publish the event totopic- the topic where the event will be published.data- the event's data to be published, use byte[] for skipping serialization.- Returns:
- a Mono plan of type Void.
-
publishEvent
public reactor.core.publisher.Mono<Void> publishEvent(String pubsubName, String topic, Object data, Map<String,String> metadata)Publish an event.- Specified by:
publishEventin interfaceDaprClient- Parameters:
pubsubName- the pubsub name we will publish the event totopic- the topic where the event will be published.data- the event's data to be published, use byte[] for skipping serialization.metadata- The metadata for the published event.- Returns:
- a Mono plan of type Void.
-
invokeService
public <T> reactor.core.publisher.Mono<T> invokeService(String appId, String method, Object request, HttpExtension httpExtension, Map<String,String> metadata, TypeRef<T> type)Invoke a service method, using serialization.- Specified by:
invokeServicein interfaceDaprClient- Type Parameters:
T- The Type of the return, use byte[] to skip serialization.- Parameters:
appId- The Application ID where the service is.method- The actual Method to be call in the application.request- The request to be sent to invoke the service, use byte[] to skip serialization.httpExtension- Additional fields that are needed if the receiving app is listening on HTTP,HttpExtension.NONEotherwise.metadata- Metadata (in GRPC) or headers (in HTTP) to be sent in request.type- The Type needed as return for the call.- Returns:
- A Mono Plan of type T.
-
invokeService
public <T> reactor.core.publisher.Mono<T> invokeService(String appId, String method, Object request, HttpExtension httpExtension, Map<String,String> metadata, Class<T> clazz)Invoke a service method, using serialization.- Specified by:
invokeServicein interfaceDaprClient- Type Parameters:
T- The Type of the return, use byte[] to skip serialization.- Parameters:
appId- The Application ID where the service is.method- The actual Method to be call in the application.request- The request to be sent to invoke the service, use byte[] to skip serialization.httpExtension- Additional fields that are needed if the receiving app is listening on HTTP,HttpExtension.NONEotherwise.metadata- Metadata (in GRPC) or headers (in HTTP) to be sent in request.clazz- The type needed as return for the call.- Returns:
- A Mono Plan of type T.
-
invokeService
public <T> reactor.core.publisher.Mono<T> invokeService(String appId, String method, HttpExtension httpExtension, Map<String,String> metadata, TypeRef<T> type)Invoke a service method, using serialization.- Specified by:
invokeServicein interfaceDaprClient- Type Parameters:
T- The Type of the return, use byte[] to skip serialization.- Parameters:
appId- The Application ID where the service is.method- The actual Method to be call in the application.httpExtension- Additional fields that are needed if the receiving app is listening on HTTP,HttpExtension.NONEotherwise.metadata- Metadata (in GRPC) or headers (in HTTP) to be sent in request.type- The Type needed as return for the call.- Returns:
- A Mono Plan of type T.
-
invokeService
public <T> reactor.core.publisher.Mono<T> invokeService(String appId, String method, HttpExtension httpExtension, Map<String,String> metadata, Class<T> clazz)Invoke a service method, using serialization.- Specified by:
invokeServicein interfaceDaprClient- Type Parameters:
T- The Type of the return, use byte[] to skip serialization.- Parameters:
appId- The Application ID where the service is.method- The actual Method to be call in the application.httpExtension- Additional fields that are needed if the receiving app is listening on HTTP,HttpExtension.NONEotherwise.metadata- Metadata (in GRPC) or headers (in HTTP) to be sent in request.clazz- The type needed as return for the call.- Returns:
- A Mono Plan of type T.
-
invokeService
public <T> reactor.core.publisher.Mono<T> invokeService(String appId, String method, Object request, HttpExtension httpExtension, TypeRef<T> type)Invoke a service method, using serialization.- Specified by:
invokeServicein interfaceDaprClient- Type Parameters:
T- The Type of the return, use byte[] to skip serialization.- Parameters:
appId- The Application ID where the service is.method- The actual Method to be call in the application.request- The request to be sent to invoke the service, use byte[] to skip serialization.httpExtension- Additional fields that are needed if the receiving app is listening on HTTP,HttpExtension.NONEotherwise.type- The Type needed as return for the call.- Returns:
- A Mono Plan of type T.
-
invokeService
public <T> reactor.core.publisher.Mono<T> invokeService(String appId, String method, Object request, HttpExtension httpExtension, Class<T> clazz)Invoke a service method, using serialization.- Specified by:
invokeServicein interfaceDaprClient- Type Parameters:
T- The Type of the return, use byte[] to skip serialization.- Parameters:
appId- The Application ID where the service is.method- The actual Method to be call in the application.request- The request to be sent to invoke the service, use byte[] to skip serialization.httpExtension- Additional fields that are needed if the receiving app is listening on HTTP,HttpExtension.NONEotherwise.clazz- The type needed as return for the call.- Returns:
- A Mono Plan of type T.
-
invokeService
public reactor.core.publisher.Mono<Void> invokeService(String appId, String method, Object request, HttpExtension httpExtension)Invoke a service method, using serialization.- Specified by:
invokeServicein interfaceDaprClient- Parameters:
appId- The Application ID where the service is.method- The actual Method to be call in the application.request- The request to be sent to invoke the service, use byte[] to skip serialization.httpExtension- Additional fields that are needed if the receiving app is listening on HTTP,HttpExtension.NONEotherwise.- Returns:
- A Mono Plan of type Void.
-
invokeService
public reactor.core.publisher.Mono<Void> invokeService(String appId, String method, Object request, HttpExtension httpExtension, Map<String,String> metadata)Invoke a service method, using serialization.- Specified by:
invokeServicein interfaceDaprClient- Parameters:
appId- The Application ID where the service is.method- The actual Method to be call in the application.request- The request to be sent to invoke the service, use byte[] to skip serialization.httpExtension- Additional fields that are needed if the receiving app is listening on HTTP,HttpExtension.NONEotherwise.metadata- Metadata (in GRPC) or headers (in HTTP) to be sent in request.- Returns:
- A Mono Plan of type Void.
-
invokeService
public reactor.core.publisher.Mono<Void> invokeService(String appId, String method, HttpExtension httpExtension, Map<String,String> metadata)Invoke a service method, using serialization.- Specified by:
invokeServicein interfaceDaprClient- Parameters:
appId- The Application ID where the service is.method- The actual Method to be call in the application.httpExtension- Additional fields that are needed if the receiving app is listening on HTTP,HttpExtension.NONEotherwise.metadata- Metadata (in GRPC) or headers (in HTTP) to be sent in request.- Returns:
- A Mono Plan of type Void.
-
invokeService
public reactor.core.publisher.Mono<byte[]> invokeService(String appId, String method, byte[] request, HttpExtension httpExtension, Map<String,String> metadata)Invoke a service method, without using serialization.- Specified by:
invokeServicein interfaceDaprClient- Parameters:
appId- The Application ID where the service is.method- The actual Method to be call in the application.request- The request to be sent to invoke the service, use byte[] to skip serialization.httpExtension- Additional fields that are needed if the receiving app is listening on HTTP,HttpExtension.NONEotherwise.metadata- Metadata (in GRPC) or headers (in HTTP) to be sent in request.- Returns:
- A Mono Plan of type byte[].
-
invokeBinding
Invokes a Binding operation.- Specified by:
invokeBindingin interfaceDaprClient- Parameters:
name- The name of the biding to call.operation- The operation to be performed by the binding request processor.data- The data to be processed, use byte[] to skip serialization.- Returns:
- an empty Mono.
-
invokeBinding
public reactor.core.publisher.Mono<byte[]> invokeBinding(String name, String operation, byte[] data, Map<String,String> metadata)Invokes a Binding operation, skipping serialization.- Specified by:
invokeBindingin interfaceDaprClient- Parameters:
name- The name of the biding to call.operation- The operation to be performed by the binding request processor.data- The data to be processed, skipping serialization.metadata- The metadata map.- Returns:
- a Mono plan of type byte[].
-
invokeBinding
public <T> reactor.core.publisher.Mono<T> invokeBinding(String name, String operation, Object data, TypeRef<T> type)Invokes a Binding operation.- Specified by:
invokeBindingin interfaceDaprClient- Type Parameters:
T- The type of the return- Parameters:
name- The name of the biding to call.operation- The operation to be performed by the binding request processor.data- The data to be processed, use byte[] to skip serialization.type- The type being returned.- Returns:
- a Mono plan of type T.
-
invokeBinding
public <T> reactor.core.publisher.Mono<T> invokeBinding(String name, String operation, Object data, Class<T> clazz)Invokes a Binding operation.- Specified by:
invokeBindingin interfaceDaprClient- Type Parameters:
T- The type of the return- Parameters:
name- The name of the biding to call.operation- The operation to be performed by the binding request processor.data- The data to be processed, use byte[] to skip serialization.clazz- The type being returned.- Returns:
- a Mono plan of type T.
-
invokeBinding
public <T> reactor.core.publisher.Mono<T> invokeBinding(String name, String operation, Object data, Map<String,String> metadata, TypeRef<T> type)Invokes a Binding operation.- Specified by:
invokeBindingin interfaceDaprClient- Type Parameters:
T- The type of the return- Parameters:
name- The name of the biding to call.operation- The operation to be performed by the binding request processor.data- The data to be processed, use byte[] to skip serialization.metadata- The metadata map.type- The type being returned.- Returns:
- a Mono plan of type T.
-
invokeBinding
public <T> reactor.core.publisher.Mono<T> invokeBinding(String name, String operation, Object data, Map<String,String> metadata, Class<T> clazz)Invokes a Binding operation.- Specified by:
invokeBindingin interfaceDaprClient- Type Parameters:
T- The type of the return- Parameters:
name- The name of the biding to call.operation- The operation to be performed by the binding request processor.data- The data to be processed, use byte[] to skip serialization.metadata- The metadata map.clazz- The type being returned.- Returns:
- a Mono plan of type T.
-
getState
public <T> reactor.core.publisher.Mono<State<T>> getState(String stateStoreName, State<T> state, TypeRef<T> type)Retrieve a State based on their key.- Specified by:
getStatein interfaceDaprClient- Type Parameters:
T- The type of the return.- Parameters:
stateStoreName- The name of the state store.state- State to be re-retrieved.type- The type of State needed as return.- Returns:
- A Mono Plan for the requested State.
-
getState
public <T> reactor.core.publisher.Mono<State<T>> getState(String stateStoreName, State<T> state, Class<T> clazz)Retrieve a State based on their key.- Specified by:
getStatein interfaceDaprClient- Type Parameters:
T- The type of the return.- Parameters:
stateStoreName- The name of the state store.state- State to be re-retrieved.clazz- The type of State needed as return.- Returns:
- A Mono Plan for the requested State.
-
getState
public <T> reactor.core.publisher.Mono<State<T>> getState(String stateStoreName, String key, TypeRef<T> type)Retrieve a State based on their key.- Specified by:
getStatein interfaceDaprClient- Type Parameters:
T- The type of the return.- Parameters:
stateStoreName- The name of the state store.key- The key of the State to be retrieved.type- The type of State needed as return.- Returns:
- A Mono Plan for the requested State.
-
getState
public <T> reactor.core.publisher.Mono<State<T>> getState(String stateStoreName, String key, Class<T> clazz)Retrieve a State based on their key.- Specified by:
getStatein interfaceDaprClient- Type Parameters:
T- The type of the return.- Parameters:
stateStoreName- The name of the state store.key- The key of the State to be retrieved.clazz- The type of State needed as return.- Returns:
- A Mono Plan for the requested State.
-
getState
public <T> reactor.core.publisher.Mono<State<T>> getState(String stateStoreName, String key, String etag, StateOptions options, TypeRef<T> type)Retrieve a State based on their key.- Specified by:
getStatein interfaceDaprClient- Type Parameters:
T- The Type of the return.- Parameters:
stateStoreName- The name of the state store.key- The key of the State to be retrieved.etag- Optional etag for conditional getoptions- Optional settings for retrieve operation.type- The Type of State needed as return.- Returns:
- A Mono Plan for the requested State.
-
getState
public <T> reactor.core.publisher.Mono<State<T>> getState(String stateStoreName, String key, String etag, StateOptions options, Class<T> clazz)Retrieve a State based on their key.- Specified by:
getStatein interfaceDaprClient- Type Parameters:
T- The Type of the return.- Parameters:
stateStoreName- The name of the state store.key- The key of the State to be retrieved.etag- Optional etag for conditional getoptions- Optional settings for retrieve operation.clazz- The Type of State needed as return.- Returns:
- A Mono Plan for the requested State.
-
getStates
public <T> reactor.core.publisher.Mono<List<State<T>>> getStates(String stateStoreName, List<String> keys, TypeRef<T> type)Retrieve bulk States based on their keys.- Specified by:
getStatesin interfaceDaprClient- Type Parameters:
T- The type of the return.- Parameters:
stateStoreName- The name of the state store.keys- The keys of the State to be retrieved.type- The type of State needed as return.- Returns:
- A Mono Plan for the requested State.
-
getStates
public <T> reactor.core.publisher.Mono<List<State<T>>> getStates(String stateStoreName, List<String> keys, Class<T> clazz)Retrieve bulk States based on their keys.- Specified by:
getStatesin interfaceDaprClient- Type Parameters:
T- The type of the return.- Parameters:
stateStoreName- The name of the state store.keys- The keys of the State to be retrieved.clazz- The type of State needed as return.- Returns:
- A Mono Plan for the requested State.
-
executeTransaction
public reactor.core.publisher.Mono<Void> executeTransaction(String stateStoreName, List<TransactionalStateOperation<?>> operations)Execute a transaction.- Specified by:
executeTransactionin interfaceDaprClient- Parameters:
stateStoreName- The name of the state store.operations- The operations to be performed.- Returns:
- a Mono plan of type Void
-
saveStates
Save/Update a list of states.- Specified by:
saveStatesin interfaceDaprClient- Parameters:
stateStoreName- The name of the state store.states- The States to be saved.- Returns:
- a Mono plan of type Void.
-
saveState
public reactor.core.publisher.Mono<Void> saveState(String stateStoreName, String key, Object value)Save/Update a state.- Specified by:
saveStatein interfaceDaprClient- Parameters:
stateStoreName- The name of the state store.key- The key of the state.value- The value of the state.- Returns:
- a Mono plan of type Void.
-
saveState
public reactor.core.publisher.Mono<Void> saveState(String stateStoreName, String key, String etag, Object value, StateOptions options)Save/Update a state.- Specified by:
saveStatein interfaceDaprClient- Parameters:
stateStoreName- The name of the state store.key- The key of the state.etag- The etag to be used.value- The value of the state.options- The Options to use for each state.- Returns:
- a Mono plan of type Void.
-
deleteState
Delete a state.- Specified by:
deleteStatein interfaceDaprClient- Parameters:
stateStoreName- The name of the state store.key- The key of the State to be removed.- Returns:
- a Mono plan of type Void.
-
deleteState
public reactor.core.publisher.Mono<Void> deleteState(String stateStoreName, String key, String etag, StateOptions options)Delete a state.- Specified by:
deleteStatein interfaceDaprClient- Parameters:
stateStoreName- The name of the state store.key- The key of the State to be removed.etag- Optional etag for conditional delete.options- Optional settings for state operation.- Returns:
- a Mono plan of type Void.
-
getSecret
public reactor.core.publisher.Mono<Map<String,String>> getSecret(String secretStoreName, String key, Map<String,String> metadata)Fetches a secret from the configured vault.- Specified by:
getSecretin interfaceDaprClient- Parameters:
secretStoreName- Name of vault component in Dapr.key- Secret to be fetched.metadata- Optional metadata.- Returns:
- Key-value pairs for the secret.
-
getSecret
public reactor.core.publisher.Mono<Map<String,String>> getSecret(String secretStoreName, String secretName)Fetches a secret from the configured vault.- Specified by:
getSecretin interfaceDaprClient- Parameters:
secretStoreName- Name of vault component in Dapr.secretName- Secret to be fetched.- Returns:
- Key-value pairs for the secret.
-