Package io.dapr.v1
Interface DaprProtos.GetBulkSecretResponseOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DaprProtos.GetBulkSecretResponse
,DaprProtos.GetBulkSecretResponse.Builder
- Enclosing class:
- DaprProtos
public static interface DaprProtos.GetBulkSecretResponseOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and Type Method Description boolean
containsData(String key)
data hold the secret values.Map<String,String>
getData()
Deprecated.int
getDataCount()
data hold the secret values.Map<String,String>
getDataMap()
data hold the secret values.String
getDataOrDefault(String key, String defaultValue)
data hold the secret values.String
getDataOrThrow(String key)
data hold the secret values.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 hold the secret values. Some secret store, such as kubernetes secret store, can save multiple secrets for single secret key.
map<string, string> data = 1;
-
containsData
data hold the secret values. 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 hold the secret values. Some secret store, such as kubernetes secret store, can save multiple secrets for single secret key.
map<string, string> data = 1;
-
getDataOrDefault
data hold the secret values. Some secret store, such as kubernetes secret store, can save multiple secrets for single secret key.
map<string, string> data = 1;
-
getDataOrThrow
data hold the secret values. Some secret store, such as kubernetes secret store, can save multiple secrets for single secret key.
map<string, string> data = 1;
-