-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generated from ccc8c92e96ab27329cf637c7214ebb35da8dce23 (#6625)
Fix model validation
- Loading branch information
1 parent
f5d3db0
commit 64a07f2
Showing
22 changed files
with
670 additions
and
86 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
69 changes: 69 additions & 0 deletions
69
...ory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/azure_maria_db_linked_service.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,69 @@ | ||
# 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 .linked_service import LinkedService | ||
|
||
|
||
class AzureMariaDBLinkedService(LinkedService): | ||
"""Azure Database for MariaDB linked service. | ||
All required parameters must be populated in order to send to Azure. | ||
:param additional_properties: Unmatched properties from the message are | ||
deserialized this collection | ||
:type additional_properties: dict[str, object] | ||
:param connect_via: The integration runtime reference. | ||
:type connect_via: | ||
~azure.mgmt.datafactory.models.IntegrationRuntimeReference | ||
:param description: Linked service description. | ||
:type description: str | ||
:param parameters: Parameters for linked service. | ||
:type parameters: dict[str, | ||
~azure.mgmt.datafactory.models.ParameterSpecification] | ||
:param annotations: List of tags that can be used for describing the | ||
linked service. | ||
:type annotations: list[object] | ||
:param type: Required. Constant filled by server. | ||
:type type: str | ||
:param connection_string: An ODBC connection string. Type: string, | ||
SecureString or AzureKeyVaultSecretReference. | ||
:type connection_string: object | ||
:param pwd: The Azure key vault secret reference of password in connection | ||
string. | ||
:type pwd: ~azure.mgmt.datafactory.models.AzureKeyVaultSecretReference | ||
:param encrypted_credential: The encrypted credential used for | ||
authentication. Credentials are encrypted using the integration runtime | ||
credential manager. Type: string (or Expression with resultType string). | ||
:type encrypted_credential: object | ||
""" | ||
|
||
_validation = { | ||
'type': {'required': True}, | ||
} | ||
|
||
_attribute_map = { | ||
'additional_properties': {'key': '', 'type': '{object}'}, | ||
'connect_via': {'key': 'connectVia', 'type': 'IntegrationRuntimeReference'}, | ||
'description': {'key': 'description', 'type': 'str'}, | ||
'parameters': {'key': 'parameters', 'type': '{ParameterSpecification}'}, | ||
'annotations': {'key': 'annotations', 'type': '[object]'}, | ||
'type': {'key': 'type', 'type': 'str'}, | ||
'connection_string': {'key': 'typeProperties.connectionString', 'type': 'object'}, | ||
'pwd': {'key': 'typeProperties.pwd', 'type': 'AzureKeyVaultSecretReference'}, | ||
'encrypted_credential': {'key': 'typeProperties.encryptedCredential', 'type': 'object'}, | ||
} | ||
|
||
def __init__(self, **kwargs): | ||
super(AzureMariaDBLinkedService, self).__init__(**kwargs) | ||
self.connection_string = kwargs.get('connection_string', None) | ||
self.pwd = kwargs.get('pwd', None) | ||
self.encrypted_credential = kwargs.get('encrypted_credential', None) | ||
self.type = 'AzureMariaDB' |
69 changes: 69 additions & 0 deletions
69
...azure-mgmt-datafactory/azure/mgmt/datafactory/models/azure_maria_db_linked_service_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,69 @@ | ||
# 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 .linked_service_py3 import LinkedService | ||
|
||
|
||
class AzureMariaDBLinkedService(LinkedService): | ||
"""Azure Database for MariaDB linked service. | ||
All required parameters must be populated in order to send to Azure. | ||
:param additional_properties: Unmatched properties from the message are | ||
deserialized this collection | ||
:type additional_properties: dict[str, object] | ||
:param connect_via: The integration runtime reference. | ||
:type connect_via: | ||
~azure.mgmt.datafactory.models.IntegrationRuntimeReference | ||
:param description: Linked service description. | ||
:type description: str | ||
:param parameters: Parameters for linked service. | ||
:type parameters: dict[str, | ||
~azure.mgmt.datafactory.models.ParameterSpecification] | ||
:param annotations: List of tags that can be used for describing the | ||
linked service. | ||
:type annotations: list[object] | ||
:param type: Required. Constant filled by server. | ||
:type type: str | ||
:param connection_string: An ODBC connection string. Type: string, | ||
SecureString or AzureKeyVaultSecretReference. | ||
:type connection_string: object | ||
:param pwd: The Azure key vault secret reference of password in connection | ||
string. | ||
:type pwd: ~azure.mgmt.datafactory.models.AzureKeyVaultSecretReference | ||
:param encrypted_credential: The encrypted credential used for | ||
authentication. Credentials are encrypted using the integration runtime | ||
credential manager. Type: string (or Expression with resultType string). | ||
:type encrypted_credential: object | ||
""" | ||
|
||
_validation = { | ||
'type': {'required': True}, | ||
} | ||
|
||
_attribute_map = { | ||
'additional_properties': {'key': '', 'type': '{object}'}, | ||
'connect_via': {'key': 'connectVia', 'type': 'IntegrationRuntimeReference'}, | ||
'description': {'key': 'description', 'type': 'str'}, | ||
'parameters': {'key': 'parameters', 'type': '{ParameterSpecification}'}, | ||
'annotations': {'key': 'annotations', 'type': '[object]'}, | ||
'type': {'key': 'type', 'type': 'str'}, | ||
'connection_string': {'key': 'typeProperties.connectionString', 'type': 'object'}, | ||
'pwd': {'key': 'typeProperties.pwd', 'type': 'AzureKeyVaultSecretReference'}, | ||
'encrypted_credential': {'key': 'typeProperties.encryptedCredential', 'type': 'object'}, | ||
} | ||
|
||
def __init__(self, *, additional_properties=None, connect_via=None, description: str=None, parameters=None, annotations=None, connection_string=None, pwd=None, encrypted_credential=None, **kwargs) -> None: | ||
super(AzureMariaDBLinkedService, self).__init__(additional_properties=additional_properties, connect_via=connect_via, description=description, parameters=parameters, annotations=annotations, **kwargs) | ||
self.connection_string = connection_string | ||
self.pwd = pwd | ||
self.encrypted_credential = encrypted_credential | ||
self.type = 'AzureMariaDB' |
57 changes: 57 additions & 0 deletions
57
...datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/azure_maria_db_source.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,57 @@ | ||
# 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 .copy_source import CopySource | ||
|
||
|
||
class AzureMariaDBSource(CopySource): | ||
"""A copy activity Azure MariaDB source. | ||
All required parameters must be populated in order to send to Azure. | ||
:param additional_properties: Unmatched properties from the message are | ||
deserialized this collection | ||
:type additional_properties: dict[str, object] | ||
:param source_retry_count: Source retry count. Type: integer (or | ||
Expression with resultType integer). | ||
:type source_retry_count: object | ||
:param source_retry_wait: Source retry wait. Type: string (or Expression | ||
with resultType string), pattern: | ||
((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9])). | ||
:type source_retry_wait: object | ||
:param max_concurrent_connections: The maximum concurrent connection count | ||
for the source data store. Type: integer (or Expression with resultType | ||
integer). | ||
:type max_concurrent_connections: object | ||
:param type: Required. Constant filled by server. | ||
:type type: str | ||
:param query: A query to retrieve data from source. Type: string (or | ||
Expression with resultType string). | ||
:type query: object | ||
""" | ||
|
||
_validation = { | ||
'type': {'required': True}, | ||
} | ||
|
||
_attribute_map = { | ||
'additional_properties': {'key': '', 'type': '{object}'}, | ||
'source_retry_count': {'key': 'sourceRetryCount', 'type': 'object'}, | ||
'source_retry_wait': {'key': 'sourceRetryWait', 'type': 'object'}, | ||
'max_concurrent_connections': {'key': 'maxConcurrentConnections', 'type': 'object'}, | ||
'type': {'key': 'type', 'type': 'str'}, | ||
'query': {'key': 'query', 'type': 'object'}, | ||
} | ||
|
||
def __init__(self, **kwargs): | ||
super(AzureMariaDBSource, self).__init__(**kwargs) | ||
self.query = kwargs.get('query', None) | ||
self.type = 'AzureMariaDBSource' |
57 changes: 57 additions & 0 deletions
57
...factory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/azure_maria_db_source_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,57 @@ | ||
# 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 .copy_source_py3 import CopySource | ||
|
||
|
||
class AzureMariaDBSource(CopySource): | ||
"""A copy activity Azure MariaDB source. | ||
All required parameters must be populated in order to send to Azure. | ||
:param additional_properties: Unmatched properties from the message are | ||
deserialized this collection | ||
:type additional_properties: dict[str, object] | ||
:param source_retry_count: Source retry count. Type: integer (or | ||
Expression with resultType integer). | ||
:type source_retry_count: object | ||
:param source_retry_wait: Source retry wait. Type: string (or Expression | ||
with resultType string), pattern: | ||
((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9])). | ||
:type source_retry_wait: object | ||
:param max_concurrent_connections: The maximum concurrent connection count | ||
for the source data store. Type: integer (or Expression with resultType | ||
integer). | ||
:type max_concurrent_connections: object | ||
:param type: Required. Constant filled by server. | ||
:type type: str | ||
:param query: A query to retrieve data from source. Type: string (or | ||
Expression with resultType string). | ||
:type query: object | ||
""" | ||
|
||
_validation = { | ||
'type': {'required': True}, | ||
} | ||
|
||
_attribute_map = { | ||
'additional_properties': {'key': '', 'type': '{object}'}, | ||
'source_retry_count': {'key': 'sourceRetryCount', 'type': 'object'}, | ||
'source_retry_wait': {'key': 'sourceRetryWait', 'type': 'object'}, | ||
'max_concurrent_connections': {'key': 'maxConcurrentConnections', 'type': 'object'}, | ||
'type': {'key': 'type', 'type': 'str'}, | ||
'query': {'key': 'query', 'type': 'object'}, | ||
} | ||
|
||
def __init__(self, *, additional_properties=None, source_retry_count=None, source_retry_wait=None, max_concurrent_connections=None, query=None, **kwargs) -> None: | ||
super(AzureMariaDBSource, self).__init__(additional_properties=additional_properties, source_retry_count=source_retry_count, source_retry_wait=source_retry_wait, max_concurrent_connections=max_concurrent_connections, **kwargs) | ||
self.query = query | ||
self.type = 'AzureMariaDBSource' |
Oops, something went wrong.