Package com.google.cloud.dataplex.v1
Interface DiscoveryEvent.ConfigDetailsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DiscoveryEvent.ConfigDetails
,DiscoveryEvent.ConfigDetails.Builder
- Enclosing class:
- DiscoveryEvent
public static interface DiscoveryEvent.ConfigDetailsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
containsParameters(String key)
A list of discovery configuration parameters in effect.Map<String,String>
getParameters()
Deprecated.int
getParametersCount()
A list of discovery configuration parameters in effect.Map<String,String>
getParametersMap()
A list of discovery configuration parameters in effect.String
getParametersOrDefault(String key, String defaultValue)
A list of discovery configuration parameters in effect.String
getParametersOrThrow(String key)
A list of discovery configuration parameters in effect.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getParametersCount
int getParametersCount()
A list of discovery configuration parameters in effect. The keys are the field paths within DiscoverySpec. Eg. includePatterns, excludePatterns, csvOptions.disableTypeInference, etc.
map<string, string> parameters = 1;
-
containsParameters
boolean containsParameters(String key)
A list of discovery configuration parameters in effect. The keys are the field paths within DiscoverySpec. Eg. includePatterns, excludePatterns, csvOptions.disableTypeInference, etc.
map<string, string> parameters = 1;
-
getParameters
@Deprecated Map<String,String> getParameters()
Deprecated.UsegetParametersMap()
instead.
-
getParametersMap
Map<String,String> getParametersMap()
A list of discovery configuration parameters in effect. The keys are the field paths within DiscoverySpec. Eg. includePatterns, excludePatterns, csvOptions.disableTypeInference, etc.
map<string, string> parameters = 1;
-
getParametersOrDefault
String getParametersOrDefault(String key, String defaultValue)
A list of discovery configuration parameters in effect. The keys are the field paths within DiscoverySpec. Eg. includePatterns, excludePatterns, csvOptions.disableTypeInference, etc.
map<string, string> parameters = 1;
-
-