
com.google.ads.googleads.v9.services.AccountBudgetServiceGrpc Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-ads-stubs-v9 Show documentation
Show all versions of google-ads-stubs-v9 Show documentation
Stubs for GAAPI version google-ads-stubs-v9
The newest version!
package com.google.ads.googleads.v9.services;
import static io.grpc.MethodDescriptor.generateFullMethodName;
/**
*
* A service for fetching an account-level budget.
* Account-level budgets are mutated by creating proposal resources.
*
*/
@javax.annotation.Generated(
value = "by gRPC proto compiler",
comments = "Source: google/ads/googleads/v9/services/account_budget_service.proto")
@io.grpc.stub.annotations.GrpcGenerated
public final class AccountBudgetServiceGrpc {
private AccountBudgetServiceGrpc() {}
public static final String SERVICE_NAME = "google.ads.googleads.v9.services.AccountBudgetService";
// Static method descriptors that strictly reflect the proto.
private static volatile io.grpc.MethodDescriptor getGetAccountBudgetMethod;
@io.grpc.stub.annotations.RpcMethod(
fullMethodName = SERVICE_NAME + '/' + "GetAccountBudget",
requestType = com.google.ads.googleads.v9.services.GetAccountBudgetRequest.class,
responseType = com.google.ads.googleads.v9.resources.AccountBudget.class,
methodType = io.grpc.MethodDescriptor.MethodType.UNARY)
public static io.grpc.MethodDescriptor getGetAccountBudgetMethod() {
io.grpc.MethodDescriptor getGetAccountBudgetMethod;
if ((getGetAccountBudgetMethod = AccountBudgetServiceGrpc.getGetAccountBudgetMethod) == null) {
synchronized (AccountBudgetServiceGrpc.class) {
if ((getGetAccountBudgetMethod = AccountBudgetServiceGrpc.getGetAccountBudgetMethod) == null) {
AccountBudgetServiceGrpc.getGetAccountBudgetMethod = getGetAccountBudgetMethod =
io.grpc.MethodDescriptor.newBuilder()
.setType(io.grpc.MethodDescriptor.MethodType.UNARY)
.setFullMethodName(generateFullMethodName(SERVICE_NAME, "GetAccountBudget"))
.setSampledToLocalTracing(true)
.setRequestMarshaller(io.grpc.protobuf.ProtoUtils.marshaller(
com.google.ads.googleads.v9.services.GetAccountBudgetRequest.getDefaultInstance()))
.setResponseMarshaller(io.grpc.protobuf.ProtoUtils.marshaller(
com.google.ads.googleads.v9.resources.AccountBudget.getDefaultInstance()))
.setSchemaDescriptor(new AccountBudgetServiceMethodDescriptorSupplier("GetAccountBudget"))
.build();
}
}
}
return getGetAccountBudgetMethod;
}
/**
* Creates a new async stub that supports all call types for the service
*/
public static AccountBudgetServiceStub newStub(io.grpc.Channel channel) {
io.grpc.stub.AbstractStub.StubFactory factory =
new io.grpc.stub.AbstractStub.StubFactory() {
@java.lang.Override
public AccountBudgetServiceStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new AccountBudgetServiceStub(channel, callOptions);
}
};
return AccountBudgetServiceStub.newStub(factory, channel);
}
/**
* Creates a new blocking-style stub that supports unary and streaming output calls on the service
*/
public static AccountBudgetServiceBlockingStub newBlockingStub(
io.grpc.Channel channel) {
io.grpc.stub.AbstractStub.StubFactory factory =
new io.grpc.stub.AbstractStub.StubFactory() {
@java.lang.Override
public AccountBudgetServiceBlockingStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new AccountBudgetServiceBlockingStub(channel, callOptions);
}
};
return AccountBudgetServiceBlockingStub.newStub(factory, channel);
}
/**
* Creates a new ListenableFuture-style stub that supports unary calls on the service
*/
public static AccountBudgetServiceFutureStub newFutureStub(
io.grpc.Channel channel) {
io.grpc.stub.AbstractStub.StubFactory factory =
new io.grpc.stub.AbstractStub.StubFactory() {
@java.lang.Override
public AccountBudgetServiceFutureStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new AccountBudgetServiceFutureStub(channel, callOptions);
}
};
return AccountBudgetServiceFutureStub.newStub(factory, channel);
}
/**
*
* A service for fetching an account-level budget.
* Account-level budgets are mutated by creating proposal resources.
*
*/
public static abstract class AccountBudgetServiceImplBase implements io.grpc.BindableService {
/**
*
* Returns an account-level budget in full detail.
* List of thrown errors:
* [AuthenticationError]()
* [AuthorizationError]()
* [HeaderError]()
* [InternalError]()
* [QuotaError]()
* [RequestError]()
*
*/
public void getAccountBudget(com.google.ads.googleads.v9.services.GetAccountBudgetRequest request,
io.grpc.stub.StreamObserver responseObserver) {
io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(getGetAccountBudgetMethod(), responseObserver);
}
@java.lang.Override public final io.grpc.ServerServiceDefinition bindService() {
return io.grpc.ServerServiceDefinition.builder(getServiceDescriptor())
.addMethod(
getGetAccountBudgetMethod(),
io.grpc.stub.ServerCalls.asyncUnaryCall(
new MethodHandlers<
com.google.ads.googleads.v9.services.GetAccountBudgetRequest,
com.google.ads.googleads.v9.resources.AccountBudget>(
this, METHODID_GET_ACCOUNT_BUDGET)))
.build();
}
}
/**
*
* A service for fetching an account-level budget.
* Account-level budgets are mutated by creating proposal resources.
*
*/
public static final class AccountBudgetServiceStub extends io.grpc.stub.AbstractAsyncStub {
private AccountBudgetServiceStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
@java.lang.Override
protected AccountBudgetServiceStub build(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new AccountBudgetServiceStub(channel, callOptions);
}
/**
*
* Returns an account-level budget in full detail.
* List of thrown errors:
* [AuthenticationError]()
* [AuthorizationError]()
* [HeaderError]()
* [InternalError]()
* [QuotaError]()
* [RequestError]()
*
*/
public void getAccountBudget(com.google.ads.googleads.v9.services.GetAccountBudgetRequest request,
io.grpc.stub.StreamObserver responseObserver) {
io.grpc.stub.ClientCalls.asyncUnaryCall(
getChannel().newCall(getGetAccountBudgetMethod(), getCallOptions()), request, responseObserver);
}
}
/**
*
* A service for fetching an account-level budget.
* Account-level budgets are mutated by creating proposal resources.
*
*/
public static final class AccountBudgetServiceBlockingStub extends io.grpc.stub.AbstractBlockingStub {
private AccountBudgetServiceBlockingStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
@java.lang.Override
protected AccountBudgetServiceBlockingStub build(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new AccountBudgetServiceBlockingStub(channel, callOptions);
}
/**
*
* Returns an account-level budget in full detail.
* List of thrown errors:
* [AuthenticationError]()
* [AuthorizationError]()
* [HeaderError]()
* [InternalError]()
* [QuotaError]()
* [RequestError]()
*
*/
public com.google.ads.googleads.v9.resources.AccountBudget getAccountBudget(com.google.ads.googleads.v9.services.GetAccountBudgetRequest request) {
return io.grpc.stub.ClientCalls.blockingUnaryCall(
getChannel(), getGetAccountBudgetMethod(), getCallOptions(), request);
}
}
/**
*
* A service for fetching an account-level budget.
* Account-level budgets are mutated by creating proposal resources.
*
*/
public static final class AccountBudgetServiceFutureStub extends io.grpc.stub.AbstractFutureStub {
private AccountBudgetServiceFutureStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
@java.lang.Override
protected AccountBudgetServiceFutureStub build(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new AccountBudgetServiceFutureStub(channel, callOptions);
}
/**
*
* Returns an account-level budget in full detail.
* List of thrown errors:
* [AuthenticationError]()
* [AuthorizationError]()
* [HeaderError]()
* [InternalError]()
* [QuotaError]()
* [RequestError]()
*
*/
public com.google.common.util.concurrent.ListenableFuture getAccountBudget(
com.google.ads.googleads.v9.services.GetAccountBudgetRequest request) {
return io.grpc.stub.ClientCalls.futureUnaryCall(
getChannel().newCall(getGetAccountBudgetMethod(), getCallOptions()), request);
}
}
private static final int METHODID_GET_ACCOUNT_BUDGET = 0;
private static final class MethodHandlers implements
io.grpc.stub.ServerCalls.UnaryMethod,
io.grpc.stub.ServerCalls.ServerStreamingMethod,
io.grpc.stub.ServerCalls.ClientStreamingMethod,
io.grpc.stub.ServerCalls.BidiStreamingMethod {
private final AccountBudgetServiceImplBase serviceImpl;
private final int methodId;
MethodHandlers(AccountBudgetServiceImplBase serviceImpl, int methodId) {
this.serviceImpl = serviceImpl;
this.methodId = methodId;
}
@java.lang.Override
@java.lang.SuppressWarnings("unchecked")
public void invoke(Req request, io.grpc.stub.StreamObserver responseObserver) {
switch (methodId) {
case METHODID_GET_ACCOUNT_BUDGET:
serviceImpl.getAccountBudget((com.google.ads.googleads.v9.services.GetAccountBudgetRequest) request,
(io.grpc.stub.StreamObserver) responseObserver);
break;
default:
throw new AssertionError();
}
}
@java.lang.Override
@java.lang.SuppressWarnings("unchecked")
public io.grpc.stub.StreamObserver invoke(
io.grpc.stub.StreamObserver responseObserver) {
switch (methodId) {
default:
throw new AssertionError();
}
}
}
private static abstract class AccountBudgetServiceBaseDescriptorSupplier
implements io.grpc.protobuf.ProtoFileDescriptorSupplier, io.grpc.protobuf.ProtoServiceDescriptorSupplier {
AccountBudgetServiceBaseDescriptorSupplier() {}
@java.lang.Override
public com.google.protobuf.Descriptors.FileDescriptor getFileDescriptor() {
return com.google.ads.googleads.v9.services.AccountBudgetServiceProto.getDescriptor();
}
@java.lang.Override
public com.google.protobuf.Descriptors.ServiceDescriptor getServiceDescriptor() {
return getFileDescriptor().findServiceByName("AccountBudgetService");
}
}
private static final class AccountBudgetServiceFileDescriptorSupplier
extends AccountBudgetServiceBaseDescriptorSupplier {
AccountBudgetServiceFileDescriptorSupplier() {}
}
private static final class AccountBudgetServiceMethodDescriptorSupplier
extends AccountBudgetServiceBaseDescriptorSupplier
implements io.grpc.protobuf.ProtoMethodDescriptorSupplier {
private final String methodName;
AccountBudgetServiceMethodDescriptorSupplier(String methodName) {
this.methodName = methodName;
}
@java.lang.Override
public com.google.protobuf.Descriptors.MethodDescriptor getMethodDescriptor() {
return getServiceDescriptor().findMethodByName(methodName);
}
}
private static volatile io.grpc.ServiceDescriptor serviceDescriptor;
public static io.grpc.ServiceDescriptor getServiceDescriptor() {
io.grpc.ServiceDescriptor result = serviceDescriptor;
if (result == null) {
synchronized (AccountBudgetServiceGrpc.class) {
result = serviceDescriptor;
if (result == null) {
serviceDescriptor = result = io.grpc.ServiceDescriptor.newBuilder(SERVICE_NAME)
.setSchemaDescriptor(new AccountBudgetServiceFileDescriptorSupplier())
.addMethod(getGetAccountBudgetMethod())
.build();
}
}
}
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy