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
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
{
"chosen_version": "2018-06-01",
"total_api_version_list": ["2018-06-01"],
"client": {
"name": "DataFactoryManagementClient",
"filename": "_data_factory_management_client",
"description": "The Azure Data Factory V2 management API provides a RESTful set of web services that interact with Azure Data Factory V2 services.",
"base_url": "\u0027https://management.azure.com\u0027",
"custom_base_url": null,
"azure_arm": true,
"has_lro_operations": true,
"client_side_validation": true
},
"global_parameters": {
"sync": {
"credential": {
"signature": "credential, # type: \"TokenCredential\"",
"description": "Credential needed for the client to connect to Azure.",
"docstring_type": "~azure.core.credentials.TokenCredential",
"required": true
},
"subscription_id": {
"signature": "subscription_id, # type: str",
"description": "The subscription identifier.",
"docstring_type": "str",
"required": true
}
},
"async": {
"credential": {
"signature": "credential, # type: \"AsyncTokenCredential\"",
"description": "Credential needed for the client to connect to Azure.",
"docstring_type": "~azure.core.credentials_async.AsyncTokenCredential",
"required": true
},
"subscription_id": {
"signature": "subscription_id, # type: str",
"description": "The subscription identifier.",
"docstring_type": "str",
"required": true
}
},
"constant": {
},
"call": "credential, subscription_id"
},
"config": {
"credential": true,
"credential_scopes": ["https://management.azure.com/.default"],
"credential_default_policy_type": "BearerTokenCredentialPolicy",
"credential_default_policy_type_has_async_version": true,
"credential_key_header_name": null
},
"operation_groups": {
"operations": "Operations",
"factories": "FactoriesOperations",
"exposure_control": "ExposureControlOperations",
"integration_runtimes": "IntegrationRuntimesOperations",
"integration_runtime_object_metadata": "IntegrationRuntimeObjectMetadataOperations",
"integration_runtime_nodes": "IntegrationRuntimeNodesOperations",
"linked_services": "LinkedServicesOperations",
"datasets": "DatasetsOperations",
"pipelines": "PipelinesOperations",
"pipeline_runs": "PipelineRunsOperations",
"activity_runs": "ActivityRunsOperations",
"triggers": "TriggersOperations",
"trigger_runs": "TriggerRunsOperations",
"data_flows": "DataFlowsOperations",
"data_flow_debug_session": "DataFlowDebugSessionOperations",
"managed_virtual_networks": "ManagedVirtualNetworksOperations",
"managed_private_endpoints": "ManagedPrivateEndpointsOperations"
},
"operation_mixins": {
},
"sync_imports": "None",
"async_imports": "None"
}
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 = "1.1.0"
VERSION = "1.0.0"
Original file line number Diff line number Diff line change
Expand Up @@ -1319,7 +1319,7 @@
AvroCompressionCodec,
AzureFunctionActivityMethod,
AzureSearchIndexWriteBehaviorType,
BlobEventTypesEnum,
BlobEventTypes,
CassandraSourceReadConsistencyLevels,
CompressionCodec,
CopyBehaviorType,
Expand Down Expand Up @@ -2066,7 +2066,7 @@
'AvroCompressionCodec',
'AzureFunctionActivityMethod',
'AzureSearchIndexWriteBehaviorType',
'BlobEventTypesEnum',
'BlobEventTypes',
'CassandraSourceReadConsistencyLevels',
'CompressionCodec',
'CopyBehaviorType',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class AzureSearchIndexWriteBehaviorType(with_metaclass(_CaseInsensitiveEnumMeta,
MERGE = "Merge"
UPLOAD = "Upload"

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

MICROSOFT_STORAGE_BLOB_CREATED = "Microsoft.Storage.BlobCreated"
MICROSOFT_STORAGE_BLOB_DELETED = "Microsoft.Storage.BlobDeleted"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7436,7 +7436,7 @@ class BlobEventsTrigger(MultiplePipelineTrigger):
:param ignore_empty_blobs: If set to true, blobs with zero bytes will be ignored.
:type ignore_empty_blobs: bool
:param events: Required. The type of events that cause this trigger to fire.
:type events: list[str or ~azure.mgmt.datafactory.models.BlobEventTypesEnum]
:type events: list[str or ~azure.mgmt.datafactory.models.BlobEventTypes]
:param scope: Required. The ARM resource ID of the Storage Account.
:type scope: str
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8522,7 +8522,7 @@ class BlobEventsTrigger(MultiplePipelineTrigger):
:param ignore_empty_blobs: If set to true, blobs with zero bytes will be ignored.
:type ignore_empty_blobs: bool
:param events: Required. The type of events that cause this trigger to fire.
:type events: list[str or ~azure.mgmt.datafactory.models.BlobEventTypesEnum]
:type events: list[str or ~azure.mgmt.datafactory.models.BlobEventTypes]
:param scope: Required. The ARM resource ID of the Storage Account.
:type scope: str
"""
Expand Down Expand Up @@ -8551,7 +8551,7 @@ class BlobEventsTrigger(MultiplePipelineTrigger):
def __init__(
self,
*,
events: List[Union[str, "BlobEventTypesEnum"]],
events: List[Union[str, "BlobEventTypes"]],
scope: str,
additional_properties: Optional[Dict[str, object]] = None,
description: Optional[str] = None,
Expand Down