-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AutoPR] network/resource-manager (#3246)
* Generated from 40a59444fdb1c16031dbb33bcb8c81c12effb1c5 (#3245) Add network 2018-07-01 API to Go sdk Also moved Go SDK config to its own config file. * Generated from aafca9c5d4b05246548aeb1b83ce0f1c96c1f635 (#3273) CR rename * [AutoPR network/resource-manager] Local september branch merge to master (#3316) * Generated from cae1d45d0e97bdb064573cb8cb684b881656e4ff Merge branch 'master' into Network-September-Release # Conflicts: # package.json # specification/authorization/resource-manager/readme.nodejs.md # specification/batch/data-plane/Microsoft.Batch/stable/2018-08-01.7.0/BatchService.json # specification/batch/data-plane/readme.md # specification/batch/data-plane/readme.nodejs.md # specification/batchai/resource-manager/readme.nodejs.md # specification/dns/resource-manager/readme.nodejs.md # specification/network/resource-manager/readme.md # specification/notificationhubs/resource-manager/readme.nodejs.md # specification/storage/resource-manager/readme.nodejs.md # specification/storagesync/resource-manager/readme.nodejs.md * Generated from ec5a468540d009a1c1a5ea68073816c00baddd5d fixed api version in azure firewall example * Packaging update of azure-mgmt-network * Generated from e4e4d8af1431b33e8cc8dc7a46448c06dd90d7a4 Merge branch 'Network-September-Release' into local-september-branch * 2.2.0 * Make 2018-08-01 the default
- Loading branch information
1 parent
7351ae0
commit c4c28c7
Showing
677 changed files
with
65,492 additions
and
1,447 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
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
299 changes: 294 additions & 5 deletions
299
azure-mgmt-network/azure/mgmt/network/network_management_client.py
Large diffs are not rendered by default.
Oops, something went wrong.
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
18 changes: 18 additions & 0 deletions
18
azure-mgmt-network/azure/mgmt/network/v2018_08_01/__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,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 .network_management_client import NetworkManagementClient | ||
from .version import VERSION | ||
|
||
__all__ = ['NetworkManagementClient'] | ||
|
||
__version__ = VERSION | ||
|
Oops, something went wrong.