Skip to content

Commit

Permalink
Merge pull request #804 from lmazuel/keyvault_data
Browse files Browse the repository at this point in the history
Keyvault data in unreleased folder
  • Loading branch information
lmazuel committed Sep 23, 2016
2 parents 35fa806 + 434cc48 commit 9016895
Show file tree
Hide file tree
Showing 67 changed files with 5,643 additions and 0 deletions.
7 changes: 7 additions & 0 deletions swagger_to_sdk_config.json
Expand Up @@ -115,6 +115,13 @@
},
"output_dir": "azure-mgmt-keyvault/azure/mgmt/keyvault"
},
"keyvault.data": {
"swagger": "keyvault/2015-06-01/swagger/keyvault.json",
"autorest_options": {
"Namespace": "azure.keyvault"
},
"output_dir": "unreleased/azure-keyvault/azure/keyvault"
},
"logic": {
"swagger": "arm-logic/CompositeLogicClient.json",
"autorest_options": {
Expand Down
9 changes: 9 additions & 0 deletions unreleased/azure-keyvault/HISTORY.rst
@@ -0,0 +1,9 @@
.. :changelog:
Release History
===============

0.0.1 (1970-01-01)
++++++++++++++++++

* Initial Release
2 changes: 2 additions & 0 deletions unreleased/azure-keyvault/MANIFEST.in
@@ -0,0 +1,2 @@
include *.rst
exclude azure/__init__.py
49 changes: 49 additions & 0 deletions unreleased/azure-keyvault/README.rst
@@ -0,0 +1,49 @@
Microsoft Azure SDK for Python
==============================

This is the Microsoft Azure KeyVault Client Library.

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.3, 3.4 and 3.5.

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 <https://pypi.python.org/pypi/azure>`__ bundle package.


Compatibility
=============

**IMPORTANT**: If you have an earlier version of the azure package
(version < 1.0), you should uninstall it before installing this package.

You can check the version using pip:

.. code:: shell
pip freeze
If you see azure==0.11.0 (or any version below 1.0), uninstall it first:

.. code:: shell
pip uninstall azure
Usage
=====

For code examples, see `KeyVault
<https://azure-sdk-for-python.readthedocs.org/en/latest/sample_azure-keyvault.html>`__
on readthedocs.org.


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.
1 change: 1 addition & 0 deletions unreleased/azure-keyvault/azure/__init__.py
@@ -0,0 +1 @@
__import__('pkg_resources').declare_namespace(__name__)
18 changes: 18 additions & 0 deletions unreleased/azure-keyvault/azure/keyvault/__init__.py
@@ -0,0 +1,18 @@
# 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 .key_vault_client import KeyVaultClient
from .version import VERSION

__all__ = ['KeyVaultClient']

__version__ = VERSION

0 comments on commit 9016895

Please sign in to comment.