Package com.google.privacy.dlp.v2
Interface InspectJobConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
InspectJobConfig
,InspectJobConfig.Builder
public interface InspectJobConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Action
getActions(int index)
Actions to execute at the completion of the job.int
getActionsCount()
Actions to execute at the completion of the job.List<Action>
getActionsList()
Actions to execute at the completion of the job.ActionOrBuilder
getActionsOrBuilder(int index)
Actions to execute at the completion of the job.List<? extends ActionOrBuilder>
getActionsOrBuilderList()
Actions to execute at the completion of the job.InspectConfig
getInspectConfig()
How and what to scan for.InspectConfigOrBuilder
getInspectConfigOrBuilder()
How and what to scan for.String
getInspectTemplateName()
If provided, will be used as the default for all values in InspectConfig.com.google.protobuf.ByteString
getInspectTemplateNameBytes()
If provided, will be used as the default for all values in InspectConfig.StorageConfig
getStorageConfig()
The data to scan.StorageConfigOrBuilder
getStorageConfigOrBuilder()
The data to scan.boolean
hasInspectConfig()
How and what to scan for.boolean
hasStorageConfig()
The data to scan.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasStorageConfig
boolean hasStorageConfig()
The data to scan.
.google.privacy.dlp.v2.StorageConfig storage_config = 1;
- Returns:
- Whether the storageConfig field is set.
-
getStorageConfig
StorageConfig getStorageConfig()
The data to scan.
.google.privacy.dlp.v2.StorageConfig storage_config = 1;
- Returns:
- The storageConfig.
-
getStorageConfigOrBuilder
StorageConfigOrBuilder getStorageConfigOrBuilder()
The data to scan.
.google.privacy.dlp.v2.StorageConfig storage_config = 1;
-
hasInspectConfig
boolean hasInspectConfig()
How and what to scan for.
.google.privacy.dlp.v2.InspectConfig inspect_config = 2;
- Returns:
- Whether the inspectConfig field is set.
-
getInspectConfig
InspectConfig getInspectConfig()
How and what to scan for.
.google.privacy.dlp.v2.InspectConfig inspect_config = 2;
- Returns:
- The inspectConfig.
-
getInspectConfigOrBuilder
InspectConfigOrBuilder getInspectConfigOrBuilder()
How and what to scan for.
.google.privacy.dlp.v2.InspectConfig inspect_config = 2;
-
getInspectTemplateName
String getInspectTemplateName()
If provided, will be used as the default for all values in InspectConfig. `inspect_config` will be merged into the values persisted as part of the template.
string inspect_template_name = 3;
- Returns:
- The inspectTemplateName.
-
getInspectTemplateNameBytes
com.google.protobuf.ByteString getInspectTemplateNameBytes()
If provided, will be used as the default for all values in InspectConfig. `inspect_config` will be merged into the values persisted as part of the template.
string inspect_template_name = 3;
- Returns:
- The bytes for inspectTemplateName.
-
getActionsList
List<Action> getActionsList()
Actions to execute at the completion of the job.
repeated .google.privacy.dlp.v2.Action actions = 4;
-
getActions
Action getActions(int index)
Actions to execute at the completion of the job.
repeated .google.privacy.dlp.v2.Action actions = 4;
-
getActionsCount
int getActionsCount()
Actions to execute at the completion of the job.
repeated .google.privacy.dlp.v2.Action actions = 4;
-
getActionsOrBuilderList
List<? extends ActionOrBuilder> getActionsOrBuilderList()
Actions to execute at the completion of the job.
repeated .google.privacy.dlp.v2.Action actions = 4;
-
getActionsOrBuilder
ActionOrBuilder getActionsOrBuilder(int index)
Actions to execute at the completion of the job.
repeated .google.privacy.dlp.v2.Action actions = 4;
-
-