Skip to content

Commit

Permalink
Generated from d7f3f36ab83e124204a6ff6a9daabccdbdb2bee0 (#4655)
Browse files Browse the repository at this point in the history
typo: consumption/resource-manager/Microsoft.Consumption

- chages -> charges
- Cylce -> Cycle
  • Loading branch information
AutorestCI authored Mar 25, 2019
1 parent ec89038 commit 0be68ac
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ class Enrollment(Model):
:vartype country_code: str
:ivar status: Enrollment status
:vartype status: str
:ivar billing_cylce: Enrollment billing cycle
:vartype billing_cylce: str
:ivar billing_cycle: Enrollment billing cycle
:vartype billing_cycle: str
"""

_validation = {
Expand All @@ -47,7 +47,7 @@ class Enrollment(Model):
'language': {'readonly': True},
'country_code': {'readonly': True},
'status': {'readonly': True},
'billing_cylce': {'readonly': True},
'billing_cycle': {'readonly': True},
}

_attribute_map = {
Expand All @@ -59,7 +59,7 @@ class Enrollment(Model):
'language': {'key': 'language', 'type': 'str'},
'country_code': {'key': 'countryCode', 'type': 'str'},
'status': {'key': 'status', 'type': 'str'},
'billing_cylce': {'key': 'billingCylce', 'type': 'str'},
'billing_cycle': {'key': 'billingCycle', 'type': 'str'},
}

def __init__(self, **kwargs):
Expand All @@ -72,4 +72,4 @@ def __init__(self, **kwargs):
self.language = None
self.country_code = None
self.status = None
self.billing_cylce = None
self.billing_cycle = None
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ class Enrollment(Model):
:vartype country_code: str
:ivar status: Enrollment status
:vartype status: str
:ivar billing_cylce: Enrollment billing cycle
:vartype billing_cylce: str
:ivar billing_cycle: Enrollment billing cycle
:vartype billing_cycle: str
"""

_validation = {
Expand All @@ -47,7 +47,7 @@ class Enrollment(Model):
'language': {'readonly': True},
'country_code': {'readonly': True},
'status': {'readonly': True},
'billing_cylce': {'readonly': True},
'billing_cycle': {'readonly': True},
}

_attribute_map = {
Expand All @@ -59,7 +59,7 @@ class Enrollment(Model):
'language': {'key': 'language', 'type': 'str'},
'country_code': {'key': 'countryCode', 'type': 'str'},
'status': {'key': 'status', 'type': 'str'},
'billing_cylce': {'key': 'billingCylce', 'type': 'str'},
'billing_cycle': {'key': 'billingCycle', 'type': 'str'},
}

def __init__(self, **kwargs) -> None:
Expand All @@ -72,4 +72,4 @@ def __init__(self, **kwargs) -> None:
self.language = None
self.country_code = None
self.status = None
self.billing_cylce = None
self.billing_cycle = None
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def list(
"""Lists the charges by billingAccountId for given start and end date.
Start and end date are used to determine the billing period. For
current month, the data will be provided from month to date. If there
are no chages for a month then that month will show all zeroes.
are no charges for a month then that month will show all zeroes.
:param billing_account_id: BillingAccount ID
:type billing_account_id: str
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def list(
"""Lists the charges by billing profile id for given start and end date.
Start and end date are used to determine the billing period. For
current month, the data will be provided from month to date. If there
are no chages for a month then that month will show all zeroes.
are no charges for a month then that month will show all zeroes.
:param billing_account_id: BillingAccount ID
:type billing_account_id: str
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def list(
"""Lists the charges by invoice section id for given start and end date.
Start and end date are used to determine the billing period. For
current month, the data will be provided from month to date. If there
are no chages for a month then that month will show all zeroes.
are no charges for a month then that month will show all zeroes.
:param billing_account_id: BillingAccount ID
:type billing_account_id: str
Expand Down

0 comments on commit 0be68ac

Please sign in to comment.