Removing TODO comment

PiperOrigin-RevId: 283592535
This commit is contained in:
Google APIs 2019-12-03 11:58:17 -08:00 committed by Copybara-Service
parent 8463992271
commit 59a7805353
1 changed files with 0 additions and 4 deletions

View File

@ -41,8 +41,6 @@ service BudgetService {
rpc CreateBudget(CreateBudgetRequest) returns (Budget) {
option (google.api.http) = {
post: "/v1beta1/{parent=billingAccounts/*}/budgets"
// (-- TODO for GA: use "budget" instead of "*" to comply with
// https://aip.dev/133. Changing in Beta would be a breaking change. --)
body: "*"
};
}
@ -51,8 +49,6 @@ service BudgetService {
rpc UpdateBudget(UpdateBudgetRequest) returns (Budget) {
option (google.api.http) = {
patch: "/v1beta1/{budget.name=billingAccounts/*/budgets/*}"
// (-- TODO for GA: use "budget" instead of "*" to comply with
// https://aip.dev/134. Changing in Beta would be a breaking change. --)
body: "*"
};
}