Interface ListBudgetsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListBudgetsResponse
,ListBudgetsResponse.Builder
public interface ListBudgetsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Budget
getBudgets(int index)
List of the budgets owned by the requested billing account.int
getBudgetsCount()
List of the budgets owned by the requested billing account.List<Budget>
getBudgetsList()
List of the budgets owned by the requested billing account.BudgetOrBuilder
getBudgetsOrBuilder(int index)
List of the budgets owned by the requested billing account.List<? extends BudgetOrBuilder>
getBudgetsOrBuilderList()
List of the budgets owned by the requested billing account.String
getNextPageToken()
If not empty, indicates that there may be more budgets that match the request; this value should be passed in a new `ListBudgetsRequest`.com.google.protobuf.ByteString
getNextPageTokenBytes()
If not empty, indicates that there may be more budgets that match the request; this value should be passed in a new `ListBudgetsRequest`.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getBudgetsList
List<Budget> getBudgetsList()
List of the budgets owned by the requested billing account.
repeated .google.cloud.billing.budgets.v1beta1.Budget budgets = 1;
-
getBudgets
Budget getBudgets(int index)
List of the budgets owned by the requested billing account.
repeated .google.cloud.billing.budgets.v1beta1.Budget budgets = 1;
-
getBudgetsCount
int getBudgetsCount()
List of the budgets owned by the requested billing account.
repeated .google.cloud.billing.budgets.v1beta1.Budget budgets = 1;
-
getBudgetsOrBuilderList
List<? extends BudgetOrBuilder> getBudgetsOrBuilderList()
List of the budgets owned by the requested billing account.
repeated .google.cloud.billing.budgets.v1beta1.Budget budgets = 1;
-
getBudgetsOrBuilder
BudgetOrBuilder getBudgetsOrBuilder(int index)
List of the budgets owned by the requested billing account.
repeated .google.cloud.billing.budgets.v1beta1.Budget budgets = 1;
-
getNextPageToken
String getNextPageToken()
If not empty, indicates that there may be more budgets that match the request; this value should be passed in a new `ListBudgetsRequest`.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
If not empty, indicates that there may be more budgets that match the request; this value should be passed in a new `ListBudgetsRequest`.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-