Interface BudgetServiceGrpc.AsyncService

  • All Known Implementing Classes:
    BudgetServiceGrpc.BudgetServiceImplBase
    Enclosing class:
    BudgetServiceGrpc

    public static interface BudgetServiceGrpc.AsyncService
     BudgetService stores Cloud Billing budgets, which define a
     budget plan and rules to execute as we track spend against that plan.
     
    • Method Detail

      • createBudget

        default void createBudget​(CreateBudgetRequest request,
                                  io.grpc.stub.StreamObserver<Budget> responseObserver)
         Creates a new budget. See
         [Quotas and limits](https://cloud.google.com/billing/quotas)
         for more information on the limits of the number of budgets you can create.
         
      • updateBudget

        default void updateBudget​(UpdateBudgetRequest request,
                                  io.grpc.stub.StreamObserver<Budget> responseObserver)
         Updates a budget and returns the updated budget.
         WARNING: There are some fields exposed on the Google Cloud Console that
         aren't available on this API. Budget fields that are not exposed in
         this API will not be changed by this method.
         
      • getBudget

        default void getBudget​(GetBudgetRequest request,
                               io.grpc.stub.StreamObserver<Budget> responseObserver)
         Returns a budget.
         WARNING: There are some fields exposed on the Google Cloud Console that
         aren't available on this API. When reading from the API, you will not
         see these fields in the return value, though they may have been set
         in the Cloud Console.
         
      • listBudgets

        default void listBudgets​(ListBudgetsRequest request,
                                 io.grpc.stub.StreamObserver<ListBudgetsResponse> responseObserver)
         Returns a list of budgets for a billing account.
         WARNING: There are some fields exposed on the Google Cloud Console that
         aren't available on this API. When reading from the API, you will not
         see these fields in the return value, though they may have been set
         in the Cloud Console.
         
      • deleteBudget

        default void deleteBudget​(DeleteBudgetRequest request,
                                  io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
         Deletes a budget. Returns successfully if already deleted.