-
Notifications
You must be signed in to change notification settings - Fork 3.3k
[AutoPR] hanaonazure/resource-manager #4725
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 7 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
173515b
[AutoPR hanaonazure/resource-manager] [Hub Generated] Review request …
AutorestCI fba95b6
Merge branch 'master' into restapi_auto_hanaonazure/resource-manager
iscai-msft 0a756a9
Packaging update of azure-mgmt-hanaonazure
azuresdkci 759267e
updated versioning and change log
iscai-msft f0d806b
Merge branch 'restapi_auto_hanaonazure/resource-manager' of github.co…
iscai-msft 778e5af
Generated from f96fc02af1b1c2e4192e3ab6080f83e778bcdf3f (#4862)
AutorestCI 96f29d9
Generated from a2fd1bdd9003acdbe77080a379efed2461665d89 (#4872)
AutorestCI f7a41a0
Update version.py
lmazuel 8725f33
Update HISTORY.rst
lmazuel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,3 +1,4 @@ | ||
| recursive-include tests *.py *.yaml | ||
| include *.rst | ||
| include azure/__init__.py | ||
| include azure/mgmt/__init__.py | ||
|
|
||
This file contains hidden or 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 hidden or 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
60 changes: 60 additions & 0 deletions
60
azure-mgmt-hanaonazure/azure/mgmt/hanaonazure/models/monitoring_details.py
This file contains hidden or 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,60 @@ | ||
| # 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 MonitoringDetails(Model): | ||
| """Details needed to monitor a Hana Instance. | ||
|
|
||
| :param hana_vnet: ARM ID of an Azure Vnet with access to the HANA | ||
| instance. | ||
| :type hana_vnet: str | ||
| :param hana_hostname: Hostname of the HANA Instance blade. | ||
| :type hana_hostname: str | ||
| :param hana_instance_num: A number between 00 and 99, stored as a string | ||
| to maintain leading zero. | ||
| :type hana_instance_num: str | ||
| :param db_container: Either single or multiple depending on the use of | ||
| MDC(Multiple Database Containers). Possible values include: 'single', | ||
| 'multiple'. Default value: "single" . | ||
| :type db_container: str or | ||
| ~azure.mgmt.hanaonazure.models.HanaDatabaseContainersEnum | ||
| :param hana_database: Name of the database itself. It only needs to be | ||
| specified if using MDC | ||
| :type hana_database: str | ||
| :param hana_db_username: Username for the HANA database to login to for | ||
| monitoring | ||
| :type hana_db_username: str | ||
| :param hana_db_password: Password for the HANA database to login for | ||
| monitoring | ||
| :type hana_db_password: str | ||
| """ | ||
|
|
||
| _attribute_map = { | ||
| 'hana_vnet': {'key': 'hanaVnet', 'type': 'str'}, | ||
| 'hana_hostname': {'key': 'hanaHostname', 'type': 'str'}, | ||
| 'hana_instance_num': {'key': 'hanaInstanceNum', 'type': 'str'}, | ||
| 'db_container': {'key': 'dbContainer', 'type': 'str'}, | ||
| 'hana_database': {'key': 'hanaDatabase', 'type': 'str'}, | ||
| 'hana_db_username': {'key': 'hanaDbUsername', 'type': 'str'}, | ||
| 'hana_db_password': {'key': 'hanaDbPassword', 'type': 'str'}, | ||
| } | ||
|
|
||
| def __init__(self, **kwargs): | ||
| super(MonitoringDetails, self).__init__(**kwargs) | ||
| self.hana_vnet = kwargs.get('hana_vnet', None) | ||
| self.hana_hostname = kwargs.get('hana_hostname', None) | ||
| self.hana_instance_num = kwargs.get('hana_instance_num', None) | ||
| self.db_container = kwargs.get('db_container', "single") | ||
| self.hana_database = kwargs.get('hana_database', None) | ||
| self.hana_db_username = kwargs.get('hana_db_username', None) | ||
| self.hana_db_password = kwargs.get('hana_db_password', None) |
60 changes: 60 additions & 0 deletions
60
azure-mgmt-hanaonazure/azure/mgmt/hanaonazure/models/monitoring_details_py3.py
This file contains hidden or 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,60 @@ | ||
| # 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 MonitoringDetails(Model): | ||
| """Details needed to monitor a Hana Instance. | ||
|
|
||
| :param hana_vnet: ARM ID of an Azure Vnet with access to the HANA | ||
| instance. | ||
| :type hana_vnet: str | ||
| :param hana_hostname: Hostname of the HANA Instance blade. | ||
| :type hana_hostname: str | ||
| :param hana_instance_num: A number between 00 and 99, stored as a string | ||
| to maintain leading zero. | ||
| :type hana_instance_num: str | ||
| :param db_container: Either single or multiple depending on the use of | ||
| MDC(Multiple Database Containers). Possible values include: 'single', | ||
| 'multiple'. Default value: "single" . | ||
| :type db_container: str or | ||
| ~azure.mgmt.hanaonazure.models.HanaDatabaseContainersEnum | ||
| :param hana_database: Name of the database itself. It only needs to be | ||
| specified if using MDC | ||
| :type hana_database: str | ||
| :param hana_db_username: Username for the HANA database to login to for | ||
| monitoring | ||
| :type hana_db_username: str | ||
| :param hana_db_password: Password for the HANA database to login for | ||
| monitoring | ||
| :type hana_db_password: str | ||
| """ | ||
|
|
||
| _attribute_map = { | ||
| 'hana_vnet': {'key': 'hanaVnet', 'type': 'str'}, | ||
| 'hana_hostname': {'key': 'hanaHostname', 'type': 'str'}, | ||
| 'hana_instance_num': {'key': 'hanaInstanceNum', 'type': 'str'}, | ||
| 'db_container': {'key': 'dbContainer', 'type': 'str'}, | ||
| 'hana_database': {'key': 'hanaDatabase', 'type': 'str'}, | ||
| 'hana_db_username': {'key': 'hanaDbUsername', 'type': 'str'}, | ||
| 'hana_db_password': {'key': 'hanaDbPassword', 'type': 'str'}, | ||
| } | ||
|
|
||
| def __init__(self, *, hana_vnet: str=None, hana_hostname: str=None, hana_instance_num: str=None, db_container="single", hana_database: str=None, hana_db_username: str=None, hana_db_password: str=None, **kwargs) -> None: | ||
| super(MonitoringDetails, self).__init__(**kwargs) | ||
| self.hana_vnet = hana_vnet | ||
| self.hana_hostname = hana_hostname | ||
| self.hana_instance_num = hana_instance_num | ||
| self.db_container = db_container | ||
| self.hana_database = hana_database | ||
| self.hana_db_username = hana_db_username | ||
| self.hana_db_password = hana_db_password |
This file contains hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.