{ "info": { "author": "Microsoft Corporation", "author_email": "azpysdkhelp@microsoft.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "Microsoft Azure SDK for Python\n==============================\n\nThis is the Microsoft Azure Graph RBAC Client Library.\n\nThis package has been tested with Python 2.7, 3.4, 3.5, 3.6 and 3.7.\n\nFor a more complete set of Azure libraries, see the `azure `__ bundle package.\n\n\nUsage\n=====\n\nFor code examples, see `Graph RBAC\n`__\non docs.microsoft.com.\n\n\nProvide Feedback\n================\n\nIf you encounter any bugs or have suggestions, please file an issue in the\n`Issues `__\nsection of the project.\n\n\n.. image:: https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-python%2Fazure-graphrbac%2FREADME.png\n\n\n.. :changelog:\n\nRelease History\n===============\n\n0.61.1 (2019-05-29)\n+++++++++++++++++++\n\n**Bugfix**\n\n- account_enabled is now correctly bool (from str)\n\n0.61.0 (2019-03-20)\n+++++++++++++++++++\n\n**Features**\n\n- Adding applications.get_service_principals_id_by_app_id\n\n**Bugfix**\n\n- identifier_uris is not a required application parameter\n\n0.60.0 (2019-03-13)\n+++++++++++++++++++\n\n**Features**\n\n- Model Application has a new parameter optional_claims\n- Model Application has a new parameter pre_authorized_applications\n- Model Application has a new parameter group_membership_claims\n- Model Application has a new parameter oauth2_allow_url_path_matching\n- Model Application has a new parameter allow_passthrough_users\n- Model Application has a new parameter is_device_only_auth_supported\n- Model Application has a new parameter saml_metadata_url\n- Model Application has a new parameter app_logo_url\n- Model Application has a new parameter sign_in_audience\n- Model Application has a new parameter logout_url\n- Model Application has a new parameter oauth2_permissions\n- Model Application has a new parameter oauth2_require_post_response\n- Model Application has a new parameter org_restrictions\n- Model Application has a new parameter allow_guests_sign_in\n- Model Application has a new parameter www_homepage\n- Model Application has a new parameter public_client\n- Model Application has a new parameter error_url\n- Model Application has a new parameter known_client_applications\n- Model Application has a new parameter publisher_domain\n- Model Application has a new parameter informational_urls\n\n**Breaking changes**\n\n- client.oauth2 has been renamed client.oauth2_permission_grant\n\n0.53.0 (2018-11-27)\n+++++++++++++++++++\n\n**Features**\n\n- Add PasswordCredentials.custom_key_identifier\n- Add Application.key_credentials\n- Add Application.password_credentials\n\n**Bugfix**\n\n- Fix KeyCredential.custom_key_identifier type from bytes to str\n\n0.52.0 (2018-10-29)\n+++++++++++++++++++\n\n**Bugfix**\n\n- Add missing required_resource_access in Application\n\n0.51.1 (2018-10-16)\n+++++++++++++++++++\n\n**Bugfix**\n\n- Fix sdist broken in 0.50.0 and 0.51.0. No code change.\n\n0.51.0 (2018-10-11)\n+++++++++++++++++++\n\n**Features**\n\n- Add delete group/application owner\n\n0.50.0 (2018-10-10)\n+++++++++++++++++++\n\n**Features**\n\n- signed_in_user.get : Return the currently logged-in User object\n- signed_in_user.list_owned_objects : All objects owned by current user\n- deleted_applications.restore : Restore an application deleted in the last 30 days\n- deleted_applications.list : List all applications deleted in the last 30 days\n- deleted_applications.hard_delete : Delete for real an application in the deleted list\n- groups.list_owners : List owner of the group\n- groups.add_owner : Add owner to this group\n- Application and ServicePrincipals have now the attribute \"app_roles\" which is a list of AppRole class. To implement this.\n- Client class can be used as a context manager to keep the underlying HTTP session open for performance\n- Model ADGroup has a attributes mail_enabled and mail_nickname\n- Model KeyCredential has a new atrribute custom_key_identifier\n- Added operation group oauth2_operations (operations \"get\" and \"grant\")\n\n**Bug fixes**\n\n- Fix applications.list_owners access to next page\n- Fix service_principal.list_owners access to next page\n\n**Breaking changes**\n\n- ApplicationAddOwnerParameters has been renamed AddOwnerParameters\n- objects.get_current_user has been removed. Use signed_in_user.get instead. The main difference is this new method returns a DirectoryObjectList, where every elements could be sub-type of DirectoryObject (User, Group, etc.)\n- objects.get_objects_by_object_ids now returns a DirectoryObjectList, where every element could be sub-type of DirectoryObject (User, Group, etc.)\n- GetObjectsParameters.include_directory_object_references is no longer required.\n- Groups.get_members now returns a DirectoryObjectList, where every element could be sub-type of DirectoryObject (User, Group, etc.)\n\n**General Breaking changes**\n\nThis version uses a next-generation code generator that *might* introduce breaking changes.\n\n- Model signatures now use only keyword-argument syntax. All positional arguments must be re-written as keyword-arguments.\n To keep auto-completion in most cases, models are now generated for Python 2 and Python 3. Python 3 uses the \"*\" syntax for keyword-only arguments.\n- Enum types now use the \"str\" mixin (class AzureEnum(str, Enum)) to improve the behavior when unrecognized enum values are encountered.\n While this is not a breaking change, the distinctions are important, and are documented here:\n https://docs.python.org/3/library/enum.html#others\n At a glance:\n\n - \"is\" should not be used at all.\n - \"format\" will return the string value, where \"%s\" string formatting will return `NameOfEnum.stringvalue`. Format syntax should be prefered.\n\n- New Long Running Operation:\n\n - Return type changes from `msrestazure.azure_operation.AzureOperationPoller` to `msrest.polling.LROPoller`. External API is the same.\n - Return type is now **always** a `msrest.polling.LROPoller`, regardless of the optional parameters used.\n - The behavior has changed when using `raw=True`. Instead of returning the initial call result as `ClientRawResponse`,\n without polling, now this returns an LROPoller. After polling, the final resource will be returned as a `ClientRawResponse`.\n - New `polling` parameter. The default behavior is `Polling=True` which will poll using ARM algorithm. When `Polling=False`,\n the response of the initial call will be returned without polling.\n - `polling` parameter accepts instances of subclasses of `msrest.polling.PollingMethod`.\n - `add_done_callback` will no longer raise if called after polling is finished, but will instead execute the callback right away.\n\n**Note**\n\n- azure-mgmt-nspkg is not installed anymore on Python 3 (PEP420-based namespace package)\n\n0.40.0 (2018-02-05)\n+++++++++++++++++++\n\n**Disclaimer**\n\nTo prepare future versions, all Model creation should use keyword only arguments.\n\n**Breaking changes**\n\n- ApplicationCreateParameters changed __init__ signature, breaks if positional arguments was used.\n- ApplicationUpdateParameters changed __init__ signature, breaks if positional arguments was used.\n- CheckGroupMembershipParameters changed __init__ signature, breaks if positional arguments was used.\n- GetObjectsParameters changed __init__ signature, breaks if positional arguments was used.\n- GroupAddMemberParameters changed __init__ signature, breaks if positional arguments was used.\n- GroupCreateParameters changed __init__ signature, breaks if positional arguments was used.\n- GroupGetMemberGroupsParameters changed __init__ signature, breaks if positional arguments was used.\n- ServicePrincipalCreateParameters changed __init__ signature, breaks if positional arguments was used.\n- UserCreateParameters changed __init__ signature, breaks if positional arguments was used.\n- UserGetMemberGroupsParameters changed __init__ signature, breaks if positional arguments was used.\n- UserUpdateParameters changed __init__ signature, breaks if positional arguments was used.\n- groups.is_member_of now takes an instance of CheckGroupMembershipParameters, and not group_id, member_id parameters\n- groups.add_member now have an optional parameter \"additional_properties\", breaks if positional arguments was used.\n- groups.create now takes an instance of GroupCreateParameters, and not display_name, mail_nickname parameters\n- groups.get_member_groups now have an optional parameter \"additional_properties\", breaks if positional arguments was used.\n- service_principals.get_member_groups now have an optional parameter \"additional_properties\", breaks if positional arguments was used.\n\n**Features**\n\n- Enable additional_properties on all Models. to dynamically harvest new properties.\n- Better hierarchy resolution and new generic Model like AADObject. This adds several new attribute to a lot of models.\n- Operation groups now have a \"models\" attribute.\n- Add applications.list_owners\n- Add applications.add_owner\n- Add service_principals.list_owners\n\n0.33.0 (2017-11-01)\n+++++++++++++++++++\n\n**Features**\n\n- add \"required_resource_access\" when applicable\n\n**Bugfixes**\n\n- Get/Delete of Users now encode for you if you provide the UPN.\n\n0.32.0 (2017-09-22)\n+++++++++++++++++++\n\n**Features**\n\n- Add Application.oauth2_allow_implicit_flow (create, update, get)\n- Add to User: immutable_id, given_name, surname, user_type, account_enabled\n- Add to UserCreate: given_name, surname, user_type, mail\n- Add to UserUpdate: immutable_id, given_name, surname, user_type, user_principal_name\n\n**Bugfixes**\n\n- Renamed User.signInName to an array User.signInNames\n\n0.31.0 (2017-08-09)\n+++++++++++++++++++\n\n- Add domains operation group\n- Add usage locations to user\n- Add several new attributes to AADObject\n\n0.30.0 (2017-04-20)\n+++++++++++++++++++\n\n* ApiVersion is now 1.6 for the whole package\n* This wheel package is now built with the azure wheel extension\n\n0.30.0rc6 (2016-09-14)\n++++++++++++++++++++++\n\n**Bugfixes**\n\n* 'list' methods returned only 100 entries (#653)\n\n0.30.0rc5 (2016-06-23)\n++++++++++++++++++++++\n\n* Initial preview release\n\n\n", "description_content_type": "text/x-rst", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/Azure/azure-sdk-for-python", "keywords": "", "license": "MIT License", "maintainer": "", "maintainer_email": "", "name": "azure-graphrbac", "package_url": "https://pypi.org/project/azure-graphrbac/", "platform": "", "project_url": "https://pypi.org/project/azure-graphrbac/", "project_urls": { "Homepage": "https://github.com/Azure/azure-sdk-for-python" }, "release_url": "https://pypi.org/project/azure-graphrbac/0.61.1/", "requires_dist": [ "msrest (>=0.5.0)", "msrestazure (<2.0.0,>=0.4.32)", "azure-common (~=1.1)", "azure-nspkg ; python_version<'3.0'" ], "requires_python": "", "summary": "Microsoft Azure Graph RBAC Client Library for Python", "version": "0.61.1" }, "last_serial": 5334471, "releases": { "0.30.0": [ { "comment_text": "", "digests": { "md5": "3c5aa242233ae0a0bf67b932733ae0c9", "sha256": "a088cb0f27444bcea3c689d9a5ca815c7badb352464494dbc014fb829c84b3a5" }, "downloads": -1, "filename": "azure_graphrbac-0.30.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3c5aa242233ae0a0bf67b932733ae0c9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 43988, "upload_time": "2017-04-20T22:11:19", "url": "https://files.pythonhosted.org/packages/c2/cb/9445279c24e3e184e0767dddfdcb5a404e7e7a54480a336aff721a6e5410/azure_graphrbac-0.30.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dbf8245072a516221698e19fda2135f0", "sha256": "90c6886a601da21d79cb38f956b2354f7806ca06ead27937928c1b513d842b87" }, "downloads": -1, "filename": "azure-graphrbac-0.30.0.zip", "has_sig": false, "md5_digest": "dbf8245072a516221698e19fda2135f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53514, "upload_time": "2017-04-20T22:11:21", "url": "https://files.pythonhosted.org/packages/fe/43/e961f80fa6ec54d2b7e650d63673ede04a0641776318f6aa6d243ce5faa3/azure-graphrbac-0.30.0.zip" } ], "0.30.0a1": [ { "comment_text": "", "digests": { "md5": "6bad2e2888ddc155515ba7efb93856ce", "sha256": "f1e3e4797d53cb5b16f07ce102ea4b28d12f9877b699dd7076d88fdb77fbb9a3" }, "downloads": -1, "filename": "azure_graphrbac-0.30.0a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6bad2e2888ddc155515ba7efb93856ce", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44824, "upload_time": "2016-02-19T02:49:56", "url": "https://files.pythonhosted.org/packages/be/af/df427b70d0c16f5edd357c17ec8f5466feec4406acd7237881b9e55d1f52/azure_graphrbac-0.30.0a1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6a14e60c3005cd5a7e72ca6f34aa4381", "sha256": "43947db82c9b7931345ff62824ef899159321abb42cf5c37ace78967bd25cc2d" }, "downloads": -1, "filename": "azure-graphrbac-0.30.0a1.zip", "has_sig": false, "md5_digest": "6a14e60c3005cd5a7e72ca6f34aa4381", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47490, "upload_time": "2016-02-19T02:47:51", "url": "https://files.pythonhosted.org/packages/98/90/5283e00cd8e68cdecdcbb235797d2096ed806f60cd9364abb822942b13fa/azure-graphrbac-0.30.0a1.zip" } ], "0.30.0rc1": [ { "comment_text": "", "digests": { "md5": "dcfe4468090540d5440856992430464f", "sha256": "82c6d0cf04e388b3dd5a7c8c752fff37f6c426e9605a366356a61af8c6465886" }, "downloads": -1, "filename": "azure_graphrbac-0.30.0rc1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "dcfe4468090540d5440856992430464f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 43945, "upload_time": "2016-03-04T19:46:14", "url": "https://files.pythonhosted.org/packages/04/b9/2035b39f1e88090b4c113484d726d6a23aef7cf46fd169482110f3a1ede0/azure_graphrbac-0.30.0rc1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bf139382317140a91ad67237e9946dfc", "sha256": "1a3e03343420aedcd0e27e29a1eaffdc2973029cfe8f35cdbdb42dd600b8d41a" }, "downloads": -1, "filename": "azure-graphrbac-0.30.0rc1.zip", "has_sig": false, "md5_digest": "bf139382317140a91ad67237e9946dfc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46676, "upload_time": "2016-03-04T19:39:55", "url": "https://files.pythonhosted.org/packages/d2/dd/8d757065278b8619f8ebd248aa0342106cd3e878ef4888d1b79cc63f60fb/azure-graphrbac-0.30.0rc1.zip" } ], "0.30.0rc2": [ { "comment_text": "", "digests": { "md5": "035e85b72a4aff56f714ec2900b156cc", "sha256": "065d37fc9d5d1e69c7c3deba6fd5ef84d7165805054607e3d8a8a32ab5208e9b" }, "downloads": -1, "filename": "azure_graphrbac-0.30.0rc2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "035e85b72a4aff56f714ec2900b156cc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44890, "upload_time": "2016-03-28T18:34:34", "url": "https://files.pythonhosted.org/packages/41/4f/df18b783fddd9a56fdd9b9b308d6ae3dc4fbca90080717604a2b1ef8bb60/azure_graphrbac-0.30.0rc2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4a33c6cdf65d27b8cd54778dc59e114b", "sha256": "a9e09d0fcf3a32b51415065ba088dbdac06092717b1f23aa5c9ba5aae96a4497" }, "downloads": -1, "filename": "azure-graphrbac-0.30.0rc2.zip", "has_sig": false, "md5_digest": "4a33c6cdf65d27b8cd54778dc59e114b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47613, "upload_time": "2016-03-28T18:36:30", "url": "https://files.pythonhosted.org/packages/b5/86/78a4a7e39f738332fbcae4eacd322183c03a2356277027ab9d182e4c6c9c/azure-graphrbac-0.30.0rc2.zip" } ], "0.30.0rc3": [ { "comment_text": "", "digests": { "md5": "690fabd86d5a6eabac76a498592712a3", "sha256": "37f809fd823cc26c61e7a343d205ed1a26d302d5fa9660b06a3229df4b5aea8a" }, "downloads": -1, "filename": "azure_graphrbac-0.30.0rc3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "690fabd86d5a6eabac76a498592712a3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44550, "upload_time": "2016-04-26T23:34:40", "url": "https://files.pythonhosted.org/packages/b2/3a/cf4aa201f48d935a43d58301436e64af354a9982825133772c776f974e6c/azure_graphrbac-0.30.0rc3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "218751f7cda67871ffeb1cc60165810d", "sha256": "cf0680809b7da71ae9de52c050ff6e0a613214249bb9c952d7d636ac019cc759" }, "downloads": -1, "filename": "azure-graphrbac-0.30.0rc3.zip", "has_sig": false, "md5_digest": "218751f7cda67871ffeb1cc60165810d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47272, "upload_time": "2016-04-26T23:31:32", "url": "https://files.pythonhosted.org/packages/2d/79/001688789e142cff15a9be88f9b531cf8be115613bd1b407bfc4e8407566/azure-graphrbac-0.30.0rc3.zip" } ], "0.30.0rc4": [ { "comment_text": "", "digests": { "md5": "19ff482cdc7351baf0978c4d6224708f", "sha256": "ecb1e7cee8be8c3b970bae1a0e328eb6821d07f6519467fdceb482712cb562a8" }, "downloads": -1, "filename": "azure_graphrbac-0.30.0rc4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "19ff482cdc7351baf0978c4d6224708f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 45006, "upload_time": "2016-05-25T22:29:56", "url": "https://files.pythonhosted.org/packages/b6/28/da36dbbcb5a04e87d3aa17ab1a89c9e37b6b54e0a5e110eeeeabf72684c9/azure_graphrbac-0.30.0rc4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cded6bbd8556c04f5bdec7dcdf685d5d", "sha256": "41494a26f9f3792b7f0c2808c9229e13bc39e14e79fe5939bd6d5757fddbbdf6" }, "downloads": -1, "filename": "azure-graphrbac-0.30.0rc4.zip", "has_sig": false, "md5_digest": "cded6bbd8556c04f5bdec7dcdf685d5d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47740, "upload_time": "2016-05-25T22:26:53", "url": "https://files.pythonhosted.org/packages/c3/77/72e70f12aef94d7841a528d05472a3728cb4eb4744dc034a8d9d65175af0/azure-graphrbac-0.30.0rc4.zip" } ], "0.30.0rc5": [ { "comment_text": "", "digests": { "md5": "85e7da43cc68bd979fa62c27469b82ba", "sha256": "31123f12dba27bc5e7faace16aa8e97a37a6514c590a4c9307610a1314c1f2e5" }, "downloads": -1, "filename": "azure_graphrbac-0.30.0rc5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "85e7da43cc68bd979fa62c27469b82ba", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 50606, "upload_time": "2016-06-23T23:28:42", "url": "https://files.pythonhosted.org/packages/82/f3/a5fe27356bc3bab0f0ad528829a8bec0b37a9ca7905f3898b7ea67e62649/azure_graphrbac-0.30.0rc5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9b99bd9a10d0438fe24bcb8f1384ff99", "sha256": "3797c0c8be894d6a439538ec9b6af3f156f9edcecfd9bf1949efe206f136ad1e" }, "downloads": -1, "filename": "azure-graphrbac-0.30.0rc5.zip", "has_sig": false, "md5_digest": "9b99bd9a10d0438fe24bcb8f1384ff99", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53527, "upload_time": "2016-06-23T23:30:19", "url": "https://files.pythonhosted.org/packages/16/f3/284753f2e07fc133316338eedde61ad81a18f9bc55229a17d8b68a0a86b2/azure-graphrbac-0.30.0rc5.zip" } ], "0.30.0rc6": [ { "comment_text": "", "digests": { "md5": "9aa9fc99b8b8081d1d5c2d47b00dba1d", "sha256": "f455208b1db91ed7fe3c3a4b42f5093cc47371c04f19d7d8a2f41bf93212e8fa" }, "downloads": -1, "filename": "azure_graphrbac-0.30.0rc6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9aa9fc99b8b8081d1d5c2d47b00dba1d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 43211, "upload_time": "2016-09-14T20:09:48", "url": "https://files.pythonhosted.org/packages/ec/7b/6426537f36661bb10cfaec8c326b988191cc0228f49845dc55b919b91c0f/azure_graphrbac-0.30.0rc6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4c372db638f0a94153672f2f632d9164", "sha256": "aaff1f02d0c1289943b8ea4dfc1a68e2325bbd9e6904b83f44a35508506a9a5e" }, "downloads": -1, "filename": "azure-graphrbac-0.30.0rc6.zip", "has_sig": false, "md5_digest": "4c372db638f0a94153672f2f632d9164", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47655, "upload_time": "2016-09-14T20:09:50", "url": "https://files.pythonhosted.org/packages/e0/f4/0a804a5e99e46a4894b35ad190b231ed33fb26adf421872300f217f3c7a1/azure-graphrbac-0.30.0rc6.zip" } ], "0.31.0": [ { "comment_text": "", "digests": { "md5": "c57da277361aac5e3319f046732d2e9a", "sha256": "5bf8968dcd6c6c96237dfc9dc9a2b38ee58c6a7654f0ec459afbb355821adf87" }, "downloads": -1, "filename": "azure_graphrbac-0.31.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c57da277361aac5e3319f046732d2e9a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 49116, "upload_time": "2017-08-09T18:09:38", "url": "https://files.pythonhosted.org/packages/20/7e/312eb2b09b5be29a8a74633ad1eba78b1114ab30bfb1fd34a053fbd170a7/azure_graphrbac-0.31.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "782589a733b0db089cab1b8ca94189e7", "sha256": "faa7d632f13d5f99a704c561dca0711aa72f9b48b3494075c3d5a9f76734d61e" }, "downloads": -1, "filename": "azure-graphrbac-0.31.0.zip", "has_sig": false, "md5_digest": "782589a733b0db089cab1b8ca94189e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58933, "upload_time": "2017-08-09T18:09:40", "url": "https://files.pythonhosted.org/packages/33/0f/9bbc92a4566986a3f1de311e95cd5a1c6ba473783d2c9381be38d1f9d946/azure-graphrbac-0.31.0.zip" } ], "0.32.0": [ { "comment_text": "", "digests": { "md5": "eaa292d89b83bda54af8fb48b4d64dd6", "sha256": "e3d5c52ddf6dee1a91161455bebcbb1774a6c7155adb7fa74ebcd4fdd07d730b" }, "downloads": -1, "filename": "azure_graphrbac-0.32.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "eaa292d89b83bda54af8fb48b4d64dd6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 53283, "upload_time": "2017-09-22T16:47:43", "url": "https://files.pythonhosted.org/packages/bb/97/9a7b3ac39d0997b651a4cf802a581e5b48385775ea592d57f17783f1be16/azure_graphrbac-0.32.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "80463321f59c36361c9cbf603a9210f7", "sha256": "f62ad5429a9aa4fbafc3540852e34a93ae2aa5a25831742abea93f84235979b9" }, "downloads": -1, "filename": "azure-graphrbac-0.32.0.zip", "has_sig": false, "md5_digest": "80463321f59c36361c9cbf603a9210f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63288, "upload_time": "2017-09-22T16:47:46", "url": "https://files.pythonhosted.org/packages/9c/18/8cbc289e0231b5b4e866583e31627a005b33e5133181d5102d3eea6dc4bd/azure-graphrbac-0.32.0.zip" } ], "0.33.0": [ { "comment_text": "", "digests": { "md5": "528af607d37da625911b1277b362afb6", "sha256": "cb0a02fa38bfddf0fe213a8236b96b5bb2c9d7080297f4b1f362268a24dcf8d7" }, "downloads": -1, "filename": "azure_graphrbac-0.33.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "528af607d37da625911b1277b362afb6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 55332, "upload_time": "2017-11-01T21:05:45", "url": "https://files.pythonhosted.org/packages/b0/9f/8642a28b84330129ccb40ad0f679ae2f917e1e104d7863f93193cac9237e/azure_graphrbac-0.33.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "afdb0de8706ade2a7c02d0cd4d656801", "sha256": "bae79a45761e89a6f743089843f2c7866f760b389630d19507b45df5ddbd6cee" }, "downloads": -1, "filename": "azure-graphrbac-0.33.0.zip", "has_sig": false, "md5_digest": "afdb0de8706ade2a7c02d0cd4d656801", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65421, "upload_time": "2017-11-01T21:05:46", "url": "https://files.pythonhosted.org/packages/f9/81/2bc98855aebd78a07aa0cf230cccb8b7772e1d0d49d9ec76e6a0f14c1e68/azure-graphrbac-0.33.0.zip" } ], "0.40.0": [ { "comment_text": "", "digests": { "md5": "9010a61604e764f9f41bf8fbc2c30c9c", "sha256": "825b397665f478fab511e521f3f3f4b64189cb9f6c2e7e873b3b7333dc533974" }, "downloads": -1, "filename": "azure_graphrbac-0.40.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9010a61604e764f9f41bf8fbc2c30c9c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 63247, "upload_time": "2018-02-05T22:14:02", "url": "https://files.pythonhosted.org/packages/89/0a/29f7e2914033e2536026b8f0d7f8deb1edda68c9a93ce4757b2b1e39568b/azure_graphrbac-0.40.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c356bece975d4611b2990596f2bf3731", "sha256": "f94b97bdcf774878fe2f8b8c46a5d6550a4ed891350ed0730c1561a24d488ee2" }, "downloads": -1, "filename": "azure-graphrbac-0.40.0.zip", "has_sig": false, "md5_digest": "c356bece975d4611b2990596f2bf3731", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73839, "upload_time": "2018-02-05T22:14:04", "url": "https://files.pythonhosted.org/packages/c1/4c/3904f9c7b4470df6a2e49c2d1c6f314a337f34dccbadcdcb892d12493c52/azure-graphrbac-0.40.0.zip" } ], "0.50.0": [ { "comment_text": "", "digests": { "md5": "8a3180daa53b2e597cac552374da44ea", "sha256": "7ecb7d09a5246825e2bef156f79250181990273f629125899e0664a77c125189" }, "downloads": -1, "filename": "azure_graphrbac-0.50.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8a3180daa53b2e597cac552374da44ea", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 107605, "upload_time": "2018-10-10T23:59:10", "url": "https://files.pythonhosted.org/packages/2c/b1/0fb8d3932c6ec6329e30e6ce0b7754046ecdda46b6076bb024d853fc1fcb/azure_graphrbac-0.50.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4dea5331e72735b25a781b7bd57807d6", "sha256": "fe637f8d77ef86da1130aa3bd85a15f1f4e4f4e72472b302627233e2fff9fcc6" }, "downloads": -1, "filename": "azure-graphrbac-0.50.0.zip", "has_sig": false, "md5_digest": "4dea5331e72735b25a781b7bd57807d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 116869, "upload_time": "2018-10-10T23:59:11", "url": "https://files.pythonhosted.org/packages/38/74/4c7eb5244bd9f2ec31bb50d9e188465a95ee2d26db6155e3e0f502dde74f/azure-graphrbac-0.50.0.zip" } ], "0.51.0": [ { "comment_text": "", "digests": { "md5": "d9378bcba8a115cc76dfa9d796baae26", "sha256": "e813892859a629689cf99f3a220004b9f6c97747cb2c93081de95af8586c00c4" }, "downloads": -1, "filename": "azure_graphrbac-0.51.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d9378bcba8a115cc76dfa9d796baae26", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 107840, "upload_time": "2018-10-11T23:31:23", "url": "https://files.pythonhosted.org/packages/ba/74/c5b233fe49b1a9909f8e7c18f9ddbf57bafce55f92ddd6edfbfdce1718fd/azure_graphrbac-0.51.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6276f8b782b5925cc499935f621cbdeb", "sha256": "51df8a9f44d2fadcb320b441b0fb41dc690572c607d191901fe522cf2d9722f7" }, "downloads": -1, "filename": "azure-graphrbac-0.51.0.zip", "has_sig": false, "md5_digest": "6276f8b782b5925cc499935f621cbdeb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 117154, "upload_time": "2018-10-11T23:31:25", "url": "https://files.pythonhosted.org/packages/86/71/b42cfe628180c14db6ca0b7c0f4a668ad2f1c9d2b4be4f7519cb59e69a22/azure-graphrbac-0.51.0.zip" } ], "0.51.1": [ { "comment_text": "", "digests": { "md5": "7abdee2957afff359a9328e70fe709d8", "sha256": "49c0f1dd4feafa9d250b2765151c52d374f717f5781427a4a9a327da9959a1ff" }, "downloads": -1, "filename": "azure_graphrbac-0.51.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7abdee2957afff359a9328e70fe709d8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 107884, "upload_time": "2018-10-16T18:41:17", "url": "https://files.pythonhosted.org/packages/b2/72/af79ab4d8f7950306b9fede21a636729706045100dd017bb09aca5c8a22f/azure_graphrbac-0.51.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "10e378e1c057b8d5d2d3bb215c06437a", "sha256": "5d07c9c09788da3f7b938d02300df482750802c7a39a9cceed903d0c3c485231" }, "downloads": -1, "filename": "azure-graphrbac-0.51.1.zip", "has_sig": false, "md5_digest": "10e378e1c057b8d5d2d3bb215c06437a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 117524, "upload_time": "2018-10-16T18:41:18", "url": "https://files.pythonhosted.org/packages/df/2f/bb2380cb09be3a713bafb4cc58ce184c4c77da32afe269ec452221311ccb/azure-graphrbac-0.51.1.zip" } ], "0.52.0": [ { "comment_text": "", "digests": { "md5": "948c5c1aaffd8eb45befd6f5dd568d1a", "sha256": "b2e120b3ace8a9ac7a2f95b8851de88891c6806759893c67be4e4448deb5decd" }, "downloads": -1, "filename": "azure_graphrbac-0.52.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "948c5c1aaffd8eb45befd6f5dd568d1a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 108240, "upload_time": "2018-10-29T20:15:58", "url": "https://files.pythonhosted.org/packages/97/84/b4558e3f469c67497a2a5eaeb05321f91b1ee2d1205992a33f001d9c4bf9/azure_graphrbac-0.52.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a15c774a4b165e7ef30c4b4e7864d181", "sha256": "c401ecaceb40d3724cbe6a43758da525e4e64e6d08dd6339df51daa57baa84cc" }, "downloads": -1, "filename": "azure-graphrbac-0.52.0.zip", "has_sig": false, "md5_digest": "a15c774a4b165e7ef30c4b4e7864d181", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 117931, "upload_time": "2018-10-29T20:15:59", "url": "https://files.pythonhosted.org/packages/89/6a/e2db001e4f1716368153ea6cae3e2e84e11f8503dc840a764f6671317976/azure-graphrbac-0.52.0.zip" } ], "0.53.0": [ { "comment_text": "", "digests": { "md5": "d4558884488ced412cdfc14617f862bb", "sha256": "45362821c0928a9edbcdd72262a650c9d6ee32a6de72e3158ecee76e508a519f" }, "downloads": -1, "filename": "azure_graphrbac-0.53.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d4558884488ced412cdfc14617f862bb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 108613, "upload_time": "2018-11-27T20:18:00", "url": "https://files.pythonhosted.org/packages/da/a8/3d3d6fe8458b2b07bad10195c79928ea9ba87b5cc0c08903b387dd27c6f0/azure_graphrbac-0.53.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cc03423ccbf41df79a70b5c5b3e90fe5", "sha256": "970c11f2cfa42c3e52d9768a92295cb0812dfbaa35401a2c5d1f5cbf6a42ae6f" }, "downloads": -1, "filename": "azure-graphrbac-0.53.0.zip", "has_sig": false, "md5_digest": "cc03423ccbf41df79a70b5c5b3e90fe5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 118429, "upload_time": "2018-11-27T20:18:02", "url": "https://files.pythonhosted.org/packages/4a/78/cf441cf25279f2005a9b88fcdbb56f42b6362d2916e74970883165122a49/azure-graphrbac-0.53.0.zip" } ], "0.60.0": [ { "comment_text": "", "digests": { "md5": "317e65f57f0a3279d27f5e18c76688fd", "sha256": "0b266602dfc631dca13960cc64bac172bf9dea2cccbb1aa13d1631ce76f14d79" }, "downloads": -1, "filename": "azure_graphrbac-0.60.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "317e65f57f0a3279d27f5e18c76688fd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 139672, "upload_time": "2019-03-13T22:18:11", "url": "https://files.pythonhosted.org/packages/bd/11/f78acb88061fbfb3678cb7f2c7d6ad73b69b08bc558aa56246e9ce0d9998/azure_graphrbac-0.60.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ebf2cd97a7195af58b4da4f1ee7113bb", "sha256": "d0bb62d8bf8e196b903f3971ba4afa448e4fe14e8394ebfcdd941d84d62ecafe" }, "downloads": -1, "filename": "azure-graphrbac-0.60.0.zip", "has_sig": false, "md5_digest": "ebf2cd97a7195af58b4da4f1ee7113bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 273971, "upload_time": "2019-03-13T22:18:17", "url": "https://files.pythonhosted.org/packages/3e/4e/4598ea52efc2654b0c865243bd60625d4ffa4df874e7e5dcb76a9a4ddbbc/azure-graphrbac-0.60.0.zip" } ], "0.61.0": [ { "comment_text": "", "digests": { "md5": "ac99da1dd744aafba05c8d81a5cf731d", "sha256": "1c882b97b8ca67e987d7d545479c0260c229f5c68a6c02fdedfe40001c89564b" }, "downloads": -1, "filename": "azure_graphrbac-0.61.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ac99da1dd744aafba05c8d81a5cf731d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 141344, "upload_time": "2019-03-21T00:00:00", "url": "https://files.pythonhosted.org/packages/89/74/00a5ae6e8c823ff0a9c8550931fc42f5f1e5b614f7a45f602f52ec794ac9/azure_graphrbac-0.61.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2ca1a6dd48343266b66379857219250d", "sha256": "4ab27db29d730e4d35f420466500f8ee60a26a8151dbd121a6c353ccd9d4ee55" }, "downloads": -1, "filename": "azure-graphrbac-0.61.0.zip", "has_sig": false, "md5_digest": "2ca1a6dd48343266b66379857219250d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 276544, "upload_time": "2019-03-21T00:00:01", "url": "https://files.pythonhosted.org/packages/f2/ab/263b7a345d8ecddc93873c5ee9b512ce02d90871f95f19883cbfa5d0605f/azure-graphrbac-0.61.0.zip" } ], "0.61.1": [ { "comment_text": "", "digests": { "md5": "17f839466fb50fffe5d3d3ccfb84142a", "sha256": "7b4e0f05676acc912f2b33c71c328d9fb2e4dc8e70ebadc9d3de8ab08bf0b175" }, "downloads": -1, "filename": "azure_graphrbac-0.61.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "17f839466fb50fffe5d3d3ccfb84142a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 141419, "upload_time": "2019-05-29T21:16:10", "url": "https://files.pythonhosted.org/packages/3e/93/02056aca45162f9fc275d1eaad12a2a07ef92375afb48eabddc4134b8315/azure_graphrbac-0.61.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9ec2c4483510c27776ef501f35f336ea", "sha256": "53e98ae2ca7c19b349e9e9bb1b6a824aeae8dcfcbe17190d20fe69c0f185b2e2" }, "downloads": -1, "filename": "azure-graphrbac-0.61.1.zip", "has_sig": false, "md5_digest": "9ec2c4483510c27776ef501f35f336ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 277920, "upload_time": "2019-05-29T21:16:12", "url": "https://files.pythonhosted.org/packages/52/31/87dd867c239b5b2c5bccade8a0fd81c28b9b380ece3db47b58ae05270842/azure-graphrbac-0.61.1.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "17f839466fb50fffe5d3d3ccfb84142a", "sha256": "7b4e0f05676acc912f2b33c71c328d9fb2e4dc8e70ebadc9d3de8ab08bf0b175" }, "downloads": -1, "filename": "azure_graphrbac-0.61.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "17f839466fb50fffe5d3d3ccfb84142a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 141419, "upload_time": "2019-05-29T21:16:10", "url": "https://files.pythonhosted.org/packages/3e/93/02056aca45162f9fc275d1eaad12a2a07ef92375afb48eabddc4134b8315/azure_graphrbac-0.61.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9ec2c4483510c27776ef501f35f336ea", "sha256": "53e98ae2ca7c19b349e9e9bb1b6a824aeae8dcfcbe17190d20fe69c0f185b2e2" }, "downloads": -1, "filename": "azure-graphrbac-0.61.1.zip", "has_sig": false, "md5_digest": "9ec2c4483510c27776ef501f35f336ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 277920, "upload_time": "2019-05-29T21:16:12", "url": "https://files.pythonhosted.org/packages/52/31/87dd867c239b5b2c5bccade8a0fd81c28b9b380ece3db47b58ae05270842/azure-graphrbac-0.61.1.zip" } ] }