forked from Azure/azure-sdk-for-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
SwaggerToSDK Automation
committed
Apr 13, 2017
1 parent
f4c92d0
commit f222c21
Showing
13 changed files
with
456 additions
and
10 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
28 changes: 28 additions & 0 deletions
28
azure-mgmt-logic/azure/mgmt/logic/models/regenerate_action_parameter.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 RegenerateActionParameter(Model): | ||
"""The access key regenerate action content. | ||
:param key_type: The key type. Possible values include: 'NotSpecified', | ||
'Primary', 'Secondary' | ||
:type key_type: str or :class:`KeyType <azure.mgmt.logic.models.KeyType>` | ||
""" | ||
|
||
_attribute_map = { | ||
'key_type': {'key': 'keyType', 'type': 'KeyType'}, | ||
} | ||
|
||
def __init__(self, key_type=None): | ||
self.key_type = key_type |
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,48 @@ | ||
# 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 RetryHistory(Model): | ||
"""The retry history. | ||
:param start_time: Gets the start time. | ||
:type start_time: datetime | ||
:param end_time: Gets the end time. | ||
:type end_time: datetime | ||
:param code: Gets the status code. | ||
:type code: str | ||
:param client_request_id: Gets the client request Id. | ||
:type client_request_id: str | ||
:param service_request_id: Gets the service request Id. | ||
:type service_request_id: str | ||
:param error: Gets the error response. | ||
:type error: :class:`ErrorResponse | ||
<azure.mgmt.logic.models.ErrorResponse>` | ||
""" | ||
|
||
_attribute_map = { | ||
'start_time': {'key': 'startTime', 'type': 'iso-8601'}, | ||
'end_time': {'key': 'endTime', 'type': 'iso-8601'}, | ||
'code': {'key': 'code', 'type': 'str'}, | ||
'client_request_id': {'key': 'clientRequestId', 'type': 'str'}, | ||
'service_request_id': {'key': 'serviceRequestId', 'type': 'str'}, | ||
'error': {'key': 'error', 'type': 'ErrorResponse'}, | ||
} | ||
|
||
def __init__(self, start_time=None, end_time=None, code=None, client_request_id=None, service_request_id=None, error=None): | ||
self.start_time = start_time | ||
self.end_time = end_time | ||
self.code = code | ||
self.client_request_id = client_request_id | ||
self.service_request_id = service_request_id | ||
self.error = error |
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
39 changes: 39 additions & 0 deletions
39
azure-mgmt-logic/azure/mgmt/logic/models/workflow_trigger_list_callback_url_queries.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 WorkflowTriggerListCallbackUrlQueries(Model): | ||
"""Gets the workflow trigger callback URL query parameters. | ||
:param api_version: The api version. | ||
:type api_version: str | ||
:param sp: The SAS permissions. | ||
:type sp: str | ||
:param sv: The SAS version. | ||
:type sv: str | ||
:param sig: The SAS signature. | ||
:type sig: str | ||
""" | ||
|
||
_attribute_map = { | ||
'api_version': {'key': 'api-version', 'type': 'str'}, | ||
'sp': {'key': 'sp', 'type': 'str'}, | ||
'sv': {'key': 'sv', 'type': 'str'}, | ||
'sig': {'key': 'sig', 'type': 'str'}, | ||
} | ||
|
||
def __init__(self, api_version=None, sp=None, sv=None, sig=None): | ||
self.api_version = api_version | ||
self.sp = sp | ||
self.sv = sv | ||
self.sig = sig |
Oops, something went wrong.