com.google.api.servicecontrol.v1.CheckRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of endpoints-management-protos Show documentation
Show all versions of endpoints-management-protos Show documentation
Contains the generated protocol buffer surface used by Endpoints
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/api/servicecontrol/v1/service_controller.proto
package com.google.api.servicecontrol.v1;
public interface CheckRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.api.servicecontrol.v1.CheckRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* The service name as specified in its service configuration. For example,
* `"pubsub.googleapis.com"`.
* See [google.api.Service][google.api.Service] for the definition of a service name.
*
*
* optional string service_name = 1;
*/
java.lang.String getServiceName();
/**
*
* The service name as specified in its service configuration. For example,
* `"pubsub.googleapis.com"`.
* See [google.api.Service][google.api.Service] for the definition of a service name.
*
*
* optional string service_name = 1;
*/
com.google.protobuf.ByteString
getServiceNameBytes();
/**
*
* The operation to be checked.
*
*
* optional .google.api.servicecontrol.v1.Operation operation = 2;
*/
boolean hasOperation();
/**
*
* The operation to be checked.
*
*
* optional .google.api.servicecontrol.v1.Operation operation = 2;
*/
com.google.api.servicecontrol.v1.Operation getOperation();
/**
*
* The operation to be checked.
*
*
* optional .google.api.servicecontrol.v1.Operation operation = 2;
*/
com.google.api.servicecontrol.v1.OperationOrBuilder getOperationOrBuilder();
}