Package com.google.privacy.dlp.v2
Interface RiskAnalysisJobConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RiskAnalysisJobConfig
,RiskAnalysisJobConfig.Builder
public interface RiskAnalysisJobConfigOrBuilder 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.PrivacyMetric
getPrivacyMetric()
Privacy metric to compute.PrivacyMetricOrBuilder
getPrivacyMetricOrBuilder()
Privacy metric to compute.BigQueryTable
getSourceTable()
Input dataset to compute metrics over.BigQueryTableOrBuilder
getSourceTableOrBuilder()
Input dataset to compute metrics over.boolean
hasPrivacyMetric()
Privacy metric to compute.boolean
hasSourceTable()
Input dataset to compute metrics over.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasPrivacyMetric
boolean hasPrivacyMetric()
Privacy metric to compute.
.google.privacy.dlp.v2.PrivacyMetric privacy_metric = 1;
- Returns:
- Whether the privacyMetric field is set.
-
getPrivacyMetric
PrivacyMetric getPrivacyMetric()
Privacy metric to compute.
.google.privacy.dlp.v2.PrivacyMetric privacy_metric = 1;
- Returns:
- The privacyMetric.
-
getPrivacyMetricOrBuilder
PrivacyMetricOrBuilder getPrivacyMetricOrBuilder()
Privacy metric to compute.
.google.privacy.dlp.v2.PrivacyMetric privacy_metric = 1;
-
hasSourceTable
boolean hasSourceTable()
Input dataset to compute metrics over.
.google.privacy.dlp.v2.BigQueryTable source_table = 2;
- Returns:
- Whether the sourceTable field is set.
-
getSourceTable
BigQueryTable getSourceTable()
Input dataset to compute metrics over.
.google.privacy.dlp.v2.BigQueryTable source_table = 2;
- Returns:
- The sourceTable.
-
getSourceTableOrBuilder
BigQueryTableOrBuilder getSourceTableOrBuilder()
Input dataset to compute metrics over.
.google.privacy.dlp.v2.BigQueryTable source_table = 2;
-
getActionsList
List<Action> getActionsList()
Actions to execute at the completion of the job. Are executed in the order provided.
repeated .google.privacy.dlp.v2.Action actions = 3;
-
getActions
Action getActions(int index)
Actions to execute at the completion of the job. Are executed in the order provided.
repeated .google.privacy.dlp.v2.Action actions = 3;
-
getActionsCount
int getActionsCount()
Actions to execute at the completion of the job. Are executed in the order provided.
repeated .google.privacy.dlp.v2.Action actions = 3;
-
getActionsOrBuilderList
List<? extends ActionOrBuilder> getActionsOrBuilderList()
Actions to execute at the completion of the job. Are executed in the order provided.
repeated .google.privacy.dlp.v2.Action actions = 3;
-
getActionsOrBuilder
ActionOrBuilder getActionsOrBuilder(int index)
Actions to execute at the completion of the job. Are executed in the order provided.
repeated .google.privacy.dlp.v2.Action actions = 3;
-
-