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.
Generated from c7cc1592d10c8c12ab55a8b621b0a48499c03d6a
Access Reviews Schema addendum | Expose reviewer and statistics APIs
- Loading branch information
SDK Automation
committed
Aug 13, 2020
1 parent
c96ce20
commit 49667fa
Showing
22 changed files
with
4,780 additions
and
21 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
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
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/v2018_05_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 | ||
|
84 changes: 84 additions & 0 deletions
84
...rization/azure/mgmt/authorization/v2018_05_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,84 @@ | ||
# 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 Operations | ||
from .operations import AccessReviewScheduleDefinitionsOperations | ||
from .operations import AccessReviewInstancesOperations | ||
from .operations import AccessReviewInstanceOperations | ||
from .operations import AccessReviewInstanceDecisionsOperations | ||
from .operations import AccessReviewDefaultSettingsOperations | ||
from .operations import AccessReviewInstancesAssignedForMyApprovalOperations | ||
from .operations import AccessReviewInstanceMyDecisionsOperations | ||
from . import models | ||
|
||
|
||
class AuthorizationManagementClient(SDKClient): | ||
"""Access reviews service provides the workflow for running access reviews on different kind of resources. | ||
:ivar config: Configuration for client. | ||
:vartype config: AuthorizationManagementClientConfiguration | ||
:ivar operations: Operations operations | ||
:vartype operations: azure.mgmt.authorization.v2018_05_01_preview.operations.Operations | ||
:ivar access_review_schedule_definitions: AccessReviewScheduleDefinitions operations | ||
:vartype access_review_schedule_definitions: azure.mgmt.authorization.v2018_05_01_preview.operations.AccessReviewScheduleDefinitionsOperations | ||
:ivar access_review_instances: AccessReviewInstances operations | ||
:vartype access_review_instances: azure.mgmt.authorization.v2018_05_01_preview.operations.AccessReviewInstancesOperations | ||
:ivar access_review_instance: AccessReviewInstance operations | ||
:vartype access_review_instance: azure.mgmt.authorization.v2018_05_01_preview.operations.AccessReviewInstanceOperations | ||
:ivar access_review_instance_decisions: AccessReviewInstanceDecisions operations | ||
:vartype access_review_instance_decisions: azure.mgmt.authorization.v2018_05_01_preview.operations.AccessReviewInstanceDecisionsOperations | ||
:ivar access_review_default_settings: AccessReviewDefaultSettings operations | ||
:vartype access_review_default_settings: azure.mgmt.authorization.v2018_05_01_preview.operations.AccessReviewDefaultSettingsOperations | ||
:ivar access_review_instances_assigned_for_my_approval: AccessReviewInstancesAssignedForMyApproval operations | ||
:vartype access_review_instances_assigned_for_my_approval: azure.mgmt.authorization.v2018_05_01_preview.operations.AccessReviewInstancesAssignedForMyApprovalOperations | ||
:ivar access_review_instance_my_decisions: AccessReviewInstanceMyDecisions operations | ||
:vartype access_review_instance_my_decisions: azure.mgmt.authorization.v2018_05_01_preview.operations.AccessReviewInstanceMyDecisionsOperations | ||
: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 = '2018-05-01-preview' | ||
self._serialize = Serializer(client_models) | ||
self._deserialize = Deserializer(client_models) | ||
|
||
self.operations = Operations( | ||
self._client, self.config, self._serialize, self._deserialize) | ||
self.access_review_schedule_definitions = AccessReviewScheduleDefinitionsOperations( | ||
self._client, self.config, self._serialize, self._deserialize) | ||
self.access_review_instances = AccessReviewInstancesOperations( | ||
self._client, self.config, self._serialize, self._deserialize) | ||
self.access_review_instance = AccessReviewInstanceOperations( | ||
self._client, self.config, self._serialize, self._deserialize) | ||
self.access_review_instance_decisions = AccessReviewInstanceDecisionsOperations( | ||
self._client, self.config, self._serialize, self._deserialize) | ||
self.access_review_default_settings = AccessReviewDefaultSettingsOperations( | ||
self._client, self.config, self._serialize, self._deserialize) | ||
self.access_review_instances_assigned_for_my_approval = AccessReviewInstancesAssignedForMyApprovalOperations( | ||
self._client, self.config, self._serialize, self._deserialize) | ||
self.access_review_instance_my_decisions = AccessReviewInstanceMyDecisionsOperations( | ||
self._client, self.config, self._serialize, self._deserialize) |
48 changes: 48 additions & 0 deletions
48
...n/azure-mgmt-authorization/azure/mgmt/authorization/v2018_05_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 |
Oops, something went wrong.