Skip to content
Merged
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
Expand Up @@ -374,6 +374,7 @@
from .copy_sink_py3 import CopySink
from .copy_activity_py3 import CopyActivity
from .execution_activity_py3 import ExecutionActivity
from .web_hook_activity_py3 import WebHookActivity
from .append_variable_activity_py3 import AppendVariableActivity
from .set_variable_activity_py3 import SetVariableActivity
from .filter_activity_py3 import FilterActivity
Expand Down Expand Up @@ -773,6 +774,7 @@
from .copy_sink import CopySink
from .copy_activity import CopyActivity
from .execution_activity import ExecutionActivity
from .web_hook_activity import WebHookActivity
from .append_variable_activity import AppendVariableActivity
from .set_variable_activity import SetVariableActivity
from .filter_activity import FilterActivity
Expand Down Expand Up @@ -869,6 +871,7 @@
CopyBehaviorType,
PolybaseSettingsRejectType,
SapCloudForCustomerSinkWriteBehavior,
WebHookActivityMethod,
IntegrationRuntimeType,
SelfHostedIntegrationRuntimeNodeStatus,
IntegrationRuntimeUpdateResult,
Expand Down Expand Up @@ -1246,6 +1249,7 @@
'CopySink',
'CopyActivity',
'ExecutionActivity',
'WebHookActivity',
'AppendVariableActivity',
'SetVariableActivity',
'FilterActivity',
Expand Down Expand Up @@ -1341,6 +1345,7 @@
'CopyBehaviorType',
'PolybaseSettingsRejectType',
'SapCloudForCustomerSinkWriteBehavior',
'WebHookActivityMethod',
'IntegrationRuntimeType',
'SelfHostedIntegrationRuntimeNodeStatus',
'IntegrationRuntimeUpdateResult',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ class ControlActivity(Activity):
"""Base class for all control activities like IfCondition, ForEach , Until.

You probably want to use the sub-classes and not this class directly. Known
sub-classes are: AppendVariableActivity, SetVariableActivity,
FilterActivity, UntilActivity, WaitActivity, ForEachActivity,
IfConditionActivity, ExecutePipelineActivity
sub-classes are: WebHookActivity, AppendVariableActivity,
SetVariableActivity, FilterActivity, UntilActivity, WaitActivity,
ForEachActivity, IfConditionActivity, ExecutePipelineActivity

All required parameters must be populated in order to send to Azure.

Expand Down Expand Up @@ -52,7 +52,7 @@ class ControlActivity(Activity):
}

_subtype_map = {
'type': {'AppendVariable': 'AppendVariableActivity', 'SetVariable': 'SetVariableActivity', 'Filter': 'FilterActivity', 'Until': 'UntilActivity', 'Wait': 'WaitActivity', 'ForEach': 'ForEachActivity', 'IfCondition': 'IfConditionActivity', 'ExecutePipeline': 'ExecutePipelineActivity'}
'type': {'WebHook': 'WebHookActivity', 'AppendVariable': 'AppendVariableActivity', 'SetVariable': 'SetVariableActivity', 'Filter': 'FilterActivity', 'Until': 'UntilActivity', 'Wait': 'WaitActivity', 'ForEach': 'ForEachActivity', 'IfCondition': 'IfConditionActivity', 'ExecutePipeline': 'ExecutePipelineActivity'}
}

def __init__(self, **kwargs):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ class ControlActivity(Activity):
"""Base class for all control activities like IfCondition, ForEach , Until.

You probably want to use the sub-classes and not this class directly. Known
sub-classes are: AppendVariableActivity, SetVariableActivity,
FilterActivity, UntilActivity, WaitActivity, ForEachActivity,
IfConditionActivity, ExecutePipelineActivity
sub-classes are: WebHookActivity, AppendVariableActivity,
SetVariableActivity, FilterActivity, UntilActivity, WaitActivity,
ForEachActivity, IfConditionActivity, ExecutePipelineActivity

All required parameters must be populated in order to send to Azure.

Expand Down Expand Up @@ -52,7 +52,7 @@ class ControlActivity(Activity):
}

_subtype_map = {
'type': {'AppendVariable': 'AppendVariableActivity', 'SetVariable': 'SetVariableActivity', 'Filter': 'FilterActivity', 'Until': 'UntilActivity', 'Wait': 'WaitActivity', 'ForEach': 'ForEachActivity', 'IfCondition': 'IfConditionActivity', 'ExecutePipeline': 'ExecutePipelineActivity'}
'type': {'WebHook': 'WebHookActivity', 'AppendVariable': 'AppendVariableActivity', 'SetVariable': 'SetVariableActivity', 'Filter': 'FilterActivity', 'Until': 'UntilActivity', 'Wait': 'WaitActivity', 'ForEach': 'ForEachActivity', 'IfCondition': 'IfConditionActivity', 'ExecutePipeline': 'ExecutePipelineActivity'}
}

def __init__(self, *, name: str, additional_properties=None, description: str=None, depends_on=None, user_properties=None, **kwargs) -> None:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -420,6 +420,11 @@ class SapCloudForCustomerSinkWriteBehavior(str, Enum):
update = "Update"


class WebHookActivityMethod(str, Enum):

post = "POST"


class IntegrationRuntimeType(str, Enum):

managed = "Managed"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from .control_activity import ControlActivity


class WebHookActivity(ControlActivity):
"""WebHook activity.

Variables are only populated by the server, and will be ignored when
sending a request.

All required parameters must be populated in order to send to Azure.

:param additional_properties: Unmatched properties from the message are
deserialized this collection
:type additional_properties: dict[str, object]
:param name: Required. Activity name.
:type name: str
:param description: Activity description.
:type description: str
:param depends_on: Activity depends on condition.
:type depends_on: list[~azure.mgmt.datafactory.models.ActivityDependency]
:param user_properties: Activity user properties.
:type user_properties: list[~azure.mgmt.datafactory.models.UserProperty]
:param type: Required. Constant filled by server.
:type type: str
:ivar method: Required. Rest API method for target endpoint. Default
value: "POST" .
:vartype method: str
:param url: Required. WebHook activity target endpoint and path. Type:
string (or Expression with resultType string).
:type url: object
:param timeout: The timeout within which the webhook should be called
back. If there is no value specified, it defaults to 10 minutes. Type:
string. Pattern: ((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
:type timeout: str
:param headers: Represents the headers that will be sent to the request.
For example, to set the language and type on a request: "headers" : {
"Accept-Language": "en-us", "Content-Type": "application/json" }. Type:
string (or Expression with resultType string).
:type headers: object
:param body: Represents the payload that will be sent to the endpoint.
Required for POST/PUT method, not allowed for GET method Type: string (or
Expression with resultType string).
:type body: object
:param authentication: Authentication method used for calling the
endpoint.
:type authentication:
~azure.mgmt.datafactory.models.WebActivityAuthentication
"""

_validation = {
'name': {'required': True},
'type': {'required': True},
'method': {'required': True, 'constant': True},
'url': {'required': True},
}

_attribute_map = {
'additional_properties': {'key': '', 'type': '{object}'},
'name': {'key': 'name', 'type': 'str'},
'description': {'key': 'description', 'type': 'str'},
'depends_on': {'key': 'dependsOn', 'type': '[ActivityDependency]'},
'user_properties': {'key': 'userProperties', 'type': '[UserProperty]'},
'type': {'key': 'type', 'type': 'str'},
'method': {'key': 'typeProperties.method', 'type': 'str'},
'url': {'key': 'typeProperties.url', 'type': 'object'},
'timeout': {'key': 'typeProperties.timeout', 'type': 'str'},
'headers': {'key': 'typeProperties.headers', 'type': 'object'},
'body': {'key': 'typeProperties.body', 'type': 'object'},
'authentication': {'key': 'typeProperties.authentication', 'type': 'WebActivityAuthentication'},
}

method = "POST"

def __init__(self, **kwargs):
super(WebHookActivity, self).__init__(**kwargs)
self.url = kwargs.get('url', None)
self.timeout = kwargs.get('timeout', None)
self.headers = kwargs.get('headers', None)
self.body = kwargs.get('body', None)
self.authentication = kwargs.get('authentication', None)
self.type = 'WebHook'
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from .control_activity_py3 import ControlActivity


class WebHookActivity(ControlActivity):
"""WebHook activity.

Variables are only populated by the server, and will be ignored when
sending a request.

All required parameters must be populated in order to send to Azure.

:param additional_properties: Unmatched properties from the message are
deserialized this collection
:type additional_properties: dict[str, object]
:param name: Required. Activity name.
:type name: str
:param description: Activity description.
:type description: str
:param depends_on: Activity depends on condition.
:type depends_on: list[~azure.mgmt.datafactory.models.ActivityDependency]
:param user_properties: Activity user properties.
:type user_properties: list[~azure.mgmt.datafactory.models.UserProperty]
:param type: Required. Constant filled by server.
:type type: str
:ivar method: Required. Rest API method for target endpoint. Default
value: "POST" .
:vartype method: str
:param url: Required. WebHook activity target endpoint and path. Type:
string (or Expression with resultType string).
:type url: object
:param timeout: The timeout within which the webhook should be called
back. If there is no value specified, it defaults to 10 minutes. Type:
string. Pattern: ((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
:type timeout: str
:param headers: Represents the headers that will be sent to the request.
For example, to set the language and type on a request: "headers" : {
"Accept-Language": "en-us", "Content-Type": "application/json" }. Type:
string (or Expression with resultType string).
:type headers: object
:param body: Represents the payload that will be sent to the endpoint.
Required for POST/PUT method, not allowed for GET method Type: string (or
Expression with resultType string).
:type body: object
:param authentication: Authentication method used for calling the
endpoint.
:type authentication:
~azure.mgmt.datafactory.models.WebActivityAuthentication
"""

_validation = {
'name': {'required': True},
'type': {'required': True},
'method': {'required': True, 'constant': True},
'url': {'required': True},
}

_attribute_map = {
'additional_properties': {'key': '', 'type': '{object}'},
'name': {'key': 'name', 'type': 'str'},
'description': {'key': 'description', 'type': 'str'},
'depends_on': {'key': 'dependsOn', 'type': '[ActivityDependency]'},
'user_properties': {'key': 'userProperties', 'type': '[UserProperty]'},
'type': {'key': 'type', 'type': 'str'},
'method': {'key': 'typeProperties.method', 'type': 'str'},
'url': {'key': 'typeProperties.url', 'type': 'object'},
'timeout': {'key': 'typeProperties.timeout', 'type': 'str'},
'headers': {'key': 'typeProperties.headers', 'type': 'object'},
'body': {'key': 'typeProperties.body', 'type': 'object'},
'authentication': {'key': 'typeProperties.authentication', 'type': 'WebActivityAuthentication'},
}

method = "POST"

def __init__(self, *, name: str, url, additional_properties=None, description: str=None, depends_on=None, user_properties=None, timeout: str=None, headers=None, body=None, authentication=None, **kwargs) -> None:
super(WebHookActivity, self).__init__(additional_properties=additional_properties, name=name, description=description, depends_on=depends_on, user_properties=user_properties, **kwargs)
self.url = url
self.timeout = timeout
self.headers = headers
self.body = body
self.authentication = authentication
self.type = 'WebHook'