com.google.api.servicecontrol.v2.ReportRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-service-control-v2 Show documentation
Show all versions of proto-google-cloud-service-control-v2 Show documentation
Proto library for google-cloud-service-control
The newest version!
/*
* Copyright 2024 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/api/servicecontrol/v2/service_controller.proto
// Protobuf Java Version: 3.25.5
package com.google.api.servicecontrol.v2;
public interface ReportRequestOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.api.servicecontrol.v2.ReportRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The service name as specified in its service configuration. For example,
* `"pubsub.googleapis.com"`.
*
* See
* [google.api.Service](https://cloud.google.com/service-management/reference/rpc/google.api#google.api.Service)
* for the definition of a service name.
*
*
* string service_name = 1;
*
* @return The serviceName.
*/
java.lang.String getServiceName();
/**
*
*
*
* The service name as specified in its service configuration. For example,
* `"pubsub.googleapis.com"`.
*
* See
* [google.api.Service](https://cloud.google.com/service-management/reference/rpc/google.api#google.api.Service)
* for the definition of a service name.
*
*
* string service_name = 1;
*
* @return The bytes for serviceName.
*/
com.google.protobuf.ByteString getServiceNameBytes();
/**
*
*
*
* Specifies the version of the service configuration that should be used to
* process the request. Must not be empty. Set this field to 'latest' to
* specify using the latest configuration.
*
*
* string service_config_id = 2;
*
* @return The serviceConfigId.
*/
java.lang.String getServiceConfigId();
/**
*
*
*
* Specifies the version of the service configuration that should be used to
* process the request. Must not be empty. Set this field to 'latest' to
* specify using the latest configuration.
*
*
* string service_config_id = 2;
*
* @return The bytes for serviceConfigId.
*/
com.google.protobuf.ByteString getServiceConfigIdBytes();
/**
*
*
*
* Describes the list of operations to be reported. Each operation is
* represented as an AttributeContext, and contains all attributes around an
* API access.
*
*
* repeated .google.rpc.context.AttributeContext operations = 3;
*/
java.util.List getOperationsList();
/**
*
*
*
* Describes the list of operations to be reported. Each operation is
* represented as an AttributeContext, and contains all attributes around an
* API access.
*
*
* repeated .google.rpc.context.AttributeContext operations = 3;
*/
com.google.rpc.context.AttributeContext getOperations(int index);
/**
*
*
*
* Describes the list of operations to be reported. Each operation is
* represented as an AttributeContext, and contains all attributes around an
* API access.
*
*
* repeated .google.rpc.context.AttributeContext operations = 3;
*/
int getOperationsCount();
/**
*
*
*
* Describes the list of operations to be reported. Each operation is
* represented as an AttributeContext, and contains all attributes around an
* API access.
*
*
* repeated .google.rpc.context.AttributeContext operations = 3;
*/
java.util.List extends com.google.rpc.context.AttributeContextOrBuilder>
getOperationsOrBuilderList();
/**
*
*
*
* Describes the list of operations to be reported. Each operation is
* represented as an AttributeContext, and contains all attributes around an
* API access.
*
*
* repeated .google.rpc.context.AttributeContext operations = 3;
*/
com.google.rpc.context.AttributeContextOrBuilder getOperationsOrBuilder(int index);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy