Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR consumption/resource-manager] typo: consumption/resource-manager/Microsoft.Consumption #4655

Merged
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
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