Skip to content

Commit 0c7a885

Browse files
author
SDKAuto
committed
CodeGen from PR 18413 in Azure/azure-rest-api-specs
Merge abe82531558be49a37c46cc1900f9a01a8949e3c into 927e50063ce9c3defdc8fc97906656dc64a37e51
1 parent e6cdd05 commit 0c7a885

File tree

5 files changed

+131
-45
lines changed

5 files changed

+131
-45
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"@autorest/[email protected]",
55
"@autorest/[email protected]"
66
],
7-
"commit": "291dc1769270252821f53a9590d185dae8dc5775",
7+
"commit": "69dd8898458f14382dd63fdd5fac79bd7da864bf",
88
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
9-
"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",
9+
"autorest_command": "autorest specification/datafactory/resource-manager/readme.md --multiapi --python --python-sdks-folder=/home/vsts/work/1/s/azure-sdk-for-python/sdk --python3-only --use=@autorest/[email protected] --use=@autorest/[email protected] --version=3.7.2",
1010
"readme": "specification/datafactory/resource-manager/readme.md"
1111
}

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.3.0"
9+
VERSION = "1.0.0"

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,7 @@
246246
from ._models_py3 import ExecuteDataFlowActivityTypeProperties
247247
from ._models_py3 import ExecuteDataFlowActivityTypePropertiesCompute
248248
from ._models_py3 import ExecutePipelineActivity
249+
from ._models_py3 import ExecutePipelineActivityPolicy
249250
from ._models_py3 import ExecutePowerQueryActivityTypeProperties
250251
from ._models_py3 import ExecuteSSISPackageActivity
251252
from ._models_py3 import ExecuteWranglingDataflowActivity
@@ -717,8 +718,10 @@
717718
CopyBehaviorType,
718719
CosmosDbConnectionMode,
719720
CosmosDbServicePrincipalCredentialType,
721+
CredentialReferenceType,
720722
DataFlowComputeType,
721723
DataFlowDebugCommandType,
724+
DataFlowReferenceType,
722725
DatasetCompressionLevel,
723726
DayOfWeek,
724727
DaysOfWeek,
@@ -754,6 +757,7 @@
754757
JsonFormatFilePattern,
755758
JsonWriteFilePattern,
756759
ManagedIntegrationRuntimeNodeStatus,
760+
ManagedVirtualNetworkReferenceType,
757761
MongoDbAuthenticationType,
758762
NetezzaPartitionOption,
759763
ODataAadServicePrincipalCredentialType,
@@ -800,6 +804,7 @@
800804
TeamDeskAuthenticationType,
801805
TeradataAuthenticationType,
802806
TeradataPartitionOption,
807+
TriggerReferenceType,
803808
TriggerRunStatus,
804809
TriggerRuntimeState,
805810
TumblingWindowFrequency,
@@ -1051,6 +1056,7 @@
10511056
'ExecuteDataFlowActivityTypeProperties',
10521057
'ExecuteDataFlowActivityTypePropertiesCompute',
10531058
'ExecutePipelineActivity',
1059+
'ExecutePipelineActivityPolicy',
10541060
'ExecutePowerQueryActivityTypeProperties',
10551061
'ExecuteSSISPackageActivity',
10561062
'ExecuteWranglingDataflowActivity',
@@ -1519,8 +1525,10 @@
15191525
'CopyBehaviorType',
15201526
'CosmosDbConnectionMode',
15211527
'CosmosDbServicePrincipalCredentialType',
1528+
'CredentialReferenceType',
15221529
'DataFlowComputeType',
15231530
'DataFlowDebugCommandType',
1531+
'DataFlowReferenceType',
15241532
'DatasetCompressionLevel',
15251533
'DayOfWeek',
15261534
'DaysOfWeek',
@@ -1556,6 +1564,7 @@
15561564
'JsonFormatFilePattern',
15571565
'JsonWriteFilePattern',
15581566
'ManagedIntegrationRuntimeNodeStatus',
1567+
'ManagedVirtualNetworkReferenceType',
15591568
'MongoDbAuthenticationType',
15601569
'NetezzaPartitionOption',
15611570
'ODataAadServicePrincipalCredentialType',
@@ -1602,6 +1611,7 @@
16021611
'TeamDeskAuthenticationType',
16031612
'TeradataAuthenticationType',
16041613
'TeradataPartitionOption',
1614+
'TriggerReferenceType',
16051615
'TriggerRunStatus',
16061616
'TriggerRuntimeState',
16071617
'TumblingWindowFrequency',

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,12 @@ class CosmosDbServicePrincipalCredentialType(with_metaclass(CaseInsensitiveEnumM
107107
SERVICE_PRINCIPAL_KEY = "ServicePrincipalKey"
108108
SERVICE_PRINCIPAL_CERT = "ServicePrincipalCert"
109109

110+
class CredentialReferenceType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
111+
"""Credential reference type.
112+
"""
113+
114+
CREDENTIAL_REFERENCE = "CredentialReference"
115+
110116
class DataFlowComputeType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
111117
"""Compute type of the cluster which will execute data flow job.
112118
"""
@@ -123,6 +129,12 @@ class DataFlowDebugCommandType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum
123129
EXECUTE_STATISTICS_QUERY = "executeStatisticsQuery"
124130
EXECUTE_EXPRESSION_QUERY = "executeExpressionQuery"
125131

132+
class DataFlowReferenceType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
133+
"""Data flow reference type.
134+
"""
135+
136+
DATA_FLOW_REFERENCE = "DataFlowReference"
137+
126138
class DatasetCompressionLevel(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
127139
"""All available compression levels.
128140
"""
@@ -412,6 +424,12 @@ class ManagedIntegrationRuntimeNodeStatus(with_metaclass(CaseInsensitiveEnumMeta
412424
RECYCLING = "Recycling"
413425
UNAVAILABLE = "Unavailable"
414426

427+
class ManagedVirtualNetworkReferenceType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
428+
"""Managed Virtual Network reference type.
429+
"""
430+
431+
MANAGED_VIRTUAL_NETWORK_REFERENCE = "ManagedVirtualNetworkReference"
432+
415433
class MongoDbAuthenticationType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
416434
"""The authentication type to be used to connect to the MongoDB database.
417435
"""
@@ -816,6 +834,12 @@ class TeradataPartitionOption(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)
816834
HASH = "Hash"
817835
DYNAMIC_RANGE = "DynamicRange"
818836

837+
class TriggerReferenceType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
838+
"""Trigger reference type.
839+
"""
840+
841+
TRIGGER_REFERENCE = "TriggerReference"
842+
819843
class TriggerRunStatus(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
820844
"""Trigger run status.
821845
"""

0 commit comments

Comments
 (0)