зеркало из https://github.com/microsoft/azure-cli.git
disable pylint on autorest code
This commit is contained in:
Родитель
557f21c9c0
Коммит
ce099cab78
|
@ -55,6 +55,9 @@
|
|||
<Compile Include="command_modules\azure-cli-network\azure\cli\command_modules\network\mgmt\lib\resource_management_client.py" />
|
||||
<Compile Include="command_modules\azure-cli-network\azure\cli\command_modules\network\mgmt\lib\version.py" />
|
||||
<Compile Include="command_modules\azure-cli-network\azure\cli\command_modules\network\mgmt\lib\__init__.py" />
|
||||
<Compile Include="command_modules\azure-cli-network\azure\cli\command_modules\network\mgmt\__init__.py">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="command_modules\azure-cli-resource\azure\cli\command_modules\resource\tests\test_api_check.py">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
|
@ -147,9 +150,7 @@
|
|||
<Folder Include="command_modules\azure-cli-network\azure\cli\command_modules\network\mgmt\" />
|
||||
<Folder Include="command_modules\azure-cli-network\azure\cli\command_modules\network\mgmt\lib\" />
|
||||
<Folder Include="command_modules\azure-cli-network\azure\cli\command_modules\network\mgmt\lib\models\" />
|
||||
<Folder Include="command_modules\azure-cli-network\azure\cli\command_modules\network\mgmt\lib\models\__pycache__\" />
|
||||
<Folder Include="command_modules\azure-cli-network\azure\cli\command_modules\network\mgmt\lib\operations\" />
|
||||
<Folder Include="command_modules\azure-cli-network\azure\cli\command_modules\network\mgmt\lib\operations\__pycache__\" />
|
||||
<Folder Include="command_modules\azure-cli-network\azure\cli\command_modules\network\tests\" />
|
||||
<Folder Include="command_modules\azure-cli-network\azure\cli\command_modules\network\tests\recordings\" />
|
||||
<Folder Include="command_modules\azure-cli-profile\" />
|
||||
|
@ -200,19 +201,6 @@
|
|||
<ItemGroup>
|
||||
<Content Include="command_modules\azure-cli-component\requirements.txt" />
|
||||
<Content Include="command_modules\azure-cli-network\azure\cli\command_modules\network\mgmt\azuredeploy.json" />
|
||||
<Content Include="command_modules\azure-cli-network\azure\cli\command_modules\network\mgmt\lib\models\__pycache__\basic_dependency.cpython-35.pyc" />
|
||||
<Content Include="command_modules\azure-cli-network\azure\cli\command_modules\network\mgmt\lib\models\__pycache__\dependency.cpython-35.pyc" />
|
||||
<Content Include="command_modules\azure-cli-network\azure\cli\command_modules\network\mgmt\lib\models\__pycache__\deployment_extended.cpython-35.pyc" />
|
||||
<Content Include="command_modules\azure-cli-network\azure\cli\command_modules\network\mgmt\lib\models\__pycache__\deployment_properties_extended.cpython-35.pyc" />
|
||||
<Content Include="command_modules\azure-cli-network\azure\cli\command_modules\network\mgmt\lib\models\__pycache__\deployment_vnet.cpython-35.pyc" />
|
||||
<Content Include="command_modules\azure-cli-network\azure\cli\command_modules\network\mgmt\lib\models\__pycache__\parameters_link.cpython-35.pyc" />
|
||||
<Content Include="command_modules\azure-cli-network\azure\cli\command_modules\network\mgmt\lib\models\__pycache__\provider.cpython-35.pyc" />
|
||||
<Content Include="command_modules\azure-cli-network\azure\cli\command_modules\network\mgmt\lib\models\__pycache__\provider_resource_type.cpython-35.pyc" />
|
||||
<Content Include="command_modules\azure-cli-network\azure\cli\command_modules\network\mgmt\lib\models\__pycache__\resource_management_client_enums.cpython-35.pyc" />
|
||||
<Content Include="command_modules\azure-cli-network\azure\cli\command_modules\network\mgmt\lib\models\__pycache__\template_link.cpython-35.pyc" />
|
||||
<Content Include="command_modules\azure-cli-network\azure\cli\command_modules\network\mgmt\lib\models\__pycache__\__init__.cpython-35.pyc" />
|
||||
<Content Include="command_modules\azure-cli-network\azure\cli\command_modules\network\mgmt\lib\operations\__pycache__\vnet_operations.cpython-35.pyc" />
|
||||
<Content Include="command_modules\azure-cli-network\azure\cli\command_modules\network\mgmt\lib\operations\__pycache__\__init__.cpython-35.pyc" />
|
||||
<Content Include="command_modules\azure-cli-network\azure\cli\command_modules\network\mgmt\swagger_create_vnet.json" />
|
||||
<Content Include="command_modules\azure-cli-network\requirements.txt" />
|
||||
<Content Include="command_modules\azure-cli-profile\requirements.txt" />
|
||||
|
|
|
@ -250,13 +250,13 @@ build_operation("network vnet",
|
|||
@command_table.description(L('Create a new virtual network.'))
|
||||
@command_table.option('--resource-group -g', help=L('the the resource group name'), required=True)
|
||||
@command_table.option('--virtualNetworkPrefix',
|
||||
help=L('IP address prefix for the virtual network.'))
|
||||
help=L('IP address prefix for the virtual network.'))
|
||||
@command_table.option('--subnetName',
|
||||
help=L('Name of the subnet.'))
|
||||
help=L('Name of the subnet.'))
|
||||
@command_table.option('--subnetPrefix',
|
||||
help=L('IP address for the subnet.'))
|
||||
help=L('IP address for the subnet.'))
|
||||
@command_table.option('--virtualNetworkName',
|
||||
help=L('Name of the virtual network.'), required=True)
|
||||
help=L('Name of the virtual network.'), required=True)
|
||||
def create_vnet(args):
|
||||
from azure.cli.command_modules.network.mgmt.lib import ResourceManagementClient, ResourceManagementClientConfiguration
|
||||
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
#pylint: skip-file
|
||||
import pkg_resources
|
||||
pkg_resources.declare_namespace(__name__)
|
|
@ -1,3 +1,4 @@
|
|||
#pylint: skip-file
|
||||
# coding=utf-8
|
||||
# --------------------------------------------------------------------------
|
||||
# Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#pylint: skip-file
|
||||
# coding=utf-8
|
||||
# --------------------------------------------------------------------------
|
||||
# Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#pylint: skip-file
|
||||
# coding=utf-8
|
||||
# --------------------------------------------------------------------------
|
||||
# Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#pylint: skip-file
|
||||
# coding=utf-8
|
||||
# --------------------------------------------------------------------------
|
||||
# Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#pylint: skip-file
|
||||
# coding=utf-8
|
||||
# --------------------------------------------------------------------------
|
||||
# Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#pylint: skip-file
|
||||
# coding=utf-8
|
||||
# --------------------------------------------------------------------------
|
||||
# Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#pylint: skip-file
|
||||
# coding=utf-8
|
||||
# --------------------------------------------------------------------------
|
||||
# Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#pylint: skip-file
|
||||
# coding=utf-8
|
||||
# --------------------------------------------------------------------------
|
||||
# Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#pylint: skip-file
|
||||
# coding=utf-8
|
||||
# --------------------------------------------------------------------------
|
||||
# Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#pylint: skip-file
|
||||
# coding=utf-8
|
||||
# --------------------------------------------------------------------------
|
||||
# Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#pylint: skip-file
|
||||
# coding=utf-8
|
||||
# --------------------------------------------------------------------------
|
||||
# Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#pylint: skip-file
|
||||
# coding=utf-8
|
||||
# --------------------------------------------------------------------------
|
||||
# Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#pylint: skip-file
|
||||
# coding=utf-8
|
||||
# --------------------------------------------------------------------------
|
||||
# Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#pylint: skip-file
|
||||
# coding=utf-8
|
||||
# --------------------------------------------------------------------------
|
||||
# Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#pylint: skip-file
|
||||
# coding=utf-8
|
||||
# --------------------------------------------------------------------------
|
||||
# Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#pylint: skip-file
|
||||
# coding=utf-8
|
||||
# --------------------------------------------------------------------------
|
||||
# Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#pylint: skip-file
|
||||
# coding=utf-8
|
||||
# --------------------------------------------------------------------------
|
||||
# Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#pylint: skip-file
|
||||
# coding=utf-8
|
||||
# --------------------------------------------------------------------------
|
||||
# Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0
|
||||
|
|
Загрузка…
Ссылка в новой задаче