/*
 * 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/container/v1beta1/cluster_service.proto

package com.google.container.v1beta1;

public interface ProtectConfigOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.container.v1beta1.ProtectConfig)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * <pre>
   * WorkloadConfig defines which actions are enabled for a cluster's workload
   * configurations.
   * </pre>
   *
   * <code>optional .google.container.v1beta1.WorkloadConfig workload_config = 1;</code>
   *
   * @return Whether the workloadConfig field is set.
   */
  boolean hasWorkloadConfig();
  /**
   *
   *
   * <pre>
   * WorkloadConfig defines which actions are enabled for a cluster's workload
   * configurations.
   * </pre>
   *
   * <code>optional .google.container.v1beta1.WorkloadConfig workload_config = 1;</code>
   *
   * @return The workloadConfig.
   */
  com.google.container.v1beta1.WorkloadConfig getWorkloadConfig();
  /**
   *
   *
   * <pre>
   * WorkloadConfig defines which actions are enabled for a cluster's workload
   * configurations.
   * </pre>
   *
   * <code>optional .google.container.v1beta1.WorkloadConfig workload_config = 1;</code>
   */
  com.google.container.v1beta1.WorkloadConfigOrBuilder getWorkloadConfigOrBuilder();

  /**
   *
   *
   * <pre>
   * Sets which mode to use for Protect workload vulnerability scanning feature.
   * </pre>
   *
   * <code>
   * optional .google.container.v1beta1.ProtectConfig.WorkloadVulnerabilityMode workload_vulnerability_mode = 2;
   * </code>
   *
   * @return Whether the workloadVulnerabilityMode field is set.
   */
  boolean hasWorkloadVulnerabilityMode();
  /**
   *
   *
   * <pre>
   * Sets which mode to use for Protect workload vulnerability scanning feature.
   * </pre>
   *
   * <code>
   * optional .google.container.v1beta1.ProtectConfig.WorkloadVulnerabilityMode workload_vulnerability_mode = 2;
   * </code>
   *
   * @return The enum numeric value on the wire for workloadVulnerabilityMode.
   */
  int getWorkloadVulnerabilityModeValue();
  /**
   *
   *
   * <pre>
   * Sets which mode to use for Protect workload vulnerability scanning feature.
   * </pre>
   *
   * <code>
   * optional .google.container.v1beta1.ProtectConfig.WorkloadVulnerabilityMode workload_vulnerability_mode = 2;
   * </code>
   *
   * @return The workloadVulnerabilityMode.
   */
  com.google.container.v1beta1.ProtectConfig.WorkloadVulnerabilityMode
      getWorkloadVulnerabilityMode();
}
