Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ class TimeframeType(str, Enum):
the_last_month = "TheLastMonth"
the_last_year = "TheLastYear"
custom = "Custom"
billing_month_to_date = "BillingMonthToDate"
the_last_billing_month = "TheLastBillingMonth"


class GranularityType(str, Enum):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ class QueryDefinition(Model):
:param timeframe: Required. The time frame for pulling data for the query.
If custom, then a specific time period must be provided. Possible values
include: 'WeekToDate', 'MonthToDate', 'YearToDate', 'TheLastWeek',
'TheLastMonth', 'TheLastYear', 'Custom'
'TheLastMonth', 'TheLastYear', 'Custom', 'BillingMonthToDate',
'TheLastBillingMonth'
:type timeframe: str or ~azure.mgmt.costmanagement.models.TimeframeType
:param time_period: Has time period for pulling data for the query.
:type time_period: ~azure.mgmt.costmanagement.models.QueryTimePeriod
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ class QueryDefinition(Model):
:param timeframe: Required. The time frame for pulling data for the query.
If custom, then a specific time period must be provided. Possible values
include: 'WeekToDate', 'MonthToDate', 'YearToDate', 'TheLastWeek',
'TheLastMonth', 'TheLastYear', 'Custom'
'TheLastMonth', 'TheLastYear', 'Custom', 'BillingMonthToDate',
'TheLastBillingMonth'
:type timeframe: str or ~azure.mgmt.costmanagement.models.TimeframeType
:param time_period: Has time period for pulling data for the query.
:type time_period: ~azure.mgmt.costmanagement.models.QueryTimePeriod
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
# regenerated.
# --------------------------------------------------------------------------

VERSION = "0.1.0"
VERSION = "1.2.0"