Skip to content

Commit 01d4390

Browse files
authored
[DataFactory]Support new features in ADF 1.0.3 (#8426)
* [DataFactory]Support new features in ADF 1.0.4 * fix * fix * fix
1 parent ede61b7 commit 01d4390

File tree

64 files changed

+2352
-1864
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+2352
-1864
lines changed

src/datafactory/HISTORY.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Release History
77
* Added Managed Identity (MI) authentication support for Azure Files
88
* Introduced versioning property for better version control
99
* Implemented Service Principal Certificate Authentication in RestService and SharePointOnlineList Linked
10+
* Fix PostgreSqlV2 missing authenticationType property
1011

1112
1.0.2
1213
* Support new features in ADF

src/datafactory/azext_datafactory/manual/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
# regenerated.
99
# --------------------------------------------------------------------------
1010

11-
VERSION = "1.0.2"
11+
VERSION = "1.0.3"
Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1 @@
1-
# coding=utf-8
2-
# --------------------------------------------------------------------------
3-
# Copyright (c) Microsoft Corporation. All rights reserved.
4-
# Licensed under the MIT License. See License.txt in the project root for
5-
# license information.
6-
#
7-
# Code generated by Microsoft (R) AutoRest Code Generator.
8-
# Changes may cause incorrect behavior and will be lost if the code is
9-
# regenerated.
10-
# --------------------------------------------------------------------------
11-
12-
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
1+
__path__ = __import__("pkgutil").extend_path(__path__, __name__)

src/datafactory/azext_datafactory/vendored_sdks/datafactory/__init__.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,28 @@
55
# Code generated by Microsoft (R) AutoRest Code Generator.
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
8+
# pylint: disable=wrong-import-position
89

9-
from ._data_factory_management_client import DataFactoryManagementClient
10+
from typing import TYPE_CHECKING
11+
12+
if TYPE_CHECKING:
13+
from ._patch import * # pylint: disable=unused-wildcard-import
14+
15+
from ._data_factory_management_client import DataFactoryManagementClient # type: ignore
1016
from ._version import VERSION
1117

1218
__version__ = VERSION
1319

1420
try:
1521
from ._patch import __all__ as _patch_all
16-
from ._patch import * # pylint: disable=unused-wildcard-import
22+
from ._patch import *
1723
except ImportError:
1824
_patch_all = []
1925
from ._patch import patch_sdk as _patch_sdk
2026

2127
__all__ = [
2228
"DataFactoryManagementClient",
2329
]
24-
__all__.extend([p for p in _patch_all if p not in __all__])
30+
__all__.extend([p for p in _patch_all if p not in __all__]) # pyright: ignore
2531

2632
_patch_sdk()

src/datafactory/azext_datafactory/vendored_sdks/datafactory/_configuration.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@
1414
from ._version import VERSION
1515

1616
if TYPE_CHECKING:
17-
# pylint: disable=unused-import,ungrouped-imports
1817
from azure.core.credentials import TokenCredential
1918

2019

21-
class DataFactoryManagementClientConfiguration: # pylint: disable=too-many-instance-attributes,name-too-long
20+
class DataFactoryManagementClientConfiguration: # pylint: disable=too-many-instance-attributes
2221
"""Configuration for DataFactoryManagementClient.
2322
2423
Note that all parameters used to create this instance are saved as instance

src/datafactory/azext_datafactory/vendored_sdks/datafactory/_data_factory_management_client.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,10 @@
4545
)
4646

4747
if TYPE_CHECKING:
48-
# pylint: disable=unused-import,ungrouped-imports
4948
from azure.core.credentials import TokenCredential
5049

5150

52-
class DataFactoryManagementClient: # pylint: disable=client-accepts-api-version-keyword,too-many-instance-attributes
51+
class DataFactoryManagementClient: # pylint: disable=too-many-instance-attributes
5352
"""The Azure Data Factory V2 management API provides a RESTful set of web services that interact
5453
with Azure Data Factory V2 services.
5554

0 commit comments

Comments
 (0)