-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AutoPR datalake-store/resource-manager/datalake-analytics/resource-m…
…anager] [ADLS] Adding vnet to read-only account properties and test examples for each API (#2589) * Generated from a9e37c450c6c984ce6877073a3873cd5bdc9f5fa [ADLS] Adding vnet to read-only account properties and adding test examples * [ADLS] add test_vnet_operations * update HISTORY.rst * Fixing tests * Auto packaging ADL Analytics * Auto packaging ADL Store * ADL Store packaging * ADL Analytics packaging
- Loading branch information
1 parent
ad647ed
commit af49340
Showing
166 changed files
with
5,671 additions
and
2,656 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
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
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
28 changes: 28 additions & 0 deletions
28
...lytics/azure/mgmt/datalake/analytics/account/models/add_data_lake_store_parameters_py3.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,28 @@ | ||
# 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 msrest.serialization import Model | ||
|
||
|
||
class AddDataLakeStoreParameters(Model): | ||
"""The parameters used to add a new Data Lake Store account. | ||
:param suffix: The optional suffix for the Data Lake Store account. | ||
:type suffix: str | ||
""" | ||
|
||
_attribute_map = { | ||
'suffix': {'key': 'properties.suffix', 'type': 'str'}, | ||
} | ||
|
||
def __init__(self, *, suffix: str=None, **kwargs) -> None: | ||
super(AddDataLakeStoreParameters, self).__init__(**kwargs) | ||
self.suffix = suffix |
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
40 changes: 40 additions & 0 deletions
40
...mgmt/datalake/analytics/account/models/add_data_lake_store_with_account_parameters_py3.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,40 @@ | ||
# 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 msrest.serialization import Model | ||
|
||
|
||
class AddDataLakeStoreWithAccountParameters(Model): | ||
"""The parameters used to add a new Data Lake Store account while creating a | ||
new Data Lake Analytics account. | ||
All required parameters must be populated in order to send to Azure. | ||
:param name: Required. The unique name of the Data Lake Store account to | ||
add. | ||
:type name: str | ||
:param suffix: The optional suffix for the Data Lake Store account. | ||
:type suffix: str | ||
""" | ||
|
||
_validation = { | ||
'name': {'required': True}, | ||
} | ||
|
||
_attribute_map = { | ||
'name': {'key': 'name', 'type': 'str'}, | ||
'suffix': {'key': 'properties.suffix', 'type': 'str'}, | ||
} | ||
|
||
def __init__(self, *, name: str, suffix: str=None, **kwargs) -> None: | ||
super(AddDataLakeStoreWithAccountParameters, self).__init__(**kwargs) | ||
self.name = name | ||
self.suffix = suffix |
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
39 changes: 39 additions & 0 deletions
39
...lytics/azure/mgmt/datalake/analytics/account/models/add_storage_account_parameters_py3.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,39 @@ | ||
# 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 msrest.serialization import Model | ||
|
||
|
||
class AddStorageAccountParameters(Model): | ||
"""The parameters used to add a new Azure Storage account. | ||
All required parameters must be populated in order to send to Azure. | ||
:param access_key: Required. The access key associated with this Azure | ||
Storage account that will be used to connect to it. | ||
:type access_key: str | ||
:param suffix: The optional suffix for the storage account. | ||
:type suffix: str | ||
""" | ||
|
||
_validation = { | ||
'access_key': {'required': True}, | ||
} | ||
|
||
_attribute_map = { | ||
'access_key': {'key': 'properties.accessKey', 'type': 'str'}, | ||
'suffix': {'key': 'properties.suffix', 'type': 'str'}, | ||
} | ||
|
||
def __init__(self, *, access_key: str, suffix: str=None, **kwargs) -> None: | ||
super(AddStorageAccountParameters, self).__init__(**kwargs) | ||
self.access_key = access_key | ||
self.suffix = suffix |
Oops, something went wrong.