Package io.dapr.v1
Interface DaprProtos.GetSecretResponseOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DaprProtos.GetSecretResponse
,DaprProtos.GetSecretResponse.Builder
- Enclosing class:
- DaprProtos
public static interface DaprProtos.GetSecretResponseOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionboolean
containsData
(String key) data is the secret value.getData()
Deprecated.int
data is the secret value.data is the secret value.getDataOrDefault
(String key, String defaultValue) data is the secret value.getDataOrThrow
(String key) data is the secret value.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getDataCount
int getDataCount()data is the secret value. Some secret store, such as kubernetes secret store, can save multiple secrets for single secret key.
map<string, string> data = 1;
-
containsData
data is the secret value. Some secret store, such as kubernetes secret store, can save multiple secrets for single secret key.
map<string, string> data = 1;
-
getData
Deprecated.UsegetDataMap()
instead. -
getDataMap
data is the secret value. Some secret store, such as kubernetes secret store, can save multiple secrets for single secret key.
map<string, string> data = 1;
-
getDataOrDefault
data is the secret value. Some secret store, such as kubernetes secret store, can save multiple secrets for single secret key.
map<string, string> data = 1;
-
getDataOrThrow
data is the secret value. Some secret store, such as kubernetes secret store, can save multiple secrets for single secret key.
map<string, string> data = 1;
-