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 azure-mgmt-billing] Billing Demo: MPG + Suppression #8776

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
4 changes: 2 additions & 2 deletions sdk/billing/azure-mgmt-billing/_meta.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"commit": "e79d9ef3e065f2dcb6bd1db51e29c62a99dff5cb",
"commit": "be204c69840013aa79d377776e441349caa1d7ec",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"autorest": "3.10.2",
"use": [
"@autorest/python@6.19.0",
"@autorest/modelerfour@4.27.0"
],
"autorest_command": "autorest specification/billing/resource-manager/readme.md --generate-sample=True --generate-test=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/home/vsts/work/1/azure-sdk-for-python/sdk --use=@autorest/python@6.19.0 --use=@autorest/modelerfour@4.27.0 --version=3.10.2 --version-tolerant=False",
"autorest_command": "autorest specification/billing/resource-manager/readme.md --generate-sample=True --generate-test=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/mnt/vss/_work/1/s/azure-sdk-for-python/sdk --use=@autorest/python@6.19.0 --use=@autorest/modelerfour@4.27.0 --version=3.10.2 --version-tolerant=False",
"readme": "specification/billing/resource-manager/readme.md"
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
BillingAccountsOperations,
BillingPermissionsOperations,
BillingProfilesOperations,
BillingPropertyOperations,
BillingRequestsOperations,
BillingRoleAssignmentsOperations,
BillingRoleDefinitionOperations,
Expand Down Expand Up @@ -73,8 +72,6 @@ class BillingManagementClient: # pylint: disable=client-accepts-api-version-key
:vartype billing_permissions: azure.mgmt.billing.operations.BillingPermissionsOperations
:ivar billing_profiles: BillingProfilesOperations operations
:vartype billing_profiles: azure.mgmt.billing.operations.BillingProfilesOperations
:ivar billing_property: BillingPropertyOperations operations
:vartype billing_property: azure.mgmt.billing.operations.BillingPropertyOperations
:ivar billing_requests: BillingRequestsOperations operations
:vartype billing_requests: azure.mgmt.billing.operations.BillingRequestsOperations
:ivar billing_role_assignments: BillingRoleAssignmentsOperations operations
Expand Down Expand Up @@ -185,9 +182,6 @@ def __init__(
self.billing_profiles = BillingProfilesOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.billing_property = BillingPropertyOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.billing_requests = BillingRequestsOperations(
self._client, self._config, self._serialize, self._deserialize
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

VERSION = "7.0.0"
VERSION = "0.3.0"
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
BillingAccountsOperations,
BillingPermissionsOperations,
BillingProfilesOperations,
BillingPropertyOperations,
BillingRequestsOperations,
BillingRoleAssignmentsOperations,
BillingRoleDefinitionOperations,
Expand Down Expand Up @@ -73,8 +72,6 @@ class BillingManagementClient: # pylint: disable=client-accepts-api-version-key
:vartype billing_permissions: azure.mgmt.billing.aio.operations.BillingPermissionsOperations
:ivar billing_profiles: BillingProfilesOperations operations
:vartype billing_profiles: azure.mgmt.billing.aio.operations.BillingProfilesOperations
:ivar billing_property: BillingPropertyOperations operations
:vartype billing_property: azure.mgmt.billing.aio.operations.BillingPropertyOperations
:ivar billing_requests: BillingRequestsOperations operations
:vartype billing_requests: azure.mgmt.billing.aio.operations.BillingRequestsOperations
:ivar billing_role_assignments: BillingRoleAssignmentsOperations operations
Expand Down Expand Up @@ -187,9 +184,6 @@ def __init__(
self.billing_profiles = BillingProfilesOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.billing_property = BillingPropertyOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.billing_requests = BillingRequestsOperations(
self._client, self._config, self._serialize, self._deserialize
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
from ._address_operations import AddressOperations
from ._billing_permissions_operations import BillingPermissionsOperations
from ._billing_profiles_operations import BillingProfilesOperations
from ._billing_property_operations import BillingPropertyOperations
from ._billing_requests_operations import BillingRequestsOperations
from ._billing_role_assignments_operations import BillingRoleAssignmentsOperations
from ._billing_role_definition_operations import BillingRoleDefinitionOperations
Expand Down Expand Up @@ -49,7 +48,6 @@
"AddressOperations",
"BillingPermissionsOperations",
"BillingProfilesOperations",
"BillingPropertyOperations",
"BillingRequestsOperations",
"BillingRoleAssignmentsOperations",
"BillingRoleDefinitionOperations",
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
from ._address_operations import AddressOperations
from ._billing_permissions_operations import BillingPermissionsOperations
from ._billing_profiles_operations import BillingProfilesOperations
from ._billing_property_operations import BillingPropertyOperations
from ._billing_requests_operations import BillingRequestsOperations
from ._billing_role_assignments_operations import BillingRoleAssignmentsOperations
from ._billing_role_definition_operations import BillingRoleDefinitionOperations
Expand Down Expand Up @@ -49,7 +48,6 @@
"AddressOperations",
"BillingPermissionsOperations",
"BillingProfilesOperations",
"BillingPropertyOperations",
"BillingRequestsOperations",
"BillingRoleAssignmentsOperations",
"BillingRoleDefinitionOperations",
Expand Down
Loading