Source code for azure.mgmt.consumption.models.consumption_management_client_enums

# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from enum import Enum


[docs]class CategoryType(Enum): cost = "Cost" usage = "Usage"
[docs]class TimeGrainType(Enum): monthly = "Monthly" quarterly = "Quarterly" annually = "Annually"
[docs]class OperatorType(Enum): equal_to = "EqualTo" greater_than = "GreaterThan" greater_than_or_equal_to = "GreaterThanOrEqualTo"
[docs]class Datagrain(Enum): daily_grain = "daily" monthly_grain = "monthly"