-
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.
Generated from 5dc066ec0112cfbcbb2b9e40f1cc21e734e1035d
Add APIs for integration runtime sharing feature. Add two fields 'pushedVersion' 'latestVersion' into SelfHostedIntegrationRuntimeStatus Fixed issue Azure/azure-rest-api-specs#2057
- Loading branch information
1 parent
e28deb2
commit 9ca19ed
Showing
28 changed files
with
575 additions
and
34 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
39 changes: 39 additions & 0 deletions
39
azure-mgmt-datafactory/azure/mgmt/datafactory/models/factory_list_response.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 FactoryListResponse(Model): | ||
"""A list of factory resources. | ||
All required parameters must be populated in order to send to Azure. | ||
:param value: Required. List of factories. | ||
:type value: list[~azure.mgmt.datafactory.models.Factory] | ||
:param next_link: The link to the next page of results, if any remaining | ||
results exist. | ||
:type next_link: str | ||
""" | ||
|
||
_validation = { | ||
'value': {'required': True}, | ||
} | ||
|
||
_attribute_map = { | ||
'value': {'key': 'value', 'type': '[Factory]'}, | ||
'next_link': {'key': 'nextLink', 'type': 'str'}, | ||
} | ||
|
||
def __init__(self, **kwargs): | ||
super(FactoryListResponse, self).__init__(**kwargs) | ||
self.value = kwargs.get('value', None) | ||
self.next_link = kwargs.get('next_link', None) |
39 changes: 39 additions & 0 deletions
39
azure-mgmt-datafactory/azure/mgmt/datafactory/models/factory_list_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,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 FactoryListResponse(Model): | ||
"""A list of factory resources. | ||
All required parameters must be populated in order to send to Azure. | ||
:param value: Required. List of factories. | ||
:type value: list[~azure.mgmt.datafactory.models.Factory] | ||
:param next_link: The link to the next page of results, if any remaining | ||
results exist. | ||
:type next_link: str | ||
""" | ||
|
||
_validation = { | ||
'value': {'required': True}, | ||
} | ||
|
||
_attribute_map = { | ||
'value': {'key': 'value', 'type': '[Factory]'}, | ||
'next_link': {'key': 'nextLink', 'type': 'str'}, | ||
} | ||
|
||
def __init__(self, *, value, next_link: str=None, **kwargs) -> None: | ||
super(FactoryListResponse, self).__init__(**kwargs) | ||
self.value = value | ||
self.next_link = next_link |
40 changes: 40 additions & 0 deletions
40
azure-mgmt-datafactory/azure/mgmt/datafactory/models/integration_runtime_list_response.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 IntegrationRuntimeListResponse(Model): | ||
"""A list of integration runtime resources. | ||
All required parameters must be populated in order to send to Azure. | ||
:param value: Required. List of integration runtimes. | ||
:type value: | ||
list[~azure.mgmt.datafactory.models.IntegrationRuntimeResource] | ||
:param next_link: The link to the next page of results, if any remaining | ||
results exist. | ||
:type next_link: str | ||
""" | ||
|
||
_validation = { | ||
'value': {'required': True}, | ||
} | ||
|
||
_attribute_map = { | ||
'value': {'key': 'value', 'type': '[IntegrationRuntimeResource]'}, | ||
'next_link': {'key': 'nextLink', 'type': 'str'}, | ||
} | ||
|
||
def __init__(self, **kwargs): | ||
super(IntegrationRuntimeListResponse, self).__init__(**kwargs) | ||
self.value = kwargs.get('value', None) | ||
self.next_link = kwargs.get('next_link', None) |
40 changes: 40 additions & 0 deletions
40
...e-mgmt-datafactory/azure/mgmt/datafactory/models/integration_runtime_list_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,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 IntegrationRuntimeListResponse(Model): | ||
"""A list of integration runtime resources. | ||
All required parameters must be populated in order to send to Azure. | ||
:param value: Required. List of integration runtimes. | ||
:type value: | ||
list[~azure.mgmt.datafactory.models.IntegrationRuntimeResource] | ||
:param next_link: The link to the next page of results, if any remaining | ||
results exist. | ||
:type next_link: str | ||
""" | ||
|
||
_validation = { | ||
'value': {'required': True}, | ||
} | ||
|
||
_attribute_map = { | ||
'value': {'key': 'value', 'type': '[IntegrationRuntimeResource]'}, | ||
'next_link': {'key': 'nextLink', 'type': 'str'}, | ||
} | ||
|
||
def __init__(self, *, value, next_link: str=None, **kwargs) -> None: | ||
super(IntegrationRuntimeListResponse, self).__init__(**kwargs) | ||
self.value = value | ||
self.next_link = next_link |
34 changes: 34 additions & 0 deletions
34
...-mgmt-datafactory/azure/mgmt/datafactory/models/integration_runtime_permission_request.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,34 @@ | ||
# 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 IntegrationRuntimePermissionRequest(Model): | ||
"""Grant or revoke access to integration runtime request. | ||
All required parameters must be populated in order to send to Azure. | ||
:param factory_identity: Required. The data factory identity. | ||
:type factory_identity: str | ||
""" | ||
|
||
_validation = { | ||
'factory_identity': {'required': True}, | ||
} | ||
|
||
_attribute_map = { | ||
'factory_identity': {'key': 'factoryIdentity', 'type': 'str'}, | ||
} | ||
|
||
def __init__(self, **kwargs): | ||
super(IntegrationRuntimePermissionRequest, self).__init__(**kwargs) | ||
self.factory_identity = kwargs.get('factory_identity', None) |
34 changes: 34 additions & 0 deletions
34
...t-datafactory/azure/mgmt/datafactory/models/integration_runtime_permission_request_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,34 @@ | ||
# 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 IntegrationRuntimePermissionRequest(Model): | ||
"""Grant or revoke access to integration runtime request. | ||
All required parameters must be populated in order to send to Azure. | ||
:param factory_identity: Required. The data factory identity. | ||
:type factory_identity: str | ||
""" | ||
|
||
_validation = { | ||
'factory_identity': {'required': True}, | ||
} | ||
|
||
_attribute_map = { | ||
'factory_identity': {'key': 'factoryIdentity', 'type': 'str'}, | ||
} | ||
|
||
def __init__(self, *, factory_identity: str, **kwargs) -> None: | ||
super(IntegrationRuntimePermissionRequest, self).__init__(**kwargs) | ||
self.factory_identity = factory_identity |
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
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
Oops, something went wrong.