com.google.api.servicecontrol.v1.ReportRequestOrBuilder 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 ReportRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.api.servicecontrol.v1.ReportRequest)
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();
/**
*
* Operations to be reported.
* Typically the service should report one operation per request.
* Putting multiple operations into a single request is allowed, but should
* be used only when multiple operations are natually available at the time
* of the report.
* If multiple operations are in a single request, the total request size
* should be no larger than 1MB. See [ReportResponse.report_errors][google.api.servicecontrol.v1.ReportResponse.report_errors] for
* partial failure behavior.
*
*
* repeated .google.api.servicecontrol.v1.Operation operations = 2;
*/
java.util.List
getOperationsList();
/**
*
* Operations to be reported.
* Typically the service should report one operation per request.
* Putting multiple operations into a single request is allowed, but should
* be used only when multiple operations are natually available at the time
* of the report.
* If multiple operations are in a single request, the total request size
* should be no larger than 1MB. See [ReportResponse.report_errors][google.api.servicecontrol.v1.ReportResponse.report_errors] for
* partial failure behavior.
*
*
* repeated .google.api.servicecontrol.v1.Operation operations = 2;
*/
com.google.api.servicecontrol.v1.Operation getOperations(int index);
/**
*
* Operations to be reported.
* Typically the service should report one operation per request.
* Putting multiple operations into a single request is allowed, but should
* be used only when multiple operations are natually available at the time
* of the report.
* If multiple operations are in a single request, the total request size
* should be no larger than 1MB. See [ReportResponse.report_errors][google.api.servicecontrol.v1.ReportResponse.report_errors] for
* partial failure behavior.
*
*
* repeated .google.api.servicecontrol.v1.Operation operations = 2;
*/
int getOperationsCount();
/**
*
* Operations to be reported.
* Typically the service should report one operation per request.
* Putting multiple operations into a single request is allowed, but should
* be used only when multiple operations are natually available at the time
* of the report.
* If multiple operations are in a single request, the total request size
* should be no larger than 1MB. See [ReportResponse.report_errors][google.api.servicecontrol.v1.ReportResponse.report_errors] for
* partial failure behavior.
*
*
* repeated .google.api.servicecontrol.v1.Operation operations = 2;
*/
java.util.List extends com.google.api.servicecontrol.v1.OperationOrBuilder>
getOperationsOrBuilderList();
/**
*
* Operations to be reported.
* Typically the service should report one operation per request.
* Putting multiple operations into a single request is allowed, but should
* be used only when multiple operations are natually available at the time
* of the report.
* If multiple operations are in a single request, the total request size
* should be no larger than 1MB. See [ReportResponse.report_errors][google.api.servicecontrol.v1.ReportResponse.report_errors] for
* partial failure behavior.
*
*
* repeated .google.api.servicecontrol.v1.Operation operations = 2;
*/
com.google.api.servicecontrol.v1.OperationOrBuilder getOperationsOrBuilder(
int index);
/**
*
* Specifies which version of service config should be used to process the
* request.
* If unspecified or no matching version can be found, the
* latest one will be used.
*
*
* optional string service_config_id = 3;
*/
java.lang.String getServiceConfigId();
/**
*
* Specifies which version of service config should be used to process the
* request.
* If unspecified or no matching version can be found, the
* latest one will be used.
*
*
* optional string service_config_id = 3;
*/
com.google.protobuf.ByteString
getServiceConfigIdBytes();
}