/*
 * 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/dataflow/v1beta3/streaming.proto

package com.google.dataflow.v1beta3;

public interface KeyRangeLocationOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.dataflow.v1beta3.KeyRangeLocation)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * <pre>
   * The start (inclusive) of the key range.
   * </pre>
   *
   * <code>string start = 1;</code>
   *
   * @return The start.
   */
  java.lang.String getStart();
  /**
   *
   *
   * <pre>
   * The start (inclusive) of the key range.
   * </pre>
   *
   * <code>string start = 1;</code>
   *
   * @return The bytes for start.
   */
  com.google.protobuf.ByteString getStartBytes();

  /**
   *
   *
   * <pre>
   * The end (exclusive) of the key range.
   * </pre>
   *
   * <code>string end = 2;</code>
   *
   * @return The end.
   */
  java.lang.String getEnd();
  /**
   *
   *
   * <pre>
   * The end (exclusive) of the key range.
   * </pre>
   *
   * <code>string end = 2;</code>
   *
   * @return The bytes for end.
   */
  com.google.protobuf.ByteString getEndBytes();

  /**
   *
   *
   * <pre>
   * The physical location of this range assignment to be used for
   * streaming computation cross-worker message delivery.
   * </pre>
   *
   * <code>string delivery_endpoint = 3;</code>
   *
   * @return The deliveryEndpoint.
   */
  java.lang.String getDeliveryEndpoint();
  /**
   *
   *
   * <pre>
   * The physical location of this range assignment to be used for
   * streaming computation cross-worker message delivery.
   * </pre>
   *
   * <code>string delivery_endpoint = 3;</code>
   *
   * @return The bytes for deliveryEndpoint.
   */
  com.google.protobuf.ByteString getDeliveryEndpointBytes();

  /**
   *
   *
   * <pre>
   * The name of the data disk where data for this range is stored.
   * This name is local to the Google Cloud Platform project and uniquely
   * identifies the disk within that project, for example
   * "myproject-1014-104817-4c2-harness-0-disk-1".
   * </pre>
   *
   * <code>string data_disk = 5;</code>
   *
   * @return The dataDisk.
   */
  java.lang.String getDataDisk();
  /**
   *
   *
   * <pre>
   * The name of the data disk where data for this range is stored.
   * This name is local to the Google Cloud Platform project and uniquely
   * identifies the disk within that project, for example
   * "myproject-1014-104817-4c2-harness-0-disk-1".
   * </pre>
   *
   * <code>string data_disk = 5;</code>
   *
   * @return The bytes for dataDisk.
   */
  com.google.protobuf.ByteString getDataDiskBytes();

  /**
   *
   *
   * <pre>
   * DEPRECATED. The location of the persistent state for this range, as a
   * persistent directory in the worker local filesystem.
   * </pre>
   *
   * <code>string deprecated_persistent_directory = 4 [deprecated = true];</code>
   *
   * @deprecated google.dataflow.v1beta3.KeyRangeLocation.deprecated_persistent_directory is
   *     deprecated. See google/dataflow/v1beta3/streaming.proto;l=170
   * @return The deprecatedPersistentDirectory.
   */
  @java.lang.Deprecated
  java.lang.String getDeprecatedPersistentDirectory();
  /**
   *
   *
   * <pre>
   * DEPRECATED. The location of the persistent state for this range, as a
   * persistent directory in the worker local filesystem.
   * </pre>
   *
   * <code>string deprecated_persistent_directory = 4 [deprecated = true];</code>
   *
   * @deprecated google.dataflow.v1beta3.KeyRangeLocation.deprecated_persistent_directory is
   *     deprecated. See google/dataflow/v1beta3/streaming.proto;l=170
   * @return The bytes for deprecatedPersistentDirectory.
   */
  @java.lang.Deprecated
  com.google.protobuf.ByteString getDeprecatedPersistentDirectoryBytes();
}
