diff --git a/azure-keyvault/azure/keyvault/key_vault_client.py b/azure-keyvault/azure/keyvault/key_vault_client.py index 4f24747bf55e..2aecef47e52d 100644 --- a/azure-keyvault/azure/keyvault/key_vault_client.py +++ b/azure-keyvault/azure/keyvault/key_vault_client.py @@ -85,7 +85,8 @@ def create_key( JsonWebKeyType. Possible values include: 'EC', 'EC-HSM', 'RSA', 'RSA-HSM', 'oct' :type kty: str or ~azure.keyvault.models.JsonWebKeyType - :param key_size: The key size in bytes. For example, 1024 or 2048. + :param key_size: The key size in bits. For example: 2048, 3072, or + 4096 for RSA. :type key_size: int :param key_ops: :type key_ops: list[str or ~azure.keyvault.models.JsonWebKeyOperation] diff --git a/azure-keyvault/azure/keyvault/models/certificate_attributes_py3.py b/azure-keyvault/azure/keyvault/models/certificate_attributes_py3.py index 028ab5095fbd..0a977c07a8b0 100644 --- a/azure-keyvault/azure/keyvault/models/certificate_attributes_py3.py +++ b/azure-keyvault/azure/keyvault/models/certificate_attributes_py3.py @@ -9,7 +9,7 @@ # regenerated. # -------------------------------------------------------------------------- -from .attributes import Attributes +from .attributes_py3 import Attributes class CertificateAttributes(Attributes): diff --git a/azure-keyvault/azure/keyvault/models/deleted_certificate_bundle_py3.py b/azure-keyvault/azure/keyvault/models/deleted_certificate_bundle_py3.py index 3e199a665260..c028d1db6740 100644 --- a/azure-keyvault/azure/keyvault/models/deleted_certificate_bundle_py3.py +++ b/azure-keyvault/azure/keyvault/models/deleted_certificate_bundle_py3.py @@ -9,7 +9,7 @@ # regenerated. # -------------------------------------------------------------------------- -from .certificate_bundle import CertificateBundle +from .certificate_bundle_py3 import CertificateBundle class DeletedCertificateBundle(CertificateBundle): diff --git a/azure-keyvault/azure/keyvault/models/deleted_certificate_item_py3.py b/azure-keyvault/azure/keyvault/models/deleted_certificate_item_py3.py index 1a599db43416..eb9c4c941c7c 100644 --- a/azure-keyvault/azure/keyvault/models/deleted_certificate_item_py3.py +++ b/azure-keyvault/azure/keyvault/models/deleted_certificate_item_py3.py @@ -9,7 +9,7 @@ # regenerated. # -------------------------------------------------------------------------- -from .certificate_item import CertificateItem +from .certificate_item_py3 import CertificateItem class DeletedCertificateItem(CertificateItem): diff --git a/azure-keyvault/azure/keyvault/models/deleted_key_bundle_py3.py b/azure-keyvault/azure/keyvault/models/deleted_key_bundle_py3.py index c3d97f46dd66..f36d9a0028b1 100644 --- a/azure-keyvault/azure/keyvault/models/deleted_key_bundle_py3.py +++ b/azure-keyvault/azure/keyvault/models/deleted_key_bundle_py3.py @@ -9,7 +9,7 @@ # regenerated. # -------------------------------------------------------------------------- -from .key_bundle import KeyBundle +from .key_bundle_py3 import KeyBundle class DeletedKeyBundle(KeyBundle): diff --git a/azure-keyvault/azure/keyvault/models/deleted_key_item_py3.py b/azure-keyvault/azure/keyvault/models/deleted_key_item_py3.py index 990b024f9c58..f891deac56a0 100644 --- a/azure-keyvault/azure/keyvault/models/deleted_key_item_py3.py +++ b/azure-keyvault/azure/keyvault/models/deleted_key_item_py3.py @@ -9,7 +9,7 @@ # regenerated. # -------------------------------------------------------------------------- -from .key_item import KeyItem +from .key_item_py3 import KeyItem class DeletedKeyItem(KeyItem): diff --git a/azure-keyvault/azure/keyvault/models/deleted_secret_bundle_py3.py b/azure-keyvault/azure/keyvault/models/deleted_secret_bundle_py3.py index 43f1cdc34217..d6f4032cd614 100644 --- a/azure-keyvault/azure/keyvault/models/deleted_secret_bundle_py3.py +++ b/azure-keyvault/azure/keyvault/models/deleted_secret_bundle_py3.py @@ -9,7 +9,7 @@ # regenerated. # -------------------------------------------------------------------------- -from .secret_bundle import SecretBundle +from .secret_bundle_py3 import SecretBundle class DeletedSecretBundle(SecretBundle): diff --git a/azure-keyvault/azure/keyvault/models/deleted_secret_item_py3.py b/azure-keyvault/azure/keyvault/models/deleted_secret_item_py3.py index cc8bab098049..45a05db4b63e 100644 --- a/azure-keyvault/azure/keyvault/models/deleted_secret_item_py3.py +++ b/azure-keyvault/azure/keyvault/models/deleted_secret_item_py3.py @@ -9,7 +9,7 @@ # regenerated. # -------------------------------------------------------------------------- -from .secret_item import SecretItem +from .secret_item_py3 import SecretItem class DeletedSecretItem(SecretItem): diff --git a/azure-keyvault/azure/keyvault/models/key_attributes_py3.py b/azure-keyvault/azure/keyvault/models/key_attributes_py3.py index 8689ce17e65a..ee606fe0f5f4 100644 --- a/azure-keyvault/azure/keyvault/models/key_attributes_py3.py +++ b/azure-keyvault/azure/keyvault/models/key_attributes_py3.py @@ -9,7 +9,7 @@ # regenerated. # -------------------------------------------------------------------------- -from .attributes import Attributes +from .attributes_py3 import Attributes class KeyAttributes(Attributes): diff --git a/azure-keyvault/azure/keyvault/models/key_create_parameters.py b/azure-keyvault/azure/keyvault/models/key_create_parameters.py index 9f34a95f0d41..cc23494b80fc 100644 --- a/azure-keyvault/azure/keyvault/models/key_create_parameters.py +++ b/azure-keyvault/azure/keyvault/models/key_create_parameters.py @@ -21,7 +21,8 @@ class KeyCreateParameters(Model): JsonWebKeyType. Possible values include: 'EC', 'EC-HSM', 'RSA', 'RSA-HSM', 'oct' :type kty: str or ~azure.keyvault.models.JsonWebKeyType - :param key_size: The key size in bytes. For example, 1024 or 2048. + :param key_size: The key size in bits. For example: 2048, 3072, or 4096 + for RSA. :type key_size: int :param key_ops: :type key_ops: list[str or ~azure.keyvault.models.JsonWebKeyOperation] diff --git a/azure-keyvault/azure/keyvault/models/key_create_parameters_py3.py b/azure-keyvault/azure/keyvault/models/key_create_parameters_py3.py index a9d0fc5357d1..b0937c730ffd 100644 --- a/azure-keyvault/azure/keyvault/models/key_create_parameters_py3.py +++ b/azure-keyvault/azure/keyvault/models/key_create_parameters_py3.py @@ -21,7 +21,8 @@ class KeyCreateParameters(Model): JsonWebKeyType. Possible values include: 'EC', 'EC-HSM', 'RSA', 'RSA-HSM', 'oct' :type kty: str or ~azure.keyvault.models.JsonWebKeyType - :param key_size: The key size in bytes. For example, 1024 or 2048. + :param key_size: The key size in bits. For example: 2048, 3072, or 4096 + for RSA. :type key_size: int :param key_ops: :type key_ops: list[str or ~azure.keyvault.models.JsonWebKeyOperation] diff --git a/azure-keyvault/azure/keyvault/models/key_properties.py b/azure-keyvault/azure/keyvault/models/key_properties.py index 8f1158d011f9..cffdedef7c39 100644 --- a/azure-keyvault/azure/keyvault/models/key_properties.py +++ b/azure-keyvault/azure/keyvault/models/key_properties.py @@ -19,7 +19,8 @@ class KeyProperties(Model): :type exportable: bool :param key_type: The key type. :type key_type: str - :param key_size: The key size in bytes. For example; 1024 or 2048. + :param key_size: The key size in bits. For example: 2048, 3072, or 4096 + for RSA. :type key_size: int :param reuse_key: Indicates if the same key pair will be used on certificate renewal. diff --git a/azure-keyvault/azure/keyvault/models/key_properties_py3.py b/azure-keyvault/azure/keyvault/models/key_properties_py3.py index 6f8d8cb780db..1068ce7af0f4 100644 --- a/azure-keyvault/azure/keyvault/models/key_properties_py3.py +++ b/azure-keyvault/azure/keyvault/models/key_properties_py3.py @@ -19,7 +19,8 @@ class KeyProperties(Model): :type exportable: bool :param key_type: The key type. :type key_type: str - :param key_size: The key size in bytes. For example; 1024 or 2048. + :param key_size: The key size in bits. For example: 2048, 3072, or 4096 + for RSA. :type key_size: int :param reuse_key: Indicates if the same key pair will be used on certificate renewal. diff --git a/azure-keyvault/azure/keyvault/models/key_vault_client_enums.py b/azure-keyvault/azure/keyvault/models/key_vault_client_enums.py index f654fa9b01b7..98100904d78b 100644 --- a/azure-keyvault/azure/keyvault/models/key_vault_client_enums.py +++ b/azure-keyvault/azure/keyvault/models/key_vault_client_enums.py @@ -23,10 +23,10 @@ class JsonWebKeyType(str, Enum): class JsonWebKeyCurveName(str, Enum): - p_256 = "P-256" - p_384 = "P-384" - p_521 = "P-521" - secp256_k1 = "SECP256K1" + p_256 = "P-256" #: The NIST P-256 elliptic curve, AKA SECG curve SECP256R1. + p_384 = "P-384" #: The NIST P-384 elliptic curve, AKA SECG curve SECP384R1. + p_521 = "P-521" #: The NIST P-521 elliptic curve, AKA SECG curve SECP521R1. + secp256_k1 = "SECP256K1" #: The SECG SECP256K1 elliptic curve. class DeletionRecoveryLevel(str, Enum): diff --git a/azure-keyvault/azure/keyvault/models/secret_attributes_py3.py b/azure-keyvault/azure/keyvault/models/secret_attributes_py3.py index d9166f634160..4c81c14e83c6 100644 --- a/azure-keyvault/azure/keyvault/models/secret_attributes_py3.py +++ b/azure-keyvault/azure/keyvault/models/secret_attributes_py3.py @@ -9,7 +9,7 @@ # regenerated. # -------------------------------------------------------------------------- -from .attributes import Attributes +from .attributes_py3 import Attributes class SecretAttributes(Attributes): diff --git a/azure-keyvault/build.json b/azure-keyvault/build.json index 7831a36ba25f..37377527b4fe 100644 --- a/azure-keyvault/build.json +++ b/azure-keyvault/build.json @@ -4,7 +4,7 @@ "resolvedInfo": null, "packageMetadata": { "name": "@microsoft.azure/autorest-core", - "version": "2.0.4275", + "version": "2.0.4278", "engines": { "node": ">=7.10.0" }, @@ -29,26 +29,114 @@ "bundleDependencies": false, "peerDependencies": {}, "deprecated": false, - "_resolved": "/root/.autorest/@microsoft.azure_autorest-core@2.0.4275/node_modules/@microsoft.azure/autorest-core", + "_resolved": "/root/.autorest/@microsoft.azure_autorest-core@2.0.4278/node_modules/@microsoft.azure/autorest-core", "_integrity": null, - "_shasum": "fdcfc270c8be0ddec8a8996951d975b9c76c333d", + "_shasum": "4832bd936bb0844ed6a5fea202575fb4adb5c249", "_shrinkwrap": null, "bin": { "autorest-core": "./dist/app.js", "autorest-language-service": "dist/language-service/language-service.js" }, - "_id": "@microsoft.azure/autorest-core@2.0.4275", - "_from": "file:/root/.autorest/@microsoft.azure_autorest-core@2.0.4275/node_modules/@microsoft.azure/autorest-core", + "_id": "@microsoft.azure/autorest-core@2.0.4278", + "_from": "file:/root/.autorest/@microsoft.azure_autorest-core@2.0.4278/node_modules/@microsoft.azure/autorest-core", "_requested": { "type": "directory", - "where": "/root/.autorest/@microsoft.azure_autorest-core@2.0.4275/node_modules/@microsoft.azure/autorest-core", - "raw": "/root/.autorest/@microsoft.azure_autorest-core@2.0.4275/node_modules/@microsoft.azure/autorest-core", - "rawSpec": "/root/.autorest/@microsoft.azure_autorest-core@2.0.4275/node_modules/@microsoft.azure/autorest-core", - "saveSpec": "file:/root/.autorest/@microsoft.azure_autorest-core@2.0.4275/node_modules/@microsoft.azure/autorest-core", - "fetchSpec": "/root/.autorest/@microsoft.azure_autorest-core@2.0.4275/node_modules/@microsoft.azure/autorest-core" + "where": "/root/.autorest/@microsoft.azure_autorest-core@2.0.4278/node_modules/@microsoft.azure/autorest-core", + "raw": "/root/.autorest/@microsoft.azure_autorest-core@2.0.4278/node_modules/@microsoft.azure/autorest-core", + "rawSpec": "/root/.autorest/@microsoft.azure_autorest-core@2.0.4278/node_modules/@microsoft.azure/autorest-core", + "saveSpec": "file:/root/.autorest/@microsoft.azure_autorest-core@2.0.4278/node_modules/@microsoft.azure/autorest-core", + "fetchSpec": "/root/.autorest/@microsoft.azure_autorest-core@2.0.4278/node_modules/@microsoft.azure/autorest-core" + }, + "_spec": "/root/.autorest/@microsoft.azure_autorest-core@2.0.4278/node_modules/@microsoft.azure/autorest-core", + "_where": "/root/.autorest/@microsoft.azure_autorest-core@2.0.4278/node_modules/@microsoft.azure/autorest-core" + }, + "extensionManager": { + "installationPath": "/root/.autorest", + "sharedLock": { + "name": "/root/.autorest", + "exclusiveLock": { + "name": "_root_.autorest.exclusive-lock", + "options": { + "port": 45234, + "host": "2130706813", + "exclusive": true + }, + "pipe": "/tmp/pipe__root_.autorest.exclusive-lock:45234" + }, + "busyLock": { + "name": "_root_.autorest.busy-lock", + "options": { + "port": 37199, + "host": "2130756895", + "exclusive": true + }, + "pipe": "/tmp/pipe__root_.autorest.busy-lock:37199" + }, + "personalLock": { + "name": "_root_.autorest.5839.871434054468.personal-lock", + "options": { + "port": 53518, + "host": "2130749776", + "exclusive": true + }, + "pipe": "/tmp/pipe__root_.autorest.5839.871434054468.personal-lock:53518" + }, + "file": "/tmp/_root_.autorest.lock" + }, + "dotnetPath": "/root/.dotnet" + }, + "installationPath": "/root/.autorest" + }, + { + "resolvedInfo": null, + "packageMetadata": { + "name": "@microsoft.azure/autorest-core", + "version": "2.0.4279", + "engines": { + "node": ">=7.10.0" + }, + "dependencies": { + "typescript": "2.6.2" + }, + "optionalDependencies": {}, + "devDependencies": { + "@types/commonmark": "^0.27.0", + "@types/jsonpath": "^0.1.29", + "@types/mocha": "5.2.0", + "@types/node": "^8.0.53", + "@types/source-map": "0.5.0", + "@types/yargs": "^8.0.2", + "@types/z-schema": "^3.16.31", + "dts-generator": "^2.1.0", + "mocha": "5.2.0", + "mocha-typescript": "1.1.14", + "shx": "0.2.2", + "static-link": "^0.2.3", + "vscode-jsonrpc": "^3.3.1" }, - "_spec": "/root/.autorest/@microsoft.azure_autorest-core@2.0.4275/node_modules/@microsoft.azure/autorest-core", - "_where": "/root/.autorest/@microsoft.azure_autorest-core@2.0.4275/node_modules/@microsoft.azure/autorest-core" + "bundleDependencies": false, + "peerDependencies": {}, + "deprecated": false, + "_resolved": "/root/.autorest/@microsoft.azure_autorest-core@2.0.4279/node_modules/@microsoft.azure/autorest-core", + "_integrity": null, + "_shasum": "1a2a6b2c98ac14373692035cfcf914a62b921583", + "_shrinkwrap": null, + "bin": { + "autorest-core": "./dist/app.js", + "autorest-language-service": "dist/language-service/language-service.js" + }, + "_id": "@microsoft.azure/autorest-core@2.0.4279", + "_from": "file:/root/.autorest/@microsoft.azure_autorest-core@2.0.4279/node_modules/@microsoft.azure/autorest-core", + "_requested": { + "type": "directory", + "where": "/root/.autorest/@microsoft.azure_autorest-core@2.0.4279/node_modules/@microsoft.azure/autorest-core", + "raw": "/root/.autorest/@microsoft.azure_autorest-core@2.0.4279/node_modules/@microsoft.azure/autorest-core", + "rawSpec": "/root/.autorest/@microsoft.azure_autorest-core@2.0.4279/node_modules/@microsoft.azure/autorest-core", + "saveSpec": "file:/root/.autorest/@microsoft.azure_autorest-core@2.0.4279/node_modules/@microsoft.azure/autorest-core", + "fetchSpec": "/root/.autorest/@microsoft.azure_autorest-core@2.0.4279/node_modules/@microsoft.azure/autorest-core" + }, + "_spec": "/root/.autorest/@microsoft.azure_autorest-core@2.0.4279/node_modules/@microsoft.azure/autorest-core", + "_where": "/root/.autorest/@microsoft.azure_autorest-core@2.0.4279/node_modules/@microsoft.azure/autorest-core" }, "extensionManager": { "installationPath": "/root/.autorest", @@ -73,13 +161,13 @@ "pipe": "/tmp/pipe__root_.autorest.busy-lock:37199" }, "personalLock": { - "name": "_root_.autorest.6738.104036671577.personal-lock", + "name": "_root_.autorest.5839.871434054468.personal-lock", "options": { - "port": 45568, - "host": "2130759381", + "port": 53518, + "host": "2130749776", "exclusive": true }, - "pipe": "/tmp/pipe__root_.autorest.6738.104036671577.personal-lock:45568" + "pipe": "/tmp/pipe__root_.autorest.5839.871434054468.personal-lock:53518" }, "file": "/tmp/_root_.autorest.lock" }, @@ -156,13 +244,13 @@ "pipe": "/tmp/pipe__root_.autorest.busy-lock:37199" }, "personalLock": { - "name": "_root_.autorest.6738.104036671577.personal-lock", + "name": "_root_.autorest.5839.871434054468.personal-lock", "options": { - "port": 45568, - "host": "2130759381", + "port": 53518, + "host": "2130749776", "exclusive": true }, - "pipe": "/tmp/pipe__root_.autorest.6738.104036671577.personal-lock:45568" + "pipe": "/tmp/pipe__root_.autorest.5839.871434054468.personal-lock:53518" }, "file": "/tmp/_root_.autorest.lock" }, @@ -241,13 +329,13 @@ "pipe": "/tmp/pipe__root_.autorest.busy-lock:37199" }, "personalLock": { - "name": "_root_.autorest.6738.104036671577.personal-lock", + "name": "_root_.autorest.5839.871434054468.personal-lock", "options": { - "port": 45568, - "host": "2130759381", + "port": 53518, + "host": "2130749776", "exclusive": true }, - "pipe": "/tmp/pipe__root_.autorest.6738.104036671577.personal-lock:45568" + "pipe": "/tmp/pipe__root_.autorest.5839.871434054468.personal-lock:53518" }, "file": "/tmp/_root_.autorest.lock" }, @@ -326,13 +414,13 @@ "pipe": "/tmp/pipe__root_.autorest.busy-lock:37199" }, "personalLock": { - "name": "_root_.autorest.6738.104036671577.personal-lock", + "name": "_root_.autorest.5839.871434054468.personal-lock", "options": { - "port": 45568, - "host": "2130759381", + "port": 53518, + "host": "2130749776", "exclusive": true }, - "pipe": "/tmp/pipe__root_.autorest.6738.104036671577.personal-lock:45568" + "pipe": "/tmp/pipe__root_.autorest.5839.871434054468.personal-lock:53518" }, "file": "/tmp/_root_.autorest.lock" }, @@ -344,7 +432,7 @@ "resolvedInfo": null, "packageMetadata": { "name": "@microsoft.azure/autorest.python", - "version": "3.0.50", + "version": "3.0.51", "dependencies": { "dotnet-2.0.0": "^1.4.4" }, @@ -370,272 +458,23 @@ "bundleDependencies": false, "peerDependencies": {}, "deprecated": false, - "_resolved": "/root/.autorest/@microsoft.azure_autorest.python@3.0.50/node_modules/@microsoft.azure/autorest.python", + "_resolved": "/root/.autorest/@microsoft.azure_autorest.python@3.0.51/node_modules/@microsoft.azure/autorest.python", "_integrity": null, - "_shasum": "2faedd2ee31addf11cb56d96d14adee4bd5587a0", + "_shasum": "edbae1c0462026e20a8efafd3b4b6cd9e3d111ac", "_shrinkwrap": null, "bin": null, - "_id": "@microsoft.azure/autorest.python@3.0.50", - "_from": "file:/root/.autorest/@microsoft.azure_autorest.python@3.0.50/node_modules/@microsoft.azure/autorest.python", + "_id": "@microsoft.azure/autorest.python@3.0.51", + "_from": "file:/root/.autorest/@microsoft.azure_autorest.python@3.0.51/node_modules/@microsoft.azure/autorest.python", "_requested": { "type": "directory", - "where": "/root/.autorest/@microsoft.azure_autorest.python@3.0.50/node_modules/@microsoft.azure/autorest.python", - "raw": "/root/.autorest/@microsoft.azure_autorest.python@3.0.50/node_modules/@microsoft.azure/autorest.python", - "rawSpec": "/root/.autorest/@microsoft.azure_autorest.python@3.0.50/node_modules/@microsoft.azure/autorest.python", - "saveSpec": "file:/root/.autorest/@microsoft.azure_autorest.python@3.0.50/node_modules/@microsoft.azure/autorest.python", - "fetchSpec": "/root/.autorest/@microsoft.azure_autorest.python@3.0.50/node_modules/@microsoft.azure/autorest.python" - }, - "_spec": "/root/.autorest/@microsoft.azure_autorest.python@3.0.50/node_modules/@microsoft.azure/autorest.python", - "_where": "/root/.autorest/@microsoft.azure_autorest.python@3.0.50/node_modules/@microsoft.azure/autorest.python" - }, - "extensionManager": { - "installationPath": "/root/.autorest", - "sharedLock": { - "name": "/root/.autorest", - "exclusiveLock": { - "name": "_root_.autorest.exclusive-lock", - "options": { - "port": 45234, - "host": "2130706813", - "exclusive": true - }, - "pipe": "/tmp/pipe__root_.autorest.exclusive-lock:45234" - }, - "busyLock": { - "name": "_root_.autorest.busy-lock", - "options": { - "port": 37199, - "host": "2130756895", - "exclusive": true - }, - "pipe": "/tmp/pipe__root_.autorest.busy-lock:37199" - }, - "personalLock": { - "name": "_root_.autorest.6738.104036671577.personal-lock", - "options": { - "port": 45568, - "host": "2130759381", - "exclusive": true - }, - "pipe": "/tmp/pipe__root_.autorest.6738.104036671577.personal-lock:45568" - }, - "file": "/tmp/_root_.autorest.lock" - }, - "dotnetPath": "/root/.dotnet" - }, - "installationPath": "/root/.autorest" - }, - { - "resolvedInfo": null, - "packageMetadata": { - "name": "@microsoft.azure/classic-openapi-validator", - "version": "1.0.12", - "dependencies": { - "dotnet-2.0.0": "^1.1.0" - }, - "optionalDependencies": {}, - "devDependencies": { - "dotnet-sdk-2.0.0": "^1.1.1" - }, - "bundleDependencies": false, - "peerDependencies": {}, - "deprecated": false, - "_resolved": "/root/.autorest/@microsoft.azure_classic-openapi-validator@1.0.12/node_modules/@microsoft.azure/classic-openapi-validator", - "_integrity": null, - "_shasum": "b660badb30ccfd19f1cb1548e950205df8ca2653", - "_shrinkwrap": null, - "bin": null, - "_id": "@microsoft.azure/classic-openapi-validator@1.0.12", - "_from": "file:/root/.autorest/@microsoft.azure_classic-openapi-validator@1.0.12/node_modules/@microsoft.azure/classic-openapi-validator", - "_requested": { - "type": "directory", - "where": "/root/.autorest/@microsoft.azure_classic-openapi-validator@1.0.12/node_modules/@microsoft.azure/classic-openapi-validator", - "raw": "/root/.autorest/@microsoft.azure_classic-openapi-validator@1.0.12/node_modules/@microsoft.azure/classic-openapi-validator", - "rawSpec": "/root/.autorest/@microsoft.azure_classic-openapi-validator@1.0.12/node_modules/@microsoft.azure/classic-openapi-validator", - "saveSpec": "file:/root/.autorest/@microsoft.azure_classic-openapi-validator@1.0.12/node_modules/@microsoft.azure/classic-openapi-validator", - "fetchSpec": "/root/.autorest/@microsoft.azure_classic-openapi-validator@1.0.12/node_modules/@microsoft.azure/classic-openapi-validator" - }, - "_spec": "/root/.autorest/@microsoft.azure_classic-openapi-validator@1.0.12/node_modules/@microsoft.azure/classic-openapi-validator", - "_where": "/root/.autorest/@microsoft.azure_classic-openapi-validator@1.0.12/node_modules/@microsoft.azure/classic-openapi-validator" - }, - "extensionManager": { - "installationPath": "/root/.autorest", - "sharedLock": { - "name": "/root/.autorest", - "exclusiveLock": { - "name": "_root_.autorest.exclusive-lock", - "options": { - "port": 45234, - "host": "2130706813", - "exclusive": true - }, - "pipe": "/tmp/pipe__root_.autorest.exclusive-lock:45234" - }, - "busyLock": { - "name": "_root_.autorest.busy-lock", - "options": { - "port": 37199, - "host": "2130756895", - "exclusive": true - }, - "pipe": "/tmp/pipe__root_.autorest.busy-lock:37199" - }, - "personalLock": { - "name": "_root_.autorest.6738.104036671577.personal-lock", - "options": { - "port": 45568, - "host": "2130759381", - "exclusive": true - }, - "pipe": "/tmp/pipe__root_.autorest.6738.104036671577.personal-lock:45568" - }, - "file": "/tmp/_root_.autorest.lock" - }, - "dotnetPath": "/root/.dotnet" - }, - "installationPath": "/root/.autorest" - }, - { - "resolvedInfo": null, - "packageMetadata": { - "name": "@microsoft.azure/openapi-validator", - "version": "1.0.2", - "dependencies": { - "fs": "^0.0.1-security", - "js-yaml": "^3.8.4", - "jsonpath": "^0.2.11", - "vscode-jsonrpc": "^3.2.0" - }, - "optionalDependencies": {}, - "devDependencies": { - "@types/js-yaml": "^3.5.30", - "@types/jsonpath": "^0.1.29", - "@types/node": "^7.0.18", - "gulp": "3.9.1", - "gulp-clean": "0.3.2", - "gulp-dotnet-cli": "0.4.0", - "gulp-mocha": "4.3.1", - "gulp-run": "1.7.1", - "mocha": "3.2.0", - "mocha-typescript": "1.0.22", - "typescript": "2.3.3" - }, - "bundleDependencies": false, - "peerDependencies": {}, - "deprecated": false, - "_resolved": "/root/.autorest/@microsoft.azure_openapi-validator@1.0.2/node_modules/@microsoft.azure/openapi-validator", - "_integrity": null, - "_shasum": "352190e6dbb4a1d16587b39e589b9615d6e4aaaf", - "_shrinkwrap": null, - "bin": null, - "_id": "@microsoft.azure/openapi-validator@1.0.2", - "_from": "file:/root/.autorest/@microsoft.azure_openapi-validator@1.0.2/node_modules/@microsoft.azure/openapi-validator", - "_requested": { - "type": "directory", - "where": "/root/.autorest/@microsoft.azure_openapi-validator@1.0.2/node_modules/@microsoft.azure/openapi-validator", - "raw": "/root/.autorest/@microsoft.azure_openapi-validator@1.0.2/node_modules/@microsoft.azure/openapi-validator", - "rawSpec": "/root/.autorest/@microsoft.azure_openapi-validator@1.0.2/node_modules/@microsoft.azure/openapi-validator", - "saveSpec": "file:/root/.autorest/@microsoft.azure_openapi-validator@1.0.2/node_modules/@microsoft.azure/openapi-validator", - "fetchSpec": "/root/.autorest/@microsoft.azure_openapi-validator@1.0.2/node_modules/@microsoft.azure/openapi-validator" - }, - "_spec": "/root/.autorest/@microsoft.azure_openapi-validator@1.0.2/node_modules/@microsoft.azure/openapi-validator", - "_where": "/root/.autorest/@microsoft.azure_openapi-validator@1.0.2/node_modules/@microsoft.azure/openapi-validator" - }, - "extensionManager": { - "installationPath": "/root/.autorest", - "sharedLock": { - "name": "/root/.autorest", - "exclusiveLock": { - "name": "_root_.autorest.exclusive-lock", - "options": { - "port": 45234, - "host": "2130706813", - "exclusive": true - }, - "pipe": "/tmp/pipe__root_.autorest.exclusive-lock:45234" - }, - "busyLock": { - "name": "_root_.autorest.busy-lock", - "options": { - "port": 37199, - "host": "2130756895", - "exclusive": true - }, - "pipe": "/tmp/pipe__root_.autorest.busy-lock:37199" - }, - "personalLock": { - "name": "_root_.autorest.6738.104036671577.personal-lock", - "options": { - "port": 45568, - "host": "2130759381", - "exclusive": true - }, - "pipe": "/tmp/pipe__root_.autorest.6738.104036671577.personal-lock:45568" - }, - "file": "/tmp/_root_.autorest.lock" - }, - "dotnetPath": "/root/.dotnet" - }, - "installationPath": "/root/.autorest" - }, - { - "resolvedInfo": null, - "packageMetadata": { - "name": "oav", - "version": "0.4.37", - "dependencies": { - "@microsoft.azure/autorest-extension-base": "^1.0.13", - "azure-arm-resource": "^2.0.0-preview", - "glob": "^5.0.14", - "js-yaml": "^3.8.2", - "json-pointer": "^0.6.0", - "jsonpath": "^0.2.11", - "linq": "^3.0.8", - "lodash": "^4.17.4", - "moment": "~2.21.0", - "ms-rest": "^2.3.0", - "ms-rest-azure": "^2.5.0", - "recursive-readdir": "^2.2.1", - "request": "^2.83.0", - "swagger-parser": "^3.4.1", - "swagger-tools": "^0.10.1", - "sway": "github:amarzavery/sway#validation", - "uuid": "^3.0.1", - "vscode-jsonrpc": "^3.2.0", - "winston": "^2.3.0", - "yargs": "^6.6.0", - "yuml2svg": "^3.1.0" - }, - "optionalDependencies": {}, - "devDependencies": { - "@types/mocha": "^2.2.46", - "@types/should": "^8.1.30", - "jshint": "2.9.4", - "mocha": "^4.1.0", - "should": "5.2.0" - }, - "bundleDependencies": false, - "peerDependencies": {}, - "deprecated": false, - "_resolved": "/root/.autorest/oav@0.4.37/node_modules/oav", - "_integrity": null, - "_shasum": "6ebec59d7c8ac82e5c3b11e443b5d254fabcb229", - "_shrinkwrap": null, - "bin": { - "oav": "./cli.js" - }, - "_id": "oav@0.4.37", - "_from": "file:/root/.autorest/oav@0.4.37/node_modules/oav", - "_requested": { - "type": "directory", - "where": "/root/.autorest/oav@0.4.37/node_modules/oav", - "raw": "/root/.autorest/oav@0.4.37/node_modules/oav", - "rawSpec": "/root/.autorest/oav@0.4.37/node_modules/oav", - "saveSpec": "file:/root/.autorest/oav@0.4.37/node_modules/oav", - "fetchSpec": "/root/.autorest/oav@0.4.37/node_modules/oav" - }, - "_spec": "/root/.autorest/oav@0.4.37/node_modules/oav", - "_where": "/root/.autorest/oav@0.4.37/node_modules/oav" + "where": "/root/.autorest/@microsoft.azure_autorest.python@3.0.51/node_modules/@microsoft.azure/autorest.python", + "raw": "/root/.autorest/@microsoft.azure_autorest.python@3.0.51/node_modules/@microsoft.azure/autorest.python", + "rawSpec": "/root/.autorest/@microsoft.azure_autorest.python@3.0.51/node_modules/@microsoft.azure/autorest.python", + "saveSpec": "file:/root/.autorest/@microsoft.azure_autorest.python@3.0.51/node_modules/@microsoft.azure/autorest.python", + "fetchSpec": "/root/.autorest/@microsoft.azure_autorest.python@3.0.51/node_modules/@microsoft.azure/autorest.python" + }, + "_spec": "/root/.autorest/@microsoft.azure_autorest.python@3.0.51/node_modules/@microsoft.azure/autorest.python", + "_where": "/root/.autorest/@microsoft.azure_autorest.python@3.0.51/node_modules/@microsoft.azure/autorest.python" }, "extensionManager": { "installationPath": "/root/.autorest", @@ -660,13 +499,13 @@ "pipe": "/tmp/pipe__root_.autorest.busy-lock:37199" }, "personalLock": { - "name": "_root_.autorest.6738.104036671577.personal-lock", + "name": "_root_.autorest.5839.871434054468.personal-lock", "options": { - "port": 45568, - "host": "2130759381", + "port": 53518, + "host": "2130749776", "exclusive": true }, - "pipe": "/tmp/pipe__root_.autorest.6738.104036671577.personal-lock:45568" + "pipe": "/tmp/pipe__root_.autorest.5839.871434054468.personal-lock:53518" }, "file": "/tmp/_root_.autorest.lock" },