Skip to content

Commit

Permalink
Generated from ccc8c92e96ab27329cf637c7214ebb35da8dce23 (#6625)
Browse files Browse the repository at this point in the history
Fix model validation
  • Loading branch information
AutorestCI authored and Zim Kalinowski committed Aug 6, 2019
1 parent f5d3db0 commit 64a07f2
Show file tree
Hide file tree
Showing 22 changed files with 670 additions and 86 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
from .operations.pipeline_runs_operations import PipelineRunsOperations
from .operations.activity_runs_operations import ActivityRunsOperations
from .operations.triggers_operations import TriggersOperations
from .operations.rerun_triggers_operations import RerunTriggersOperations
from .operations.trigger_runs_operations import TriggerRunsOperations
from .operations.rerun_triggers_operations import RerunTriggersOperations
from . import models


Expand Down Expand Up @@ -92,10 +92,10 @@ class DataFactoryManagementClient(SDKClient):
:vartype activity_runs: azure.mgmt.datafactory.operations.ActivityRunsOperations
:ivar triggers: Triggers operations
:vartype triggers: azure.mgmt.datafactory.operations.TriggersOperations
:ivar rerun_triggers: RerunTriggers operations
:vartype rerun_triggers: azure.mgmt.datafactory.operations.RerunTriggersOperations
:ivar trigger_runs: TriggerRuns operations
:vartype trigger_runs: azure.mgmt.datafactory.operations.TriggerRunsOperations
:ivar rerun_triggers: RerunTriggers operations
:vartype rerun_triggers: azure.mgmt.datafactory.operations.RerunTriggersOperations
:param credentials: Credentials needed for the client to connect to Azure.
:type credentials: :mod:`A msrestazure Credentials
Expand Down Expand Up @@ -140,7 +140,7 @@ def __init__(
self._client, self.config, self._serialize, self._deserialize)
self.triggers = TriggersOperations(
self._client, self.config, self._serialize, self._deserialize)
self.rerun_triggers = RerunTriggersOperations(
self._client, self.config, self._serialize, self._deserialize)
self.trigger_runs = TriggerRunsOperations(
self._client, self.config, self._serialize, self._deserialize)
self.rerun_triggers = RerunTriggersOperations(
self._client, self.config, self._serialize, self._deserialize)
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@
from .phoenix_linked_service_py3 import PhoenixLinkedService
from .paypal_linked_service_py3 import PaypalLinkedService
from .marketo_linked_service_py3 import MarketoLinkedService
from .azure_maria_db_linked_service_py3 import AzureMariaDBLinkedService
from .maria_db_linked_service_py3 import MariaDBLinkedService
from .magento_linked_service_py3 import MagentoLinkedService
from .jira_linked_service_py3 import JiraLinkedService
Expand Down Expand Up @@ -208,6 +209,7 @@
from .phoenix_object_dataset_py3 import PhoenixObjectDataset
from .paypal_object_dataset_py3 import PaypalObjectDataset
from .marketo_object_dataset_py3 import MarketoObjectDataset
from .azure_maria_db_table_dataset_py3 import AzureMariaDBTableDataset
from .maria_db_table_dataset_py3 import MariaDBTableDataset
from .magento_object_dataset_py3 import MagentoObjectDataset
from .jira_object_dataset_py3 import JiraObjectDataset
Expand Down Expand Up @@ -324,6 +326,7 @@
from .phoenix_source_py3 import PhoenixSource
from .paypal_source_py3 import PaypalSource
from .marketo_source_py3 import MarketoSource
from .azure_maria_db_source_py3 import AzureMariaDBSource
from .maria_db_source_py3 import MariaDBSource
from .magento_source_py3 import MagentoSource
from .jira_source_py3 import JiraSource
Expand Down Expand Up @@ -624,6 +627,7 @@
from .phoenix_linked_service import PhoenixLinkedService
from .paypal_linked_service import PaypalLinkedService
from .marketo_linked_service import MarketoLinkedService
from .azure_maria_db_linked_service import AzureMariaDBLinkedService
from .maria_db_linked_service import MariaDBLinkedService
from .magento_linked_service import MagentoLinkedService
from .jira_linked_service import JiraLinkedService
Expand Down Expand Up @@ -713,6 +717,7 @@
from .phoenix_object_dataset import PhoenixObjectDataset
from .paypal_object_dataset import PaypalObjectDataset
from .marketo_object_dataset import MarketoObjectDataset
from .azure_maria_db_table_dataset import AzureMariaDBTableDataset
from .maria_db_table_dataset import MariaDBTableDataset
from .magento_object_dataset import MagentoObjectDataset
from .jira_object_dataset import JiraObjectDataset
Expand Down Expand Up @@ -829,6 +834,7 @@
from .phoenix_source import PhoenixSource
from .paypal_source import PaypalSource
from .marketo_source import MarketoSource
from .azure_maria_db_source import AzureMariaDBSource
from .maria_db_source import MariaDBSource
from .magento_source import MagentoSource
from .jira_source import JiraSource
Expand Down Expand Up @@ -1210,6 +1216,7 @@
'PhoenixLinkedService',
'PaypalLinkedService',
'MarketoLinkedService',
'AzureMariaDBLinkedService',
'MariaDBLinkedService',
'MagentoLinkedService',
'JiraLinkedService',
Expand Down Expand Up @@ -1299,6 +1306,7 @@
'PhoenixObjectDataset',
'PaypalObjectDataset',
'MarketoObjectDataset',
'AzureMariaDBTableDataset',
'MariaDBTableDataset',
'MagentoObjectDataset',
'JiraObjectDataset',
Expand Down Expand Up @@ -1415,6 +1423,7 @@
'PhoenixSource',
'PaypalSource',
'MarketoSource',
'AzureMariaDBSource',
'MariaDBSource',
'MagentoSource',
'JiraSource',
Expand Down
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'
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'
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'
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'
Loading

0 comments on commit 64a07f2

Please sign in to comment.