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

[ReleasePR azure-mgmt-quota] [QuotaRP] Split QuotaLimits API to - Usages and Quotas API #19322

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
5 changes: 5 additions & 0 deletions sdk/quota/azure-mgmt-quota/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Release History

## 0.1.0 (1970-01-01)

* Initial Release
6 changes: 6 additions & 0 deletions sdk/quota/azure-mgmt-quota/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
include _meta.json
recursive-include tests *.py *.yaml
include *.md
include azure/__init__.py
include azure/mgmt/__init__.py

27 changes: 27 additions & 0 deletions sdk/quota/azure-mgmt-quota/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Microsoft Azure SDK for Python

This is the Microsoft Azure MyService Management Client Library.
This package has been tested with Python 2.7, 3.5, 3.6, 3.7 and 3.8.
For a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).


# Usage


To learn how to use this package, see the [quickstart guide](https://aka.ms/azsdk/python/mgmt)



For docs and references, see [Python SDK References](https://docs.microsoft.com/python/api/overview/azure/)
Code samples for this package can be found at [MyService Management](https://docs.microsoft.com/samples/browse/?languages=python&term=Getting%20started%20-%20Managing&terms=Getting%20started%20-%20Managing) on docs.microsoft.com.
Additional code samples for different Azure services are available at [Samples Repo](https://aka.ms/azsdk/python/mgmt/samples)


# Provide Feedback

If you encounter any bugs or have suggestions, please file an issue in the
[Issues](https://github.com/Azure/azure-sdk-for-python/issues)
section of the project.


![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-python%2Fazure-mgmt-quota%2FREADME.png)
8 changes: 8 additions & 0 deletions sdk/quota/azure-mgmt-quota/_meta.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"autorest": "V2",
"use": "@microsoft.azure/autorest.python@~4.0.71",
"commit": "a6302e8490871f3619de9cd7001fd5f9cba887bf",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"autorest_command": "autorest specification/quota/resource-manager/readme.md --keep-version-file --multiapi --no-async --python --python-mode=update --python-sdks-folder=/home/vsts/work/1/s/azure-sdk-for-python/sdk [email protected]/autorest.python@~4.0.71 --version=V2",
"readme": "specification/quota/resource-manager/readme.md"
}
1 change: 1 addition & 0 deletions sdk/quota/azure-mgmt-quota/azure/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
1 change: 1 addition & 0 deletions sdk/quota/azure-mgmt-quota/azure/mgmt/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
19 changes: 19 additions & 0 deletions sdk/quota/azure-mgmt-quota/azure/mgmt/quota/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# 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 ._configuration import AzureQuotaExtensionAPIConfiguration
from ._azure_quota_extension_api import AzureQuotaExtensionAPI
__all__ = ['AzureQuotaExtensionAPI', 'AzureQuotaExtensionAPIConfiguration']

from .version import VERSION

__version__ = VERSION

Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# 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 msrest.service_client import SDKClient
from msrest import Serializer, Deserializer

from ._configuration import AzureQuotaExtensionAPIConfiguration
from .operations import QuotaOperations
from .operations import QuotaRequestStatusOperations
from .operations import QuotaResourceProvidersOperations
from .operations import OperationOperations
from . import models


class AzureQuotaExtensionAPI(SDKClient):
"""Microsoft Azure Quota Resource Provider

:ivar config: Configuration for client.
:vartype config: AzureQuotaExtensionAPIConfiguration

:ivar quota: Quota operations
:vartype quota: azure.mgmt.quota.operations.QuotaOperations
:ivar quota_request_status: QuotaRequestStatus operations
:vartype quota_request_status: azure.mgmt.quota.operations.QuotaRequestStatusOperations
:ivar quota_resource_providers: QuotaResourceProviders operations
:vartype quota_resource_providers: azure.mgmt.quota.operations.QuotaResourceProvidersOperations
:ivar operation: Operation operations
:vartype operation: azure.mgmt.quota.operations.OperationOperations

:param credentials: Credentials needed for the client to connect to Azure.
:type credentials: :mod:`A msrestazure Credentials
object<msrestazure.azure_active_directory>`
:param str base_url: Service URL
"""

def __init__(
self, credentials, base_url=None):

self.config = AzureQuotaExtensionAPIConfiguration(credentials, base_url)
super(AzureQuotaExtensionAPI, self).__init__(self.config.credentials, self.config)

client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)}
self.api_version = '2021-03-15-preview'
self._serialize = Serializer(client_models)
self._deserialize = Deserializer(client_models)

self.quota = QuotaOperations(
self._client, self.config, self._serialize, self._deserialize)
self.quota_request_status = QuotaRequestStatusOperations(
self._client, self.config, self._serialize, self._deserialize)
self.quota_resource_providers = QuotaResourceProvidersOperations(
self._client, self.config, self._serialize, self._deserialize)
self.operation = OperationOperations(
self._client, self.config, self._serialize, self._deserialize)
43 changes: 43 additions & 0 deletions sdk/quota/azure-mgmt-quota/azure/mgmt/quota/_configuration.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# 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 msrestazure import AzureConfiguration

from .version import VERSION


class AzureQuotaExtensionAPIConfiguration(AzureConfiguration):
"""Configuration for AzureQuotaExtensionAPI
Note that all parameters used to create this instance are saved as instance
attributes.

:param credentials: Credentials needed for the client to connect to Azure.
:type credentials: :mod:`A msrestazure Credentials
object<msrestazure.azure_active_directory>`
:param str base_url: Service URL
"""

def __init__(
self, credentials, base_url=None):

if credentials is None:
raise ValueError("Parameter 'credentials' must not be None.")
if not base_url:
base_url = 'https://management.azure.com'

super(AzureQuotaExtensionAPIConfiguration, self).__init__(base_url)

# Starting Autorest.Python 4.0.64, make connection pool activated by default
self.keep_alive = True

self.add_user_agent('azure-mgmt-quota/{}'.format(VERSION))
self.add_user_agent('Azure-SDK-For-Python')

self.credentials = credentials
110 changes: 110 additions & 0 deletions sdk/quota/azure-mgmt-quota/azure/mgmt/quota/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
# 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.
# --------------------------------------------------------------------------

try:
from ._models_py3 import CommonResourceProperties
from ._models_py3 import CreateGenericQuotaRequestParameters
from ._models_py3 import CurrentQuotaLimitBase
from ._models_py3 import ExceptionResponse, ExceptionResponseException
from ._models_py3 import OperationDisplay
from ._models_py3 import OperationResponse
from ._models_py3 import QuotaBucketProperties
from ._models_py3 import QuotaLimitsResponse
from ._models_py3 import QuotaProperties
from ._models_py3 import QuotaRequestDetails
from ._models_py3 import QuotaRequestOneResourceSubmitResponse
from ._models_py3 import QuotaRequestProperties
from ._models_py3 import QuotaRequestSubmitResponse
from ._models_py3 import QuotaRequestSubmitResponse202
from ._models_py3 import QuotaTemplateDetails
from ._models_py3 import QuotaTemplatesDetails
from ._models_py3 import QuotaTypeDimensionInformation
from ._models_py3 import ResourceName
from ._models_py3 import ResourceProviderDimension
from ._models_py3 import ResourceProviderInformation
from ._models_py3 import ResourceProvidersList
from ._models_py3 import ResourceProviderTemplate
from ._models_py3 import ResourceQueryDetails
from ._models_py3 import ServiceError
from ._models_py3 import ServiceErrorDetail
from ._models_py3 import SubRequest
except (SyntaxError, ImportError):
from ._models import CommonResourceProperties
from ._models import CreateGenericQuotaRequestParameters
from ._models import CurrentQuotaLimitBase
from ._models import ExceptionResponse, ExceptionResponseException
from ._models import OperationDisplay
from ._models import OperationResponse
from ._models import QuotaBucketProperties
from ._models import QuotaLimitsResponse
from ._models import QuotaProperties
from ._models import QuotaRequestDetails
from ._models import QuotaRequestOneResourceSubmitResponse
from ._models import QuotaRequestProperties
from ._models import QuotaRequestSubmitResponse
from ._models import QuotaRequestSubmitResponse202
from ._models import QuotaTemplateDetails
from ._models import QuotaTemplatesDetails
from ._models import QuotaTypeDimensionInformation
from ._models import ResourceName
from ._models import ResourceProviderDimension
from ._models import ResourceProviderInformation
from ._models import ResourceProvidersList
from ._models import ResourceProviderTemplate
from ._models import ResourceQueryDetails
from ._models import ServiceError
from ._models import ServiceErrorDetail
from ._models import SubRequest
from ._paged_models import CurrentQuotaLimitBasePaged
from ._paged_models import OperationResponsePaged
from ._paged_models import QuotaRequestDetailsPaged
from ._azure_quota_extension_api_enums import (
ResourceType,
QuotaRequestState,
ResourceQueryType,
ResourceQueryMethod,
)

__all__ = [
'CommonResourceProperties',
'CreateGenericQuotaRequestParameters',
'CurrentQuotaLimitBase',
'ExceptionResponse', 'ExceptionResponseException',
'OperationDisplay',
'OperationResponse',
'QuotaBucketProperties',
'QuotaLimitsResponse',
'QuotaProperties',
'QuotaRequestDetails',
'QuotaRequestOneResourceSubmitResponse',
'QuotaRequestProperties',
'QuotaRequestSubmitResponse',
'QuotaRequestSubmitResponse202',
'QuotaTemplateDetails',
'QuotaTemplatesDetails',
'QuotaTypeDimensionInformation',
'ResourceName',
'ResourceProviderDimension',
'ResourceProviderInformation',
'ResourceProvidersList',
'ResourceProviderTemplate',
'ResourceQueryDetails',
'ServiceError',
'ServiceErrorDetail',
'SubRequest',
'CurrentQuotaLimitBasePaged',
'QuotaRequestDetailsPaged',
'OperationResponsePaged',
'ResourceType',
'QuotaRequestState',
'ResourceQueryType',
'ResourceQueryMethod',
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# 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


class ResourceType(str, Enum):

standard = "standard"
dedicated = "dedicated"
low_priority = "lowPriority"
shared = "shared"
service_specific = "serviceSpecific"


class QuotaRequestState(str, Enum):

accepted = "Accepted"
invalid = "Invalid"
succeeded = "Succeeded"
failed = "Failed"
in_progress = "InProgress"


class ResourceQueryType(str, Enum):

arg = "ARG"
rest_api = "RestAPI"


class ResourceQueryMethod(str, Enum):

get = "GET"
post = "POST"
Loading