-
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 datafactory/resource-manager] Adding refresh and get Integrat…
…ionRuntimeObjectMetadata API (#3962) * Generated from aded924bcbec0926d1f273fdc99b3a8d2d51246b Adding refresh and get IntegrationRuntimeObjectMetadata API * Generated from 38fb817c3d29a206d1371a3d4cea5002cc960535 Change ssis to upper case * Generated from 43c2dab88ba9dd4abfe793fddfe0c1156518c4a9 Fix model validation issue
- Loading branch information
1 parent
6a480c4
commit 6c41997
Showing
13 changed files
with
541 additions
and
0 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
28 changes: 28 additions & 0 deletions
28
azure-mgmt-datafactory/azure/mgmt/datafactory/models/get_ssis_object_metadata_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,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 GetSsisObjectMetadataRequest(Model): | ||
"""The request payload of get SSIS object metadata. | ||
:param metadata_path: Metadata path. | ||
:type metadata_path: str | ||
""" | ||
|
||
_attribute_map = { | ||
'metadata_path': {'key': 'metadataPath', 'type': 'str'}, | ||
} | ||
|
||
def __init__(self, **kwargs): | ||
super(GetSsisObjectMetadataRequest, self).__init__(**kwargs) | ||
self.metadata_path = kwargs.get('metadata_path', None) |
28 changes: 28 additions & 0 deletions
28
azure-mgmt-datafactory/azure/mgmt/datafactory/models/get_ssis_object_metadata_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,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 GetSsisObjectMetadataRequest(Model): | ||
"""The request payload of get SSIS object metadata. | ||
:param metadata_path: Metadata path. | ||
:type metadata_path: str | ||
""" | ||
|
||
_attribute_map = { | ||
'metadata_path': {'key': 'metadataPath', 'type': 'str'}, | ||
} | ||
|
||
def __init__(self, *, metadata_path: str=None, **kwargs) -> None: | ||
super(GetSsisObjectMetadataRequest, self).__init__(**kwargs) | ||
self.metadata_path = metadata_path |
46 changes: 46 additions & 0 deletions
46
azure-mgmt-datafactory/azure/mgmt/datafactory/models/ssis_object_metadata.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,46 @@ | ||
# 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 SsisObjectMetadata(Model): | ||
"""SSIS object metadata. | ||
All required parameters must be populated in order to send to Azure. | ||
:param id: Metadata id. | ||
:type id: long | ||
:param name: Metadata name. | ||
:type name: str | ||
:param description: Metadata description. | ||
:type description: str | ||
:param type: Required. Constant filled by server. | ||
:type type: str | ||
""" | ||
|
||
_validation = { | ||
'type': {'required': True}, | ||
} | ||
|
||
_attribute_map = { | ||
'id': {'key': 'id', 'type': 'long'}, | ||
'name': {'key': 'name', 'type': 'str'}, | ||
'description': {'key': 'description', 'type': 'str'}, | ||
'type': {'key': 'type', 'type': 'str'}, | ||
} | ||
|
||
def __init__(self, **kwargs): | ||
super(SsisObjectMetadata, self).__init__(**kwargs) | ||
self.id = kwargs.get('id', None) | ||
self.name = kwargs.get('name', None) | ||
self.description = kwargs.get('description', None) | ||
self.type = None |
33 changes: 33 additions & 0 deletions
33
azure-mgmt-datafactory/azure/mgmt/datafactory/models/ssis_object_metadata_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,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 SsisObjectMetadataListResponse(Model): | ||
"""A list of SSIS object metadata. | ||
:param value: List of SSIS object metadata. | ||
:type value: list[~azure.mgmt.datafactory.models.SsisObjectMetadata] | ||
:param next_link: The link to the next page of results, if any remaining | ||
results exist. | ||
:type next_link: str | ||
""" | ||
|
||
_attribute_map = { | ||
'value': {'key': 'value', 'type': '[SsisObjectMetadata]'}, | ||
'next_link': {'key': 'nextLink', 'type': 'str'}, | ||
} | ||
|
||
def __init__(self, **kwargs): | ||
super(SsisObjectMetadataListResponse, self).__init__(**kwargs) | ||
self.value = kwargs.get('value', None) | ||
self.next_link = kwargs.get('next_link', None) |
33 changes: 33 additions & 0 deletions
33
...-mgmt-datafactory/azure/mgmt/datafactory/models/ssis_object_metadata_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,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 SsisObjectMetadataListResponse(Model): | ||
"""A list of SSIS object metadata. | ||
:param value: List of SSIS object metadata. | ||
:type value: list[~azure.mgmt.datafactory.models.SsisObjectMetadata] | ||
:param next_link: The link to the next page of results, if any remaining | ||
results exist. | ||
:type next_link: str | ||
""" | ||
|
||
_attribute_map = { | ||
'value': {'key': 'value', 'type': '[SsisObjectMetadata]'}, | ||
'next_link': {'key': 'nextLink', 'type': 'str'}, | ||
} | ||
|
||
def __init__(self, *, value=None, next_link: str=None, **kwargs) -> None: | ||
super(SsisObjectMetadataListResponse, self).__init__(**kwargs) | ||
self.value = value | ||
self.next_link = next_link |
46 changes: 46 additions & 0 deletions
46
azure-mgmt-datafactory/azure/mgmt/datafactory/models/ssis_object_metadata_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,46 @@ | ||
# 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 SsisObjectMetadata(Model): | ||
"""SSIS object metadata. | ||
All required parameters must be populated in order to send to Azure. | ||
:param id: Metadata id. | ||
:type id: long | ||
:param name: Metadata name. | ||
:type name: str | ||
:param description: Metadata description. | ||
:type description: str | ||
:param type: Required. Constant filled by server. | ||
:type type: str | ||
""" | ||
|
||
_validation = { | ||
'type': {'required': True}, | ||
} | ||
|
||
_attribute_map = { | ||
'id': {'key': 'id', 'type': 'long'}, | ||
'name': {'key': 'name', 'type': 'str'}, | ||
'description': {'key': 'description', 'type': 'str'}, | ||
'type': {'key': 'type', 'type': 'str'}, | ||
} | ||
|
||
def __init__(self, *, id: int=None, name: str=None, description: str=None, **kwargs) -> None: | ||
super(SsisObjectMetadata, self).__init__(**kwargs) | ||
self.id = id | ||
self.name = name | ||
self.description = description | ||
self.type = None |
40 changes: 40 additions & 0 deletions
40
azure-mgmt-datafactory/azure/mgmt/datafactory/models/ssis_object_metadata_status_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 SsisObjectMetadataStatusResponse(Model): | ||
"""The status of the operation. | ||
:param status: The status of the operation. | ||
:type status: str | ||
:param name: The operation name. | ||
:type name: str | ||
:param properties: The operation properties. | ||
:type properties: str | ||
:param error: The operation error message. | ||
:type error: str | ||
""" | ||
|
||
_attribute_map = { | ||
'status': {'key': 'status', 'type': 'str'}, | ||
'name': {'key': 'name', 'type': 'str'}, | ||
'properties': {'key': 'properties', 'type': 'str'}, | ||
'error': {'key': 'error', 'type': 'str'}, | ||
} | ||
|
||
def __init__(self, **kwargs): | ||
super(SsisObjectMetadataStatusResponse, self).__init__(**kwargs) | ||
self.status = kwargs.get('status', None) | ||
self.name = kwargs.get('name', None) | ||
self.properties = kwargs.get('properties', None) | ||
self.error = kwargs.get('error', None) |
Oops, something went wrong.