/*
 * 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/apigeeconnect/v1/tether.proto

package com.google.cloud.apigeeconnect.v1;

public interface EgressResponseOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.cloud.apigeeconnect.v1.EgressResponse)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * <pre>
   * Unique identifier for the response. Matches the EgressRequest's id.
   * </pre>
   *
   * <code>string id = 1;</code>
   *
   * @return The id.
   */
  java.lang.String getId();
  /**
   *
   *
   * <pre>
   * Unique identifier for the response. Matches the EgressRequest's id.
   * </pre>
   *
   * <code>string id = 1;</code>
   *
   * @return The bytes for id.
   */
  com.google.protobuf.ByteString getIdBytes();

  /**
   *
   *
   * <pre>
   * HttpResponse.
   * </pre>
   *
   * <code>.google.cloud.apigeeconnect.v1.HttpResponse http_response = 2;</code>
   *
   * @return Whether the httpResponse field is set.
   */
  boolean hasHttpResponse();
  /**
   *
   *
   * <pre>
   * HttpResponse.
   * </pre>
   *
   * <code>.google.cloud.apigeeconnect.v1.HttpResponse http_response = 2;</code>
   *
   * @return The httpResponse.
   */
  com.google.cloud.apigeeconnect.v1.HttpResponse getHttpResponse();
  /**
   *
   *
   * <pre>
   * HttpResponse.
   * </pre>
   *
   * <code>.google.cloud.apigeeconnect.v1.HttpResponse http_response = 2;</code>
   */
  com.google.cloud.apigeeconnect.v1.HttpResponseOrBuilder getHttpResponseOrBuilder();

  /**
   *
   *
   * <pre>
   * Errors from application when handling the http request.
   * </pre>
   *
   * <code>.google.rpc.Status status = 3;</code>
   *
   * @return Whether the status field is set.
   */
  boolean hasStatus();
  /**
   *
   *
   * <pre>
   * Errors from application when handling the http request.
   * </pre>
   *
   * <code>.google.rpc.Status status = 3;</code>
   *
   * @return The status.
   */
  com.google.rpc.Status getStatus();
  /**
   *
   *
   * <pre>
   * Errors from application when handling the http request.
   * </pre>
   *
   * <code>.google.rpc.Status status = 3;</code>
   */
  com.google.rpc.StatusOrBuilder getStatusOrBuilder();

  /**
   *
   *
   * <pre>
   * GCP Project.
   * Format: `projects/{project_number}`.
   * </pre>
   *
   * <code>string project = 4;</code>
   *
   * @return The project.
   */
  java.lang.String getProject();
  /**
   *
   *
   * <pre>
   * GCP Project.
   * Format: `projects/{project_number}`.
   * </pre>
   *
   * <code>string project = 4;</code>
   *
   * @return The bytes for project.
   */
  com.google.protobuf.ByteString getProjectBytes();

  /**
   *
   *
   * <pre>
   * Unique identifier for clients to trace their request/response. Matches the
   * EgressRequest's trace id
   * </pre>
   *
   * <code>string trace_id = 5;</code>
   *
   * @return The traceId.
   */
  java.lang.String getTraceId();
  /**
   *
   *
   * <pre>
   * Unique identifier for clients to trace their request/response. Matches the
   * EgressRequest's trace id
   * </pre>
   *
   * <code>string trace_id = 5;</code>
   *
   * @return The bytes for traceId.
   */
  com.google.protobuf.ByteString getTraceIdBytes();

  /**
   *
   *
   * <pre>
   * Tether Endpoint.
   * </pre>
   *
   * <code>.google.cloud.apigeeconnect.v1.TetherEndpoint endpoint = 6;</code>
   *
   * @return The enum numeric value on the wire for endpoint.
   */
  int getEndpointValue();
  /**
   *
   *
   * <pre>
   * Tether Endpoint.
   * </pre>
   *
   * <code>.google.cloud.apigeeconnect.v1.TetherEndpoint endpoint = 6;</code>
   *
   * @return The endpoint.
   */
  com.google.cloud.apigeeconnect.v1.TetherEndpoint getEndpoint();

  /**
   *
   *
   * <pre>
   * Name is the full resource path of endpoint.
   * Format: `projects/{project_number or project_id}/endpoints/{endpoint}`
   * </pre>
   *
   * <code>string name = 7;</code>
   *
   * @return The name.
   */
  java.lang.String getName();
  /**
   *
   *
   * <pre>
   * Name is the full resource path of endpoint.
   * Format: `projects/{project_number or project_id}/endpoints/{endpoint}`
   * </pre>
   *
   * <code>string name = 7;</code>
   *
   * @return The bytes for name.
   */
  com.google.protobuf.ByteString getNameBytes();
}
