/*
 * Copyright 2020 Google LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/privacy/dlp/v2/dlp.proto

package com.google.privacy.dlp.v2;

public interface RiskAnalysisJobConfigOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.privacy.dlp.v2.RiskAnalysisJobConfig)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * <pre>
   * Privacy metric to compute.
   * </pre>
   *
   * <code>.google.privacy.dlp.v2.PrivacyMetric privacy_metric = 1;</code>
   *
   * @return Whether the privacyMetric field is set.
   */
  boolean hasPrivacyMetric();
  /**
   *
   *
   * <pre>
   * Privacy metric to compute.
   * </pre>
   *
   * <code>.google.privacy.dlp.v2.PrivacyMetric privacy_metric = 1;</code>
   *
   * @return The privacyMetric.
   */
  com.google.privacy.dlp.v2.PrivacyMetric getPrivacyMetric();
  /**
   *
   *
   * <pre>
   * Privacy metric to compute.
   * </pre>
   *
   * <code>.google.privacy.dlp.v2.PrivacyMetric privacy_metric = 1;</code>
   */
  com.google.privacy.dlp.v2.PrivacyMetricOrBuilder getPrivacyMetricOrBuilder();

  /**
   *
   *
   * <pre>
   * Input dataset to compute metrics over.
   * </pre>
   *
   * <code>.google.privacy.dlp.v2.BigQueryTable source_table = 2;</code>
   *
   * @return Whether the sourceTable field is set.
   */
  boolean hasSourceTable();
  /**
   *
   *
   * <pre>
   * Input dataset to compute metrics over.
   * </pre>
   *
   * <code>.google.privacy.dlp.v2.BigQueryTable source_table = 2;</code>
   *
   * @return The sourceTable.
   */
  com.google.privacy.dlp.v2.BigQueryTable getSourceTable();
  /**
   *
   *
   * <pre>
   * Input dataset to compute metrics over.
   * </pre>
   *
   * <code>.google.privacy.dlp.v2.BigQueryTable source_table = 2;</code>
   */
  com.google.privacy.dlp.v2.BigQueryTableOrBuilder getSourceTableOrBuilder();

  /**
   *
   *
   * <pre>
   * Actions to execute at the completion of the job. Are executed in the order
   * provided.
   * </pre>
   *
   * <code>repeated .google.privacy.dlp.v2.Action actions = 3;</code>
   */
  java.util.List<com.google.privacy.dlp.v2.Action> getActionsList();
  /**
   *
   *
   * <pre>
   * Actions to execute at the completion of the job. Are executed in the order
   * provided.
   * </pre>
   *
   * <code>repeated .google.privacy.dlp.v2.Action actions = 3;</code>
   */
  com.google.privacy.dlp.v2.Action getActions(int index);
  /**
   *
   *
   * <pre>
   * Actions to execute at the completion of the job. Are executed in the order
   * provided.
   * </pre>
   *
   * <code>repeated .google.privacy.dlp.v2.Action actions = 3;</code>
   */
  int getActionsCount();
  /**
   *
   *
   * <pre>
   * Actions to execute at the completion of the job. Are executed in the order
   * provided.
   * </pre>
   *
   * <code>repeated .google.privacy.dlp.v2.Action actions = 3;</code>
   */
  java.util.List<? extends com.google.privacy.dlp.v2.ActionOrBuilder> getActionsOrBuilderList();
  /**
   *
   *
   * <pre>
   * Actions to execute at the completion of the job. Are executed in the order
   * provided.
   * </pre>
   *
   * <code>repeated .google.privacy.dlp.v2.Action actions = 3;</code>
   */
  com.google.privacy.dlp.v2.ActionOrBuilder getActionsOrBuilder(int index);
}
