Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions api/azure/cost.proto
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,9 @@ message Cost {

// The entitlement id.
string entitlementId = 25;

// The resource group of the lineitem, if applicable.
string resourceGroup = 26;
}

message CostAttribute {
Expand Down
2 changes: 1 addition & 1 deletion cost/v1/cost.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2204,7 +2204,7 @@ message DeleteAccountBudgetAlertsRequest {

// Azure-specific options for ReadCostsRequest.
message ReadCostsRequestAzureOptions {
// Optional. A comma-separated list of columns to aggregate the data into. Valid values are `serviceName`, `productName`, `region`, `chargeType`, `description`, `billableQuantity`, `effectiveUnitPrice`, `timeInterval`, `billingType`, `alternateId` and `domainName`. A special value of `none` is also supported, which means query by date or month per account only.
// Optional. A comma-separated list of columns to aggregate the data into. Valid values are `serviceName`, `productName`, `region`, `chargeType`, `description`, `billableQuantity`, `effectiveUnitPrice`, `timeInterval`, `billingType`, `alternateId`, `domainName` and `resourceGroup`. A special value of `none` is also supported, which means query by date or month per account only.
//
// For example, if you only want the services and region data, you can set this field to `serviceName,region`. Your input sequence doesn't matter (although the sequence above is recommended) as the actual sequence is already fixed in the return data (see the definition in https://github.com/alphauslabs/blueapi/blob/main/api/azure/cost.proto), which is generic to specific, top to bottom. Invalid values are discarded. Excluded columns will be empty.
string groupByColumns = 1;
Expand Down
Loading
Loading