Skip to content

Commit 9386efe

Browse files
azclibotmsyyc
andauthored
[AutoRelease] t2-datafactory-2022-02-23-93208 (Azure#23173)
* code and test * Update CHANGELOG.md Co-authored-by: PythonSdkPipelines <PythonSdkPipelines> Co-authored-by: Yuchao Yan <[email protected]>
1 parent e022426 commit 9386efe

File tree

6 files changed

+738
-6
lines changed

6 files changed

+738
-6
lines changed

sdk/datafactory/azure-mgmt-datafactory/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Release History
22

3+
## 2.3.0 (2022-03-02)
4+
5+
**Features**
6+
7+
- Added model QuickbaseLinkedService
8+
- Added model ScriptActivity
9+
- Added model ScriptActivityLogDestination
10+
- Added model ScriptActivityParameter
11+
- Added model ScriptActivityParameterDirection
12+
- Added model ScriptActivityParameterType
13+
- Added model ScriptActivityScriptBlock
14+
- Added model ScriptActivityTypePropertiesLogSettings
15+
- Added model ScriptType
16+
- Added model SmartsheetLinkedService
17+
- Added model TeamDeskAuthenticationType
18+
- Added model TeamDeskLinkedService
19+
- Added model ZendeskAuthenticationType
20+
- Added model ZendeskLinkedService
21+
322
## 2.2.1 (2022-02-14)
423

524
**Fixes**

sdk/datafactory/azure-mgmt-datafactory/_meta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"@autorest/[email protected]",
55
"@autorest/[email protected]"
66
],
7-
"commit": "4d63c7c43051035d95499282536b7b76607e5f90",
7+
"commit": "291dc1769270252821f53a9590d185dae8dc5775",
88
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
99
"autorest_command": "autorest specification/datafactory/resource-manager/readme.md --multiapi --python --python-mode=update --python-sdks-folder=/home/vsts/work/1/azure-sdk-for-python/sdk --python3-only --track2 --use=@autorest/[email protected] --use=@autorest/[email protected] --version=3.7.2",
1010
"readme": "specification/datafactory/resource-manager/readme.md"

sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "2.2.1"
9+
VERSION = "2.3.0"

sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/__init__.py

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -508,6 +508,7 @@
508508
from ._models_py3 import QuickBooksLinkedService
509509
from ._models_py3 import QuickBooksObjectDataset
510510
from ._models_py3 import QuickBooksSource
511+
from ._models_py3 import QuickbaseLinkedService
511512
from ._models_py3 import RecurrenceSchedule
512513
from ._models_py3 import RecurrenceScheduleOccurrence
513514
from ._models_py3 import RedirectIncompatibleRowSettings
@@ -570,6 +571,10 @@
570571
from ._models_py3 import ScheduleTrigger
571572
from ._models_py3 import ScheduleTriggerRecurrence
572573
from ._models_py3 import ScriptAction
574+
from ._models_py3 import ScriptActivity
575+
from ._models_py3 import ScriptActivityParameter
576+
from ._models_py3 import ScriptActivityScriptBlock
577+
from ._models_py3 import ScriptActivityTypePropertiesLogSettings
573578
from ._models_py3 import SecretBase
574579
from ._models_py3 import SecureString
575580
from ._models_py3 import SelfDependencyTumblingWindowTriggerReference
@@ -592,6 +597,7 @@
592597
from ._models_py3 import ShopifyObjectDataset
593598
from ._models_py3 import ShopifySource
594599
from ._models_py3 import SkipErrorFile
600+
from ._models_py3 import SmartsheetLinkedService
595601
from ._models_py3 import SnowflakeDataset
596602
from ._models_py3 import SnowflakeExportCopyCommand
597603
from ._models_py3 import SnowflakeImportCopyCommand
@@ -644,6 +650,7 @@
644650
from ._models_py3 import TabularTranslator
645651
from ._models_py3 import TarGZipReadSettings
646652
from ._models_py3 import TarReadSettings
653+
from ._models_py3 import TeamDeskLinkedService
647654
from ._models_py3 import TeradataLinkedService
648655
from ._models_py3 import TeradataPartitionSettings
649656
from ._models_py3 import TeradataSource
@@ -692,6 +699,7 @@
692699
from ._models_py3 import XmlDataset
693700
from ._models_py3 import XmlReadSettings
694701
from ._models_py3 import XmlSource
702+
from ._models_py3 import ZendeskLinkedService
695703
from ._models_py3 import ZipDeflateReadSettings
696704
from ._models_py3 import ZohoLinkedService
697705
from ._models_py3 import ZohoObjectDataset
@@ -769,6 +777,10 @@
769777
SapHanaAuthenticationType,
770778
SapHanaPartitionOption,
771779
SapTablePartitionOption,
780+
ScriptActivityLogDestination,
781+
ScriptActivityParameterDirection,
782+
ScriptActivityParameterType,
783+
ScriptType,
772784
SelfHostedIntegrationRuntimeNodeStatus,
773785
ServiceNowAuthenticationType,
774786
ServicePrincipalCredentialType,
@@ -785,6 +797,7 @@
785797
SsisPackageLocationType,
786798
StoredProcedureParameterType,
787799
SybaseAuthenticationType,
800+
TeamDeskAuthenticationType,
788801
TeradataAuthenticationType,
789802
TeradataPartitionOption,
790803
TriggerRunStatus,
@@ -794,6 +807,7 @@
794807
WebActivityMethod,
795808
WebAuthenticationType,
796809
WebHookActivityMethod,
810+
ZendeskAuthenticationType,
797811
)
798812

799813
__all__ = [
@@ -1299,6 +1313,7 @@
12991313
'QuickBooksLinkedService',
13001314
'QuickBooksObjectDataset',
13011315
'QuickBooksSource',
1316+
'QuickbaseLinkedService',
13021317
'RecurrenceSchedule',
13031318
'RecurrenceScheduleOccurrence',
13041319
'RedirectIncompatibleRowSettings',
@@ -1361,6 +1376,10 @@
13611376
'ScheduleTrigger',
13621377
'ScheduleTriggerRecurrence',
13631378
'ScriptAction',
1379+
'ScriptActivity',
1380+
'ScriptActivityParameter',
1381+
'ScriptActivityScriptBlock',
1382+
'ScriptActivityTypePropertiesLogSettings',
13641383
'SecretBase',
13651384
'SecureString',
13661385
'SelfDependencyTumblingWindowTriggerReference',
@@ -1383,6 +1402,7 @@
13831402
'ShopifyObjectDataset',
13841403
'ShopifySource',
13851404
'SkipErrorFile',
1405+
'SmartsheetLinkedService',
13861406
'SnowflakeDataset',
13871407
'SnowflakeExportCopyCommand',
13881408
'SnowflakeImportCopyCommand',
@@ -1435,6 +1455,7 @@
14351455
'TabularTranslator',
14361456
'TarGZipReadSettings',
14371457
'TarReadSettings',
1458+
'TeamDeskLinkedService',
14381459
'TeradataLinkedService',
14391460
'TeradataPartitionSettings',
14401461
'TeradataSource',
@@ -1483,6 +1504,7 @@
14831504
'XmlDataset',
14841505
'XmlReadSettings',
14851506
'XmlSource',
1507+
'ZendeskLinkedService',
14861508
'ZipDeflateReadSettings',
14871509
'ZohoLinkedService',
14881510
'ZohoObjectDataset',
@@ -1557,6 +1579,10 @@
15571579
'SapHanaAuthenticationType',
15581580
'SapHanaPartitionOption',
15591581
'SapTablePartitionOption',
1582+
'ScriptActivityLogDestination',
1583+
'ScriptActivityParameterDirection',
1584+
'ScriptActivityParameterType',
1585+
'ScriptType',
15601586
'SelfHostedIntegrationRuntimeNodeStatus',
15611587
'ServiceNowAuthenticationType',
15621588
'ServicePrincipalCredentialType',
@@ -1573,6 +1599,7 @@
15731599
'SsisPackageLocationType',
15741600
'StoredProcedureParameterType',
15751601
'SybaseAuthenticationType',
1602+
'TeamDeskAuthenticationType',
15761603
'TeradataAuthenticationType',
15771604
'TeradataPartitionOption',
15781605
'TriggerRunStatus',
@@ -1582,4 +1609,5 @@
15821609
'WebActivityMethod',
15831610
'WebAuthenticationType',
15841611
'WebHookActivityMethod',
1612+
'ZendeskAuthenticationType',
15851613
]

sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/_data_factory_management_client_enums.py

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -621,6 +621,45 @@ class SapTablePartitionOption(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)
621621
PARTITION_ON_CALENDAR_DATE = "PartitionOnCalendarDate"
622622
PARTITION_ON_TIME = "PartitionOnTime"
623623

624+
class ScriptActivityLogDestination(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
625+
"""The destination of logs. Type: string.
626+
"""
627+
628+
ACTIVITY_OUTPUT = "ActivityOutput"
629+
EXTERNAL_STORE = "ExternalStore"
630+
631+
class ScriptActivityParameterDirection(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
632+
"""The direction of the parameter.
633+
"""
634+
635+
INPUT = "Input"
636+
OUTPUT = "Output"
637+
INPUT_OUTPUT = "InputOutput"
638+
639+
class ScriptActivityParameterType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
640+
"""The type of the parameter.
641+
"""
642+
643+
BOOLEAN = "Boolean"
644+
DATE_TIME = "DateTime"
645+
DATE_TIME_OFFSET = "DateTimeOffset"
646+
DECIMAL = "Decimal"
647+
DOUBLE = "Double"
648+
GUID = "Guid"
649+
INT16 = "Int16"
650+
INT32 = "Int32"
651+
INT64 = "Int64"
652+
SINGLE = "Single"
653+
STRING = "String"
654+
TIMESPAN = "Timespan"
655+
656+
class ScriptType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
657+
"""The type of the query. Type: string.
658+
"""
659+
660+
QUERY = "Query"
661+
NON_QUERY = "NonQuery"
662+
624663
class SelfHostedIntegrationRuntimeNodeStatus(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
625664
"""Status of the integration runtime node.
626665
"""
@@ -755,6 +794,13 @@ class SybaseAuthenticationType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum
755794
BASIC = "Basic"
756795
WINDOWS = "Windows"
757796

797+
class TeamDeskAuthenticationType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
798+
"""The authentication type to use.
799+
"""
800+
801+
BASIC = "Basic"
802+
TOKEN = "Token"
803+
758804
class TeradataAuthenticationType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
759805
"""AuthenticationType to be used for connection.
760806
"""
@@ -824,3 +870,10 @@ class WebHookActivityMethod(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
824870
"""
825871

826872
POST = "POST"
873+
874+
class ZendeskAuthenticationType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
875+
"""The authentication type to use.
876+
"""
877+
878+
BASIC = "Basic"
879+
TOKEN = "Token"

0 commit comments

Comments
 (0)