diff --git a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/data_factory_management_client.py b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/data_factory_management_client.py
index e49abccce72a..bb8a2a22fd77 100644
--- a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/data_factory_management_client.py
+++ b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/data_factory_management_client.py
@@ -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
@@ -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
@@ -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)
diff --git a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/__init__.py b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/__init__.py
index 55e2b9a103bc..8ec6a5fa8fb4 100644
--- a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/__init__.py
+++ b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/__init__.py
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -1210,6 +1216,7 @@
'PhoenixLinkedService',
'PaypalLinkedService',
'MarketoLinkedService',
+ 'AzureMariaDBLinkedService',
'MariaDBLinkedService',
'MagentoLinkedService',
'JiraLinkedService',
@@ -1299,6 +1306,7 @@
'PhoenixObjectDataset',
'PaypalObjectDataset',
'MarketoObjectDataset',
+ 'AzureMariaDBTableDataset',
'MariaDBTableDataset',
'MagentoObjectDataset',
'JiraObjectDataset',
@@ -1415,6 +1423,7 @@
'PhoenixSource',
'PaypalSource',
'MarketoSource',
+ 'AzureMariaDBSource',
'MariaDBSource',
'MagentoSource',
'JiraSource',
diff --git a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/azure_maria_db_linked_service.py b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/azure_maria_db_linked_service.py
new file mode 100644
index 000000000000..d2dc7db88851
--- /dev/null
+++ b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/azure_maria_db_linked_service.py
@@ -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'
diff --git a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/azure_maria_db_linked_service_py3.py b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/azure_maria_db_linked_service_py3.py
new file mode 100644
index 000000000000..c80015ed6b45
--- /dev/null
+++ b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/azure_maria_db_linked_service_py3.py
@@ -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'
diff --git a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/azure_maria_db_source.py b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/azure_maria_db_source.py
new file mode 100644
index 000000000000..229e6f4311e3
--- /dev/null
+++ b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/azure_maria_db_source.py
@@ -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'
diff --git a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/azure_maria_db_source_py3.py b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/azure_maria_db_source_py3.py
new file mode 100644
index 000000000000..11358f899e51
--- /dev/null
+++ b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/azure_maria_db_source_py3.py
@@ -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'
diff --git a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/azure_maria_db_table_dataset.py b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/azure_maria_db_table_dataset.py
new file mode 100644
index 000000000000..a06c722279f2
--- /dev/null
+++ b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/azure_maria_db_table_dataset.py
@@ -0,0 +1,72 @@
+# 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 .dataset import Dataset
+
+
+class AzureMariaDBTableDataset(Dataset):
+ """Azure Database for MariaDB dataset.
+
+ 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 description: Dataset description.
+ :type description: str
+ :param structure: Columns that define the structure of the dataset. Type:
+ array (or Expression with resultType array), itemType: DatasetDataElement.
+ :type structure: object
+ :param schema: Columns that define the physical type schema of the
+ dataset. Type: array (or Expression with resultType array), itemType:
+ DatasetSchemaDataElement.
+ :type schema: object
+ :param linked_service_name: Required. Linked service reference.
+ :type linked_service_name:
+ ~azure.mgmt.datafactory.models.LinkedServiceReference
+ :param parameters: Parameters for dataset.
+ :type parameters: dict[str,
+ ~azure.mgmt.datafactory.models.ParameterSpecification]
+ :param annotations: List of tags that can be used for describing the
+ Dataset.
+ :type annotations: list[object]
+ :param folder: The folder that this Dataset is in. If not specified,
+ Dataset will appear at the root level.
+ :type folder: ~azure.mgmt.datafactory.models.DatasetFolder
+ :param type: Required. Constant filled by server.
+ :type type: str
+ :param table_name: The table name. Type: string (or Expression with
+ resultType string).
+ :type table_name: object
+ """
+
+ _validation = {
+ 'linked_service_name': {'required': True},
+ 'type': {'required': True},
+ }
+
+ _attribute_map = {
+ 'additional_properties': {'key': '', 'type': '{object}'},
+ 'description': {'key': 'description', 'type': 'str'},
+ 'structure': {'key': 'structure', 'type': 'object'},
+ 'schema': {'key': 'schema', 'type': 'object'},
+ 'linked_service_name': {'key': 'linkedServiceName', 'type': 'LinkedServiceReference'},
+ 'parameters': {'key': 'parameters', 'type': '{ParameterSpecification}'},
+ 'annotations': {'key': 'annotations', 'type': '[object]'},
+ 'folder': {'key': 'folder', 'type': 'DatasetFolder'},
+ 'type': {'key': 'type', 'type': 'str'},
+ 'table_name': {'key': 'typeProperties.tableName', 'type': 'object'},
+ }
+
+ def __init__(self, **kwargs):
+ super(AzureMariaDBTableDataset, self).__init__(**kwargs)
+ self.table_name = kwargs.get('table_name', None)
+ self.type = 'AzureMariaDBTable'
diff --git a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/azure_maria_db_table_dataset_py3.py b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/azure_maria_db_table_dataset_py3.py
new file mode 100644
index 000000000000..9c6fd648af20
--- /dev/null
+++ b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/azure_maria_db_table_dataset_py3.py
@@ -0,0 +1,72 @@
+# 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 .dataset_py3 import Dataset
+
+
+class AzureMariaDBTableDataset(Dataset):
+ """Azure Database for MariaDB dataset.
+
+ 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 description: Dataset description.
+ :type description: str
+ :param structure: Columns that define the structure of the dataset. Type:
+ array (or Expression with resultType array), itemType: DatasetDataElement.
+ :type structure: object
+ :param schema: Columns that define the physical type schema of the
+ dataset. Type: array (or Expression with resultType array), itemType:
+ DatasetSchemaDataElement.
+ :type schema: object
+ :param linked_service_name: Required. Linked service reference.
+ :type linked_service_name:
+ ~azure.mgmt.datafactory.models.LinkedServiceReference
+ :param parameters: Parameters for dataset.
+ :type parameters: dict[str,
+ ~azure.mgmt.datafactory.models.ParameterSpecification]
+ :param annotations: List of tags that can be used for describing the
+ Dataset.
+ :type annotations: list[object]
+ :param folder: The folder that this Dataset is in. If not specified,
+ Dataset will appear at the root level.
+ :type folder: ~azure.mgmt.datafactory.models.DatasetFolder
+ :param type: Required. Constant filled by server.
+ :type type: str
+ :param table_name: The table name. Type: string (or Expression with
+ resultType string).
+ :type table_name: object
+ """
+
+ _validation = {
+ 'linked_service_name': {'required': True},
+ 'type': {'required': True},
+ }
+
+ _attribute_map = {
+ 'additional_properties': {'key': '', 'type': '{object}'},
+ 'description': {'key': 'description', 'type': 'str'},
+ 'structure': {'key': 'structure', 'type': 'object'},
+ 'schema': {'key': 'schema', 'type': 'object'},
+ 'linked_service_name': {'key': 'linkedServiceName', 'type': 'LinkedServiceReference'},
+ 'parameters': {'key': 'parameters', 'type': '{ParameterSpecification}'},
+ 'annotations': {'key': 'annotations', 'type': '[object]'},
+ 'folder': {'key': 'folder', 'type': 'DatasetFolder'},
+ 'type': {'key': 'type', 'type': 'str'},
+ 'table_name': {'key': 'typeProperties.tableName', 'type': 'object'},
+ }
+
+ def __init__(self, *, linked_service_name, additional_properties=None, description: str=None, structure=None, schema=None, parameters=None, annotations=None, folder=None, table_name=None, **kwargs) -> None:
+ super(AzureMariaDBTableDataset, self).__init__(additional_properties=additional_properties, description=description, structure=structure, schema=schema, linked_service_name=linked_service_name, parameters=parameters, annotations=annotations, folder=folder, **kwargs)
+ self.table_name = table_name
+ self.type = 'AzureMariaDBTable'
diff --git a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/copy_source.py b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/copy_source.py
index b34d47b55280..72ad6e8e136d 100644
--- a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/copy_source.py
+++ b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/copy_source.py
@@ -21,16 +21,16 @@ class CopySource(Model):
SalesforceMarketingCloudSource, VerticaSource, NetezzaSource, ZohoSource,
XeroSource, SquareSource, SparkSource, ShopifySource, ServiceNowSource,
QuickBooksSource, PrestoSource, PhoenixSource, PaypalSource, MarketoSource,
- MariaDBSource, MagentoSource, JiraSource, ImpalaSource, HubspotSource,
- HiveSource, HBaseSource, GreenplumSource, GoogleBigQuerySource,
- EloquaSource, DrillSource, CouchbaseSource, ConcurSource,
- AzurePostgreSqlSource, AmazonMWSSource, HttpSource, AzureBlobFSSource,
- AzureDataLakeStoreSource, Office365Source, CosmosDbMongoDbApiSource,
- MongoDbV2Source, MongoDbSource, CassandraSource, WebSource, TeradataSource,
- OracleSource, AzureDataExplorerSource, AzureMySqlSource, HdfsSource,
- FileSystemSource, SqlDWSource, SqlMISource, AzureSqlSource,
- SqlServerSource, SqlSource, RestSource, SapTableSource, SapOpenHubSource,
- SapHanaSource, SapEccSource, SapCloudForCustomerSource,
+ AzureMariaDBSource, MariaDBSource, MagentoSource, JiraSource, ImpalaSource,
+ HubspotSource, HiveSource, HBaseSource, GreenplumSource,
+ GoogleBigQuerySource, EloquaSource, DrillSource, CouchbaseSource,
+ ConcurSource, AzurePostgreSqlSource, AmazonMWSSource, HttpSource,
+ AzureBlobFSSource, AzureDataLakeStoreSource, Office365Source,
+ CosmosDbMongoDbApiSource, MongoDbV2Source, MongoDbSource, CassandraSource,
+ WebSource, TeradataSource, OracleSource, AzureDataExplorerSource,
+ AzureMySqlSource, HdfsSource, FileSystemSource, SqlDWSource, SqlMISource,
+ AzureSqlSource, SqlServerSource, SqlSource, RestSource, SapTableSource,
+ SapOpenHubSource, SapHanaSource, SapEccSource, SapCloudForCustomerSource,
SalesforceServiceCloudSource, SalesforceSource, ODataSource, SapBwSource,
SybaseSource, PostgreSqlSource, MySqlSource, OdbcSource, Db2Source,
MicrosoftAccessSource, InformixSource, RelationalSource,
@@ -71,7 +71,7 @@ class CopySource(Model):
}
_subtype_map = {
- 'type': {'AmazonRedshiftSource': 'AmazonRedshiftSource', 'GoogleAdWordsSource': 'GoogleAdWordsSource', 'OracleServiceCloudSource': 'OracleServiceCloudSource', 'DynamicsAXSource': 'DynamicsAXSource', 'ResponsysSource': 'ResponsysSource', 'SalesforceMarketingCloudSource': 'SalesforceMarketingCloudSource', 'VerticaSource': 'VerticaSource', 'NetezzaSource': 'NetezzaSource', 'ZohoSource': 'ZohoSource', 'XeroSource': 'XeroSource', 'SquareSource': 'SquareSource', 'SparkSource': 'SparkSource', 'ShopifySource': 'ShopifySource', 'ServiceNowSource': 'ServiceNowSource', 'QuickBooksSource': 'QuickBooksSource', 'PrestoSource': 'PrestoSource', 'PhoenixSource': 'PhoenixSource', 'PaypalSource': 'PaypalSource', 'MarketoSource': 'MarketoSource', 'MariaDBSource': 'MariaDBSource', 'MagentoSource': 'MagentoSource', 'JiraSource': 'JiraSource', 'ImpalaSource': 'ImpalaSource', 'HubspotSource': 'HubspotSource', 'HiveSource': 'HiveSource', 'HBaseSource': 'HBaseSource', 'GreenplumSource': 'GreenplumSource', 'GoogleBigQuerySource': 'GoogleBigQuerySource', 'EloquaSource': 'EloquaSource', 'DrillSource': 'DrillSource', 'CouchbaseSource': 'CouchbaseSource', 'ConcurSource': 'ConcurSource', 'AzurePostgreSqlSource': 'AzurePostgreSqlSource', 'AmazonMWSSource': 'AmazonMWSSource', 'HttpSource': 'HttpSource', 'AzureBlobFSSource': 'AzureBlobFSSource', 'AzureDataLakeStoreSource': 'AzureDataLakeStoreSource', 'Office365Source': 'Office365Source', 'CosmosDbMongoDbApiSource': 'CosmosDbMongoDbApiSource', 'MongoDbV2Source': 'MongoDbV2Source', 'MongoDbSource': 'MongoDbSource', 'CassandraSource': 'CassandraSource', 'WebSource': 'WebSource', 'TeradataSource': 'TeradataSource', 'OracleSource': 'OracleSource', 'AzureDataExplorerSource': 'AzureDataExplorerSource', 'AzureMySqlSource': 'AzureMySqlSource', 'HdfsSource': 'HdfsSource', 'FileSystemSource': 'FileSystemSource', 'SqlDWSource': 'SqlDWSource', 'SqlMISource': 'SqlMISource', 'AzureSqlSource': 'AzureSqlSource', 'SqlServerSource': 'SqlServerSource', 'SqlSource': 'SqlSource', 'RestSource': 'RestSource', 'SapTableSource': 'SapTableSource', 'SapOpenHubSource': 'SapOpenHubSource', 'SapHanaSource': 'SapHanaSource', 'SapEccSource': 'SapEccSource', 'SapCloudForCustomerSource': 'SapCloudForCustomerSource', 'SalesforceServiceCloudSource': 'SalesforceServiceCloudSource', 'SalesforceSource': 'SalesforceSource', 'ODataSource': 'ODataSource', 'SapBwSource': 'SapBwSource', 'SybaseSource': 'SybaseSource', 'PostgreSqlSource': 'PostgreSqlSource', 'MySqlSource': 'MySqlSource', 'OdbcSource': 'OdbcSource', 'Db2Source': 'Db2Source', 'MicrosoftAccessSource': 'MicrosoftAccessSource', 'InformixSource': 'InformixSource', 'RelationalSource': 'RelationalSource', 'CommonDataServiceForAppsSource': 'CommonDataServiceForAppsSource', 'DynamicsCrmSource': 'DynamicsCrmSource', 'DynamicsSource': 'DynamicsSource', 'DocumentDbCollectionSource': 'DocumentDbCollectionSource', 'BlobSource': 'BlobSource', 'AzureTableSource': 'AzureTableSource', 'BinarySource': 'BinarySource', 'DelimitedTextSource': 'DelimitedTextSource', 'ParquetSource': 'ParquetSource', 'AvroSource': 'AvroSource'}
+ 'type': {'AmazonRedshiftSource': 'AmazonRedshiftSource', 'GoogleAdWordsSource': 'GoogleAdWordsSource', 'OracleServiceCloudSource': 'OracleServiceCloudSource', 'DynamicsAXSource': 'DynamicsAXSource', 'ResponsysSource': 'ResponsysSource', 'SalesforceMarketingCloudSource': 'SalesforceMarketingCloudSource', 'VerticaSource': 'VerticaSource', 'NetezzaSource': 'NetezzaSource', 'ZohoSource': 'ZohoSource', 'XeroSource': 'XeroSource', 'SquareSource': 'SquareSource', 'SparkSource': 'SparkSource', 'ShopifySource': 'ShopifySource', 'ServiceNowSource': 'ServiceNowSource', 'QuickBooksSource': 'QuickBooksSource', 'PrestoSource': 'PrestoSource', 'PhoenixSource': 'PhoenixSource', 'PaypalSource': 'PaypalSource', 'MarketoSource': 'MarketoSource', 'AzureMariaDBSource': 'AzureMariaDBSource', 'MariaDBSource': 'MariaDBSource', 'MagentoSource': 'MagentoSource', 'JiraSource': 'JiraSource', 'ImpalaSource': 'ImpalaSource', 'HubspotSource': 'HubspotSource', 'HiveSource': 'HiveSource', 'HBaseSource': 'HBaseSource', 'GreenplumSource': 'GreenplumSource', 'GoogleBigQuerySource': 'GoogleBigQuerySource', 'EloquaSource': 'EloquaSource', 'DrillSource': 'DrillSource', 'CouchbaseSource': 'CouchbaseSource', 'ConcurSource': 'ConcurSource', 'AzurePostgreSqlSource': 'AzurePostgreSqlSource', 'AmazonMWSSource': 'AmazonMWSSource', 'HttpSource': 'HttpSource', 'AzureBlobFSSource': 'AzureBlobFSSource', 'AzureDataLakeStoreSource': 'AzureDataLakeStoreSource', 'Office365Source': 'Office365Source', 'CosmosDbMongoDbApiSource': 'CosmosDbMongoDbApiSource', 'MongoDbV2Source': 'MongoDbV2Source', 'MongoDbSource': 'MongoDbSource', 'CassandraSource': 'CassandraSource', 'WebSource': 'WebSource', 'TeradataSource': 'TeradataSource', 'OracleSource': 'OracleSource', 'AzureDataExplorerSource': 'AzureDataExplorerSource', 'AzureMySqlSource': 'AzureMySqlSource', 'HdfsSource': 'HdfsSource', 'FileSystemSource': 'FileSystemSource', 'SqlDWSource': 'SqlDWSource', 'SqlMISource': 'SqlMISource', 'AzureSqlSource': 'AzureSqlSource', 'SqlServerSource': 'SqlServerSource', 'SqlSource': 'SqlSource', 'RestSource': 'RestSource', 'SapTableSource': 'SapTableSource', 'SapOpenHubSource': 'SapOpenHubSource', 'SapHanaSource': 'SapHanaSource', 'SapEccSource': 'SapEccSource', 'SapCloudForCustomerSource': 'SapCloudForCustomerSource', 'SalesforceServiceCloudSource': 'SalesforceServiceCloudSource', 'SalesforceSource': 'SalesforceSource', 'ODataSource': 'ODataSource', 'SapBwSource': 'SapBwSource', 'SybaseSource': 'SybaseSource', 'PostgreSqlSource': 'PostgreSqlSource', 'MySqlSource': 'MySqlSource', 'OdbcSource': 'OdbcSource', 'Db2Source': 'Db2Source', 'MicrosoftAccessSource': 'MicrosoftAccessSource', 'InformixSource': 'InformixSource', 'RelationalSource': 'RelationalSource', 'CommonDataServiceForAppsSource': 'CommonDataServiceForAppsSource', 'DynamicsCrmSource': 'DynamicsCrmSource', 'DynamicsSource': 'DynamicsSource', 'DocumentDbCollectionSource': 'DocumentDbCollectionSource', 'BlobSource': 'BlobSource', 'AzureTableSource': 'AzureTableSource', 'BinarySource': 'BinarySource', 'DelimitedTextSource': 'DelimitedTextSource', 'ParquetSource': 'ParquetSource', 'AvroSource': 'AvroSource'}
}
def __init__(self, **kwargs):
diff --git a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/copy_source_py3.py b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/copy_source_py3.py
index 867d77421f95..960c56774e4c 100644
--- a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/copy_source_py3.py
+++ b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/copy_source_py3.py
@@ -21,16 +21,16 @@ class CopySource(Model):
SalesforceMarketingCloudSource, VerticaSource, NetezzaSource, ZohoSource,
XeroSource, SquareSource, SparkSource, ShopifySource, ServiceNowSource,
QuickBooksSource, PrestoSource, PhoenixSource, PaypalSource, MarketoSource,
- MariaDBSource, MagentoSource, JiraSource, ImpalaSource, HubspotSource,
- HiveSource, HBaseSource, GreenplumSource, GoogleBigQuerySource,
- EloquaSource, DrillSource, CouchbaseSource, ConcurSource,
- AzurePostgreSqlSource, AmazonMWSSource, HttpSource, AzureBlobFSSource,
- AzureDataLakeStoreSource, Office365Source, CosmosDbMongoDbApiSource,
- MongoDbV2Source, MongoDbSource, CassandraSource, WebSource, TeradataSource,
- OracleSource, AzureDataExplorerSource, AzureMySqlSource, HdfsSource,
- FileSystemSource, SqlDWSource, SqlMISource, AzureSqlSource,
- SqlServerSource, SqlSource, RestSource, SapTableSource, SapOpenHubSource,
- SapHanaSource, SapEccSource, SapCloudForCustomerSource,
+ AzureMariaDBSource, MariaDBSource, MagentoSource, JiraSource, ImpalaSource,
+ HubspotSource, HiveSource, HBaseSource, GreenplumSource,
+ GoogleBigQuerySource, EloquaSource, DrillSource, CouchbaseSource,
+ ConcurSource, AzurePostgreSqlSource, AmazonMWSSource, HttpSource,
+ AzureBlobFSSource, AzureDataLakeStoreSource, Office365Source,
+ CosmosDbMongoDbApiSource, MongoDbV2Source, MongoDbSource, CassandraSource,
+ WebSource, TeradataSource, OracleSource, AzureDataExplorerSource,
+ AzureMySqlSource, HdfsSource, FileSystemSource, SqlDWSource, SqlMISource,
+ AzureSqlSource, SqlServerSource, SqlSource, RestSource, SapTableSource,
+ SapOpenHubSource, SapHanaSource, SapEccSource, SapCloudForCustomerSource,
SalesforceServiceCloudSource, SalesforceSource, ODataSource, SapBwSource,
SybaseSource, PostgreSqlSource, MySqlSource, OdbcSource, Db2Source,
MicrosoftAccessSource, InformixSource, RelationalSource,
@@ -71,7 +71,7 @@ class CopySource(Model):
}
_subtype_map = {
- 'type': {'AmazonRedshiftSource': 'AmazonRedshiftSource', 'GoogleAdWordsSource': 'GoogleAdWordsSource', 'OracleServiceCloudSource': 'OracleServiceCloudSource', 'DynamicsAXSource': 'DynamicsAXSource', 'ResponsysSource': 'ResponsysSource', 'SalesforceMarketingCloudSource': 'SalesforceMarketingCloudSource', 'VerticaSource': 'VerticaSource', 'NetezzaSource': 'NetezzaSource', 'ZohoSource': 'ZohoSource', 'XeroSource': 'XeroSource', 'SquareSource': 'SquareSource', 'SparkSource': 'SparkSource', 'ShopifySource': 'ShopifySource', 'ServiceNowSource': 'ServiceNowSource', 'QuickBooksSource': 'QuickBooksSource', 'PrestoSource': 'PrestoSource', 'PhoenixSource': 'PhoenixSource', 'PaypalSource': 'PaypalSource', 'MarketoSource': 'MarketoSource', 'MariaDBSource': 'MariaDBSource', 'MagentoSource': 'MagentoSource', 'JiraSource': 'JiraSource', 'ImpalaSource': 'ImpalaSource', 'HubspotSource': 'HubspotSource', 'HiveSource': 'HiveSource', 'HBaseSource': 'HBaseSource', 'GreenplumSource': 'GreenplumSource', 'GoogleBigQuerySource': 'GoogleBigQuerySource', 'EloquaSource': 'EloquaSource', 'DrillSource': 'DrillSource', 'CouchbaseSource': 'CouchbaseSource', 'ConcurSource': 'ConcurSource', 'AzurePostgreSqlSource': 'AzurePostgreSqlSource', 'AmazonMWSSource': 'AmazonMWSSource', 'HttpSource': 'HttpSource', 'AzureBlobFSSource': 'AzureBlobFSSource', 'AzureDataLakeStoreSource': 'AzureDataLakeStoreSource', 'Office365Source': 'Office365Source', 'CosmosDbMongoDbApiSource': 'CosmosDbMongoDbApiSource', 'MongoDbV2Source': 'MongoDbV2Source', 'MongoDbSource': 'MongoDbSource', 'CassandraSource': 'CassandraSource', 'WebSource': 'WebSource', 'TeradataSource': 'TeradataSource', 'OracleSource': 'OracleSource', 'AzureDataExplorerSource': 'AzureDataExplorerSource', 'AzureMySqlSource': 'AzureMySqlSource', 'HdfsSource': 'HdfsSource', 'FileSystemSource': 'FileSystemSource', 'SqlDWSource': 'SqlDWSource', 'SqlMISource': 'SqlMISource', 'AzureSqlSource': 'AzureSqlSource', 'SqlServerSource': 'SqlServerSource', 'SqlSource': 'SqlSource', 'RestSource': 'RestSource', 'SapTableSource': 'SapTableSource', 'SapOpenHubSource': 'SapOpenHubSource', 'SapHanaSource': 'SapHanaSource', 'SapEccSource': 'SapEccSource', 'SapCloudForCustomerSource': 'SapCloudForCustomerSource', 'SalesforceServiceCloudSource': 'SalesforceServiceCloudSource', 'SalesforceSource': 'SalesforceSource', 'ODataSource': 'ODataSource', 'SapBwSource': 'SapBwSource', 'SybaseSource': 'SybaseSource', 'PostgreSqlSource': 'PostgreSqlSource', 'MySqlSource': 'MySqlSource', 'OdbcSource': 'OdbcSource', 'Db2Source': 'Db2Source', 'MicrosoftAccessSource': 'MicrosoftAccessSource', 'InformixSource': 'InformixSource', 'RelationalSource': 'RelationalSource', 'CommonDataServiceForAppsSource': 'CommonDataServiceForAppsSource', 'DynamicsCrmSource': 'DynamicsCrmSource', 'DynamicsSource': 'DynamicsSource', 'DocumentDbCollectionSource': 'DocumentDbCollectionSource', 'BlobSource': 'BlobSource', 'AzureTableSource': 'AzureTableSource', 'BinarySource': 'BinarySource', 'DelimitedTextSource': 'DelimitedTextSource', 'ParquetSource': 'ParquetSource', 'AvroSource': 'AvroSource'}
+ 'type': {'AmazonRedshiftSource': 'AmazonRedshiftSource', 'GoogleAdWordsSource': 'GoogleAdWordsSource', 'OracleServiceCloudSource': 'OracleServiceCloudSource', 'DynamicsAXSource': 'DynamicsAXSource', 'ResponsysSource': 'ResponsysSource', 'SalesforceMarketingCloudSource': 'SalesforceMarketingCloudSource', 'VerticaSource': 'VerticaSource', 'NetezzaSource': 'NetezzaSource', 'ZohoSource': 'ZohoSource', 'XeroSource': 'XeroSource', 'SquareSource': 'SquareSource', 'SparkSource': 'SparkSource', 'ShopifySource': 'ShopifySource', 'ServiceNowSource': 'ServiceNowSource', 'QuickBooksSource': 'QuickBooksSource', 'PrestoSource': 'PrestoSource', 'PhoenixSource': 'PhoenixSource', 'PaypalSource': 'PaypalSource', 'MarketoSource': 'MarketoSource', 'AzureMariaDBSource': 'AzureMariaDBSource', 'MariaDBSource': 'MariaDBSource', 'MagentoSource': 'MagentoSource', 'JiraSource': 'JiraSource', 'ImpalaSource': 'ImpalaSource', 'HubspotSource': 'HubspotSource', 'HiveSource': 'HiveSource', 'HBaseSource': 'HBaseSource', 'GreenplumSource': 'GreenplumSource', 'GoogleBigQuerySource': 'GoogleBigQuerySource', 'EloquaSource': 'EloquaSource', 'DrillSource': 'DrillSource', 'CouchbaseSource': 'CouchbaseSource', 'ConcurSource': 'ConcurSource', 'AzurePostgreSqlSource': 'AzurePostgreSqlSource', 'AmazonMWSSource': 'AmazonMWSSource', 'HttpSource': 'HttpSource', 'AzureBlobFSSource': 'AzureBlobFSSource', 'AzureDataLakeStoreSource': 'AzureDataLakeStoreSource', 'Office365Source': 'Office365Source', 'CosmosDbMongoDbApiSource': 'CosmosDbMongoDbApiSource', 'MongoDbV2Source': 'MongoDbV2Source', 'MongoDbSource': 'MongoDbSource', 'CassandraSource': 'CassandraSource', 'WebSource': 'WebSource', 'TeradataSource': 'TeradataSource', 'OracleSource': 'OracleSource', 'AzureDataExplorerSource': 'AzureDataExplorerSource', 'AzureMySqlSource': 'AzureMySqlSource', 'HdfsSource': 'HdfsSource', 'FileSystemSource': 'FileSystemSource', 'SqlDWSource': 'SqlDWSource', 'SqlMISource': 'SqlMISource', 'AzureSqlSource': 'AzureSqlSource', 'SqlServerSource': 'SqlServerSource', 'SqlSource': 'SqlSource', 'RestSource': 'RestSource', 'SapTableSource': 'SapTableSource', 'SapOpenHubSource': 'SapOpenHubSource', 'SapHanaSource': 'SapHanaSource', 'SapEccSource': 'SapEccSource', 'SapCloudForCustomerSource': 'SapCloudForCustomerSource', 'SalesforceServiceCloudSource': 'SalesforceServiceCloudSource', 'SalesforceSource': 'SalesforceSource', 'ODataSource': 'ODataSource', 'SapBwSource': 'SapBwSource', 'SybaseSource': 'SybaseSource', 'PostgreSqlSource': 'PostgreSqlSource', 'MySqlSource': 'MySqlSource', 'OdbcSource': 'OdbcSource', 'Db2Source': 'Db2Source', 'MicrosoftAccessSource': 'MicrosoftAccessSource', 'InformixSource': 'InformixSource', 'RelationalSource': 'RelationalSource', 'CommonDataServiceForAppsSource': 'CommonDataServiceForAppsSource', 'DynamicsCrmSource': 'DynamicsCrmSource', 'DynamicsSource': 'DynamicsSource', 'DocumentDbCollectionSource': 'DocumentDbCollectionSource', 'BlobSource': 'BlobSource', 'AzureTableSource': 'AzureTableSource', 'BinarySource': 'BinarySource', 'DelimitedTextSource': 'DelimitedTextSource', 'ParquetSource': 'ParquetSource', 'AvroSource': 'AvroSource'}
}
def __init__(self, *, additional_properties=None, source_retry_count=None, source_retry_wait=None, max_concurrent_connections=None, **kwargs) -> None:
diff --git a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/dataset.py b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/dataset.py
index ecafb9588fce..036e1912647e 100644
--- a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/dataset.py
+++ b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/dataset.py
@@ -24,23 +24,23 @@ class Dataset(Model):
XeroObjectDataset, SquareObjectDataset, SparkObjectDataset,
ShopifyObjectDataset, ServiceNowObjectDataset, QuickBooksObjectDataset,
PrestoObjectDataset, PhoenixObjectDataset, PaypalObjectDataset,
- MarketoObjectDataset, MariaDBTableDataset, MagentoObjectDataset,
- JiraObjectDataset, ImpalaObjectDataset, HubspotObjectDataset,
- HiveObjectDataset, HBaseObjectDataset, GreenplumTableDataset,
- GoogleBigQueryObjectDataset, EloquaObjectDataset, DrillTableDataset,
- CouchbaseTableDataset, ConcurObjectDataset, AzurePostgreSqlTableDataset,
- AmazonMWSObjectDataset, HttpDataset, AzureSearchIndexDataset,
- WebTableDataset, SapTableResourceDataset, RestResourceDataset,
- SqlServerTableDataset, SapOpenHubTableDataset, SapHanaTableDataset,
- SapEccResourceDataset, SapCloudForCustomerResourceDataset,
- SapBwCubeDataset, SybaseTableDataset, SalesforceServiceCloudObjectDataset,
- SalesforceObjectDataset, MicrosoftAccessTableDataset,
- PostgreSqlTableDataset, MySqlTableDataset, OdbcTableDataset,
- InformixTableDataset, RelationalTableDataset, AzureMySqlTableDataset,
- TeradataTableDataset, OracleTableDataset, ODataResourceDataset,
- CosmosDbMongoDbApiCollectionDataset, MongoDbV2CollectionDataset,
- MongoDbCollectionDataset, FileShareDataset, Office365Dataset,
- AzureBlobFSDataset, AzureDataLakeStoreDataset,
+ MarketoObjectDataset, AzureMariaDBTableDataset, MariaDBTableDataset,
+ MagentoObjectDataset, JiraObjectDataset, ImpalaObjectDataset,
+ HubspotObjectDataset, HiveObjectDataset, HBaseObjectDataset,
+ GreenplumTableDataset, GoogleBigQueryObjectDataset, EloquaObjectDataset,
+ DrillTableDataset, CouchbaseTableDataset, ConcurObjectDataset,
+ AzurePostgreSqlTableDataset, AmazonMWSObjectDataset, HttpDataset,
+ AzureSearchIndexDataset, WebTableDataset, SapTableResourceDataset,
+ RestResourceDataset, SqlServerTableDataset, SapOpenHubTableDataset,
+ SapHanaTableDataset, SapEccResourceDataset,
+ SapCloudForCustomerResourceDataset, SapBwCubeDataset, SybaseTableDataset,
+ SalesforceServiceCloudObjectDataset, SalesforceObjectDataset,
+ MicrosoftAccessTableDataset, PostgreSqlTableDataset, MySqlTableDataset,
+ OdbcTableDataset, InformixTableDataset, RelationalTableDataset,
+ AzureMySqlTableDataset, TeradataTableDataset, OracleTableDataset,
+ ODataResourceDataset, CosmosDbMongoDbApiCollectionDataset,
+ MongoDbV2CollectionDataset, MongoDbCollectionDataset, FileShareDataset,
+ Office365Dataset, AzureBlobFSDataset, AzureDataLakeStoreDataset,
CommonDataServiceForAppsEntityDataset, DynamicsCrmEntityDataset,
DynamicsEntityDataset, DocumentDbCollectionDataset, CustomDataset,
CassandraTableDataset, AzureSqlDWTableDataset, AzureSqlMITableDataset,
@@ -95,7 +95,7 @@ class Dataset(Model):
}
_subtype_map = {
- 'type': {'GoogleAdWordsObject': 'GoogleAdWordsObjectDataset', 'AzureDataExplorerTable': 'AzureDataExplorerTableDataset', 'OracleServiceCloudObject': 'OracleServiceCloudObjectDataset', 'DynamicsAXResource': 'DynamicsAXResourceDataset', 'ResponsysObject': 'ResponsysObjectDataset', 'SalesforceMarketingCloudObject': 'SalesforceMarketingCloudObjectDataset', 'VerticaTable': 'VerticaTableDataset', 'NetezzaTable': 'NetezzaTableDataset', 'ZohoObject': 'ZohoObjectDataset', 'XeroObject': 'XeroObjectDataset', 'SquareObject': 'SquareObjectDataset', 'SparkObject': 'SparkObjectDataset', 'ShopifyObject': 'ShopifyObjectDataset', 'ServiceNowObject': 'ServiceNowObjectDataset', 'QuickBooksObject': 'QuickBooksObjectDataset', 'PrestoObject': 'PrestoObjectDataset', 'PhoenixObject': 'PhoenixObjectDataset', 'PaypalObject': 'PaypalObjectDataset', 'MarketoObject': 'MarketoObjectDataset', 'MariaDBTable': 'MariaDBTableDataset', 'MagentoObject': 'MagentoObjectDataset', 'JiraObject': 'JiraObjectDataset', 'ImpalaObject': 'ImpalaObjectDataset', 'HubspotObject': 'HubspotObjectDataset', 'HiveObject': 'HiveObjectDataset', 'HBaseObject': 'HBaseObjectDataset', 'GreenplumTable': 'GreenplumTableDataset', 'GoogleBigQueryObject': 'GoogleBigQueryObjectDataset', 'EloquaObject': 'EloquaObjectDataset', 'DrillTable': 'DrillTableDataset', 'CouchbaseTable': 'CouchbaseTableDataset', 'ConcurObject': 'ConcurObjectDataset', 'AzurePostgreSqlTable': 'AzurePostgreSqlTableDataset', 'AmazonMWSObject': 'AmazonMWSObjectDataset', 'HttpFile': 'HttpDataset', 'AzureSearchIndex': 'AzureSearchIndexDataset', 'WebTable': 'WebTableDataset', 'SapTableResource': 'SapTableResourceDataset', 'RestResource': 'RestResourceDataset', 'SqlServerTable': 'SqlServerTableDataset', 'SapOpenHubTable': 'SapOpenHubTableDataset', 'SapHanaTable': 'SapHanaTableDataset', 'SapEccResource': 'SapEccResourceDataset', 'SapCloudForCustomerResource': 'SapCloudForCustomerResourceDataset', 'SapBwCube': 'SapBwCubeDataset', 'SybaseTable': 'SybaseTableDataset', 'SalesforceServiceCloudObject': 'SalesforceServiceCloudObjectDataset', 'SalesforceObject': 'SalesforceObjectDataset', 'MicrosoftAccessTable': 'MicrosoftAccessTableDataset', 'PostgreSqlTable': 'PostgreSqlTableDataset', 'MySqlTable': 'MySqlTableDataset', 'OdbcTable': 'OdbcTableDataset', 'InformixTable': 'InformixTableDataset', 'RelationalTable': 'RelationalTableDataset', 'AzureMySqlTable': 'AzureMySqlTableDataset', 'TeradataTable': 'TeradataTableDataset', 'OracleTable': 'OracleTableDataset', 'ODataResource': 'ODataResourceDataset', 'CosmosDbMongoDbApiCollection': 'CosmosDbMongoDbApiCollectionDataset', 'MongoDbV2Collection': 'MongoDbV2CollectionDataset', 'MongoDbCollection': 'MongoDbCollectionDataset', 'FileShare': 'FileShareDataset', 'Office365Table': 'Office365Dataset', 'AzureBlobFSFile': 'AzureBlobFSDataset', 'AzureDataLakeStoreFile': 'AzureDataLakeStoreDataset', 'CommonDataServiceForAppsEntity': 'CommonDataServiceForAppsEntityDataset', 'DynamicsCrmEntity': 'DynamicsCrmEntityDataset', 'DynamicsEntity': 'DynamicsEntityDataset', 'DocumentDbCollection': 'DocumentDbCollectionDataset', 'CustomDataset': 'CustomDataset', 'CassandraTable': 'CassandraTableDataset', 'AzureSqlDWTable': 'AzureSqlDWTableDataset', 'AzureSqlMITable': 'AzureSqlMITableDataset', 'AzureSqlTable': 'AzureSqlTableDataset', 'AzureTable': 'AzureTableDataset', 'AzureBlob': 'AzureBlobDataset', 'Binary': 'BinaryDataset', 'DelimitedText': 'DelimitedTextDataset', 'Parquet': 'ParquetDataset', 'Avro': 'AvroDataset', 'AmazonS3Object': 'AmazonS3Dataset'}
+ 'type': {'GoogleAdWordsObject': 'GoogleAdWordsObjectDataset', 'AzureDataExplorerTable': 'AzureDataExplorerTableDataset', 'OracleServiceCloudObject': 'OracleServiceCloudObjectDataset', 'DynamicsAXResource': 'DynamicsAXResourceDataset', 'ResponsysObject': 'ResponsysObjectDataset', 'SalesforceMarketingCloudObject': 'SalesforceMarketingCloudObjectDataset', 'VerticaTable': 'VerticaTableDataset', 'NetezzaTable': 'NetezzaTableDataset', 'ZohoObject': 'ZohoObjectDataset', 'XeroObject': 'XeroObjectDataset', 'SquareObject': 'SquareObjectDataset', 'SparkObject': 'SparkObjectDataset', 'ShopifyObject': 'ShopifyObjectDataset', 'ServiceNowObject': 'ServiceNowObjectDataset', 'QuickBooksObject': 'QuickBooksObjectDataset', 'PrestoObject': 'PrestoObjectDataset', 'PhoenixObject': 'PhoenixObjectDataset', 'PaypalObject': 'PaypalObjectDataset', 'MarketoObject': 'MarketoObjectDataset', 'AzureMariaDBTable': 'AzureMariaDBTableDataset', 'MariaDBTable': 'MariaDBTableDataset', 'MagentoObject': 'MagentoObjectDataset', 'JiraObject': 'JiraObjectDataset', 'ImpalaObject': 'ImpalaObjectDataset', 'HubspotObject': 'HubspotObjectDataset', 'HiveObject': 'HiveObjectDataset', 'HBaseObject': 'HBaseObjectDataset', 'GreenplumTable': 'GreenplumTableDataset', 'GoogleBigQueryObject': 'GoogleBigQueryObjectDataset', 'EloquaObject': 'EloquaObjectDataset', 'DrillTable': 'DrillTableDataset', 'CouchbaseTable': 'CouchbaseTableDataset', 'ConcurObject': 'ConcurObjectDataset', 'AzurePostgreSqlTable': 'AzurePostgreSqlTableDataset', 'AmazonMWSObject': 'AmazonMWSObjectDataset', 'HttpFile': 'HttpDataset', 'AzureSearchIndex': 'AzureSearchIndexDataset', 'WebTable': 'WebTableDataset', 'SapTableResource': 'SapTableResourceDataset', 'RestResource': 'RestResourceDataset', 'SqlServerTable': 'SqlServerTableDataset', 'SapOpenHubTable': 'SapOpenHubTableDataset', 'SapHanaTable': 'SapHanaTableDataset', 'SapEccResource': 'SapEccResourceDataset', 'SapCloudForCustomerResource': 'SapCloudForCustomerResourceDataset', 'SapBwCube': 'SapBwCubeDataset', 'SybaseTable': 'SybaseTableDataset', 'SalesforceServiceCloudObject': 'SalesforceServiceCloudObjectDataset', 'SalesforceObject': 'SalesforceObjectDataset', 'MicrosoftAccessTable': 'MicrosoftAccessTableDataset', 'PostgreSqlTable': 'PostgreSqlTableDataset', 'MySqlTable': 'MySqlTableDataset', 'OdbcTable': 'OdbcTableDataset', 'InformixTable': 'InformixTableDataset', 'RelationalTable': 'RelationalTableDataset', 'AzureMySqlTable': 'AzureMySqlTableDataset', 'TeradataTable': 'TeradataTableDataset', 'OracleTable': 'OracleTableDataset', 'ODataResource': 'ODataResourceDataset', 'CosmosDbMongoDbApiCollection': 'CosmosDbMongoDbApiCollectionDataset', 'MongoDbV2Collection': 'MongoDbV2CollectionDataset', 'MongoDbCollection': 'MongoDbCollectionDataset', 'FileShare': 'FileShareDataset', 'Office365Table': 'Office365Dataset', 'AzureBlobFSFile': 'AzureBlobFSDataset', 'AzureDataLakeStoreFile': 'AzureDataLakeStoreDataset', 'CommonDataServiceForAppsEntity': 'CommonDataServiceForAppsEntityDataset', 'DynamicsCrmEntity': 'DynamicsCrmEntityDataset', 'DynamicsEntity': 'DynamicsEntityDataset', 'DocumentDbCollection': 'DocumentDbCollectionDataset', 'CustomDataset': 'CustomDataset', 'CassandraTable': 'CassandraTableDataset', 'AzureSqlDWTable': 'AzureSqlDWTableDataset', 'AzureSqlMITable': 'AzureSqlMITableDataset', 'AzureSqlTable': 'AzureSqlTableDataset', 'AzureTable': 'AzureTableDataset', 'AzureBlob': 'AzureBlobDataset', 'Binary': 'BinaryDataset', 'DelimitedText': 'DelimitedTextDataset', 'Parquet': 'ParquetDataset', 'Avro': 'AvroDataset', 'AmazonS3Object': 'AmazonS3Dataset'}
}
def __init__(self, **kwargs):
diff --git a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/dataset_py3.py b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/dataset_py3.py
index 41614b28432a..4a7ab9e3db12 100644
--- a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/dataset_py3.py
+++ b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/dataset_py3.py
@@ -24,23 +24,23 @@ class Dataset(Model):
XeroObjectDataset, SquareObjectDataset, SparkObjectDataset,
ShopifyObjectDataset, ServiceNowObjectDataset, QuickBooksObjectDataset,
PrestoObjectDataset, PhoenixObjectDataset, PaypalObjectDataset,
- MarketoObjectDataset, MariaDBTableDataset, MagentoObjectDataset,
- JiraObjectDataset, ImpalaObjectDataset, HubspotObjectDataset,
- HiveObjectDataset, HBaseObjectDataset, GreenplumTableDataset,
- GoogleBigQueryObjectDataset, EloquaObjectDataset, DrillTableDataset,
- CouchbaseTableDataset, ConcurObjectDataset, AzurePostgreSqlTableDataset,
- AmazonMWSObjectDataset, HttpDataset, AzureSearchIndexDataset,
- WebTableDataset, SapTableResourceDataset, RestResourceDataset,
- SqlServerTableDataset, SapOpenHubTableDataset, SapHanaTableDataset,
- SapEccResourceDataset, SapCloudForCustomerResourceDataset,
- SapBwCubeDataset, SybaseTableDataset, SalesforceServiceCloudObjectDataset,
- SalesforceObjectDataset, MicrosoftAccessTableDataset,
- PostgreSqlTableDataset, MySqlTableDataset, OdbcTableDataset,
- InformixTableDataset, RelationalTableDataset, AzureMySqlTableDataset,
- TeradataTableDataset, OracleTableDataset, ODataResourceDataset,
- CosmosDbMongoDbApiCollectionDataset, MongoDbV2CollectionDataset,
- MongoDbCollectionDataset, FileShareDataset, Office365Dataset,
- AzureBlobFSDataset, AzureDataLakeStoreDataset,
+ MarketoObjectDataset, AzureMariaDBTableDataset, MariaDBTableDataset,
+ MagentoObjectDataset, JiraObjectDataset, ImpalaObjectDataset,
+ HubspotObjectDataset, HiveObjectDataset, HBaseObjectDataset,
+ GreenplumTableDataset, GoogleBigQueryObjectDataset, EloquaObjectDataset,
+ DrillTableDataset, CouchbaseTableDataset, ConcurObjectDataset,
+ AzurePostgreSqlTableDataset, AmazonMWSObjectDataset, HttpDataset,
+ AzureSearchIndexDataset, WebTableDataset, SapTableResourceDataset,
+ RestResourceDataset, SqlServerTableDataset, SapOpenHubTableDataset,
+ SapHanaTableDataset, SapEccResourceDataset,
+ SapCloudForCustomerResourceDataset, SapBwCubeDataset, SybaseTableDataset,
+ SalesforceServiceCloudObjectDataset, SalesforceObjectDataset,
+ MicrosoftAccessTableDataset, PostgreSqlTableDataset, MySqlTableDataset,
+ OdbcTableDataset, InformixTableDataset, RelationalTableDataset,
+ AzureMySqlTableDataset, TeradataTableDataset, OracleTableDataset,
+ ODataResourceDataset, CosmosDbMongoDbApiCollectionDataset,
+ MongoDbV2CollectionDataset, MongoDbCollectionDataset, FileShareDataset,
+ Office365Dataset, AzureBlobFSDataset, AzureDataLakeStoreDataset,
CommonDataServiceForAppsEntityDataset, DynamicsCrmEntityDataset,
DynamicsEntityDataset, DocumentDbCollectionDataset, CustomDataset,
CassandraTableDataset, AzureSqlDWTableDataset, AzureSqlMITableDataset,
@@ -95,7 +95,7 @@ class Dataset(Model):
}
_subtype_map = {
- 'type': {'GoogleAdWordsObject': 'GoogleAdWordsObjectDataset', 'AzureDataExplorerTable': 'AzureDataExplorerTableDataset', 'OracleServiceCloudObject': 'OracleServiceCloudObjectDataset', 'DynamicsAXResource': 'DynamicsAXResourceDataset', 'ResponsysObject': 'ResponsysObjectDataset', 'SalesforceMarketingCloudObject': 'SalesforceMarketingCloudObjectDataset', 'VerticaTable': 'VerticaTableDataset', 'NetezzaTable': 'NetezzaTableDataset', 'ZohoObject': 'ZohoObjectDataset', 'XeroObject': 'XeroObjectDataset', 'SquareObject': 'SquareObjectDataset', 'SparkObject': 'SparkObjectDataset', 'ShopifyObject': 'ShopifyObjectDataset', 'ServiceNowObject': 'ServiceNowObjectDataset', 'QuickBooksObject': 'QuickBooksObjectDataset', 'PrestoObject': 'PrestoObjectDataset', 'PhoenixObject': 'PhoenixObjectDataset', 'PaypalObject': 'PaypalObjectDataset', 'MarketoObject': 'MarketoObjectDataset', 'MariaDBTable': 'MariaDBTableDataset', 'MagentoObject': 'MagentoObjectDataset', 'JiraObject': 'JiraObjectDataset', 'ImpalaObject': 'ImpalaObjectDataset', 'HubspotObject': 'HubspotObjectDataset', 'HiveObject': 'HiveObjectDataset', 'HBaseObject': 'HBaseObjectDataset', 'GreenplumTable': 'GreenplumTableDataset', 'GoogleBigQueryObject': 'GoogleBigQueryObjectDataset', 'EloquaObject': 'EloquaObjectDataset', 'DrillTable': 'DrillTableDataset', 'CouchbaseTable': 'CouchbaseTableDataset', 'ConcurObject': 'ConcurObjectDataset', 'AzurePostgreSqlTable': 'AzurePostgreSqlTableDataset', 'AmazonMWSObject': 'AmazonMWSObjectDataset', 'HttpFile': 'HttpDataset', 'AzureSearchIndex': 'AzureSearchIndexDataset', 'WebTable': 'WebTableDataset', 'SapTableResource': 'SapTableResourceDataset', 'RestResource': 'RestResourceDataset', 'SqlServerTable': 'SqlServerTableDataset', 'SapOpenHubTable': 'SapOpenHubTableDataset', 'SapHanaTable': 'SapHanaTableDataset', 'SapEccResource': 'SapEccResourceDataset', 'SapCloudForCustomerResource': 'SapCloudForCustomerResourceDataset', 'SapBwCube': 'SapBwCubeDataset', 'SybaseTable': 'SybaseTableDataset', 'SalesforceServiceCloudObject': 'SalesforceServiceCloudObjectDataset', 'SalesforceObject': 'SalesforceObjectDataset', 'MicrosoftAccessTable': 'MicrosoftAccessTableDataset', 'PostgreSqlTable': 'PostgreSqlTableDataset', 'MySqlTable': 'MySqlTableDataset', 'OdbcTable': 'OdbcTableDataset', 'InformixTable': 'InformixTableDataset', 'RelationalTable': 'RelationalTableDataset', 'AzureMySqlTable': 'AzureMySqlTableDataset', 'TeradataTable': 'TeradataTableDataset', 'OracleTable': 'OracleTableDataset', 'ODataResource': 'ODataResourceDataset', 'CosmosDbMongoDbApiCollection': 'CosmosDbMongoDbApiCollectionDataset', 'MongoDbV2Collection': 'MongoDbV2CollectionDataset', 'MongoDbCollection': 'MongoDbCollectionDataset', 'FileShare': 'FileShareDataset', 'Office365Table': 'Office365Dataset', 'AzureBlobFSFile': 'AzureBlobFSDataset', 'AzureDataLakeStoreFile': 'AzureDataLakeStoreDataset', 'CommonDataServiceForAppsEntity': 'CommonDataServiceForAppsEntityDataset', 'DynamicsCrmEntity': 'DynamicsCrmEntityDataset', 'DynamicsEntity': 'DynamicsEntityDataset', 'DocumentDbCollection': 'DocumentDbCollectionDataset', 'CustomDataset': 'CustomDataset', 'CassandraTable': 'CassandraTableDataset', 'AzureSqlDWTable': 'AzureSqlDWTableDataset', 'AzureSqlMITable': 'AzureSqlMITableDataset', 'AzureSqlTable': 'AzureSqlTableDataset', 'AzureTable': 'AzureTableDataset', 'AzureBlob': 'AzureBlobDataset', 'Binary': 'BinaryDataset', 'DelimitedText': 'DelimitedTextDataset', 'Parquet': 'ParquetDataset', 'Avro': 'AvroDataset', 'AmazonS3Object': 'AmazonS3Dataset'}
+ 'type': {'GoogleAdWordsObject': 'GoogleAdWordsObjectDataset', 'AzureDataExplorerTable': 'AzureDataExplorerTableDataset', 'OracleServiceCloudObject': 'OracleServiceCloudObjectDataset', 'DynamicsAXResource': 'DynamicsAXResourceDataset', 'ResponsysObject': 'ResponsysObjectDataset', 'SalesforceMarketingCloudObject': 'SalesforceMarketingCloudObjectDataset', 'VerticaTable': 'VerticaTableDataset', 'NetezzaTable': 'NetezzaTableDataset', 'ZohoObject': 'ZohoObjectDataset', 'XeroObject': 'XeroObjectDataset', 'SquareObject': 'SquareObjectDataset', 'SparkObject': 'SparkObjectDataset', 'ShopifyObject': 'ShopifyObjectDataset', 'ServiceNowObject': 'ServiceNowObjectDataset', 'QuickBooksObject': 'QuickBooksObjectDataset', 'PrestoObject': 'PrestoObjectDataset', 'PhoenixObject': 'PhoenixObjectDataset', 'PaypalObject': 'PaypalObjectDataset', 'MarketoObject': 'MarketoObjectDataset', 'AzureMariaDBTable': 'AzureMariaDBTableDataset', 'MariaDBTable': 'MariaDBTableDataset', 'MagentoObject': 'MagentoObjectDataset', 'JiraObject': 'JiraObjectDataset', 'ImpalaObject': 'ImpalaObjectDataset', 'HubspotObject': 'HubspotObjectDataset', 'HiveObject': 'HiveObjectDataset', 'HBaseObject': 'HBaseObjectDataset', 'GreenplumTable': 'GreenplumTableDataset', 'GoogleBigQueryObject': 'GoogleBigQueryObjectDataset', 'EloquaObject': 'EloquaObjectDataset', 'DrillTable': 'DrillTableDataset', 'CouchbaseTable': 'CouchbaseTableDataset', 'ConcurObject': 'ConcurObjectDataset', 'AzurePostgreSqlTable': 'AzurePostgreSqlTableDataset', 'AmazonMWSObject': 'AmazonMWSObjectDataset', 'HttpFile': 'HttpDataset', 'AzureSearchIndex': 'AzureSearchIndexDataset', 'WebTable': 'WebTableDataset', 'SapTableResource': 'SapTableResourceDataset', 'RestResource': 'RestResourceDataset', 'SqlServerTable': 'SqlServerTableDataset', 'SapOpenHubTable': 'SapOpenHubTableDataset', 'SapHanaTable': 'SapHanaTableDataset', 'SapEccResource': 'SapEccResourceDataset', 'SapCloudForCustomerResource': 'SapCloudForCustomerResourceDataset', 'SapBwCube': 'SapBwCubeDataset', 'SybaseTable': 'SybaseTableDataset', 'SalesforceServiceCloudObject': 'SalesforceServiceCloudObjectDataset', 'SalesforceObject': 'SalesforceObjectDataset', 'MicrosoftAccessTable': 'MicrosoftAccessTableDataset', 'PostgreSqlTable': 'PostgreSqlTableDataset', 'MySqlTable': 'MySqlTableDataset', 'OdbcTable': 'OdbcTableDataset', 'InformixTable': 'InformixTableDataset', 'RelationalTable': 'RelationalTableDataset', 'AzureMySqlTable': 'AzureMySqlTableDataset', 'TeradataTable': 'TeradataTableDataset', 'OracleTable': 'OracleTableDataset', 'ODataResource': 'ODataResourceDataset', 'CosmosDbMongoDbApiCollection': 'CosmosDbMongoDbApiCollectionDataset', 'MongoDbV2Collection': 'MongoDbV2CollectionDataset', 'MongoDbCollection': 'MongoDbCollectionDataset', 'FileShare': 'FileShareDataset', 'Office365Table': 'Office365Dataset', 'AzureBlobFSFile': 'AzureBlobFSDataset', 'AzureDataLakeStoreFile': 'AzureDataLakeStoreDataset', 'CommonDataServiceForAppsEntity': 'CommonDataServiceForAppsEntityDataset', 'DynamicsCrmEntity': 'DynamicsCrmEntityDataset', 'DynamicsEntity': 'DynamicsEntityDataset', 'DocumentDbCollection': 'DocumentDbCollectionDataset', 'CustomDataset': 'CustomDataset', 'CassandraTable': 'CassandraTableDataset', 'AzureSqlDWTable': 'AzureSqlDWTableDataset', 'AzureSqlMITable': 'AzureSqlMITableDataset', 'AzureSqlTable': 'AzureSqlTableDataset', 'AzureTable': 'AzureTableDataset', 'AzureBlob': 'AzureBlobDataset', 'Binary': 'BinaryDataset', 'DelimitedText': 'DelimitedTextDataset', 'Parquet': 'ParquetDataset', 'Avro': 'AvroDataset', 'AmazonS3Object': 'AmazonS3Dataset'}
}
def __init__(self, *, linked_service_name, additional_properties=None, description: str=None, structure=None, schema=None, parameters=None, annotations=None, folder=None, **kwargs) -> None:
diff --git a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/linked_service.py b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/linked_service.py
index 6a11f632875d..2778a33fbb5a 100644
--- a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/linked_service.py
+++ b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/linked_service.py
@@ -28,14 +28,14 @@ class LinkedService(Model):
XeroLinkedService, SquareLinkedService, SparkLinkedService,
ShopifyLinkedService, ServiceNowLinkedService, QuickBooksLinkedService,
PrestoLinkedService, PhoenixLinkedService, PaypalLinkedService,
- MarketoLinkedService, MariaDBLinkedService, MagentoLinkedService,
- JiraLinkedService, ImpalaLinkedService, HubspotLinkedService,
- HiveLinkedService, HBaseLinkedService, GreenplumLinkedService,
- GoogleBigQueryLinkedService, EloquaLinkedService, DrillLinkedService,
- CouchbaseLinkedService, ConcurLinkedService, AzurePostgreSqlLinkedService,
- AmazonMWSLinkedService, SapHanaLinkedService, SapBWLinkedService,
- SftpServerLinkedService, FtpServerLinkedService, HttpLinkedService,
- AzureSearchLinkedService, CustomDataSourceLinkedService,
+ MarketoLinkedService, AzureMariaDBLinkedService, MariaDBLinkedService,
+ MagentoLinkedService, JiraLinkedService, ImpalaLinkedService,
+ HubspotLinkedService, HiveLinkedService, HBaseLinkedService,
+ GreenplumLinkedService, GoogleBigQueryLinkedService, EloquaLinkedService,
+ DrillLinkedService, CouchbaseLinkedService, ConcurLinkedService,
+ AzurePostgreSqlLinkedService, AmazonMWSLinkedService, SapHanaLinkedService,
+ SapBWLinkedService, SftpServerLinkedService, FtpServerLinkedService,
+ HttpLinkedService, AzureSearchLinkedService, CustomDataSourceLinkedService,
AmazonRedshiftLinkedService, AmazonS3LinkedService,
RestServiceLinkedService, SapOpenHubLinkedService, SapEccLinkedService,
SapCloudForCustomerLinkedService, SalesforceServiceCloudLinkedService,
@@ -89,7 +89,7 @@ class LinkedService(Model):
}
_subtype_map = {
- 'type': {'AzureFunction': 'AzureFunctionLinkedService', 'AzureDataExplorer': 'AzureDataExplorerLinkedService', 'SapTable': 'SapTableLinkedService', 'GoogleAdWords': 'GoogleAdWordsLinkedService', 'OracleServiceCloud': 'OracleServiceCloudLinkedService', 'DynamicsAX': 'DynamicsAXLinkedService', 'Responsys': 'ResponsysLinkedService', 'AzureDatabricks': 'AzureDatabricksLinkedService', 'AzureDataLakeAnalytics': 'AzureDataLakeAnalyticsLinkedService', 'HDInsightOnDemand': 'HDInsightOnDemandLinkedService', 'SalesforceMarketingCloud': 'SalesforceMarketingCloudLinkedService', 'Netezza': 'NetezzaLinkedService', 'Vertica': 'VerticaLinkedService', 'Zoho': 'ZohoLinkedService', 'Xero': 'XeroLinkedService', 'Square': 'SquareLinkedService', 'Spark': 'SparkLinkedService', 'Shopify': 'ShopifyLinkedService', 'ServiceNow': 'ServiceNowLinkedService', 'QuickBooks': 'QuickBooksLinkedService', 'Presto': 'PrestoLinkedService', 'Phoenix': 'PhoenixLinkedService', 'Paypal': 'PaypalLinkedService', 'Marketo': 'MarketoLinkedService', 'MariaDB': 'MariaDBLinkedService', 'Magento': 'MagentoLinkedService', 'Jira': 'JiraLinkedService', 'Impala': 'ImpalaLinkedService', 'Hubspot': 'HubspotLinkedService', 'Hive': 'HiveLinkedService', 'HBase': 'HBaseLinkedService', 'Greenplum': 'GreenplumLinkedService', 'GoogleBigQuery': 'GoogleBigQueryLinkedService', 'Eloqua': 'EloquaLinkedService', 'Drill': 'DrillLinkedService', 'Couchbase': 'CouchbaseLinkedService', 'Concur': 'ConcurLinkedService', 'AzurePostgreSql': 'AzurePostgreSqlLinkedService', 'AmazonMWS': 'AmazonMWSLinkedService', 'SapHana': 'SapHanaLinkedService', 'SapBW': 'SapBWLinkedService', 'Sftp': 'SftpServerLinkedService', 'FtpServer': 'FtpServerLinkedService', 'HttpServer': 'HttpLinkedService', 'AzureSearch': 'AzureSearchLinkedService', 'CustomDataSource': 'CustomDataSourceLinkedService', 'AmazonRedshift': 'AmazonRedshiftLinkedService', 'AmazonS3': 'AmazonS3LinkedService', 'RestService': 'RestServiceLinkedService', 'SapOpenHub': 'SapOpenHubLinkedService', 'SapEcc': 'SapEccLinkedService', 'SapCloudForCustomer': 'SapCloudForCustomerLinkedService', 'SalesforceServiceCloud': 'SalesforceServiceCloudLinkedService', 'Salesforce': 'SalesforceLinkedService', 'Office365': 'Office365LinkedService', 'AzureBlobFS': 'AzureBlobFSLinkedService', 'AzureDataLakeStore': 'AzureDataLakeStoreLinkedService', 'CosmosDbMongoDbApi': 'CosmosDbMongoDbApiLinkedService', 'MongoDbV2': 'MongoDbV2LinkedService', 'MongoDb': 'MongoDbLinkedService', 'Cassandra': 'CassandraLinkedService', 'Web': 'WebLinkedService', 'OData': 'ODataLinkedService', 'Hdfs': 'HdfsLinkedService', 'MicrosoftAccess': 'MicrosoftAccessLinkedService', 'Informix': 'InformixLinkedService', 'Odbc': 'OdbcLinkedService', 'AzureML': 'AzureMLLinkedService', 'Teradata': 'TeradataLinkedService', 'Db2': 'Db2LinkedService', 'Sybase': 'SybaseLinkedService', 'PostgreSql': 'PostgreSqlLinkedService', 'MySql': 'MySqlLinkedService', 'AzureMySql': 'AzureMySqlLinkedService', 'Oracle': 'OracleLinkedService', 'FileServer': 'FileServerLinkedService', 'HDInsight': 'HDInsightLinkedService', 'CommonDataServiceForApps': 'CommonDataServiceForAppsLinkedService', 'DynamicsCrm': 'DynamicsCrmLinkedService', 'Dynamics': 'DynamicsLinkedService', 'CosmosDb': 'CosmosDbLinkedService', 'AzureKeyVault': 'AzureKeyVaultLinkedService', 'AzureBatch': 'AzureBatchLinkedService', 'AzureSqlMI': 'AzureSqlMILinkedService', 'AzureSqlDatabase': 'AzureSqlDatabaseLinkedService', 'SqlServer': 'SqlServerLinkedService', 'AzureSqlDW': 'AzureSqlDWLinkedService', 'AzureTableStorage': 'AzureTableStorageLinkedService', 'AzureBlobStorage': 'AzureBlobStorageLinkedService', 'AzureStorage': 'AzureStorageLinkedService'}
+ 'type': {'AzureFunction': 'AzureFunctionLinkedService', 'AzureDataExplorer': 'AzureDataExplorerLinkedService', 'SapTable': 'SapTableLinkedService', 'GoogleAdWords': 'GoogleAdWordsLinkedService', 'OracleServiceCloud': 'OracleServiceCloudLinkedService', 'DynamicsAX': 'DynamicsAXLinkedService', 'Responsys': 'ResponsysLinkedService', 'AzureDatabricks': 'AzureDatabricksLinkedService', 'AzureDataLakeAnalytics': 'AzureDataLakeAnalyticsLinkedService', 'HDInsightOnDemand': 'HDInsightOnDemandLinkedService', 'SalesforceMarketingCloud': 'SalesforceMarketingCloudLinkedService', 'Netezza': 'NetezzaLinkedService', 'Vertica': 'VerticaLinkedService', 'Zoho': 'ZohoLinkedService', 'Xero': 'XeroLinkedService', 'Square': 'SquareLinkedService', 'Spark': 'SparkLinkedService', 'Shopify': 'ShopifyLinkedService', 'ServiceNow': 'ServiceNowLinkedService', 'QuickBooks': 'QuickBooksLinkedService', 'Presto': 'PrestoLinkedService', 'Phoenix': 'PhoenixLinkedService', 'Paypal': 'PaypalLinkedService', 'Marketo': 'MarketoLinkedService', 'AzureMariaDB': 'AzureMariaDBLinkedService', 'MariaDB': 'MariaDBLinkedService', 'Magento': 'MagentoLinkedService', 'Jira': 'JiraLinkedService', 'Impala': 'ImpalaLinkedService', 'Hubspot': 'HubspotLinkedService', 'Hive': 'HiveLinkedService', 'HBase': 'HBaseLinkedService', 'Greenplum': 'GreenplumLinkedService', 'GoogleBigQuery': 'GoogleBigQueryLinkedService', 'Eloqua': 'EloquaLinkedService', 'Drill': 'DrillLinkedService', 'Couchbase': 'CouchbaseLinkedService', 'Concur': 'ConcurLinkedService', 'AzurePostgreSql': 'AzurePostgreSqlLinkedService', 'AmazonMWS': 'AmazonMWSLinkedService', 'SapHana': 'SapHanaLinkedService', 'SapBW': 'SapBWLinkedService', 'Sftp': 'SftpServerLinkedService', 'FtpServer': 'FtpServerLinkedService', 'HttpServer': 'HttpLinkedService', 'AzureSearch': 'AzureSearchLinkedService', 'CustomDataSource': 'CustomDataSourceLinkedService', 'AmazonRedshift': 'AmazonRedshiftLinkedService', 'AmazonS3': 'AmazonS3LinkedService', 'RestService': 'RestServiceLinkedService', 'SapOpenHub': 'SapOpenHubLinkedService', 'SapEcc': 'SapEccLinkedService', 'SapCloudForCustomer': 'SapCloudForCustomerLinkedService', 'SalesforceServiceCloud': 'SalesforceServiceCloudLinkedService', 'Salesforce': 'SalesforceLinkedService', 'Office365': 'Office365LinkedService', 'AzureBlobFS': 'AzureBlobFSLinkedService', 'AzureDataLakeStore': 'AzureDataLakeStoreLinkedService', 'CosmosDbMongoDbApi': 'CosmosDbMongoDbApiLinkedService', 'MongoDbV2': 'MongoDbV2LinkedService', 'MongoDb': 'MongoDbLinkedService', 'Cassandra': 'CassandraLinkedService', 'Web': 'WebLinkedService', 'OData': 'ODataLinkedService', 'Hdfs': 'HdfsLinkedService', 'MicrosoftAccess': 'MicrosoftAccessLinkedService', 'Informix': 'InformixLinkedService', 'Odbc': 'OdbcLinkedService', 'AzureML': 'AzureMLLinkedService', 'Teradata': 'TeradataLinkedService', 'Db2': 'Db2LinkedService', 'Sybase': 'SybaseLinkedService', 'PostgreSql': 'PostgreSqlLinkedService', 'MySql': 'MySqlLinkedService', 'AzureMySql': 'AzureMySqlLinkedService', 'Oracle': 'OracleLinkedService', 'FileServer': 'FileServerLinkedService', 'HDInsight': 'HDInsightLinkedService', 'CommonDataServiceForApps': 'CommonDataServiceForAppsLinkedService', 'DynamicsCrm': 'DynamicsCrmLinkedService', 'Dynamics': 'DynamicsLinkedService', 'CosmosDb': 'CosmosDbLinkedService', 'AzureKeyVault': 'AzureKeyVaultLinkedService', 'AzureBatch': 'AzureBatchLinkedService', 'AzureSqlMI': 'AzureSqlMILinkedService', 'AzureSqlDatabase': 'AzureSqlDatabaseLinkedService', 'SqlServer': 'SqlServerLinkedService', 'AzureSqlDW': 'AzureSqlDWLinkedService', 'AzureTableStorage': 'AzureTableStorageLinkedService', 'AzureBlobStorage': 'AzureBlobStorageLinkedService', 'AzureStorage': 'AzureStorageLinkedService'}
}
def __init__(self, **kwargs):
diff --git a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/linked_service_py3.py b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/linked_service_py3.py
index 8fa23951db00..2b3e475c3075 100644
--- a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/linked_service_py3.py
+++ b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/linked_service_py3.py
@@ -28,14 +28,14 @@ class LinkedService(Model):
XeroLinkedService, SquareLinkedService, SparkLinkedService,
ShopifyLinkedService, ServiceNowLinkedService, QuickBooksLinkedService,
PrestoLinkedService, PhoenixLinkedService, PaypalLinkedService,
- MarketoLinkedService, MariaDBLinkedService, MagentoLinkedService,
- JiraLinkedService, ImpalaLinkedService, HubspotLinkedService,
- HiveLinkedService, HBaseLinkedService, GreenplumLinkedService,
- GoogleBigQueryLinkedService, EloquaLinkedService, DrillLinkedService,
- CouchbaseLinkedService, ConcurLinkedService, AzurePostgreSqlLinkedService,
- AmazonMWSLinkedService, SapHanaLinkedService, SapBWLinkedService,
- SftpServerLinkedService, FtpServerLinkedService, HttpLinkedService,
- AzureSearchLinkedService, CustomDataSourceLinkedService,
+ MarketoLinkedService, AzureMariaDBLinkedService, MariaDBLinkedService,
+ MagentoLinkedService, JiraLinkedService, ImpalaLinkedService,
+ HubspotLinkedService, HiveLinkedService, HBaseLinkedService,
+ GreenplumLinkedService, GoogleBigQueryLinkedService, EloquaLinkedService,
+ DrillLinkedService, CouchbaseLinkedService, ConcurLinkedService,
+ AzurePostgreSqlLinkedService, AmazonMWSLinkedService, SapHanaLinkedService,
+ SapBWLinkedService, SftpServerLinkedService, FtpServerLinkedService,
+ HttpLinkedService, AzureSearchLinkedService, CustomDataSourceLinkedService,
AmazonRedshiftLinkedService, AmazonS3LinkedService,
RestServiceLinkedService, SapOpenHubLinkedService, SapEccLinkedService,
SapCloudForCustomerLinkedService, SalesforceServiceCloudLinkedService,
@@ -89,7 +89,7 @@ class LinkedService(Model):
}
_subtype_map = {
- 'type': {'AzureFunction': 'AzureFunctionLinkedService', 'AzureDataExplorer': 'AzureDataExplorerLinkedService', 'SapTable': 'SapTableLinkedService', 'GoogleAdWords': 'GoogleAdWordsLinkedService', 'OracleServiceCloud': 'OracleServiceCloudLinkedService', 'DynamicsAX': 'DynamicsAXLinkedService', 'Responsys': 'ResponsysLinkedService', 'AzureDatabricks': 'AzureDatabricksLinkedService', 'AzureDataLakeAnalytics': 'AzureDataLakeAnalyticsLinkedService', 'HDInsightOnDemand': 'HDInsightOnDemandLinkedService', 'SalesforceMarketingCloud': 'SalesforceMarketingCloudLinkedService', 'Netezza': 'NetezzaLinkedService', 'Vertica': 'VerticaLinkedService', 'Zoho': 'ZohoLinkedService', 'Xero': 'XeroLinkedService', 'Square': 'SquareLinkedService', 'Spark': 'SparkLinkedService', 'Shopify': 'ShopifyLinkedService', 'ServiceNow': 'ServiceNowLinkedService', 'QuickBooks': 'QuickBooksLinkedService', 'Presto': 'PrestoLinkedService', 'Phoenix': 'PhoenixLinkedService', 'Paypal': 'PaypalLinkedService', 'Marketo': 'MarketoLinkedService', 'MariaDB': 'MariaDBLinkedService', 'Magento': 'MagentoLinkedService', 'Jira': 'JiraLinkedService', 'Impala': 'ImpalaLinkedService', 'Hubspot': 'HubspotLinkedService', 'Hive': 'HiveLinkedService', 'HBase': 'HBaseLinkedService', 'Greenplum': 'GreenplumLinkedService', 'GoogleBigQuery': 'GoogleBigQueryLinkedService', 'Eloqua': 'EloquaLinkedService', 'Drill': 'DrillLinkedService', 'Couchbase': 'CouchbaseLinkedService', 'Concur': 'ConcurLinkedService', 'AzurePostgreSql': 'AzurePostgreSqlLinkedService', 'AmazonMWS': 'AmazonMWSLinkedService', 'SapHana': 'SapHanaLinkedService', 'SapBW': 'SapBWLinkedService', 'Sftp': 'SftpServerLinkedService', 'FtpServer': 'FtpServerLinkedService', 'HttpServer': 'HttpLinkedService', 'AzureSearch': 'AzureSearchLinkedService', 'CustomDataSource': 'CustomDataSourceLinkedService', 'AmazonRedshift': 'AmazonRedshiftLinkedService', 'AmazonS3': 'AmazonS3LinkedService', 'RestService': 'RestServiceLinkedService', 'SapOpenHub': 'SapOpenHubLinkedService', 'SapEcc': 'SapEccLinkedService', 'SapCloudForCustomer': 'SapCloudForCustomerLinkedService', 'SalesforceServiceCloud': 'SalesforceServiceCloudLinkedService', 'Salesforce': 'SalesforceLinkedService', 'Office365': 'Office365LinkedService', 'AzureBlobFS': 'AzureBlobFSLinkedService', 'AzureDataLakeStore': 'AzureDataLakeStoreLinkedService', 'CosmosDbMongoDbApi': 'CosmosDbMongoDbApiLinkedService', 'MongoDbV2': 'MongoDbV2LinkedService', 'MongoDb': 'MongoDbLinkedService', 'Cassandra': 'CassandraLinkedService', 'Web': 'WebLinkedService', 'OData': 'ODataLinkedService', 'Hdfs': 'HdfsLinkedService', 'MicrosoftAccess': 'MicrosoftAccessLinkedService', 'Informix': 'InformixLinkedService', 'Odbc': 'OdbcLinkedService', 'AzureML': 'AzureMLLinkedService', 'Teradata': 'TeradataLinkedService', 'Db2': 'Db2LinkedService', 'Sybase': 'SybaseLinkedService', 'PostgreSql': 'PostgreSqlLinkedService', 'MySql': 'MySqlLinkedService', 'AzureMySql': 'AzureMySqlLinkedService', 'Oracle': 'OracleLinkedService', 'FileServer': 'FileServerLinkedService', 'HDInsight': 'HDInsightLinkedService', 'CommonDataServiceForApps': 'CommonDataServiceForAppsLinkedService', 'DynamicsCrm': 'DynamicsCrmLinkedService', 'Dynamics': 'DynamicsLinkedService', 'CosmosDb': 'CosmosDbLinkedService', 'AzureKeyVault': 'AzureKeyVaultLinkedService', 'AzureBatch': 'AzureBatchLinkedService', 'AzureSqlMI': 'AzureSqlMILinkedService', 'AzureSqlDatabase': 'AzureSqlDatabaseLinkedService', 'SqlServer': 'SqlServerLinkedService', 'AzureSqlDW': 'AzureSqlDWLinkedService', 'AzureTableStorage': 'AzureTableStorageLinkedService', 'AzureBlobStorage': 'AzureBlobStorageLinkedService', 'AzureStorage': 'AzureStorageLinkedService'}
+ 'type': {'AzureFunction': 'AzureFunctionLinkedService', 'AzureDataExplorer': 'AzureDataExplorerLinkedService', 'SapTable': 'SapTableLinkedService', 'GoogleAdWords': 'GoogleAdWordsLinkedService', 'OracleServiceCloud': 'OracleServiceCloudLinkedService', 'DynamicsAX': 'DynamicsAXLinkedService', 'Responsys': 'ResponsysLinkedService', 'AzureDatabricks': 'AzureDatabricksLinkedService', 'AzureDataLakeAnalytics': 'AzureDataLakeAnalyticsLinkedService', 'HDInsightOnDemand': 'HDInsightOnDemandLinkedService', 'SalesforceMarketingCloud': 'SalesforceMarketingCloudLinkedService', 'Netezza': 'NetezzaLinkedService', 'Vertica': 'VerticaLinkedService', 'Zoho': 'ZohoLinkedService', 'Xero': 'XeroLinkedService', 'Square': 'SquareLinkedService', 'Spark': 'SparkLinkedService', 'Shopify': 'ShopifyLinkedService', 'ServiceNow': 'ServiceNowLinkedService', 'QuickBooks': 'QuickBooksLinkedService', 'Presto': 'PrestoLinkedService', 'Phoenix': 'PhoenixLinkedService', 'Paypal': 'PaypalLinkedService', 'Marketo': 'MarketoLinkedService', 'AzureMariaDB': 'AzureMariaDBLinkedService', 'MariaDB': 'MariaDBLinkedService', 'Magento': 'MagentoLinkedService', 'Jira': 'JiraLinkedService', 'Impala': 'ImpalaLinkedService', 'Hubspot': 'HubspotLinkedService', 'Hive': 'HiveLinkedService', 'HBase': 'HBaseLinkedService', 'Greenplum': 'GreenplumLinkedService', 'GoogleBigQuery': 'GoogleBigQueryLinkedService', 'Eloqua': 'EloquaLinkedService', 'Drill': 'DrillLinkedService', 'Couchbase': 'CouchbaseLinkedService', 'Concur': 'ConcurLinkedService', 'AzurePostgreSql': 'AzurePostgreSqlLinkedService', 'AmazonMWS': 'AmazonMWSLinkedService', 'SapHana': 'SapHanaLinkedService', 'SapBW': 'SapBWLinkedService', 'Sftp': 'SftpServerLinkedService', 'FtpServer': 'FtpServerLinkedService', 'HttpServer': 'HttpLinkedService', 'AzureSearch': 'AzureSearchLinkedService', 'CustomDataSource': 'CustomDataSourceLinkedService', 'AmazonRedshift': 'AmazonRedshiftLinkedService', 'AmazonS3': 'AmazonS3LinkedService', 'RestService': 'RestServiceLinkedService', 'SapOpenHub': 'SapOpenHubLinkedService', 'SapEcc': 'SapEccLinkedService', 'SapCloudForCustomer': 'SapCloudForCustomerLinkedService', 'SalesforceServiceCloud': 'SalesforceServiceCloudLinkedService', 'Salesforce': 'SalesforceLinkedService', 'Office365': 'Office365LinkedService', 'AzureBlobFS': 'AzureBlobFSLinkedService', 'AzureDataLakeStore': 'AzureDataLakeStoreLinkedService', 'CosmosDbMongoDbApi': 'CosmosDbMongoDbApiLinkedService', 'MongoDbV2': 'MongoDbV2LinkedService', 'MongoDb': 'MongoDbLinkedService', 'Cassandra': 'CassandraLinkedService', 'Web': 'WebLinkedService', 'OData': 'ODataLinkedService', 'Hdfs': 'HdfsLinkedService', 'MicrosoftAccess': 'MicrosoftAccessLinkedService', 'Informix': 'InformixLinkedService', 'Odbc': 'OdbcLinkedService', 'AzureML': 'AzureMLLinkedService', 'Teradata': 'TeradataLinkedService', 'Db2': 'Db2LinkedService', 'Sybase': 'SybaseLinkedService', 'PostgreSql': 'PostgreSqlLinkedService', 'MySql': 'MySqlLinkedService', 'AzureMySql': 'AzureMySqlLinkedService', 'Oracle': 'OracleLinkedService', 'FileServer': 'FileServerLinkedService', 'HDInsight': 'HDInsightLinkedService', 'CommonDataServiceForApps': 'CommonDataServiceForAppsLinkedService', 'DynamicsCrm': 'DynamicsCrmLinkedService', 'Dynamics': 'DynamicsLinkedService', 'CosmosDb': 'CosmosDbLinkedService', 'AzureKeyVault': 'AzureKeyVaultLinkedService', 'AzureBatch': 'AzureBatchLinkedService', 'AzureSqlMI': 'AzureSqlMILinkedService', 'AzureSqlDatabase': 'AzureSqlDatabaseLinkedService', 'SqlServer': 'SqlServerLinkedService', 'AzureSqlDW': 'AzureSqlDWLinkedService', 'AzureTableStorage': 'AzureTableStorageLinkedService', 'AzureBlobStorage': 'AzureBlobStorageLinkedService', 'AzureStorage': 'AzureStorageLinkedService'}
}
def __init__(self, *, additional_properties=None, connect_via=None, description: str=None, parameters=None, annotations=None, **kwargs) -> None:
diff --git a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/office365_source.py b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/office365_source.py
index 8dff7a01ccaa..de19818aaa7f 100644
--- a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/office365_source.py
+++ b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/office365_source.py
@@ -33,6 +33,22 @@ class Office365Source(CopySource):
:type max_concurrent_connections: object
:param type: Required. Constant filled by server.
:type type: str
+ :param allowed_groups: The groups containing all the users. Type: array of
+ strings (or Expression with resultType array of strings).
+ :type allowed_groups: object
+ :param user_scope_filter_uri: The user scope uri. Type: string (or
+ Expression with resultType string).
+ :type user_scope_filter_uri: object
+ :param date_filter_column: The Column to apply the and . Type: string (or
+ Expression with resultType string).
+ :type date_filter_column: object
+ :param start_time: Start time of the requested range for this dataset.
+ Type: string (or Expression with resultType string).
+ :type start_time: object
+ :param end_time: End time of the requested range for this dataset. Type:
+ string (or Expression with resultType string).
+ :type end_time: object
"""
_validation = {
@@ -45,8 +61,18 @@ class Office365Source(CopySource):
'source_retry_wait': {'key': 'sourceRetryWait', 'type': 'object'},
'max_concurrent_connections': {'key': 'maxConcurrentConnections', 'type': 'object'},
'type': {'key': 'type', 'type': 'str'},
+ 'allowed_groups': {'key': 'allowedGroups', 'type': 'object'},
+ 'user_scope_filter_uri': {'key': 'userScopeFilterUri', 'type': 'object'},
+ 'date_filter_column': {'key': 'dateFilterColumn', 'type': 'object'},
+ 'start_time': {'key': 'startTime', 'type': 'object'},
+ 'end_time': {'key': 'endTime', 'type': 'object'},
}
def __init__(self, **kwargs):
super(Office365Source, self).__init__(**kwargs)
+ self.allowed_groups = kwargs.get('allowed_groups', None)
+ self.user_scope_filter_uri = kwargs.get('user_scope_filter_uri', None)
+ self.date_filter_column = kwargs.get('date_filter_column', None)
+ self.start_time = kwargs.get('start_time', None)
+ self.end_time = kwargs.get('end_time', None)
self.type = 'Office365Source'
diff --git a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/office365_source_py3.py b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/office365_source_py3.py
index 25ae6340ae01..fc2c4b095904 100644
--- a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/office365_source_py3.py
+++ b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/office365_source_py3.py
@@ -33,6 +33,22 @@ class Office365Source(CopySource):
:type max_concurrent_connections: object
:param type: Required. Constant filled by server.
:type type: str
+ :param allowed_groups: The groups containing all the users. Type: array of
+ strings (or Expression with resultType array of strings).
+ :type allowed_groups: object
+ :param user_scope_filter_uri: The user scope uri. Type: string (or
+ Expression with resultType string).
+ :type user_scope_filter_uri: object
+ :param date_filter_column: The Column to apply the and . Type: string (or
+ Expression with resultType string).
+ :type date_filter_column: object
+ :param start_time: Start time of the requested range for this dataset.
+ Type: string (or Expression with resultType string).
+ :type start_time: object
+ :param end_time: End time of the requested range for this dataset. Type:
+ string (or Expression with resultType string).
+ :type end_time: object
"""
_validation = {
@@ -45,8 +61,18 @@ class Office365Source(CopySource):
'source_retry_wait': {'key': 'sourceRetryWait', 'type': 'object'},
'max_concurrent_connections': {'key': 'maxConcurrentConnections', 'type': 'object'},
'type': {'key': 'type', 'type': 'str'},
+ 'allowed_groups': {'key': 'allowedGroups', 'type': 'object'},
+ 'user_scope_filter_uri': {'key': 'userScopeFilterUri', 'type': 'object'},
+ 'date_filter_column': {'key': 'dateFilterColumn', 'type': 'object'},
+ 'start_time': {'key': 'startTime', 'type': 'object'},
+ 'end_time': {'key': 'endTime', 'type': 'object'},
}
- def __init__(self, *, additional_properties=None, source_retry_count=None, source_retry_wait=None, max_concurrent_connections=None, **kwargs) -> None:
+ def __init__(self, *, additional_properties=None, source_retry_count=None, source_retry_wait=None, max_concurrent_connections=None, allowed_groups=None, user_scope_filter_uri=None, date_filter_column=None, start_time=None, end_time=None, **kwargs) -> None:
super(Office365Source, 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.allowed_groups = allowed_groups
+ self.user_scope_filter_uri = user_scope_filter_uri
+ self.date_filter_column = date_filter_column
+ self.start_time = start_time
+ self.end_time = end_time
self.type = 'Office365Source'
diff --git a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/rest_source.py b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/rest_source.py
index a8c7efca21e3..f32d4d67e427 100644
--- a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/rest_source.py
+++ b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/rest_source.py
@@ -33,6 +33,19 @@ class RestSource(CopySource):
:type max_concurrent_connections: object
:param type: Required. Constant filled by server.
:type type: str
+ :param request_method: The HTTP method used to call the RESTful API. The
+ default is GET. Type: string (or Expression with resultType string).
+ :type request_method: object
+ :param request_body: The HTTP request body to the RESTful API if
+ requestMethod is POST. Type: string (or Expression with resultType
+ string).
+ :type request_body: object
+ :param additional_headers: The additional HTTP headers in the request to
+ the RESTful API. Type: string (or Expression with resultType string).
+ :type additional_headers: object
+ :param pagination_rules: The pagination rules to compose next page
+ requests. Type: string (or Expression with resultType string).
+ :type pagination_rules: object
:param http_request_timeout: The timeout (TimeSpan) to get an HTTP
response. It is the timeout to get a response, not the timeout to read
response data. Default value: 00:01:40. Type: string (or Expression with
@@ -54,12 +67,20 @@ class RestSource(CopySource):
'source_retry_wait': {'key': 'sourceRetryWait', 'type': 'object'},
'max_concurrent_connections': {'key': 'maxConcurrentConnections', 'type': 'object'},
'type': {'key': 'type', 'type': 'str'},
+ 'request_method': {'key': 'requestMethod', 'type': 'object'},
+ 'request_body': {'key': 'requestBody', 'type': 'object'},
+ 'additional_headers': {'key': 'additionalHeaders', 'type': 'object'},
+ 'pagination_rules': {'key': 'paginationRules', 'type': 'object'},
'http_request_timeout': {'key': 'httpRequestTimeout', 'type': 'object'},
'request_interval': {'key': 'requestInterval', 'type': 'object'},
}
def __init__(self, **kwargs):
super(RestSource, self).__init__(**kwargs)
+ self.request_method = kwargs.get('request_method', None)
+ self.request_body = kwargs.get('request_body', None)
+ self.additional_headers = kwargs.get('additional_headers', None)
+ self.pagination_rules = kwargs.get('pagination_rules', None)
self.http_request_timeout = kwargs.get('http_request_timeout', None)
self.request_interval = kwargs.get('request_interval', None)
self.type = 'RestSource'
diff --git a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/rest_source_py3.py b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/rest_source_py3.py
index cf0878e050e0..5fcbb2f7a76d 100644
--- a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/rest_source_py3.py
+++ b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/rest_source_py3.py
@@ -33,6 +33,19 @@ class RestSource(CopySource):
:type max_concurrent_connections: object
:param type: Required. Constant filled by server.
:type type: str
+ :param request_method: The HTTP method used to call the RESTful API. The
+ default is GET. Type: string (or Expression with resultType string).
+ :type request_method: object
+ :param request_body: The HTTP request body to the RESTful API if
+ requestMethod is POST. Type: string (or Expression with resultType
+ string).
+ :type request_body: object
+ :param additional_headers: The additional HTTP headers in the request to
+ the RESTful API. Type: string (or Expression with resultType string).
+ :type additional_headers: object
+ :param pagination_rules: The pagination rules to compose next page
+ requests. Type: string (or Expression with resultType string).
+ :type pagination_rules: object
:param http_request_timeout: The timeout (TimeSpan) to get an HTTP
response. It is the timeout to get a response, not the timeout to read
response data. Default value: 00:01:40. Type: string (or Expression with
@@ -54,12 +67,20 @@ class RestSource(CopySource):
'source_retry_wait': {'key': 'sourceRetryWait', 'type': 'object'},
'max_concurrent_connections': {'key': 'maxConcurrentConnections', 'type': 'object'},
'type': {'key': 'type', 'type': 'str'},
+ 'request_method': {'key': 'requestMethod', 'type': 'object'},
+ 'request_body': {'key': 'requestBody', 'type': 'object'},
+ 'additional_headers': {'key': 'additionalHeaders', 'type': 'object'},
+ 'pagination_rules': {'key': 'paginationRules', 'type': 'object'},
'http_request_timeout': {'key': 'httpRequestTimeout', 'type': 'object'},
'request_interval': {'key': 'requestInterval', 'type': 'object'},
}
- def __init__(self, *, additional_properties=None, source_retry_count=None, source_retry_wait=None, max_concurrent_connections=None, http_request_timeout=None, request_interval=None, **kwargs) -> None:
+ def __init__(self, *, additional_properties=None, source_retry_count=None, source_retry_wait=None, max_concurrent_connections=None, request_method=None, request_body=None, additional_headers=None, pagination_rules=None, http_request_timeout=None, request_interval=None, **kwargs) -> None:
super(RestSource, 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.request_method = request_method
+ self.request_body = request_body
+ self.additional_headers = additional_headers
+ self.pagination_rules = pagination_rules
self.http_request_timeout = http_request_timeout
self.request_interval = request_interval
self.type = 'RestSource'
diff --git a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/sap_open_hub_source.py b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/sap_open_hub_source.py
index ea98207a18cf..d6dcbda60e36 100644
--- a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/sap_open_hub_source.py
+++ b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/sap_open_hub_source.py
@@ -34,6 +34,15 @@ class SapOpenHubSource(CopySource):
:type max_concurrent_connections: object
:param type: Required. Constant filled by server.
:type type: str
+ :param exclude_last_request: Whether to exclude the records of the last
+ request. The default value is true. Type: boolean (or Expression with
+ resultType boolean).
+ :type exclude_last_request: object
+ :param base_request_id: The ID of request for delta loading. Once it is
+ set, only data with requestId larger than the value of this property will
+ be retrieved. The default value is 0. Type: integer (or Expression with
+ resultType integer ).
+ :type base_request_id: object
"""
_validation = {
@@ -46,8 +55,12 @@ class SapOpenHubSource(CopySource):
'source_retry_wait': {'key': 'sourceRetryWait', 'type': 'object'},
'max_concurrent_connections': {'key': 'maxConcurrentConnections', 'type': 'object'},
'type': {'key': 'type', 'type': 'str'},
+ 'exclude_last_request': {'key': 'excludeLastRequest', 'type': 'object'},
+ 'base_request_id': {'key': 'baseRequestId', 'type': 'object'},
}
def __init__(self, **kwargs):
super(SapOpenHubSource, self).__init__(**kwargs)
+ self.exclude_last_request = kwargs.get('exclude_last_request', None)
+ self.base_request_id = kwargs.get('base_request_id', None)
self.type = 'SapOpenHubSource'
diff --git a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/sap_open_hub_source_py3.py b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/sap_open_hub_source_py3.py
index 9cfa4e5243b6..752ffd8554b0 100644
--- a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/sap_open_hub_source_py3.py
+++ b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/sap_open_hub_source_py3.py
@@ -34,6 +34,15 @@ class SapOpenHubSource(CopySource):
:type max_concurrent_connections: object
:param type: Required. Constant filled by server.
:type type: str
+ :param exclude_last_request: Whether to exclude the records of the last
+ request. The default value is true. Type: boolean (or Expression with
+ resultType boolean).
+ :type exclude_last_request: object
+ :param base_request_id: The ID of request for delta loading. Once it is
+ set, only data with requestId larger than the value of this property will
+ be retrieved. The default value is 0. Type: integer (or Expression with
+ resultType integer ).
+ :type base_request_id: object
"""
_validation = {
@@ -46,8 +55,12 @@ class SapOpenHubSource(CopySource):
'source_retry_wait': {'key': 'sourceRetryWait', 'type': 'object'},
'max_concurrent_connections': {'key': 'maxConcurrentConnections', 'type': 'object'},
'type': {'key': 'type', 'type': 'str'},
+ 'exclude_last_request': {'key': 'excludeLastRequest', 'type': 'object'},
+ 'base_request_id': {'key': 'baseRequestId', 'type': 'object'},
}
- def __init__(self, *, additional_properties=None, source_retry_count=None, source_retry_wait=None, max_concurrent_connections=None, **kwargs) -> None:
+ def __init__(self, *, additional_properties=None, source_retry_count=None, source_retry_wait=None, max_concurrent_connections=None, exclude_last_request=None, base_request_id=None, **kwargs) -> None:
super(SapOpenHubSource, 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.exclude_last_request = exclude_last_request
+ self.base_request_id = base_request_id
self.type = 'SapOpenHubSource'
diff --git a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/operations/__init__.py b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/operations/__init__.py
index ffc98f67bed2..826179f5fb63 100644
--- a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/operations/__init__.py
+++ b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/operations/__init__.py
@@ -21,8 +21,8 @@
from .pipeline_runs_operations import PipelineRunsOperations
from .activity_runs_operations import ActivityRunsOperations
from .triggers_operations import TriggersOperations
-from .rerun_triggers_operations import RerunTriggersOperations
from .trigger_runs_operations import TriggerRunsOperations
+from .rerun_triggers_operations import RerunTriggersOperations
__all__ = [
'Operations',
@@ -37,6 +37,6 @@
'PipelineRunsOperations',
'ActivityRunsOperations',
'TriggersOperations',
- 'RerunTriggersOperations',
'TriggerRunsOperations',
+ 'RerunTriggersOperations',
]
diff --git a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/operations/trigger_runs_operations.py b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/operations/trigger_runs_operations.py
index 51e9b0ac37a3..e4e4774ae3bc 100644
--- a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/operations/trigger_runs_operations.py
+++ b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/operations/trigger_runs_operations.py
@@ -37,6 +37,65 @@ def __init__(self, client, config, serializer, deserializer):
self.config = config
+ def rerun(
+ self, resource_group_name, factory_name, trigger_name, run_id, custom_headers=None, raw=False, **operation_config):
+ """Rerun single trigger instance by runId.
+
+ :param resource_group_name: The resource group name.
+ :type resource_group_name: str
+ :param factory_name: The factory name.
+ :type factory_name: str
+ :param trigger_name: The trigger name.
+ :type trigger_name: str
+ :param run_id: The pipeline run identifier.
+ :type run_id: str
+ :param dict custom_headers: headers that will be added to the request
+ :param bool raw: returns the direct response alongside the
+ deserialized response
+ :param operation_config: :ref:`Operation configuration
+ overrides`.
+ :return: None or ClientRawResponse if raw=true
+ :rtype: None or ~msrest.pipeline.ClientRawResponse
+ :raises: :class:`CloudError`
+ """
+ # Construct URL
+ url = self.rerun.metadata['url']
+ path_format_arguments = {
+ 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'),
+ 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
+ 'factoryName': self._serialize.url("factory_name", factory_name, 'str', max_length=63, min_length=3, pattern=r'^[A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$'),
+ 'triggerName': self._serialize.url("trigger_name", trigger_name, 'str', max_length=260, min_length=1, pattern=r'^[A-Za-z0-9_][^<>*#.%&:\\+?/]*$'),
+ 'runId': self._serialize.url("run_id", run_id, 'str')
+ }
+ url = self._client.format_url(url, **path_format_arguments)
+
+ # Construct parameters
+ query_parameters = {}
+ query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str')
+
+ # Construct headers
+ header_parameters = {}
+ if self.config.generate_client_request_id:
+ header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
+ if custom_headers:
+ header_parameters.update(custom_headers)
+ if self.config.accept_language is not None:
+ header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
+
+ # Construct and send request
+ request = self._client.post(url, query_parameters, header_parameters)
+ response = self._client.send(request, stream=False, **operation_config)
+
+ if response.status_code not in [200]:
+ exp = CloudError(response)
+ exp.request_id = response.headers.get('x-ms-request-id')
+ raise exp
+
+ if raw:
+ client_raw_response = ClientRawResponse(None, response)
+ return client_raw_response
+ rerun.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/triggers/{triggerName}/triggerRuns/{runId}/rerun'}
+
def query_by_factory(
self, resource_group_name, factory_name, filter_parameters, custom_headers=None, raw=False, **operation_config):
"""Query trigger runs.