/*
 * 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/dataproc/v1/jobs.proto

package com.google.cloud.dataproc.v1;

/**
 *
 *
 * <pre>
 * A Dataproc job for running [Apache Hive](https://hive.apache.org/)
 * queries on YARN.
 * </pre>
 *
 * Protobuf type {@code google.cloud.dataproc.v1.HiveJob}
 */
public final class HiveJob extends com.google.protobuf.GeneratedMessageV3
    implements
    // @@protoc_insertion_point(message_implements:google.cloud.dataproc.v1.HiveJob)
    HiveJobOrBuilder {
  private static final long serialVersionUID = 0L;
  // Use HiveJob.newBuilder() to construct.
  private HiveJob(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {
    super(builder);
  }

  private HiveJob() {
    jarFileUris_ = com.google.protobuf.LazyStringArrayList.EMPTY;
  }

  @java.lang.Override
  @SuppressWarnings({"unused"})
  protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
    return new HiveJob();
  }

  @java.lang.Override
  public final com.google.protobuf.UnknownFieldSet getUnknownFields() {
    return this.unknownFields;
  }

  public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
    return com.google.cloud.dataproc.v1.JobsProto
        .internal_static_google_cloud_dataproc_v1_HiveJob_descriptor;
  }

  @SuppressWarnings({"rawtypes"})
  @java.lang.Override
  protected com.google.protobuf.MapField internalGetMapField(int number) {
    switch (number) {
      case 4:
        return internalGetScriptVariables();
      case 5:
        return internalGetProperties();
      default:
        throw new RuntimeException("Invalid map field number: " + number);
    }
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return com.google.cloud.dataproc.v1.JobsProto
        .internal_static_google_cloud_dataproc_v1_HiveJob_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            com.google.cloud.dataproc.v1.HiveJob.class,
            com.google.cloud.dataproc.v1.HiveJob.Builder.class);
  }

  private int queriesCase_ = 0;
  private java.lang.Object queries_;

  public enum QueriesCase
      implements
          com.google.protobuf.Internal.EnumLite,
          com.google.protobuf.AbstractMessage.InternalOneOfEnum {
    QUERY_FILE_URI(1),
    QUERY_LIST(2),
    QUERIES_NOT_SET(0);
    private final int value;

    private QueriesCase(int value) {
      this.value = value;
    }
    /**
     * @param value The number of the enum to look for.
     * @return The enum associated with the given number.
     * @deprecated Use {@link #forNumber(int)} instead.
     */
    @java.lang.Deprecated
    public static QueriesCase valueOf(int value) {
      return forNumber(value);
    }

    public static QueriesCase forNumber(int value) {
      switch (value) {
        case 1:
          return QUERY_FILE_URI;
        case 2:
          return QUERY_LIST;
        case 0:
          return QUERIES_NOT_SET;
        default:
          return null;
      }
    }

    public int getNumber() {
      return this.value;
    }
  };

  public QueriesCase getQueriesCase() {
    return QueriesCase.forNumber(queriesCase_);
  }

  public static final int QUERY_FILE_URI_FIELD_NUMBER = 1;
  /**
   *
   *
   * <pre>
   * The HCFS URI of the script that contains Hive queries.
   * </pre>
   *
   * <code>string query_file_uri = 1;</code>
   *
   * @return Whether the queryFileUri field is set.
   */
  public boolean hasQueryFileUri() {
    return queriesCase_ == 1;
  }
  /**
   *
   *
   * <pre>
   * The HCFS URI of the script that contains Hive queries.
   * </pre>
   *
   * <code>string query_file_uri = 1;</code>
   *
   * @return The queryFileUri.
   */
  public java.lang.String getQueryFileUri() {
    java.lang.Object ref = "";
    if (queriesCase_ == 1) {
      ref = queries_;
    }
    if (ref instanceof java.lang.String) {
      return (java.lang.String) ref;
    } else {
      com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
      java.lang.String s = bs.toStringUtf8();
      if (queriesCase_ == 1) {
        queries_ = s;
      }
      return s;
    }
  }
  /**
   *
   *
   * <pre>
   * The HCFS URI of the script that contains Hive queries.
   * </pre>
   *
   * <code>string query_file_uri = 1;</code>
   *
   * @return The bytes for queryFileUri.
   */
  public com.google.protobuf.ByteString getQueryFileUriBytes() {
    java.lang.Object ref = "";
    if (queriesCase_ == 1) {
      ref = queries_;
    }
    if (ref instanceof java.lang.String) {
      com.google.protobuf.ByteString b =
          com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
      if (queriesCase_ == 1) {
        queries_ = b;
      }
      return b;
    } else {
      return (com.google.protobuf.ByteString) ref;
    }
  }

  public static final int QUERY_LIST_FIELD_NUMBER = 2;
  /**
   *
   *
   * <pre>
   * A list of queries.
   * </pre>
   *
   * <code>.google.cloud.dataproc.v1.QueryList query_list = 2;</code>
   *
   * @return Whether the queryList field is set.
   */
  @java.lang.Override
  public boolean hasQueryList() {
    return queriesCase_ == 2;
  }
  /**
   *
   *
   * <pre>
   * A list of queries.
   * </pre>
   *
   * <code>.google.cloud.dataproc.v1.QueryList query_list = 2;</code>
   *
   * @return The queryList.
   */
  @java.lang.Override
  public com.google.cloud.dataproc.v1.QueryList getQueryList() {
    if (queriesCase_ == 2) {
      return (com.google.cloud.dataproc.v1.QueryList) queries_;
    }
    return com.google.cloud.dataproc.v1.QueryList.getDefaultInstance();
  }
  /**
   *
   *
   * <pre>
   * A list of queries.
   * </pre>
   *
   * <code>.google.cloud.dataproc.v1.QueryList query_list = 2;</code>
   */
  @java.lang.Override
  public com.google.cloud.dataproc.v1.QueryListOrBuilder getQueryListOrBuilder() {
    if (queriesCase_ == 2) {
      return (com.google.cloud.dataproc.v1.QueryList) queries_;
    }
    return com.google.cloud.dataproc.v1.QueryList.getDefaultInstance();
  }

  public static final int CONTINUE_ON_FAILURE_FIELD_NUMBER = 3;
  private boolean continueOnFailure_ = false;
  /**
   *
   *
   * <pre>
   * Optional. Whether to continue executing queries if a query fails.
   * The default value is `false`. Setting to `true` can be useful when
   * executing independent parallel queries.
   * </pre>
   *
   * <code>bool continue_on_failure = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
   *
   * @return The continueOnFailure.
   */
  @java.lang.Override
  public boolean getContinueOnFailure() {
    return continueOnFailure_;
  }

  public static final int SCRIPT_VARIABLES_FIELD_NUMBER = 4;

  private static final class ScriptVariablesDefaultEntryHolder {
    static final com.google.protobuf.MapEntry<java.lang.String, java.lang.String> defaultEntry =
        com.google.protobuf.MapEntry.<java.lang.String, java.lang.String>newDefaultInstance(
            com.google.cloud.dataproc.v1.JobsProto
                .internal_static_google_cloud_dataproc_v1_HiveJob_ScriptVariablesEntry_descriptor,
            com.google.protobuf.WireFormat.FieldType.STRING,
            "",
            com.google.protobuf.WireFormat.FieldType.STRING,
            "");
  }

  @SuppressWarnings("serial")
  private com.google.protobuf.MapField<java.lang.String, java.lang.String> scriptVariables_;

  private com.google.protobuf.MapField<java.lang.String, java.lang.String>
      internalGetScriptVariables() {
    if (scriptVariables_ == null) {
      return com.google.protobuf.MapField.emptyMapField(
          ScriptVariablesDefaultEntryHolder.defaultEntry);
    }
    return scriptVariables_;
  }

  public int getScriptVariablesCount() {
    return internalGetScriptVariables().getMap().size();
  }
  /**
   *
   *
   * <pre>
   * Optional. Mapping of query variable names to values (equivalent to the
   * Hive command: `SET name="value";`).
   * </pre>
   *
   * <code>map&lt;string, string&gt; script_variables = 4 [(.google.api.field_behavior) = OPTIONAL];
   * </code>
   */
  @java.lang.Override
  public boolean containsScriptVariables(java.lang.String key) {
    if (key == null) {
      throw new NullPointerException("map key");
    }
    return internalGetScriptVariables().getMap().containsKey(key);
  }
  /** Use {@link #getScriptVariablesMap()} instead. */
  @java.lang.Override
  @java.lang.Deprecated
  public java.util.Map<java.lang.String, java.lang.String> getScriptVariables() {
    return getScriptVariablesMap();
  }
  /**
   *
   *
   * <pre>
   * Optional. Mapping of query variable names to values (equivalent to the
   * Hive command: `SET name="value";`).
   * </pre>
   *
   * <code>map&lt;string, string&gt; script_variables = 4 [(.google.api.field_behavior) = OPTIONAL];
   * </code>
   */
  @java.lang.Override
  public java.util.Map<java.lang.String, java.lang.String> getScriptVariablesMap() {
    return internalGetScriptVariables().getMap();
  }
  /**
   *
   *
   * <pre>
   * Optional. Mapping of query variable names to values (equivalent to the
   * Hive command: `SET name="value";`).
   * </pre>
   *
   * <code>map&lt;string, string&gt; script_variables = 4 [(.google.api.field_behavior) = OPTIONAL];
   * </code>
   */
  @java.lang.Override
  public /* nullable */ java.lang.String getScriptVariablesOrDefault(
      java.lang.String key,
      /* nullable */
      java.lang.String defaultValue) {
    if (key == null) {
      throw new NullPointerException("map key");
    }
    java.util.Map<java.lang.String, java.lang.String> map = internalGetScriptVariables().getMap();
    return map.containsKey(key) ? map.get(key) : defaultValue;
  }
  /**
   *
   *
   * <pre>
   * Optional. Mapping of query variable names to values (equivalent to the
   * Hive command: `SET name="value";`).
   * </pre>
   *
   * <code>map&lt;string, string&gt; script_variables = 4 [(.google.api.field_behavior) = OPTIONAL];
   * </code>
   */
  @java.lang.Override
  public java.lang.String getScriptVariablesOrThrow(java.lang.String key) {
    if (key == null) {
      throw new NullPointerException("map key");
    }
    java.util.Map<java.lang.String, java.lang.String> map = internalGetScriptVariables().getMap();
    if (!map.containsKey(key)) {
      throw new java.lang.IllegalArgumentException();
    }
    return map.get(key);
  }

  public static final int PROPERTIES_FIELD_NUMBER = 5;

  private static final class PropertiesDefaultEntryHolder {
    static final com.google.protobuf.MapEntry<java.lang.String, java.lang.String> defaultEntry =
        com.google.protobuf.MapEntry.<java.lang.String, java.lang.String>newDefaultInstance(
            com.google.cloud.dataproc.v1.JobsProto
                .internal_static_google_cloud_dataproc_v1_HiveJob_PropertiesEntry_descriptor,
            com.google.protobuf.WireFormat.FieldType.STRING,
            "",
            com.google.protobuf.WireFormat.FieldType.STRING,
            "");
  }

  @SuppressWarnings("serial")
  private com.google.protobuf.MapField<java.lang.String, java.lang.String> properties_;

  private com.google.protobuf.MapField<java.lang.String, java.lang.String> internalGetProperties() {
    if (properties_ == null) {
      return com.google.protobuf.MapField.emptyMapField(PropertiesDefaultEntryHolder.defaultEntry);
    }
    return properties_;
  }

  public int getPropertiesCount() {
    return internalGetProperties().getMap().size();
  }
  /**
   *
   *
   * <pre>
   * Optional. A mapping of property names and values, used to configure Hive.
   * Properties that conflict with values set by the Dataproc API may be
   * overwritten. Can include properties set in /etc/hadoop/conf/&#42;-site.xml,
   * /etc/hive/conf/hive-site.xml, and classes in user code.
   * </pre>
   *
   * <code>map&lt;string, string&gt; properties = 5 [(.google.api.field_behavior) = OPTIONAL];
   * </code>
   */
  @java.lang.Override
  public boolean containsProperties(java.lang.String key) {
    if (key == null) {
      throw new NullPointerException("map key");
    }
    return internalGetProperties().getMap().containsKey(key);
  }
  /** Use {@link #getPropertiesMap()} instead. */
  @java.lang.Override
  @java.lang.Deprecated
  public java.util.Map<java.lang.String, java.lang.String> getProperties() {
    return getPropertiesMap();
  }
  /**
   *
   *
   * <pre>
   * Optional. A mapping of property names and values, used to configure Hive.
   * Properties that conflict with values set by the Dataproc API may be
   * overwritten. Can include properties set in /etc/hadoop/conf/&#42;-site.xml,
   * /etc/hive/conf/hive-site.xml, and classes in user code.
   * </pre>
   *
   * <code>map&lt;string, string&gt; properties = 5 [(.google.api.field_behavior) = OPTIONAL];
   * </code>
   */
  @java.lang.Override
  public java.util.Map<java.lang.String, java.lang.String> getPropertiesMap() {
    return internalGetProperties().getMap();
  }
  /**
   *
   *
   * <pre>
   * Optional. A mapping of property names and values, used to configure Hive.
   * Properties that conflict with values set by the Dataproc API may be
   * overwritten. Can include properties set in /etc/hadoop/conf/&#42;-site.xml,
   * /etc/hive/conf/hive-site.xml, and classes in user code.
   * </pre>
   *
   * <code>map&lt;string, string&gt; properties = 5 [(.google.api.field_behavior) = OPTIONAL];
   * </code>
   */
  @java.lang.Override
  public /* nullable */ java.lang.String getPropertiesOrDefault(
      java.lang.String key,
      /* nullable */
      java.lang.String defaultValue) {
    if (key == null) {
      throw new NullPointerException("map key");
    }
    java.util.Map<java.lang.String, java.lang.String> map = internalGetProperties().getMap();
    return map.containsKey(key) ? map.get(key) : defaultValue;
  }
  /**
   *
   *
   * <pre>
   * Optional. A mapping of property names and values, used to configure Hive.
   * Properties that conflict with values set by the Dataproc API may be
   * overwritten. Can include properties set in /etc/hadoop/conf/&#42;-site.xml,
   * /etc/hive/conf/hive-site.xml, and classes in user code.
   * </pre>
   *
   * <code>map&lt;string, string&gt; properties = 5 [(.google.api.field_behavior) = OPTIONAL];
   * </code>
   */
  @java.lang.Override
  public java.lang.String getPropertiesOrThrow(java.lang.String key) {
    if (key == null) {
      throw new NullPointerException("map key");
    }
    java.util.Map<java.lang.String, java.lang.String> map = internalGetProperties().getMap();
    if (!map.containsKey(key)) {
      throw new java.lang.IllegalArgumentException();
    }
    return map.get(key);
  }

  public static final int JAR_FILE_URIS_FIELD_NUMBER = 6;

  @SuppressWarnings("serial")
  private com.google.protobuf.LazyStringList jarFileUris_;
  /**
   *
   *
   * <pre>
   * Optional. HCFS URIs of jar files to add to the CLASSPATH of the
   * Hive server and Hadoop MapReduce (MR) tasks. Can contain Hive SerDes
   * and UDFs.
   * </pre>
   *
   * <code>repeated string jar_file_uris = 6 [(.google.api.field_behavior) = OPTIONAL];</code>
   *
   * @return A list containing the jarFileUris.
   */
  public com.google.protobuf.ProtocolStringList getJarFileUrisList() {
    return jarFileUris_;
  }
  /**
   *
   *
   * <pre>
   * Optional. HCFS URIs of jar files to add to the CLASSPATH of the
   * Hive server and Hadoop MapReduce (MR) tasks. Can contain Hive SerDes
   * and UDFs.
   * </pre>
   *
   * <code>repeated string jar_file_uris = 6 [(.google.api.field_behavior) = OPTIONAL];</code>
   *
   * @return The count of jarFileUris.
   */
  public int getJarFileUrisCount() {
    return jarFileUris_.size();
  }
  /**
   *
   *
   * <pre>
   * Optional. HCFS URIs of jar files to add to the CLASSPATH of the
   * Hive server and Hadoop MapReduce (MR) tasks. Can contain Hive SerDes
   * and UDFs.
   * </pre>
   *
   * <code>repeated string jar_file_uris = 6 [(.google.api.field_behavior) = OPTIONAL];</code>
   *
   * @param index The index of the element to return.
   * @return The jarFileUris at the given index.
   */
  public java.lang.String getJarFileUris(int index) {
    return jarFileUris_.get(index);
  }
  /**
   *
   *
   * <pre>
   * Optional. HCFS URIs of jar files to add to the CLASSPATH of the
   * Hive server and Hadoop MapReduce (MR) tasks. Can contain Hive SerDes
   * and UDFs.
   * </pre>
   *
   * <code>repeated string jar_file_uris = 6 [(.google.api.field_behavior) = OPTIONAL];</code>
   *
   * @param index The index of the value to return.
   * @return The bytes of the jarFileUris at the given index.
   */
  public com.google.protobuf.ByteString getJarFileUrisBytes(int index) {
    return jarFileUris_.getByteString(index);
  }

  private byte memoizedIsInitialized = -1;

  @java.lang.Override
  public final boolean isInitialized() {
    byte isInitialized = memoizedIsInitialized;
    if (isInitialized == 1) return true;
    if (isInitialized == 0) return false;

    memoizedIsInitialized = 1;
    return true;
  }

  @java.lang.Override
  public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
    if (queriesCase_ == 1) {
      com.google.protobuf.GeneratedMessageV3.writeString(output, 1, queries_);
    }
    if (queriesCase_ == 2) {
      output.writeMessage(2, (com.google.cloud.dataproc.v1.QueryList) queries_);
    }
    if (continueOnFailure_ != false) {
      output.writeBool(3, continueOnFailure_);
    }
    com.google.protobuf.GeneratedMessageV3.serializeStringMapTo(
        output, internalGetScriptVariables(), ScriptVariablesDefaultEntryHolder.defaultEntry, 4);
    com.google.protobuf.GeneratedMessageV3.serializeStringMapTo(
        output, internalGetProperties(), PropertiesDefaultEntryHolder.defaultEntry, 5);
    for (int i = 0; i < jarFileUris_.size(); i++) {
      com.google.protobuf.GeneratedMessageV3.writeString(output, 6, jarFileUris_.getRaw(i));
    }
    getUnknownFields().writeTo(output);
  }

  @java.lang.Override
  public int getSerializedSize() {
    int size = memoizedSize;
    if (size != -1) return size;

    size = 0;
    if (queriesCase_ == 1) {
      size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, queries_);
    }
    if (queriesCase_ == 2) {
      size +=
          com.google.protobuf.CodedOutputStream.computeMessageSize(
              2, (com.google.cloud.dataproc.v1.QueryList) queries_);
    }
    if (continueOnFailure_ != false) {
      size += com.google.protobuf.CodedOutputStream.computeBoolSize(3, continueOnFailure_);
    }
    for (java.util.Map.Entry<java.lang.String, java.lang.String> entry :
        internalGetScriptVariables().getMap().entrySet()) {
      com.google.protobuf.MapEntry<java.lang.String, java.lang.String> scriptVariables__ =
          ScriptVariablesDefaultEntryHolder.defaultEntry
              .newBuilderForType()
              .setKey(entry.getKey())
              .setValue(entry.getValue())
              .build();
      size += com.google.protobuf.CodedOutputStream.computeMessageSize(4, scriptVariables__);
    }
    for (java.util.Map.Entry<java.lang.String, java.lang.String> entry :
        internalGetProperties().getMap().entrySet()) {
      com.google.protobuf.MapEntry<java.lang.String, java.lang.String> properties__ =
          PropertiesDefaultEntryHolder.defaultEntry
              .newBuilderForType()
              .setKey(entry.getKey())
              .setValue(entry.getValue())
              .build();
      size += com.google.protobuf.CodedOutputStream.computeMessageSize(5, properties__);
    }
    {
      int dataSize = 0;
      for (int i = 0; i < jarFileUris_.size(); i++) {
        dataSize += computeStringSizeNoTag(jarFileUris_.getRaw(i));
      }
      size += dataSize;
      size += 1 * getJarFileUrisList().size();
    }
    size += getUnknownFields().getSerializedSize();
    memoizedSize = size;
    return size;
  }

  @java.lang.Override
  public boolean equals(final java.lang.Object obj) {
    if (obj == this) {
      return true;
    }
    if (!(obj instanceof com.google.cloud.dataproc.v1.HiveJob)) {
      return super.equals(obj);
    }
    com.google.cloud.dataproc.v1.HiveJob other = (com.google.cloud.dataproc.v1.HiveJob) obj;

    if (getContinueOnFailure() != other.getContinueOnFailure()) return false;
    if (!internalGetScriptVariables().equals(other.internalGetScriptVariables())) return false;
    if (!internalGetProperties().equals(other.internalGetProperties())) return false;
    if (!getJarFileUrisList().equals(other.getJarFileUrisList())) return false;
    if (!getQueriesCase().equals(other.getQueriesCase())) return false;
    switch (queriesCase_) {
      case 1:
        if (!getQueryFileUri().equals(other.getQueryFileUri())) return false;
        break;
      case 2:
        if (!getQueryList().equals(other.getQueryList())) return false;
        break;
      case 0:
      default:
    }
    if (!getUnknownFields().equals(other.getUnknownFields())) return false;
    return true;
  }

  @java.lang.Override
  public int hashCode() {
    if (memoizedHashCode != 0) {
      return memoizedHashCode;
    }
    int hash = 41;
    hash = (19 * hash) + getDescriptor().hashCode();
    hash = (37 * hash) + CONTINUE_ON_FAILURE_FIELD_NUMBER;
    hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getContinueOnFailure());
    if (!internalGetScriptVariables().getMap().isEmpty()) {
      hash = (37 * hash) + SCRIPT_VARIABLES_FIELD_NUMBER;
      hash = (53 * hash) + internalGetScriptVariables().hashCode();
    }
    if (!internalGetProperties().getMap().isEmpty()) {
      hash = (37 * hash) + PROPERTIES_FIELD_NUMBER;
      hash = (53 * hash) + internalGetProperties().hashCode();
    }
    if (getJarFileUrisCount() > 0) {
      hash = (37 * hash) + JAR_FILE_URIS_FIELD_NUMBER;
      hash = (53 * hash) + getJarFileUrisList().hashCode();
    }
    switch (queriesCase_) {
      case 1:
        hash = (37 * hash) + QUERY_FILE_URI_FIELD_NUMBER;
        hash = (53 * hash) + getQueryFileUri().hashCode();
        break;
      case 2:
        hash = (37 * hash) + QUERY_LIST_FIELD_NUMBER;
        hash = (53 * hash) + getQueryList().hashCode();
        break;
      case 0:
      default:
    }
    hash = (29 * hash) + getUnknownFields().hashCode();
    memoizedHashCode = hash;
    return hash;
  }

  public static com.google.cloud.dataproc.v1.HiveJob parseFrom(java.nio.ByteBuffer data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }

  public static com.google.cloud.dataproc.v1.HiveJob parseFrom(
      java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }

  public static com.google.cloud.dataproc.v1.HiveJob parseFrom(com.google.protobuf.ByteString data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }

  public static com.google.cloud.dataproc.v1.HiveJob parseFrom(
      com.google.protobuf.ByteString data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }

  public static com.google.cloud.dataproc.v1.HiveJob parseFrom(byte[] data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }

  public static com.google.cloud.dataproc.v1.HiveJob parseFrom(
      byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }

  public static com.google.cloud.dataproc.v1.HiveJob parseFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
  }

  public static com.google.cloud.dataproc.v1.HiveJob parseFrom(
      java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
        PARSER, input, extensionRegistry);
  }

  public static com.google.cloud.dataproc.v1.HiveJob parseDelimitedFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
  }

  public static com.google.cloud.dataproc.v1.HiveJob parseDelimitedFrom(
      java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
        PARSER, input, extensionRegistry);
  }

  public static com.google.cloud.dataproc.v1.HiveJob parseFrom(
      com.google.protobuf.CodedInputStream input) throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
  }

  public static com.google.cloud.dataproc.v1.HiveJob parseFrom(
      com.google.protobuf.CodedInputStream input,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
        PARSER, input, extensionRegistry);
  }

  @java.lang.Override
  public Builder newBuilderForType() {
    return newBuilder();
  }

  public static Builder newBuilder() {
    return DEFAULT_INSTANCE.toBuilder();
  }

  public static Builder newBuilder(com.google.cloud.dataproc.v1.HiveJob prototype) {
    return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
  }

  @java.lang.Override
  public Builder toBuilder() {
    return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
  }

  @java.lang.Override
  protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
    Builder builder = new Builder(parent);
    return builder;
  }
  /**
   *
   *
   * <pre>
   * A Dataproc job for running [Apache Hive](https://hive.apache.org/)
   * queries on YARN.
   * </pre>
   *
   * Protobuf type {@code google.cloud.dataproc.v1.HiveJob}
   */
  public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder<Builder>
      implements
      // @@protoc_insertion_point(builder_implements:google.cloud.dataproc.v1.HiveJob)
      com.google.cloud.dataproc.v1.HiveJobOrBuilder {
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
      return com.google.cloud.dataproc.v1.JobsProto
          .internal_static_google_cloud_dataproc_v1_HiveJob_descriptor;
    }

    @SuppressWarnings({"rawtypes"})
    protected com.google.protobuf.MapField internalGetMapField(int number) {
      switch (number) {
        case 4:
          return internalGetScriptVariables();
        case 5:
          return internalGetProperties();
        default:
          throw new RuntimeException("Invalid map field number: " + number);
      }
    }

    @SuppressWarnings({"rawtypes"})
    protected com.google.protobuf.MapField internalGetMutableMapField(int number) {
      switch (number) {
        case 4:
          return internalGetMutableScriptVariables();
        case 5:
          return internalGetMutableProperties();
        default:
          throw new RuntimeException("Invalid map field number: " + number);
      }
    }

    @java.lang.Override
    protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return com.google.cloud.dataproc.v1.JobsProto
          .internal_static_google_cloud_dataproc_v1_HiveJob_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              com.google.cloud.dataproc.v1.HiveJob.class,
              com.google.cloud.dataproc.v1.HiveJob.Builder.class);
    }

    // Construct using com.google.cloud.dataproc.v1.HiveJob.newBuilder()
    private Builder() {}

    private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
      super(parent);
    }

    @java.lang.Override
    public Builder clear() {
      super.clear();
      bitField0_ = 0;
      if (queryListBuilder_ != null) {
        queryListBuilder_.clear();
      }
      continueOnFailure_ = false;
      internalGetMutableScriptVariables().clear();
      internalGetMutableProperties().clear();
      jarFileUris_ = com.google.protobuf.LazyStringArrayList.EMPTY;
      bitField0_ = (bitField0_ & ~0x00000020);
      queriesCase_ = 0;
      queries_ = null;
      return this;
    }

    @java.lang.Override
    public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
      return com.google.cloud.dataproc.v1.JobsProto
          .internal_static_google_cloud_dataproc_v1_HiveJob_descriptor;
    }

    @java.lang.Override
    public com.google.cloud.dataproc.v1.HiveJob getDefaultInstanceForType() {
      return com.google.cloud.dataproc.v1.HiveJob.getDefaultInstance();
    }

    @java.lang.Override
    public com.google.cloud.dataproc.v1.HiveJob build() {
      com.google.cloud.dataproc.v1.HiveJob result = buildPartial();
      if (!result.isInitialized()) {
        throw newUninitializedMessageException(result);
      }
      return result;
    }

    @java.lang.Override
    public com.google.cloud.dataproc.v1.HiveJob buildPartial() {
      com.google.cloud.dataproc.v1.HiveJob result = new com.google.cloud.dataproc.v1.HiveJob(this);
      buildPartialRepeatedFields(result);
      if (bitField0_ != 0) {
        buildPartial0(result);
      }
      buildPartialOneofs(result);
      onBuilt();
      return result;
    }

    private void buildPartialRepeatedFields(com.google.cloud.dataproc.v1.HiveJob result) {
      if (((bitField0_ & 0x00000020) != 0)) {
        jarFileUris_ = jarFileUris_.getUnmodifiableView();
        bitField0_ = (bitField0_ & ~0x00000020);
      }
      result.jarFileUris_ = jarFileUris_;
    }

    private void buildPartial0(com.google.cloud.dataproc.v1.HiveJob result) {
      int from_bitField0_ = bitField0_;
      if (((from_bitField0_ & 0x00000004) != 0)) {
        result.continueOnFailure_ = continueOnFailure_;
      }
      if (((from_bitField0_ & 0x00000008) != 0)) {
        result.scriptVariables_ = internalGetScriptVariables();
        result.scriptVariables_.makeImmutable();
      }
      if (((from_bitField0_ & 0x00000010) != 0)) {
        result.properties_ = internalGetProperties();
        result.properties_.makeImmutable();
      }
    }

    private void buildPartialOneofs(com.google.cloud.dataproc.v1.HiveJob result) {
      result.queriesCase_ = queriesCase_;
      result.queries_ = this.queries_;
      if (queriesCase_ == 2 && queryListBuilder_ != null) {
        result.queries_ = queryListBuilder_.build();
      }
    }

    @java.lang.Override
    public Builder clone() {
      return super.clone();
    }

    @java.lang.Override
    public Builder setField(
        com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
      return super.setField(field, value);
    }

    @java.lang.Override
    public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
      return super.clearField(field);
    }

    @java.lang.Override
    public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
      return super.clearOneof(oneof);
    }

    @java.lang.Override
    public Builder setRepeatedField(
        com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) {
      return super.setRepeatedField(field, index, value);
    }

    @java.lang.Override
    public Builder addRepeatedField(
        com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
      return super.addRepeatedField(field, value);
    }

    @java.lang.Override
    public Builder mergeFrom(com.google.protobuf.Message other) {
      if (other instanceof com.google.cloud.dataproc.v1.HiveJob) {
        return mergeFrom((com.google.cloud.dataproc.v1.HiveJob) other);
      } else {
        super.mergeFrom(other);
        return this;
      }
    }

    public Builder mergeFrom(com.google.cloud.dataproc.v1.HiveJob other) {
      if (other == com.google.cloud.dataproc.v1.HiveJob.getDefaultInstance()) return this;
      if (other.getContinueOnFailure() != false) {
        setContinueOnFailure(other.getContinueOnFailure());
      }
      internalGetMutableScriptVariables().mergeFrom(other.internalGetScriptVariables());
      bitField0_ |= 0x00000008;
      internalGetMutableProperties().mergeFrom(other.internalGetProperties());
      bitField0_ |= 0x00000010;
      if (!other.jarFileUris_.isEmpty()) {
        if (jarFileUris_.isEmpty()) {
          jarFileUris_ = other.jarFileUris_;
          bitField0_ = (bitField0_ & ~0x00000020);
        } else {
          ensureJarFileUrisIsMutable();
          jarFileUris_.addAll(other.jarFileUris_);
        }
        onChanged();
      }
      switch (other.getQueriesCase()) {
        case QUERY_FILE_URI:
          {
            queriesCase_ = 1;
            queries_ = other.queries_;
            onChanged();
            break;
          }
        case QUERY_LIST:
          {
            mergeQueryList(other.getQueryList());
            break;
          }
        case QUERIES_NOT_SET:
          {
            break;
          }
      }
      this.mergeUnknownFields(other.getUnknownFields());
      onChanged();
      return this;
    }

    @java.lang.Override
    public final boolean isInitialized() {
      return true;
    }

    @java.lang.Override
    public Builder mergeFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      if (extensionRegistry == null) {
        throw new java.lang.NullPointerException();
      }
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            case 10:
              {
                java.lang.String s = input.readStringRequireUtf8();
                queriesCase_ = 1;
                queries_ = s;
                break;
              } // case 10
            case 18:
              {
                input.readMessage(getQueryListFieldBuilder().getBuilder(), extensionRegistry);
                queriesCase_ = 2;
                break;
              } // case 18
            case 24:
              {
                continueOnFailure_ = input.readBool();
                bitField0_ |= 0x00000004;
                break;
              } // case 24
            case 34:
              {
                com.google.protobuf.MapEntry<java.lang.String, java.lang.String> scriptVariables__ =
                    input.readMessage(
                        ScriptVariablesDefaultEntryHolder.defaultEntry.getParserForType(),
                        extensionRegistry);
                internalGetMutableScriptVariables()
                    .getMutableMap()
                    .put(scriptVariables__.getKey(), scriptVariables__.getValue());
                bitField0_ |= 0x00000008;
                break;
              } // case 34
            case 42:
              {
                com.google.protobuf.MapEntry<java.lang.String, java.lang.String> properties__ =
                    input.readMessage(
                        PropertiesDefaultEntryHolder.defaultEntry.getParserForType(),
                        extensionRegistry);
                internalGetMutableProperties()
                    .getMutableMap()
                    .put(properties__.getKey(), properties__.getValue());
                bitField0_ |= 0x00000010;
                break;
              } // case 42
            case 50:
              {
                java.lang.String s = input.readStringRequireUtf8();
                ensureJarFileUrisIsMutable();
                jarFileUris_.add(s);
                break;
              } // case 50
            default:
              {
                if (!super.parseUnknownField(input, extensionRegistry, tag)) {
                  done = true; // was an endgroup tag
                }
                break;
              } // default:
          } // switch (tag)
        } // while (!done)
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.unwrapIOException();
      } finally {
        onChanged();
      } // finally
      return this;
    }

    private int queriesCase_ = 0;
    private java.lang.Object queries_;

    public QueriesCase getQueriesCase() {
      return QueriesCase.forNumber(queriesCase_);
    }

    public Builder clearQueries() {
      queriesCase_ = 0;
      queries_ = null;
      onChanged();
      return this;
    }

    private int bitField0_;

    /**
     *
     *
     * <pre>
     * The HCFS URI of the script that contains Hive queries.
     * </pre>
     *
     * <code>string query_file_uri = 1;</code>
     *
     * @return Whether the queryFileUri field is set.
     */
    @java.lang.Override
    public boolean hasQueryFileUri() {
      return queriesCase_ == 1;
    }
    /**
     *
     *
     * <pre>
     * The HCFS URI of the script that contains Hive queries.
     * </pre>
     *
     * <code>string query_file_uri = 1;</code>
     *
     * @return The queryFileUri.
     */
    @java.lang.Override
    public java.lang.String getQueryFileUri() {
      java.lang.Object ref = "";
      if (queriesCase_ == 1) {
        ref = queries_;
      }
      if (!(ref instanceof java.lang.String)) {
        com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        if (queriesCase_ == 1) {
          queries_ = s;
        }
        return s;
      } else {
        return (java.lang.String) ref;
      }
    }
    /**
     *
     *
     * <pre>
     * The HCFS URI of the script that contains Hive queries.
     * </pre>
     *
     * <code>string query_file_uri = 1;</code>
     *
     * @return The bytes for queryFileUri.
     */
    @java.lang.Override
    public com.google.protobuf.ByteString getQueryFileUriBytes() {
      java.lang.Object ref = "";
      if (queriesCase_ == 1) {
        ref = queries_;
      }
      if (ref instanceof String) {
        com.google.protobuf.ByteString b =
            com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
        if (queriesCase_ == 1) {
          queries_ = b;
        }
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }
    /**
     *
     *
     * <pre>
     * The HCFS URI of the script that contains Hive queries.
     * </pre>
     *
     * <code>string query_file_uri = 1;</code>
     *
     * @param value The queryFileUri to set.
     * @return This builder for chaining.
     */
    public Builder setQueryFileUri(java.lang.String value) {
      if (value == null) {
        throw new NullPointerException();
      }
      queriesCase_ = 1;
      queries_ = value;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * The HCFS URI of the script that contains Hive queries.
     * </pre>
     *
     * <code>string query_file_uri = 1;</code>
     *
     * @return This builder for chaining.
     */
    public Builder clearQueryFileUri() {
      if (queriesCase_ == 1) {
        queriesCase_ = 0;
        queries_ = null;
        onChanged();
      }
      return this;
    }
    /**
     *
     *
     * <pre>
     * The HCFS URI of the script that contains Hive queries.
     * </pre>
     *
     * <code>string query_file_uri = 1;</code>
     *
     * @param value The bytes for queryFileUri to set.
     * @return This builder for chaining.
     */
    public Builder setQueryFileUriBytes(com.google.protobuf.ByteString value) {
      if (value == null) {
        throw new NullPointerException();
      }
      checkByteStringIsUtf8(value);
      queriesCase_ = 1;
      queries_ = value;
      onChanged();
      return this;
    }

    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.cloud.dataproc.v1.QueryList,
            com.google.cloud.dataproc.v1.QueryList.Builder,
            com.google.cloud.dataproc.v1.QueryListOrBuilder>
        queryListBuilder_;
    /**
     *
     *
     * <pre>
     * A list of queries.
     * </pre>
     *
     * <code>.google.cloud.dataproc.v1.QueryList query_list = 2;</code>
     *
     * @return Whether the queryList field is set.
     */
    @java.lang.Override
    public boolean hasQueryList() {
      return queriesCase_ == 2;
    }
    /**
     *
     *
     * <pre>
     * A list of queries.
     * </pre>
     *
     * <code>.google.cloud.dataproc.v1.QueryList query_list = 2;</code>
     *
     * @return The queryList.
     */
    @java.lang.Override
    public com.google.cloud.dataproc.v1.QueryList getQueryList() {
      if (queryListBuilder_ == null) {
        if (queriesCase_ == 2) {
          return (com.google.cloud.dataproc.v1.QueryList) queries_;
        }
        return com.google.cloud.dataproc.v1.QueryList.getDefaultInstance();
      } else {
        if (queriesCase_ == 2) {
          return queryListBuilder_.getMessage();
        }
        return com.google.cloud.dataproc.v1.QueryList.getDefaultInstance();
      }
    }
    /**
     *
     *
     * <pre>
     * A list of queries.
     * </pre>
     *
     * <code>.google.cloud.dataproc.v1.QueryList query_list = 2;</code>
     */
    public Builder setQueryList(com.google.cloud.dataproc.v1.QueryList value) {
      if (queryListBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        queries_ = value;
        onChanged();
      } else {
        queryListBuilder_.setMessage(value);
      }
      queriesCase_ = 2;
      return this;
    }
    /**
     *
     *
     * <pre>
     * A list of queries.
     * </pre>
     *
     * <code>.google.cloud.dataproc.v1.QueryList query_list = 2;</code>
     */
    public Builder setQueryList(com.google.cloud.dataproc.v1.QueryList.Builder builderForValue) {
      if (queryListBuilder_ == null) {
        queries_ = builderForValue.build();
        onChanged();
      } else {
        queryListBuilder_.setMessage(builderForValue.build());
      }
      queriesCase_ = 2;
      return this;
    }
    /**
     *
     *
     * <pre>
     * A list of queries.
     * </pre>
     *
     * <code>.google.cloud.dataproc.v1.QueryList query_list = 2;</code>
     */
    public Builder mergeQueryList(com.google.cloud.dataproc.v1.QueryList value) {
      if (queryListBuilder_ == null) {
        if (queriesCase_ == 2
            && queries_ != com.google.cloud.dataproc.v1.QueryList.getDefaultInstance()) {
          queries_ =
              com.google.cloud.dataproc.v1.QueryList.newBuilder(
                      (com.google.cloud.dataproc.v1.QueryList) queries_)
                  .mergeFrom(value)
                  .buildPartial();
        } else {
          queries_ = value;
        }
        onChanged();
      } else {
        if (queriesCase_ == 2) {
          queryListBuilder_.mergeFrom(value);
        } else {
          queryListBuilder_.setMessage(value);
        }
      }
      queriesCase_ = 2;
      return this;
    }
    /**
     *
     *
     * <pre>
     * A list of queries.
     * </pre>
     *
     * <code>.google.cloud.dataproc.v1.QueryList query_list = 2;</code>
     */
    public Builder clearQueryList() {
      if (queryListBuilder_ == null) {
        if (queriesCase_ == 2) {
          queriesCase_ = 0;
          queries_ = null;
          onChanged();
        }
      } else {
        if (queriesCase_ == 2) {
          queriesCase_ = 0;
          queries_ = null;
        }
        queryListBuilder_.clear();
      }
      return this;
    }
    /**
     *
     *
     * <pre>
     * A list of queries.
     * </pre>
     *
     * <code>.google.cloud.dataproc.v1.QueryList query_list = 2;</code>
     */
    public com.google.cloud.dataproc.v1.QueryList.Builder getQueryListBuilder() {
      return getQueryListFieldBuilder().getBuilder();
    }
    /**
     *
     *
     * <pre>
     * A list of queries.
     * </pre>
     *
     * <code>.google.cloud.dataproc.v1.QueryList query_list = 2;</code>
     */
    @java.lang.Override
    public com.google.cloud.dataproc.v1.QueryListOrBuilder getQueryListOrBuilder() {
      if ((queriesCase_ == 2) && (queryListBuilder_ != null)) {
        return queryListBuilder_.getMessageOrBuilder();
      } else {
        if (queriesCase_ == 2) {
          return (com.google.cloud.dataproc.v1.QueryList) queries_;
        }
        return com.google.cloud.dataproc.v1.QueryList.getDefaultInstance();
      }
    }
    /**
     *
     *
     * <pre>
     * A list of queries.
     * </pre>
     *
     * <code>.google.cloud.dataproc.v1.QueryList query_list = 2;</code>
     */
    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.cloud.dataproc.v1.QueryList,
            com.google.cloud.dataproc.v1.QueryList.Builder,
            com.google.cloud.dataproc.v1.QueryListOrBuilder>
        getQueryListFieldBuilder() {
      if (queryListBuilder_ == null) {
        if (!(queriesCase_ == 2)) {
          queries_ = com.google.cloud.dataproc.v1.QueryList.getDefaultInstance();
        }
        queryListBuilder_ =
            new com.google.protobuf.SingleFieldBuilderV3<
                com.google.cloud.dataproc.v1.QueryList,
                com.google.cloud.dataproc.v1.QueryList.Builder,
                com.google.cloud.dataproc.v1.QueryListOrBuilder>(
                (com.google.cloud.dataproc.v1.QueryList) queries_,
                getParentForChildren(),
                isClean());
        queries_ = null;
      }
      queriesCase_ = 2;
      onChanged();
      return queryListBuilder_;
    }

    private boolean continueOnFailure_;
    /**
     *
     *
     * <pre>
     * Optional. Whether to continue executing queries if a query fails.
     * The default value is `false`. Setting to `true` can be useful when
     * executing independent parallel queries.
     * </pre>
     *
     * <code>bool continue_on_failure = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @return The continueOnFailure.
     */
    @java.lang.Override
    public boolean getContinueOnFailure() {
      return continueOnFailure_;
    }
    /**
     *
     *
     * <pre>
     * Optional. Whether to continue executing queries if a query fails.
     * The default value is `false`. Setting to `true` can be useful when
     * executing independent parallel queries.
     * </pre>
     *
     * <code>bool continue_on_failure = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @param value The continueOnFailure to set.
     * @return This builder for chaining.
     */
    public Builder setContinueOnFailure(boolean value) {

      continueOnFailure_ = value;
      bitField0_ |= 0x00000004;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Optional. Whether to continue executing queries if a query fails.
     * The default value is `false`. Setting to `true` can be useful when
     * executing independent parallel queries.
     * </pre>
     *
     * <code>bool continue_on_failure = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @return This builder for chaining.
     */
    public Builder clearContinueOnFailure() {
      bitField0_ = (bitField0_ & ~0x00000004);
      continueOnFailure_ = false;
      onChanged();
      return this;
    }

    private com.google.protobuf.MapField<java.lang.String, java.lang.String> scriptVariables_;

    private com.google.protobuf.MapField<java.lang.String, java.lang.String>
        internalGetScriptVariables() {
      if (scriptVariables_ == null) {
        return com.google.protobuf.MapField.emptyMapField(
            ScriptVariablesDefaultEntryHolder.defaultEntry);
      }
      return scriptVariables_;
    }

    private com.google.protobuf.MapField<java.lang.String, java.lang.String>
        internalGetMutableScriptVariables() {
      if (scriptVariables_ == null) {
        scriptVariables_ =
            com.google.protobuf.MapField.newMapField(
                ScriptVariablesDefaultEntryHolder.defaultEntry);
      }
      if (!scriptVariables_.isMutable()) {
        scriptVariables_ = scriptVariables_.copy();
      }
      bitField0_ |= 0x00000008;
      onChanged();
      return scriptVariables_;
    }

    public int getScriptVariablesCount() {
      return internalGetScriptVariables().getMap().size();
    }
    /**
     *
     *
     * <pre>
     * Optional. Mapping of query variable names to values (equivalent to the
     * Hive command: `SET name="value";`).
     * </pre>
     *
     * <code>
     * map&lt;string, string&gt; script_variables = 4 [(.google.api.field_behavior) = OPTIONAL];
     * </code>
     */
    @java.lang.Override
    public boolean containsScriptVariables(java.lang.String key) {
      if (key == null) {
        throw new NullPointerException("map key");
      }
      return internalGetScriptVariables().getMap().containsKey(key);
    }
    /** Use {@link #getScriptVariablesMap()} instead. */
    @java.lang.Override
    @java.lang.Deprecated
    public java.util.Map<java.lang.String, java.lang.String> getScriptVariables() {
      return getScriptVariablesMap();
    }
    /**
     *
     *
     * <pre>
     * Optional. Mapping of query variable names to values (equivalent to the
     * Hive command: `SET name="value";`).
     * </pre>
     *
     * <code>
     * map&lt;string, string&gt; script_variables = 4 [(.google.api.field_behavior) = OPTIONAL];
     * </code>
     */
    @java.lang.Override
    public java.util.Map<java.lang.String, java.lang.String> getScriptVariablesMap() {
      return internalGetScriptVariables().getMap();
    }
    /**
     *
     *
     * <pre>
     * Optional. Mapping of query variable names to values (equivalent to the
     * Hive command: `SET name="value";`).
     * </pre>
     *
     * <code>
     * map&lt;string, string&gt; script_variables = 4 [(.google.api.field_behavior) = OPTIONAL];
     * </code>
     */
    @java.lang.Override
    public /* nullable */ java.lang.String getScriptVariablesOrDefault(
        java.lang.String key,
        /* nullable */
        java.lang.String defaultValue) {
      if (key == null) {
        throw new NullPointerException("map key");
      }
      java.util.Map<java.lang.String, java.lang.String> map = internalGetScriptVariables().getMap();
      return map.containsKey(key) ? map.get(key) : defaultValue;
    }
    /**
     *
     *
     * <pre>
     * Optional. Mapping of query variable names to values (equivalent to the
     * Hive command: `SET name="value";`).
     * </pre>
     *
     * <code>
     * map&lt;string, string&gt; script_variables = 4 [(.google.api.field_behavior) = OPTIONAL];
     * </code>
     */
    @java.lang.Override
    public java.lang.String getScriptVariablesOrThrow(java.lang.String key) {
      if (key == null) {
        throw new NullPointerException("map key");
      }
      java.util.Map<java.lang.String, java.lang.String> map = internalGetScriptVariables().getMap();
      if (!map.containsKey(key)) {
        throw new java.lang.IllegalArgumentException();
      }
      return map.get(key);
    }

    public Builder clearScriptVariables() {
      bitField0_ = (bitField0_ & ~0x00000008);
      internalGetMutableScriptVariables().getMutableMap().clear();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Optional. Mapping of query variable names to values (equivalent to the
     * Hive command: `SET name="value";`).
     * </pre>
     *
     * <code>
     * map&lt;string, string&gt; script_variables = 4 [(.google.api.field_behavior) = OPTIONAL];
     * </code>
     */
    public Builder removeScriptVariables(java.lang.String key) {
      if (key == null) {
        throw new NullPointerException("map key");
      }
      internalGetMutableScriptVariables().getMutableMap().remove(key);
      return this;
    }
    /** Use alternate mutation accessors instead. */
    @java.lang.Deprecated
    public java.util.Map<java.lang.String, java.lang.String> getMutableScriptVariables() {
      bitField0_ |= 0x00000008;
      return internalGetMutableScriptVariables().getMutableMap();
    }
    /**
     *
     *
     * <pre>
     * Optional. Mapping of query variable names to values (equivalent to the
     * Hive command: `SET name="value";`).
     * </pre>
     *
     * <code>
     * map&lt;string, string&gt; script_variables = 4 [(.google.api.field_behavior) = OPTIONAL];
     * </code>
     */
    public Builder putScriptVariables(java.lang.String key, java.lang.String value) {
      if (key == null) {
        throw new NullPointerException("map key");
      }
      if (value == null) {
        throw new NullPointerException("map value");
      }
      internalGetMutableScriptVariables().getMutableMap().put(key, value);
      bitField0_ |= 0x00000008;
      return this;
    }
    /**
     *
     *
     * <pre>
     * Optional. Mapping of query variable names to values (equivalent to the
     * Hive command: `SET name="value";`).
     * </pre>
     *
     * <code>
     * map&lt;string, string&gt; script_variables = 4 [(.google.api.field_behavior) = OPTIONAL];
     * </code>
     */
    public Builder putAllScriptVariables(java.util.Map<java.lang.String, java.lang.String> values) {
      internalGetMutableScriptVariables().getMutableMap().putAll(values);
      bitField0_ |= 0x00000008;
      return this;
    }

    private com.google.protobuf.MapField<java.lang.String, java.lang.String> properties_;

    private com.google.protobuf.MapField<java.lang.String, java.lang.String>
        internalGetProperties() {
      if (properties_ == null) {
        return com.google.protobuf.MapField.emptyMapField(
            PropertiesDefaultEntryHolder.defaultEntry);
      }
      return properties_;
    }

    private com.google.protobuf.MapField<java.lang.String, java.lang.String>
        internalGetMutableProperties() {
      if (properties_ == null) {
        properties_ =
            com.google.protobuf.MapField.newMapField(PropertiesDefaultEntryHolder.defaultEntry);
      }
      if (!properties_.isMutable()) {
        properties_ = properties_.copy();
      }
      bitField0_ |= 0x00000010;
      onChanged();
      return properties_;
    }

    public int getPropertiesCount() {
      return internalGetProperties().getMap().size();
    }
    /**
     *
     *
     * <pre>
     * Optional. A mapping of property names and values, used to configure Hive.
     * Properties that conflict with values set by the Dataproc API may be
     * overwritten. Can include properties set in /etc/hadoop/conf/&#42;-site.xml,
     * /etc/hive/conf/hive-site.xml, and classes in user code.
     * </pre>
     *
     * <code>map&lt;string, string&gt; properties = 5 [(.google.api.field_behavior) = OPTIONAL];
     * </code>
     */
    @java.lang.Override
    public boolean containsProperties(java.lang.String key) {
      if (key == null) {
        throw new NullPointerException("map key");
      }
      return internalGetProperties().getMap().containsKey(key);
    }
    /** Use {@link #getPropertiesMap()} instead. */
    @java.lang.Override
    @java.lang.Deprecated
    public java.util.Map<java.lang.String, java.lang.String> getProperties() {
      return getPropertiesMap();
    }
    /**
     *
     *
     * <pre>
     * Optional. A mapping of property names and values, used to configure Hive.
     * Properties that conflict with values set by the Dataproc API may be
     * overwritten. Can include properties set in /etc/hadoop/conf/&#42;-site.xml,
     * /etc/hive/conf/hive-site.xml, and classes in user code.
     * </pre>
     *
     * <code>map&lt;string, string&gt; properties = 5 [(.google.api.field_behavior) = OPTIONAL];
     * </code>
     */
    @java.lang.Override
    public java.util.Map<java.lang.String, java.lang.String> getPropertiesMap() {
      return internalGetProperties().getMap();
    }
    /**
     *
     *
     * <pre>
     * Optional. A mapping of property names and values, used to configure Hive.
     * Properties that conflict with values set by the Dataproc API may be
     * overwritten. Can include properties set in /etc/hadoop/conf/&#42;-site.xml,
     * /etc/hive/conf/hive-site.xml, and classes in user code.
     * </pre>
     *
     * <code>map&lt;string, string&gt; properties = 5 [(.google.api.field_behavior) = OPTIONAL];
     * </code>
     */
    @java.lang.Override
    public /* nullable */ java.lang.String getPropertiesOrDefault(
        java.lang.String key,
        /* nullable */
        java.lang.String defaultValue) {
      if (key == null) {
        throw new NullPointerException("map key");
      }
      java.util.Map<java.lang.String, java.lang.String> map = internalGetProperties().getMap();
      return map.containsKey(key) ? map.get(key) : defaultValue;
    }
    /**
     *
     *
     * <pre>
     * Optional. A mapping of property names and values, used to configure Hive.
     * Properties that conflict with values set by the Dataproc API may be
     * overwritten. Can include properties set in /etc/hadoop/conf/&#42;-site.xml,
     * /etc/hive/conf/hive-site.xml, and classes in user code.
     * </pre>
     *
     * <code>map&lt;string, string&gt; properties = 5 [(.google.api.field_behavior) = OPTIONAL];
     * </code>
     */
    @java.lang.Override
    public java.lang.String getPropertiesOrThrow(java.lang.String key) {
      if (key == null) {
        throw new NullPointerException("map key");
      }
      java.util.Map<java.lang.String, java.lang.String> map = internalGetProperties().getMap();
      if (!map.containsKey(key)) {
        throw new java.lang.IllegalArgumentException();
      }
      return map.get(key);
    }

    public Builder clearProperties() {
      bitField0_ = (bitField0_ & ~0x00000010);
      internalGetMutableProperties().getMutableMap().clear();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Optional. A mapping of property names and values, used to configure Hive.
     * Properties that conflict with values set by the Dataproc API may be
     * overwritten. Can include properties set in /etc/hadoop/conf/&#42;-site.xml,
     * /etc/hive/conf/hive-site.xml, and classes in user code.
     * </pre>
     *
     * <code>map&lt;string, string&gt; properties = 5 [(.google.api.field_behavior) = OPTIONAL];
     * </code>
     */
    public Builder removeProperties(java.lang.String key) {
      if (key == null) {
        throw new NullPointerException("map key");
      }
      internalGetMutableProperties().getMutableMap().remove(key);
      return this;
    }
    /** Use alternate mutation accessors instead. */
    @java.lang.Deprecated
    public java.util.Map<java.lang.String, java.lang.String> getMutableProperties() {
      bitField0_ |= 0x00000010;
      return internalGetMutableProperties().getMutableMap();
    }
    /**
     *
     *
     * <pre>
     * Optional. A mapping of property names and values, used to configure Hive.
     * Properties that conflict with values set by the Dataproc API may be
     * overwritten. Can include properties set in /etc/hadoop/conf/&#42;-site.xml,
     * /etc/hive/conf/hive-site.xml, and classes in user code.
     * </pre>
     *
     * <code>map&lt;string, string&gt; properties = 5 [(.google.api.field_behavior) = OPTIONAL];
     * </code>
     */
    public Builder putProperties(java.lang.String key, java.lang.String value) {
      if (key == null) {
        throw new NullPointerException("map key");
      }
      if (value == null) {
        throw new NullPointerException("map value");
      }
      internalGetMutableProperties().getMutableMap().put(key, value);
      bitField0_ |= 0x00000010;
      return this;
    }
    /**
     *
     *
     * <pre>
     * Optional. A mapping of property names and values, used to configure Hive.
     * Properties that conflict with values set by the Dataproc API may be
     * overwritten. Can include properties set in /etc/hadoop/conf/&#42;-site.xml,
     * /etc/hive/conf/hive-site.xml, and classes in user code.
     * </pre>
     *
     * <code>map&lt;string, string&gt; properties = 5 [(.google.api.field_behavior) = OPTIONAL];
     * </code>
     */
    public Builder putAllProperties(java.util.Map<java.lang.String, java.lang.String> values) {
      internalGetMutableProperties().getMutableMap().putAll(values);
      bitField0_ |= 0x00000010;
      return this;
    }

    private com.google.protobuf.LazyStringList jarFileUris_ =
        com.google.protobuf.LazyStringArrayList.EMPTY;

    private void ensureJarFileUrisIsMutable() {
      if (!((bitField0_ & 0x00000020) != 0)) {
        jarFileUris_ = new com.google.protobuf.LazyStringArrayList(jarFileUris_);
        bitField0_ |= 0x00000020;
      }
    }
    /**
     *
     *
     * <pre>
     * Optional. HCFS URIs of jar files to add to the CLASSPATH of the
     * Hive server and Hadoop MapReduce (MR) tasks. Can contain Hive SerDes
     * and UDFs.
     * </pre>
     *
     * <code>repeated string jar_file_uris = 6 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @return A list containing the jarFileUris.
     */
    public com.google.protobuf.ProtocolStringList getJarFileUrisList() {
      return jarFileUris_.getUnmodifiableView();
    }
    /**
     *
     *
     * <pre>
     * Optional. HCFS URIs of jar files to add to the CLASSPATH of the
     * Hive server and Hadoop MapReduce (MR) tasks. Can contain Hive SerDes
     * and UDFs.
     * </pre>
     *
     * <code>repeated string jar_file_uris = 6 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @return The count of jarFileUris.
     */
    public int getJarFileUrisCount() {
      return jarFileUris_.size();
    }
    /**
     *
     *
     * <pre>
     * Optional. HCFS URIs of jar files to add to the CLASSPATH of the
     * Hive server and Hadoop MapReduce (MR) tasks. Can contain Hive SerDes
     * and UDFs.
     * </pre>
     *
     * <code>repeated string jar_file_uris = 6 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @param index The index of the element to return.
     * @return The jarFileUris at the given index.
     */
    public java.lang.String getJarFileUris(int index) {
      return jarFileUris_.get(index);
    }
    /**
     *
     *
     * <pre>
     * Optional. HCFS URIs of jar files to add to the CLASSPATH of the
     * Hive server and Hadoop MapReduce (MR) tasks. Can contain Hive SerDes
     * and UDFs.
     * </pre>
     *
     * <code>repeated string jar_file_uris = 6 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @param index The index of the value to return.
     * @return The bytes of the jarFileUris at the given index.
     */
    public com.google.protobuf.ByteString getJarFileUrisBytes(int index) {
      return jarFileUris_.getByteString(index);
    }
    /**
     *
     *
     * <pre>
     * Optional. HCFS URIs of jar files to add to the CLASSPATH of the
     * Hive server and Hadoop MapReduce (MR) tasks. Can contain Hive SerDes
     * and UDFs.
     * </pre>
     *
     * <code>repeated string jar_file_uris = 6 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @param index The index to set the value at.
     * @param value The jarFileUris to set.
     * @return This builder for chaining.
     */
    public Builder setJarFileUris(int index, java.lang.String value) {
      if (value == null) {
        throw new NullPointerException();
      }
      ensureJarFileUrisIsMutable();
      jarFileUris_.set(index, value);
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Optional. HCFS URIs of jar files to add to the CLASSPATH of the
     * Hive server and Hadoop MapReduce (MR) tasks. Can contain Hive SerDes
     * and UDFs.
     * </pre>
     *
     * <code>repeated string jar_file_uris = 6 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @param value The jarFileUris to add.
     * @return This builder for chaining.
     */
    public Builder addJarFileUris(java.lang.String value) {
      if (value == null) {
        throw new NullPointerException();
      }
      ensureJarFileUrisIsMutable();
      jarFileUris_.add(value);
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Optional. HCFS URIs of jar files to add to the CLASSPATH of the
     * Hive server and Hadoop MapReduce (MR) tasks. Can contain Hive SerDes
     * and UDFs.
     * </pre>
     *
     * <code>repeated string jar_file_uris = 6 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @param values The jarFileUris to add.
     * @return This builder for chaining.
     */
    public Builder addAllJarFileUris(java.lang.Iterable<java.lang.String> values) {
      ensureJarFileUrisIsMutable();
      com.google.protobuf.AbstractMessageLite.Builder.addAll(values, jarFileUris_);
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Optional. HCFS URIs of jar files to add to the CLASSPATH of the
     * Hive server and Hadoop MapReduce (MR) tasks. Can contain Hive SerDes
     * and UDFs.
     * </pre>
     *
     * <code>repeated string jar_file_uris = 6 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @return This builder for chaining.
     */
    public Builder clearJarFileUris() {
      jarFileUris_ = com.google.protobuf.LazyStringArrayList.EMPTY;
      bitField0_ = (bitField0_ & ~0x00000020);
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Optional. HCFS URIs of jar files to add to the CLASSPATH of the
     * Hive server and Hadoop MapReduce (MR) tasks. Can contain Hive SerDes
     * and UDFs.
     * </pre>
     *
     * <code>repeated string jar_file_uris = 6 [(.google.api.field_behavior) = OPTIONAL];</code>
     *
     * @param value The bytes of the jarFileUris to add.
     * @return This builder for chaining.
     */
    public Builder addJarFileUrisBytes(com.google.protobuf.ByteString value) {
      if (value == null) {
        throw new NullPointerException();
      }
      checkByteStringIsUtf8(value);
      ensureJarFileUrisIsMutable();
      jarFileUris_.add(value);
      onChanged();
      return this;
    }

    @java.lang.Override
    public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) {
      return super.setUnknownFields(unknownFields);
    }

    @java.lang.Override
    public final Builder mergeUnknownFields(
        final com.google.protobuf.UnknownFieldSet unknownFields) {
      return super.mergeUnknownFields(unknownFields);
    }

    // @@protoc_insertion_point(builder_scope:google.cloud.dataproc.v1.HiveJob)
  }

  // @@protoc_insertion_point(class_scope:google.cloud.dataproc.v1.HiveJob)
  private static final com.google.cloud.dataproc.v1.HiveJob DEFAULT_INSTANCE;

  static {
    DEFAULT_INSTANCE = new com.google.cloud.dataproc.v1.HiveJob();
  }

  public static com.google.cloud.dataproc.v1.HiveJob getDefaultInstance() {
    return DEFAULT_INSTANCE;
  }

  private static final com.google.protobuf.Parser<HiveJob> PARSER =
      new com.google.protobuf.AbstractParser<HiveJob>() {
        @java.lang.Override
        public HiveJob parsePartialFrom(
            com.google.protobuf.CodedInputStream input,
            com.google.protobuf.ExtensionRegistryLite extensionRegistry)
            throws com.google.protobuf.InvalidProtocolBufferException {
          Builder builder = newBuilder();
          try {
            builder.mergeFrom(input, extensionRegistry);
          } catch (com.google.protobuf.InvalidProtocolBufferException e) {
            throw e.setUnfinishedMessage(builder.buildPartial());
          } catch (com.google.protobuf.UninitializedMessageException e) {
            throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
          } catch (java.io.IOException e) {
            throw new com.google.protobuf.InvalidProtocolBufferException(e)
                .setUnfinishedMessage(builder.buildPartial());
          }
          return builder.buildPartial();
        }
      };

  public static com.google.protobuf.Parser<HiveJob> parser() {
    return PARSER;
  }

  @java.lang.Override
  public com.google.protobuf.Parser<HiveJob> getParserForType() {
    return PARSER;
  }

  @java.lang.Override
  public com.google.cloud.dataproc.v1.HiveJob getDefaultInstanceForType() {
    return DEFAULT_INSTANCE;
  }
}
