Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
code and test
  • Loading branch information
azure-sdk authored and azure-sdk committed Jun 3, 2024
commit 10331763fffdadab45c35a3dd9ef5db71ddf69be
14 changes: 14 additions & 0 deletions sdk/datafactory/azure-mgmt-datafactory/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Release History

## 8.0.0 (2024-06-20)

### Features Added

- Model DynamicsCrmLinkedService has a new parameter credential
- Model ExpressionV2 has a new parameter operators
- Model LakeHouseTableDataset has a new parameter schema_type_properties_schema
- Model SalesforceServiceCloudV2Source has a new parameter query
- Model SalesforceV2Source has a new parameter query

### Breaking Changes

- Model ExpressionV2 no longer has parameter operator

## 7.1.0 (2024-05-08)

### Features Added
Expand Down
2 changes: 1 addition & 1 deletion sdk/datafactory/azure-mgmt-datafactory/_meta.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"commit": "032c6049de2a6c99e3503aa6cc6f4071a329a7d0",
"commit": "92a02c9755fa3b2359df8dfc031babcddf6d91ba",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"autorest": "3.10.2",
"use": [
Expand Down
2 changes: 1 addition & 1 deletion sdk/datafactory/azure-mgmt-datafactory/assets.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"AssetsRepo": "Azure/azure-sdk-assets",
"AssetsRepoPrefixPath": "python",
"TagPrefix": "python/datafactory/azure-mgmt-datafactory",
"Tag": "python/datafactory/azure-mgmt-datafactory_bef48226de"
"Tag": "python/datafactory/azure-mgmt-datafactory_7d454ae83b"
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

VERSION = "7.1.0"
VERSION = "8.0.0"
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,6 @@
from ._models_py3 import MagentoObjectDataset
from ._models_py3 import MagentoSource
from ._models_py3 import ManagedIdentityCredential
from ._models_py3 import ManagedIdentityCredentialResource
from ._models_py3 import ManagedIntegrationRuntime
from ._models_py3 import ManagedIntegrationRuntimeError
from ._models_py3 import ManagedIntegrationRuntimeNode
Expand Down Expand Up @@ -653,7 +652,6 @@
from ._models_py3 import ServiceNowV2ObjectDataset
from ._models_py3 import ServiceNowV2Source
from ._models_py3 import ServicePrincipalCredential
from ._models_py3 import ServicePrincipalCredentialResource
from ._models_py3 import SetVariableActivity
from ._models_py3 import SftpLocation
from ._models_py3 import SftpReadSettings
Expand Down Expand Up @@ -1337,7 +1335,6 @@
"MagentoObjectDataset",
"MagentoSource",
"ManagedIdentityCredential",
"ManagedIdentityCredentialResource",
"ManagedIntegrationRuntime",
"ManagedIntegrationRuntimeError",
"ManagedIntegrationRuntimeNode",
Expand Down Expand Up @@ -1573,7 +1570,6 @@
"ServiceNowV2ObjectDataset",
"ServiceNowV2Source",
"ServicePrincipalCredential",
"ServicePrincipalCredentialResource",
"SetVariableActivity",
"SftpLocation",
"SftpReadSettings",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,7 @@ class ExpressionV2Type(str, Enum, metaclass=CaseInsensitiveEnumMeta):
FIELD = "Field"
UNARY = "Unary"
BINARY = "Binary"
N_ARY = "NAry"


class FactoryIdentityType(str, Enum, metaclass=CaseInsensitiveEnumMeta):
Expand Down
Loading