forked from Azure/azure-sdk-for-python
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Authoriaztion release 0814 (Azure#13109)
* Generated from 77e263ef8341b9d756874a8015822f11088de88d revise tag of authorization * release authorization * add test * Packaging update of azure-mgmt-authorization Co-authored-by: SDK Automation <[email protected]> Co-authored-by: Chenjianfei <[email protected]> Co-authored-by: Azure SDK Bot <[email protected]>
- Loading branch information
1 parent
c96ce20
commit 5d277ae
Showing
19 changed files
with
1,495 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,21 @@ | ||
## Microsoft Azure SDK for Python | ||
# Microsoft Azure SDK for Python | ||
|
||
This is the Microsoft Azure Authorization 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). | ||
|
||
Azure Resource Manager (ARM) is the next generation of management APIs | ||
that replace the old Azure Service Management (ASM). | ||
|
||
This package has been tested with Python 2.7, 3.4, 3.5, 3.6 and 3.7. | ||
# Usage | ||
|
||
For the older Azure Service Management (ASM) libraries, see | ||
[azure-servicemanagement-legacy](https://pypi.python.org/pypi/azure-servicemanagement-legacy) | ||
library. | ||
|
||
For a more complete set of Azure libraries, see the | ||
[azure sdk python release](https://aka.ms/azsdk/python/all). | ||
|
||
## Usage | ||
|
||
For code examples, see [Authorization | ||
Management](https://docs.microsoft.com/python/api/overview/azure/authorization) | ||
For code examples, see [Authorization Management](https://docs.microsoft.com/python/api/overview/azure/authorization) | ||
on docs.microsoft.com. | ||
|
||
## 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) | ||
# 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. | ||
|
||
![image](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-python%2Fazure-mgmt-authorization%2FREADME.png) | ||
|
||
![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-python%2Fazure-mgmt-authorization%2FREADME.png) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
...ization/azure-mgmt-authorization/azure/mgmt/authorization/v2020_04_01_preview/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 AuthorizationManagementClientConfiguration | ||
from ._authorization_management_client import AuthorizationManagementClient | ||
__all__ = ['AuthorizationManagementClient', 'AuthorizationManagementClientConfiguration'] | ||
|
||
from .version import VERSION | ||
|
||
__version__ = VERSION | ||
|
49 changes: 49 additions & 0 deletions
49
...rization/azure/mgmt/authorization/v2020_04_01_preview/_authorization_management_client.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# 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 AuthorizationManagementClientConfiguration | ||
from .operations import RoleAssignmentsOperations | ||
from . import models | ||
|
||
|
||
class AuthorizationManagementClient(SDKClient): | ||
"""Role based access control provides you a way to apply granular level policy administration down to individual resources or resource groups. These operations enable you to manage role assignments. A role assignment grants access to Azure Active Directory users. | ||
:ivar config: Configuration for client. | ||
:vartype config: AuthorizationManagementClientConfiguration | ||
:ivar role_assignments: RoleAssignments operations | ||
:vartype role_assignments: azure.mgmt.authorization.v2020_04_01_preview.operations.RoleAssignmentsOperations | ||
:param credentials: Credentials needed for the client to connect to Azure. | ||
:type credentials: :mod:`A msrestazure Credentials | ||
object<msrestazure.azure_active_directory>` | ||
:param subscription_id: The ID of the target subscription. | ||
:type subscription_id: str | ||
:param str base_url: Service URL | ||
""" | ||
|
||
def __init__( | ||
self, credentials, subscription_id, base_url=None): | ||
|
||
self.config = AuthorizationManagementClientConfiguration(credentials, subscription_id, base_url) | ||
super(AuthorizationManagementClient, 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 = '2020-04-01-preview' | ||
self._serialize = Serializer(client_models) | ||
self._deserialize = Deserializer(client_models) | ||
|
||
self.role_assignments = RoleAssignmentsOperations( | ||
self._client, self.config, self._serialize, self._deserialize) |
48 changes: 48 additions & 0 deletions
48
...n/azure-mgmt-authorization/azure/mgmt/authorization/v2020_04_01_preview/_configuration.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# 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 AuthorizationManagementClientConfiguration(AzureConfiguration): | ||
"""Configuration for AuthorizationManagementClient | ||
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 subscription_id: The ID of the target subscription. | ||
:type subscription_id: str | ||
:param str base_url: Service URL | ||
""" | ||
|
||
def __init__( | ||
self, credentials, subscription_id, base_url=None): | ||
|
||
if credentials is None: | ||
raise ValueError("Parameter 'credentials' must not be None.") | ||
if subscription_id is None: | ||
raise ValueError("Parameter 'subscription_id' must not be None.") | ||
if not base_url: | ||
base_url = 'https://management.azure.com' | ||
|
||
super(AuthorizationManagementClientConfiguration, 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-authorization/{}'.format(VERSION)) | ||
self.add_user_agent('Azure-SDK-For-Python') | ||
|
||
self.credentials = credentials | ||
self.subscription_id = subscription_id |
31 changes: 31 additions & 0 deletions
31
.../azure-mgmt-authorization/azure/mgmt/authorization/v2020_04_01_preview/models/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# 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 RoleAssignment | ||
from ._models_py3 import RoleAssignmentCreateParameters | ||
from ._models_py3 import RoleAssignmentFilter | ||
except (SyntaxError, ImportError): | ||
from ._models import RoleAssignment | ||
from ._models import RoleAssignmentCreateParameters | ||
from ._models import RoleAssignmentFilter | ||
from ._paged_models import RoleAssignmentPaged | ||
from ._authorization_management_client_enums import ( | ||
PrincipalType, | ||
) | ||
|
||
__all__ = [ | ||
'RoleAssignment', | ||
'RoleAssignmentCreateParameters', | ||
'RoleAssignmentFilter', | ||
'RoleAssignmentPaged', | ||
'PrincipalType', | ||
] |
26 changes: 26 additions & 0 deletions
26
...e/mgmt/authorization/v2020_04_01_preview/models/_authorization_management_client_enums.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# 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 PrincipalType(str, Enum): | ||
|
||
user = "User" | ||
group = "Group" | ||
service_principal = "ServicePrincipal" | ||
unknown = "Unknown" | ||
directory_role_template = "DirectoryRoleTemplate" | ||
foreign_group = "ForeignGroup" | ||
application = "Application" | ||
msi = "MSI" | ||
directory_object_or_group = "DirectoryObjectOrGroup" | ||
everyone = "Everyone" |
Oops, something went wrong.