Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/datafactory/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Release History
* Added Managed Identity (MI) authentication support for Azure Files
* Introduced versioning property for better version control
* Implemented Service Principal Certificate Authentication in RestService and SharePointOnlineList Linked
* Fix PostgreSqlV2 missing authenticationType property

1.0.2
* Support new features in ADF
Expand Down
2 changes: 1 addition & 1 deletion src/datafactory/azext_datafactory/manual/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
# regenerated.
# --------------------------------------------------------------------------

VERSION = "1.0.2"
VERSION = "1.0.3"
13 changes: 1 addition & 12 deletions src/datafactory/azext_datafactory/vendored_sdks/__init__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1 @@
# 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.
# --------------------------------------------------------------------------

__path__ = __import__('pkgutil').extend_path(__path__, __name__)
__path__ = __import__("pkgutil").extend_path(__path__, __name__)
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,28 @@
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------
# pylint: disable=wrong-import-position

from ._data_factory_management_client import DataFactoryManagementClient
from typing import TYPE_CHECKING

if TYPE_CHECKING:
from ._patch import * # pylint: disable=unused-wildcard-import

from ._data_factory_management_client import DataFactoryManagementClient # type: ignore
from ._version import VERSION

__version__ = VERSION

try:
from ._patch import __all__ as _patch_all
from ._patch import * # pylint: disable=unused-wildcard-import
from ._patch import *
except ImportError:
_patch_all = []
from ._patch import patch_sdk as _patch_sdk

__all__ = [
"DataFactoryManagementClient",
]
__all__.extend([p for p in _patch_all if p not in __all__])
__all__.extend([p for p in _patch_all if p not in __all__]) # pyright: ignore

_patch_sdk()
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,10 @@
from ._version import VERSION

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


class DataFactoryManagementClientConfiguration: # pylint: disable=too-many-instance-attributes,name-too-long
class DataFactoryManagementClientConfiguration: # pylint: disable=too-many-instance-attributes
"""Configuration for DataFactoryManagementClient.

Note that all parameters used to create this instance are saved as instance
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,10 @@
)

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


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

Expand Down
Loading
Loading