/*
 * 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/osconfig/v1alpha/config_common.proto

package com.google.cloud.osconfig.v1alpha;

@java.lang.Deprecated
public interface OSPolicyResourceComplianceOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.cloud.osconfig.v1alpha.OSPolicyResourceCompliance)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * <pre>
   * The id of the OS policy resource.
   * </pre>
   *
   * <code>string os_policy_resource_id = 1;</code>
   *
   * @return The osPolicyResourceId.
   */
  java.lang.String getOsPolicyResourceId();
  /**
   *
   *
   * <pre>
   * The id of the OS policy resource.
   * </pre>
   *
   * <code>string os_policy_resource_id = 1;</code>
   *
   * @return The bytes for osPolicyResourceId.
   */
  com.google.protobuf.ByteString getOsPolicyResourceIdBytes();

  /**
   *
   *
   * <pre>
   * Ordered list of configuration steps taken by the agent for the OS policy
   * resource.
   * </pre>
   *
   * <code>repeated .google.cloud.osconfig.v1alpha.OSPolicyResourceConfigStep config_steps = 2;
   * </code>
   */
  java.util.List<com.google.cloud.osconfig.v1alpha.OSPolicyResourceConfigStep> getConfigStepsList();
  /**
   *
   *
   * <pre>
   * Ordered list of configuration steps taken by the agent for the OS policy
   * resource.
   * </pre>
   *
   * <code>repeated .google.cloud.osconfig.v1alpha.OSPolicyResourceConfigStep config_steps = 2;
   * </code>
   */
  com.google.cloud.osconfig.v1alpha.OSPolicyResourceConfigStep getConfigSteps(int index);
  /**
   *
   *
   * <pre>
   * Ordered list of configuration steps taken by the agent for the OS policy
   * resource.
   * </pre>
   *
   * <code>repeated .google.cloud.osconfig.v1alpha.OSPolicyResourceConfigStep config_steps = 2;
   * </code>
   */
  int getConfigStepsCount();
  /**
   *
   *
   * <pre>
   * Ordered list of configuration steps taken by the agent for the OS policy
   * resource.
   * </pre>
   *
   * <code>repeated .google.cloud.osconfig.v1alpha.OSPolicyResourceConfigStep config_steps = 2;
   * </code>
   */
  java.util.List<? extends com.google.cloud.osconfig.v1alpha.OSPolicyResourceConfigStepOrBuilder>
      getConfigStepsOrBuilderList();
  /**
   *
   *
   * <pre>
   * Ordered list of configuration steps taken by the agent for the OS policy
   * resource.
   * </pre>
   *
   * <code>repeated .google.cloud.osconfig.v1alpha.OSPolicyResourceConfigStep config_steps = 2;
   * </code>
   */
  com.google.cloud.osconfig.v1alpha.OSPolicyResourceConfigStepOrBuilder getConfigStepsOrBuilder(
      int index);

  /**
   *
   *
   * <pre>
   * Compliance state of the OS policy resource.
   * </pre>
   *
   * <code>.google.cloud.osconfig.v1alpha.OSPolicyComplianceState state = 3;</code>
   *
   * @return The enum numeric value on the wire for state.
   */
  int getStateValue();
  /**
   *
   *
   * <pre>
   * Compliance state of the OS policy resource.
   * </pre>
   *
   * <code>.google.cloud.osconfig.v1alpha.OSPolicyComplianceState state = 3;</code>
   *
   * @return The state.
   */
  com.google.cloud.osconfig.v1alpha.OSPolicyComplianceState getState();

  /**
   *
   *
   * <pre>
   * ExecResource specific output.
   * </pre>
   *
   * <code>
   * .google.cloud.osconfig.v1alpha.OSPolicyResourceCompliance.ExecResourceOutput exec_resource_output = 4;
   * </code>
   *
   * @return Whether the execResourceOutput field is set.
   */
  boolean hasExecResourceOutput();
  /**
   *
   *
   * <pre>
   * ExecResource specific output.
   * </pre>
   *
   * <code>
   * .google.cloud.osconfig.v1alpha.OSPolicyResourceCompliance.ExecResourceOutput exec_resource_output = 4;
   * </code>
   *
   * @return The execResourceOutput.
   */
  com.google.cloud.osconfig.v1alpha.OSPolicyResourceCompliance.ExecResourceOutput
      getExecResourceOutput();
  /**
   *
   *
   * <pre>
   * ExecResource specific output.
   * </pre>
   *
   * <code>
   * .google.cloud.osconfig.v1alpha.OSPolicyResourceCompliance.ExecResourceOutput exec_resource_output = 4;
   * </code>
   */
  com.google.cloud.osconfig.v1alpha.OSPolicyResourceCompliance.ExecResourceOutputOrBuilder
      getExecResourceOutputOrBuilder();

  public com.google.cloud.osconfig.v1alpha.OSPolicyResourceCompliance.OutputCase getOutputCase();
}
