/*
 * 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/deploy/v1/cloud_deploy.proto

package com.google.cloud.deploy.v1;

/**
 *
 *
 * <pre>
 * Strategy contains deployment strategy information.
 * </pre>
 *
 * Protobuf type {@code google.cloud.deploy.v1.Strategy}
 */
public final class Strategy extends com.google.protobuf.GeneratedMessageV3
    implements
    // @@protoc_insertion_point(message_implements:google.cloud.deploy.v1.Strategy)
    StrategyOrBuilder {
  private static final long serialVersionUID = 0L;
  // Use Strategy.newBuilder() to construct.
  private Strategy(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {
    super(builder);
  }

  private Strategy() {}

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

  @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.deploy.v1.CloudDeployProto
        .internal_static_google_cloud_deploy_v1_Strategy_descriptor;
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return com.google.cloud.deploy.v1.CloudDeployProto
        .internal_static_google_cloud_deploy_v1_Strategy_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            com.google.cloud.deploy.v1.Strategy.class,
            com.google.cloud.deploy.v1.Strategy.Builder.class);
  }

  private int deploymentStrategyCase_ = 0;
  private java.lang.Object deploymentStrategy_;

  public enum DeploymentStrategyCase
      implements
          com.google.protobuf.Internal.EnumLite,
          com.google.protobuf.AbstractMessage.InternalOneOfEnum {
    STANDARD(1),
    CANARY(2),
    DEPLOYMENTSTRATEGY_NOT_SET(0);
    private final int value;

    private DeploymentStrategyCase(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 DeploymentStrategyCase valueOf(int value) {
      return forNumber(value);
    }

    public static DeploymentStrategyCase forNumber(int value) {
      switch (value) {
        case 1:
          return STANDARD;
        case 2:
          return CANARY;
        case 0:
          return DEPLOYMENTSTRATEGY_NOT_SET;
        default:
          return null;
      }
    }

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

  public DeploymentStrategyCase getDeploymentStrategyCase() {
    return DeploymentStrategyCase.forNumber(deploymentStrategyCase_);
  }

  public static final int STANDARD_FIELD_NUMBER = 1;
  /**
   *
   *
   * <pre>
   * Standard deployment strategy executes a single deploy and allows
   * verifying the deployment.
   * </pre>
   *
   * <code>.google.cloud.deploy.v1.Standard standard = 1;</code>
   *
   * @return Whether the standard field is set.
   */
  @java.lang.Override
  public boolean hasStandard() {
    return deploymentStrategyCase_ == 1;
  }
  /**
   *
   *
   * <pre>
   * Standard deployment strategy executes a single deploy and allows
   * verifying the deployment.
   * </pre>
   *
   * <code>.google.cloud.deploy.v1.Standard standard = 1;</code>
   *
   * @return The standard.
   */
  @java.lang.Override
  public com.google.cloud.deploy.v1.Standard getStandard() {
    if (deploymentStrategyCase_ == 1) {
      return (com.google.cloud.deploy.v1.Standard) deploymentStrategy_;
    }
    return com.google.cloud.deploy.v1.Standard.getDefaultInstance();
  }
  /**
   *
   *
   * <pre>
   * Standard deployment strategy executes a single deploy and allows
   * verifying the deployment.
   * </pre>
   *
   * <code>.google.cloud.deploy.v1.Standard standard = 1;</code>
   */
  @java.lang.Override
  public com.google.cloud.deploy.v1.StandardOrBuilder getStandardOrBuilder() {
    if (deploymentStrategyCase_ == 1) {
      return (com.google.cloud.deploy.v1.Standard) deploymentStrategy_;
    }
    return com.google.cloud.deploy.v1.Standard.getDefaultInstance();
  }

  public static final int CANARY_FIELD_NUMBER = 2;
  /**
   *
   *
   * <pre>
   * Canary deployment strategy provides progressive percentage based
   * deployments to a Target.
   * </pre>
   *
   * <code>.google.cloud.deploy.v1.Canary canary = 2;</code>
   *
   * @return Whether the canary field is set.
   */
  @java.lang.Override
  public boolean hasCanary() {
    return deploymentStrategyCase_ == 2;
  }
  /**
   *
   *
   * <pre>
   * Canary deployment strategy provides progressive percentage based
   * deployments to a Target.
   * </pre>
   *
   * <code>.google.cloud.deploy.v1.Canary canary = 2;</code>
   *
   * @return The canary.
   */
  @java.lang.Override
  public com.google.cloud.deploy.v1.Canary getCanary() {
    if (deploymentStrategyCase_ == 2) {
      return (com.google.cloud.deploy.v1.Canary) deploymentStrategy_;
    }
    return com.google.cloud.deploy.v1.Canary.getDefaultInstance();
  }
  /**
   *
   *
   * <pre>
   * Canary deployment strategy provides progressive percentage based
   * deployments to a Target.
   * </pre>
   *
   * <code>.google.cloud.deploy.v1.Canary canary = 2;</code>
   */
  @java.lang.Override
  public com.google.cloud.deploy.v1.CanaryOrBuilder getCanaryOrBuilder() {
    if (deploymentStrategyCase_ == 2) {
      return (com.google.cloud.deploy.v1.Canary) deploymentStrategy_;
    }
    return com.google.cloud.deploy.v1.Canary.getDefaultInstance();
  }

  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 (deploymentStrategyCase_ == 1) {
      output.writeMessage(1, (com.google.cloud.deploy.v1.Standard) deploymentStrategy_);
    }
    if (deploymentStrategyCase_ == 2) {
      output.writeMessage(2, (com.google.cloud.deploy.v1.Canary) deploymentStrategy_);
    }
    getUnknownFields().writeTo(output);
  }

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

    size = 0;
    if (deploymentStrategyCase_ == 1) {
      size +=
          com.google.protobuf.CodedOutputStream.computeMessageSize(
              1, (com.google.cloud.deploy.v1.Standard) deploymentStrategy_);
    }
    if (deploymentStrategyCase_ == 2) {
      size +=
          com.google.protobuf.CodedOutputStream.computeMessageSize(
              2, (com.google.cloud.deploy.v1.Canary) deploymentStrategy_);
    }
    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.deploy.v1.Strategy)) {
      return super.equals(obj);
    }
    com.google.cloud.deploy.v1.Strategy other = (com.google.cloud.deploy.v1.Strategy) obj;

    if (!getDeploymentStrategyCase().equals(other.getDeploymentStrategyCase())) return false;
    switch (deploymentStrategyCase_) {
      case 1:
        if (!getStandard().equals(other.getStandard())) return false;
        break;
      case 2:
        if (!getCanary().equals(other.getCanary())) 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();
    switch (deploymentStrategyCase_) {
      case 1:
        hash = (37 * hash) + STANDARD_FIELD_NUMBER;
        hash = (53 * hash) + getStandard().hashCode();
        break;
      case 2:
        hash = (37 * hash) + CANARY_FIELD_NUMBER;
        hash = (53 * hash) + getCanary().hashCode();
        break;
      case 0:
      default:
    }
    hash = (29 * hash) + getUnknownFields().hashCode();
    memoizedHashCode = hash;
    return hash;
  }

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

  public static com.google.cloud.deploy.v1.Strategy 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.deploy.v1.Strategy parseFrom(com.google.protobuf.ByteString data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }

  public static com.google.cloud.deploy.v1.Strategy 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.deploy.v1.Strategy parseFrom(byte[] data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }

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

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

  public static com.google.cloud.deploy.v1.Strategy 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.deploy.v1.Strategy parseDelimitedFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
  }

  public static com.google.cloud.deploy.v1.Strategy 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.deploy.v1.Strategy parseFrom(
      com.google.protobuf.CodedInputStream input) throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
  }

  public static com.google.cloud.deploy.v1.Strategy 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.deploy.v1.Strategy 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>
   * Strategy contains deployment strategy information.
   * </pre>
   *
   * Protobuf type {@code google.cloud.deploy.v1.Strategy}
   */
  public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder<Builder>
      implements
      // @@protoc_insertion_point(builder_implements:google.cloud.deploy.v1.Strategy)
      com.google.cloud.deploy.v1.StrategyOrBuilder {
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
      return com.google.cloud.deploy.v1.CloudDeployProto
          .internal_static_google_cloud_deploy_v1_Strategy_descriptor;
    }

    @java.lang.Override
    protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return com.google.cloud.deploy.v1.CloudDeployProto
          .internal_static_google_cloud_deploy_v1_Strategy_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              com.google.cloud.deploy.v1.Strategy.class,
              com.google.cloud.deploy.v1.Strategy.Builder.class);
    }

    // Construct using com.google.cloud.deploy.v1.Strategy.newBuilder()
    private Builder() {}

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

    @java.lang.Override
    public Builder clear() {
      super.clear();
      bitField0_ = 0;
      if (standardBuilder_ != null) {
        standardBuilder_.clear();
      }
      if (canaryBuilder_ != null) {
        canaryBuilder_.clear();
      }
      deploymentStrategyCase_ = 0;
      deploymentStrategy_ = null;
      return this;
    }

    @java.lang.Override
    public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
      return com.google.cloud.deploy.v1.CloudDeployProto
          .internal_static_google_cloud_deploy_v1_Strategy_descriptor;
    }

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

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

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

    private void buildPartial0(com.google.cloud.deploy.v1.Strategy result) {
      int from_bitField0_ = bitField0_;
    }

    private void buildPartialOneofs(com.google.cloud.deploy.v1.Strategy result) {
      result.deploymentStrategyCase_ = deploymentStrategyCase_;
      result.deploymentStrategy_ = this.deploymentStrategy_;
      if (deploymentStrategyCase_ == 1 && standardBuilder_ != null) {
        result.deploymentStrategy_ = standardBuilder_.build();
      }
      if (deploymentStrategyCase_ == 2 && canaryBuilder_ != null) {
        result.deploymentStrategy_ = canaryBuilder_.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.deploy.v1.Strategy) {
        return mergeFrom((com.google.cloud.deploy.v1.Strategy) other);
      } else {
        super.mergeFrom(other);
        return this;
      }
    }

    public Builder mergeFrom(com.google.cloud.deploy.v1.Strategy other) {
      if (other == com.google.cloud.deploy.v1.Strategy.getDefaultInstance()) return this;
      switch (other.getDeploymentStrategyCase()) {
        case STANDARD:
          {
            mergeStandard(other.getStandard());
            break;
          }
        case CANARY:
          {
            mergeCanary(other.getCanary());
            break;
          }
        case DEPLOYMENTSTRATEGY_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:
              {
                input.readMessage(getStandardFieldBuilder().getBuilder(), extensionRegistry);
                deploymentStrategyCase_ = 1;
                break;
              } // case 10
            case 18:
              {
                input.readMessage(getCanaryFieldBuilder().getBuilder(), extensionRegistry);
                deploymentStrategyCase_ = 2;
                break;
              } // case 18
            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 deploymentStrategyCase_ = 0;
    private java.lang.Object deploymentStrategy_;

    public DeploymentStrategyCase getDeploymentStrategyCase() {
      return DeploymentStrategyCase.forNumber(deploymentStrategyCase_);
    }

    public Builder clearDeploymentStrategy() {
      deploymentStrategyCase_ = 0;
      deploymentStrategy_ = null;
      onChanged();
      return this;
    }

    private int bitField0_;

    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.cloud.deploy.v1.Standard,
            com.google.cloud.deploy.v1.Standard.Builder,
            com.google.cloud.deploy.v1.StandardOrBuilder>
        standardBuilder_;
    /**
     *
     *
     * <pre>
     * Standard deployment strategy executes a single deploy and allows
     * verifying the deployment.
     * </pre>
     *
     * <code>.google.cloud.deploy.v1.Standard standard = 1;</code>
     *
     * @return Whether the standard field is set.
     */
    @java.lang.Override
    public boolean hasStandard() {
      return deploymentStrategyCase_ == 1;
    }
    /**
     *
     *
     * <pre>
     * Standard deployment strategy executes a single deploy and allows
     * verifying the deployment.
     * </pre>
     *
     * <code>.google.cloud.deploy.v1.Standard standard = 1;</code>
     *
     * @return The standard.
     */
    @java.lang.Override
    public com.google.cloud.deploy.v1.Standard getStandard() {
      if (standardBuilder_ == null) {
        if (deploymentStrategyCase_ == 1) {
          return (com.google.cloud.deploy.v1.Standard) deploymentStrategy_;
        }
        return com.google.cloud.deploy.v1.Standard.getDefaultInstance();
      } else {
        if (deploymentStrategyCase_ == 1) {
          return standardBuilder_.getMessage();
        }
        return com.google.cloud.deploy.v1.Standard.getDefaultInstance();
      }
    }
    /**
     *
     *
     * <pre>
     * Standard deployment strategy executes a single deploy and allows
     * verifying the deployment.
     * </pre>
     *
     * <code>.google.cloud.deploy.v1.Standard standard = 1;</code>
     */
    public Builder setStandard(com.google.cloud.deploy.v1.Standard value) {
      if (standardBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        deploymentStrategy_ = value;
        onChanged();
      } else {
        standardBuilder_.setMessage(value);
      }
      deploymentStrategyCase_ = 1;
      return this;
    }
    /**
     *
     *
     * <pre>
     * Standard deployment strategy executes a single deploy and allows
     * verifying the deployment.
     * </pre>
     *
     * <code>.google.cloud.deploy.v1.Standard standard = 1;</code>
     */
    public Builder setStandard(com.google.cloud.deploy.v1.Standard.Builder builderForValue) {
      if (standardBuilder_ == null) {
        deploymentStrategy_ = builderForValue.build();
        onChanged();
      } else {
        standardBuilder_.setMessage(builderForValue.build());
      }
      deploymentStrategyCase_ = 1;
      return this;
    }
    /**
     *
     *
     * <pre>
     * Standard deployment strategy executes a single deploy and allows
     * verifying the deployment.
     * </pre>
     *
     * <code>.google.cloud.deploy.v1.Standard standard = 1;</code>
     */
    public Builder mergeStandard(com.google.cloud.deploy.v1.Standard value) {
      if (standardBuilder_ == null) {
        if (deploymentStrategyCase_ == 1
            && deploymentStrategy_ != com.google.cloud.deploy.v1.Standard.getDefaultInstance()) {
          deploymentStrategy_ =
              com.google.cloud.deploy.v1.Standard.newBuilder(
                      (com.google.cloud.deploy.v1.Standard) deploymentStrategy_)
                  .mergeFrom(value)
                  .buildPartial();
        } else {
          deploymentStrategy_ = value;
        }
        onChanged();
      } else {
        if (deploymentStrategyCase_ == 1) {
          standardBuilder_.mergeFrom(value);
        } else {
          standardBuilder_.setMessage(value);
        }
      }
      deploymentStrategyCase_ = 1;
      return this;
    }
    /**
     *
     *
     * <pre>
     * Standard deployment strategy executes a single deploy and allows
     * verifying the deployment.
     * </pre>
     *
     * <code>.google.cloud.deploy.v1.Standard standard = 1;</code>
     */
    public Builder clearStandard() {
      if (standardBuilder_ == null) {
        if (deploymentStrategyCase_ == 1) {
          deploymentStrategyCase_ = 0;
          deploymentStrategy_ = null;
          onChanged();
        }
      } else {
        if (deploymentStrategyCase_ == 1) {
          deploymentStrategyCase_ = 0;
          deploymentStrategy_ = null;
        }
        standardBuilder_.clear();
      }
      return this;
    }
    /**
     *
     *
     * <pre>
     * Standard deployment strategy executes a single deploy and allows
     * verifying the deployment.
     * </pre>
     *
     * <code>.google.cloud.deploy.v1.Standard standard = 1;</code>
     */
    public com.google.cloud.deploy.v1.Standard.Builder getStandardBuilder() {
      return getStandardFieldBuilder().getBuilder();
    }
    /**
     *
     *
     * <pre>
     * Standard deployment strategy executes a single deploy and allows
     * verifying the deployment.
     * </pre>
     *
     * <code>.google.cloud.deploy.v1.Standard standard = 1;</code>
     */
    @java.lang.Override
    public com.google.cloud.deploy.v1.StandardOrBuilder getStandardOrBuilder() {
      if ((deploymentStrategyCase_ == 1) && (standardBuilder_ != null)) {
        return standardBuilder_.getMessageOrBuilder();
      } else {
        if (deploymentStrategyCase_ == 1) {
          return (com.google.cloud.deploy.v1.Standard) deploymentStrategy_;
        }
        return com.google.cloud.deploy.v1.Standard.getDefaultInstance();
      }
    }
    /**
     *
     *
     * <pre>
     * Standard deployment strategy executes a single deploy and allows
     * verifying the deployment.
     * </pre>
     *
     * <code>.google.cloud.deploy.v1.Standard standard = 1;</code>
     */
    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.cloud.deploy.v1.Standard,
            com.google.cloud.deploy.v1.Standard.Builder,
            com.google.cloud.deploy.v1.StandardOrBuilder>
        getStandardFieldBuilder() {
      if (standardBuilder_ == null) {
        if (!(deploymentStrategyCase_ == 1)) {
          deploymentStrategy_ = com.google.cloud.deploy.v1.Standard.getDefaultInstance();
        }
        standardBuilder_ =
            new com.google.protobuf.SingleFieldBuilderV3<
                com.google.cloud.deploy.v1.Standard,
                com.google.cloud.deploy.v1.Standard.Builder,
                com.google.cloud.deploy.v1.StandardOrBuilder>(
                (com.google.cloud.deploy.v1.Standard) deploymentStrategy_,
                getParentForChildren(),
                isClean());
        deploymentStrategy_ = null;
      }
      deploymentStrategyCase_ = 1;
      onChanged();
      return standardBuilder_;
    }

    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.cloud.deploy.v1.Canary,
            com.google.cloud.deploy.v1.Canary.Builder,
            com.google.cloud.deploy.v1.CanaryOrBuilder>
        canaryBuilder_;
    /**
     *
     *
     * <pre>
     * Canary deployment strategy provides progressive percentage based
     * deployments to a Target.
     * </pre>
     *
     * <code>.google.cloud.deploy.v1.Canary canary = 2;</code>
     *
     * @return Whether the canary field is set.
     */
    @java.lang.Override
    public boolean hasCanary() {
      return deploymentStrategyCase_ == 2;
    }
    /**
     *
     *
     * <pre>
     * Canary deployment strategy provides progressive percentage based
     * deployments to a Target.
     * </pre>
     *
     * <code>.google.cloud.deploy.v1.Canary canary = 2;</code>
     *
     * @return The canary.
     */
    @java.lang.Override
    public com.google.cloud.deploy.v1.Canary getCanary() {
      if (canaryBuilder_ == null) {
        if (deploymentStrategyCase_ == 2) {
          return (com.google.cloud.deploy.v1.Canary) deploymentStrategy_;
        }
        return com.google.cloud.deploy.v1.Canary.getDefaultInstance();
      } else {
        if (deploymentStrategyCase_ == 2) {
          return canaryBuilder_.getMessage();
        }
        return com.google.cloud.deploy.v1.Canary.getDefaultInstance();
      }
    }
    /**
     *
     *
     * <pre>
     * Canary deployment strategy provides progressive percentage based
     * deployments to a Target.
     * </pre>
     *
     * <code>.google.cloud.deploy.v1.Canary canary = 2;</code>
     */
    public Builder setCanary(com.google.cloud.deploy.v1.Canary value) {
      if (canaryBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        deploymentStrategy_ = value;
        onChanged();
      } else {
        canaryBuilder_.setMessage(value);
      }
      deploymentStrategyCase_ = 2;
      return this;
    }
    /**
     *
     *
     * <pre>
     * Canary deployment strategy provides progressive percentage based
     * deployments to a Target.
     * </pre>
     *
     * <code>.google.cloud.deploy.v1.Canary canary = 2;</code>
     */
    public Builder setCanary(com.google.cloud.deploy.v1.Canary.Builder builderForValue) {
      if (canaryBuilder_ == null) {
        deploymentStrategy_ = builderForValue.build();
        onChanged();
      } else {
        canaryBuilder_.setMessage(builderForValue.build());
      }
      deploymentStrategyCase_ = 2;
      return this;
    }
    /**
     *
     *
     * <pre>
     * Canary deployment strategy provides progressive percentage based
     * deployments to a Target.
     * </pre>
     *
     * <code>.google.cloud.deploy.v1.Canary canary = 2;</code>
     */
    public Builder mergeCanary(com.google.cloud.deploy.v1.Canary value) {
      if (canaryBuilder_ == null) {
        if (deploymentStrategyCase_ == 2
            && deploymentStrategy_ != com.google.cloud.deploy.v1.Canary.getDefaultInstance()) {
          deploymentStrategy_ =
              com.google.cloud.deploy.v1.Canary.newBuilder(
                      (com.google.cloud.deploy.v1.Canary) deploymentStrategy_)
                  .mergeFrom(value)
                  .buildPartial();
        } else {
          deploymentStrategy_ = value;
        }
        onChanged();
      } else {
        if (deploymentStrategyCase_ == 2) {
          canaryBuilder_.mergeFrom(value);
        } else {
          canaryBuilder_.setMessage(value);
        }
      }
      deploymentStrategyCase_ = 2;
      return this;
    }
    /**
     *
     *
     * <pre>
     * Canary deployment strategy provides progressive percentage based
     * deployments to a Target.
     * </pre>
     *
     * <code>.google.cloud.deploy.v1.Canary canary = 2;</code>
     */
    public Builder clearCanary() {
      if (canaryBuilder_ == null) {
        if (deploymentStrategyCase_ == 2) {
          deploymentStrategyCase_ = 0;
          deploymentStrategy_ = null;
          onChanged();
        }
      } else {
        if (deploymentStrategyCase_ == 2) {
          deploymentStrategyCase_ = 0;
          deploymentStrategy_ = null;
        }
        canaryBuilder_.clear();
      }
      return this;
    }
    /**
     *
     *
     * <pre>
     * Canary deployment strategy provides progressive percentage based
     * deployments to a Target.
     * </pre>
     *
     * <code>.google.cloud.deploy.v1.Canary canary = 2;</code>
     */
    public com.google.cloud.deploy.v1.Canary.Builder getCanaryBuilder() {
      return getCanaryFieldBuilder().getBuilder();
    }
    /**
     *
     *
     * <pre>
     * Canary deployment strategy provides progressive percentage based
     * deployments to a Target.
     * </pre>
     *
     * <code>.google.cloud.deploy.v1.Canary canary = 2;</code>
     */
    @java.lang.Override
    public com.google.cloud.deploy.v1.CanaryOrBuilder getCanaryOrBuilder() {
      if ((deploymentStrategyCase_ == 2) && (canaryBuilder_ != null)) {
        return canaryBuilder_.getMessageOrBuilder();
      } else {
        if (deploymentStrategyCase_ == 2) {
          return (com.google.cloud.deploy.v1.Canary) deploymentStrategy_;
        }
        return com.google.cloud.deploy.v1.Canary.getDefaultInstance();
      }
    }
    /**
     *
     *
     * <pre>
     * Canary deployment strategy provides progressive percentage based
     * deployments to a Target.
     * </pre>
     *
     * <code>.google.cloud.deploy.v1.Canary canary = 2;</code>
     */
    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.cloud.deploy.v1.Canary,
            com.google.cloud.deploy.v1.Canary.Builder,
            com.google.cloud.deploy.v1.CanaryOrBuilder>
        getCanaryFieldBuilder() {
      if (canaryBuilder_ == null) {
        if (!(deploymentStrategyCase_ == 2)) {
          deploymentStrategy_ = com.google.cloud.deploy.v1.Canary.getDefaultInstance();
        }
        canaryBuilder_ =
            new com.google.protobuf.SingleFieldBuilderV3<
                com.google.cloud.deploy.v1.Canary,
                com.google.cloud.deploy.v1.Canary.Builder,
                com.google.cloud.deploy.v1.CanaryOrBuilder>(
                (com.google.cloud.deploy.v1.Canary) deploymentStrategy_,
                getParentForChildren(),
                isClean());
        deploymentStrategy_ = null;
      }
      deploymentStrategyCase_ = 2;
      onChanged();
      return canaryBuilder_;
    }

    @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.deploy.v1.Strategy)
  }

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

  static {
    DEFAULT_INSTANCE = new com.google.cloud.deploy.v1.Strategy();
  }

  public static com.google.cloud.deploy.v1.Strategy getDefaultInstance() {
    return DEFAULT_INSTANCE;
  }

  private static final com.google.protobuf.Parser<Strategy> PARSER =
      new com.google.protobuf.AbstractParser<Strategy>() {
        @java.lang.Override
        public Strategy 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<Strategy> parser() {
    return PARSER;
  }

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

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