-
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] managementpartner/resource-manager (#2183)
* Generated from 3b36f8f847dabd2bc644663c584d6c80964f8038 (#2180) Add partner name for managmentparnter action response * [AutoPR managementpartner/resource-manager] [Hub Generated] Review request for Microsoft.ManagementPartner to add version preview/2018-02-01 (#4926) * Generated from 0cb71097e1f8234f42893d6fcdc7f60cd506b772 Adds Partners GET * Packaging update of azure-mgmt-managementpartner * Packaging update of azure-mgmt-managementpartner * managementpartner new folder * Generated from 85e013357784ac3a838553d3cd3c456785dfe230 (#5274) managementpartner new conf * Devtools link fix * ChangeLog
- Loading branch information
1 parent
a529a1a
commit 99aef49
Showing
36 changed files
with
430 additions
and
92 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
17 changes: 17 additions & 0 deletions
17
sdk/managementpartner/azure-mgmt-managementpartner/HISTORY.rst
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,17 @@ | ||
.. :changelog: | ||
Release History | ||
=============== | ||
|
||
0.1.1 (2019-05-17) | ||
++++++++++++++++++ | ||
|
||
**Features** | ||
|
||
- Model PartnerResponse has a new parameter partner_name | ||
- Added operation group PartnersOperations | ||
|
||
0.1.0 (2018-02-06) | ||
++++++++++++++++++ | ||
|
||
* Initial Release |
5 changes: 5 additions & 0 deletions
5
sdk/managementpartner/azure-mgmt-managementpartner/MANIFEST.in
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,5 @@ | ||
recursive-include tests *.py *.yaml | ||
include *.rst | ||
include azure/__init__.py | ||
include azure/mgmt/__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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
41 changes: 41 additions & 0 deletions
41
...mentpartner/azure-mgmt-managementpartner/azure/mgmt/managementpartner/models/error_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,41 @@ | ||
# 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 | ||
from msrest.exceptions import HttpOperationError | ||
|
||
|
||
class Error(Model): | ||
"""this is the management partner operations error. | ||
:param error: this is the ExtendedErrorInfo property | ||
:type error: ~azure.mgmt.managementpartner.models.ExtendedErrorInfo | ||
""" | ||
|
||
_attribute_map = { | ||
'error': {'key': 'error', 'type': 'ExtendedErrorInfo'}, | ||
} | ||
|
||
def __init__(self, *, error=None, **kwargs) -> None: | ||
super(Error, self).__init__(**kwargs) | ||
self.error = error | ||
|
||
|
||
class ErrorException(HttpOperationError): | ||
"""Server responsed with exception of type: 'Error'. | ||
:param deserialize: A deserializer | ||
:param response: Server response to be deserialized. | ||
""" | ||
|
||
def __init__(self, deserialize, response, *args): | ||
|
||
super(ErrorException, self).__init__(deserialize, response, 'Error', *args) |
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
33 changes: 33 additions & 0 deletions
33
...ure-mgmt-managementpartner/azure/mgmt/managementpartner/models/extended_error_info_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,33 @@ | ||
# 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 ExtendedErrorInfo(Model): | ||
"""this is the extended error info. | ||
:param code: this is the error response code. Possible values include: | ||
'NotFound', 'Conflict', 'BadRequest' | ||
:type code: str or ~azure.mgmt.managementpartner.models.enum | ||
:param message: this is the extended error info message | ||
:type message: str | ||
""" | ||
|
||
_attribute_map = { | ||
'code': {'key': 'code', 'type': 'str'}, | ||
'message': {'key': 'message', 'type': 'str'}, | ||
} | ||
|
||
def __init__(self, *, code=None, message: str=None, **kwargs) -> None: | ||
super(ExtendedErrorInfo, self).__init__(**kwargs) | ||
self.code = code | ||
self.message = message |
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
...azure-mgmt-managementpartner/azure/mgmt/managementpartner/models/operation_display_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 OperationDisplay(Model): | ||
"""this is the management partner operation. | ||
:param provider: the is management partner provider | ||
:type provider: str | ||
:param resource: the is management partner resource | ||
:type resource: str | ||
:param operation: the is management partner operation | ||
:type operation: str | ||
:param description: the is management partner operation description | ||
:type description: str | ||
""" | ||
|
||
_attribute_map = { | ||
'provider': {'key': 'provider', 'type': 'str'}, | ||
'resource': {'key': 'resource', 'type': 'str'}, | ||
'operation': {'key': 'operation', 'type': 'str'}, | ||
'description': {'key': 'description', 'type': 'str'}, | ||
} | ||
|
||
def __init__(self, *, provider: str=None, resource: str=None, operation: str=None, description: str=None, **kwargs) -> None: | ||
super(OperationDisplay, self).__init__(**kwargs) | ||
self.provider = provider | ||
self.resource = resource | ||
self.operation = operation | ||
self.description = description |
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
File renamed without changes.
36 changes: 36 additions & 0 deletions
36
...zure-mgmt-managementpartner/azure/mgmt/managementpartner/models/operation_response_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,36 @@ | ||
# 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 OperationResponse(Model): | ||
"""this is the management partner operations response. | ||
:param name: this is the operation response name | ||
:type name: str | ||
:param display: this is the operation display | ||
:type display: ~azure.mgmt.managementpartner.models.OperationDisplay | ||
:param origin: the is operation response origin information | ||
:type origin: str | ||
""" | ||
|
||
_attribute_map = { | ||
'name': {'key': 'name', 'type': 'str'}, | ||
'display': {'key': 'display', 'type': 'OperationDisplay'}, | ||
'origin': {'key': 'origin', 'type': 'str'}, | ||
} | ||
|
||
def __init__(self, *, name: str=None, display=None, origin: str=None, **kwargs) -> None: | ||
super(OperationResponse, self).__init__(**kwargs) | ||
self.name = name | ||
self.display = display | ||
self.origin = origin |
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
Oops, something went wrong.