Skip to content
Draft
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

This file was deleted.

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 = "2.0.0"
VERSION = "1.0.0"
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,7 @@
from ._models_py3 import FileSystemSink
from ._models_py3 import FileSystemSource
from ._models_py3 import FilterActivity
from ._models_py3 import Flowlet
from ._models_py3 import ForEachActivity
from ._models_py3 import FormatReadSettings
from ._models_py3 import FormatWriteSettings
Expand Down Expand Up @@ -974,6 +975,7 @@
from ._models import FileSystemSink # type: ignore
from ._models import FileSystemSource # type: ignore
from ._models import FilterActivity # type: ignore
from ._models import Flowlet # type: ignore
from ._models import ForEachActivity # type: ignore
from ._models import FormatReadSettings # type: ignore
from ._models import FormatWriteSettings # type: ignore
Expand Down Expand Up @@ -1402,7 +1404,7 @@
AvroCompressionCodec,
AzureFunctionActivityMethod,
AzureSearchIndexWriteBehaviorType,
BlobEventTypes,
BlobEventType,
CassandraSourceReadConsistencyLevels,
CompressionCodec,
CopyBehaviorType,
Expand Down Expand Up @@ -1768,6 +1770,7 @@
'FileSystemSink',
'FileSystemSource',
'FilterActivity',
'Flowlet',
'ForEachActivity',
'FormatReadSettings',
'FormatWriteSettings',
Expand Down Expand Up @@ -2194,7 +2197,7 @@
'AvroCompressionCodec',
'AzureFunctionActivityMethod',
'AzureSearchIndexWriteBehaviorType',
'BlobEventTypes',
'BlobEventType',
'CassandraSourceReadConsistencyLevels',
'CompressionCodec',
'CopyBehaviorType',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class AzureSearchIndexWriteBehaviorType(with_metaclass(_CaseInsensitiveEnumMeta,
MERGE = "Merge"
UPLOAD = "Upload"

class BlobEventTypes(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
class BlobEventType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):

MICROSOFT_STORAGE_BLOB_CREATED = "Microsoft.Storage.BlobCreated"
MICROSOFT_STORAGE_BLOB_DELETED = "Microsoft.Storage.BlobDeleted"
Expand Down
Loading