Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoRelease] t2-datafactory-2024-11-15-86308(can only be merged by SDK owner) #38563

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
32 changes: 32 additions & 0 deletions sdk/datafactory/azure-mgmt-datafactory/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
# Release History

## 9.1.0 (2024-12-22)

### Features Added

- Model `AzurePostgreSqlLinkedService` added property `server`
- Model `AzurePostgreSqlLinkedService` added property `port`
- Model `AzurePostgreSqlLinkedService` added property `username`
- Model `AzurePostgreSqlLinkedService` added property `database`
- Model `AzurePostgreSqlLinkedService` added property `ssl_mode`
- Model `AzurePostgreSqlLinkedService` added property `timeout`
- Model `AzurePostgreSqlLinkedService` added property `command_timeout`
- Model `AzurePostgreSqlLinkedService` added property `trust_server_certificate`
- Model `AzurePostgreSqlLinkedService` added property `read_buffer_size`
- Model `AzurePostgreSqlLinkedService` added property `timezone`
- Model `AzurePostgreSqlLinkedService` added property `encoding`
- Model `MariaDBLinkedService` added property `ssl_mode`
- Model `MariaDBLinkedService` added property `use_system_trust_store`
- Model `MySqlLinkedService` added property `allow_zero_date_time`
- Model `MySqlLinkedService` added property `connection_timeout`
- Model `MySqlLinkedService` added property `convert_zero_date_time`
- Model `MySqlLinkedService` added property `guid_format`
- Model `MySqlLinkedService` added property `ssl_cert`
- Model `MySqlLinkedService` added property `ssl_key`
- Model `MySqlLinkedService` added property `treat_tiny_as_boolean`
- Model `PostgreSqlV2LinkedService` added property `authentication_type`
- Model `SalesforceV2Source` added property `page_size`
- Model `ServiceNowV2Source` added property `page_size`
- Model `SnowflakeV2LinkedService` added property `host`
- Added model `IcebergDataset`
- Added model `IcebergSink`
- Added model `IcebergWriteSettings`

## 9.0.0 (2024-08-19)

### Features Added
Expand Down
6 changes: 3 additions & 3 deletions sdk/datafactory/azure-mgmt-datafactory/_meta.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"commit": "471fbc404548c3c6611833680dbbeefcc010e201",
"commit": "f06cffbda682a8cd225a8b16bc6f000d26d01612",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"autorest": "3.10.2",
"use": [
"@autorest/python@6.17.0",
"@autorest/python@6.26.4",
"@autorest/[email protected]"
],
"autorest_command": "autorest specification/datafactory/resource-manager/readme.md --generate-sample=True --generate-test=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/home/vsts/work/1/azure-sdk-for-python/sdk --use=@autorest/python@6.17.0 --use=@autorest/[email protected] --version=3.10.2 --version-tolerant=False",
"autorest_command": "autorest specification/datafactory/resource-manager/readme.md --generate-sample=True --generate-test=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/mnt/vss/_work/1/azure-sdk-for-python/sdk --use=@autorest/python@6.26.4 --use=@autorest/[email protected] --version=3.10.2 --version-tolerant=False",
"readme": "specification/datafactory/resource-manager/readme.md"
}
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