/*
 * 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/cloud/websecurityscanner/v1/scan_run_log.proto

package com.google.cloud.websecurityscanner.v1;

public interface ScanRunLogOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.cloud.websecurityscanner.v1.ScanRunLog)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * <pre>
   * Human friendly message about the event.
   * </pre>
   *
   * <code>string summary = 1;</code>
   *
   * @return The summary.
   */
  java.lang.String getSummary();
  /**
   *
   *
   * <pre>
   * Human friendly message about the event.
   * </pre>
   *
   * <code>string summary = 1;</code>
   *
   * @return The bytes for summary.
   */
  com.google.protobuf.ByteString getSummaryBytes();

  /**
   *
   *
   * <pre>
   * The resource name of the ScanRun being logged.
   * </pre>
   *
   * <code>string name = 2;</code>
   *
   * @return The name.
   */
  java.lang.String getName();
  /**
   *
   *
   * <pre>
   * The resource name of the ScanRun being logged.
   * </pre>
   *
   * <code>string name = 2;</code>
   *
   * @return The bytes for name.
   */
  com.google.protobuf.ByteString getNameBytes();

  /**
   *
   *
   * <pre>
   * The execution state of the ScanRun.
   * </pre>
   *
   * <code>.google.cloud.websecurityscanner.v1.ScanRun.ExecutionState execution_state = 3;</code>
   *
   * @return The enum numeric value on the wire for executionState.
   */
  int getExecutionStateValue();
  /**
   *
   *
   * <pre>
   * The execution state of the ScanRun.
   * </pre>
   *
   * <code>.google.cloud.websecurityscanner.v1.ScanRun.ExecutionState execution_state = 3;</code>
   *
   * @return The executionState.
   */
  com.google.cloud.websecurityscanner.v1.ScanRun.ExecutionState getExecutionState();

  /**
   *
   *
   * <pre>
   * The result state of the ScanRun.
   * </pre>
   *
   * <code>.google.cloud.websecurityscanner.v1.ScanRun.ResultState result_state = 4;</code>
   *
   * @return The enum numeric value on the wire for resultState.
   */
  int getResultStateValue();
  /**
   *
   *
   * <pre>
   * The result state of the ScanRun.
   * </pre>
   *
   * <code>.google.cloud.websecurityscanner.v1.ScanRun.ResultState result_state = 4;</code>
   *
   * @return The resultState.
   */
  com.google.cloud.websecurityscanner.v1.ScanRun.ResultState getResultState();

  /**
   * <code>int64 urls_crawled_count = 5;</code>
   *
   * @return The urlsCrawledCount.
   */
  long getUrlsCrawledCount();

  /**
   * <code>int64 urls_tested_count = 6;</code>
   *
   * @return The urlsTestedCount.
   */
  long getUrlsTestedCount();

  /**
   * <code>bool has_findings = 7;</code>
   *
   * @return The hasFindings.
   */
  boolean getHasFindings();

  /**
   * <code>.google.cloud.websecurityscanner.v1.ScanRunErrorTrace error_trace = 8;</code>
   *
   * @return Whether the errorTrace field is set.
   */
  boolean hasErrorTrace();
  /**
   * <code>.google.cloud.websecurityscanner.v1.ScanRunErrorTrace error_trace = 8;</code>
   *
   * @return The errorTrace.
   */
  com.google.cloud.websecurityscanner.v1.ScanRunErrorTrace getErrorTrace();
  /** <code>.google.cloud.websecurityscanner.v1.ScanRunErrorTrace error_trace = 8;</code> */
  com.google.cloud.websecurityscanner.v1.ScanRunErrorTraceOrBuilder getErrorTraceOrBuilder();
}
