Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
c8555d7
Adding daprServiceInvocation trigger
ASHIQUEMD Jun 1, 2023
c1d41e7
Adding daprServiceInvocation trigger
ASHIQUEMD Jun 1, 2023
a8a8e6b
moving dapr service invocation trigger to TriggerApi class
ASHIQUEMD Jun 1, 2023
32474b5
Adding test_dapr_service_invocation_default_args
ASHIQUEMD Jun 1, 2023
ee5d433
moving dapr related configs to its own file
ASHIQUEMD Jun 7, 2023
3b10212
Adding bindings for Dapr extension
ASHIQUEMD Jun 8, 2023
1c385a1
Adding test for dapr bindings
ASHIQUEMD Jun 8, 2023
9a30bb9
Adding test for dapr bindings
ASHIQUEMD Jun 8, 2023
563993e
Using TriggerApi and BindingApi instead of DecoratorApi
ASHIQUEMD Jun 13, 2023
66a2ac2
Making route optional param
ASHIQUEMD Jun 15, 2023
2dfbd7b
Adding aka.ms links for triggers and bindings
ASHIQUEMD Jun 19, 2023
b0cd7cc
assigning topic to route when route is empty
ASHIQUEMD Jun 21, 2023
222a199
assigning topic to route when route is empty
ASHIQUEMD Jun 21, 2023
c119a2a
Merge branch 'dev' into dapr-python-v2-support
gavin-aguiar Jun 21, 2023
26b58bc
Fixed dapr_address param type
ASHIQUEMD Jun 23, 2023
0b2f6c1
Merge branch 'dapr-python-v2-support' of https://github.com/ASHIQUEMD…
ASHIQUEMD Jun 23, 2023
b4cbac2
Fixed dapr_address param type
ASHIQUEMD Jun 23, 2023
e4e3351
fixed indentations
ASHIQUEMD Jun 23, 2023
bb7c21e
fixed indentations
ASHIQUEMD Jun 23, 2023
5f182d5
fixed indentations
ASHIQUEMD Jun 23, 2023
2ee768d
fixed indentations
ASHIQUEMD Jun 23, 2023
0630c98
fixed indentations
ASHIQUEMD Jun 23, 2023
109e30f
fixed indentations
ASHIQUEMD Jun 23, 2023
1585717
Merge branch 'dev' into dapr-python-v2-support
gavin-aguiar Jul 11, 2023
1cf068e
Fixed review comments
ASHIQUEMD Jul 17, 2023
27ff82a
Merge branch 'dapr-python-v2-support' of https://github.com/ASHIQUEMD…
ASHIQUEMD Jul 17, 2023
a7ec74d
adding SettingsApi
ASHIQUEMD Jul 17, 2023
959d78b
Merge branch 'dev' into dapr-python-v2-support
gavin-aguiar Jul 17, 2023
b7828b3
line break
ASHIQUEMD Jul 18, 2023
058d9fd
Adding DaprBluePrint
ASHIQUEMD Jul 19, 2023
86da23d
fixed spacing issue
ASHIQUEMD Jul 21, 2023
c4ffdae
Merge branch 'dev' into dapr-python-v2-support
gavin-aguiar Aug 1, 2023
e1adfe4
Merge branch 'dev' into dapr-python-v2-support
ASHIQUEMD Aug 7, 2023
5f4ea2d
Merge branch 'dev' into dapr-python-v2-support
ASHIQUEMD Aug 14, 2023
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
Prev Previous commit
Next Next commit
Using TriggerApi and BindingApi instead of DecoratorApi
Signed-off-by: MD Ashique <noorani.ashique5@gmail.com>
  • Loading branch information
ASHIQUEMD committed Jun 13, 2023
commit 563993efa4e0b8975814bd8c109a9ec2be405654
6 changes: 3 additions & 3 deletions azure/functions/decorators/dapr_function_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
from typing import Any, Callable, Optional, Union
from azure.functions.decorators.core import DataType, AuthLevel
from azure.functions.decorators.utils import parse_singular_param_to_enum
from azure.functions.decorators.function_app import DecoratorApi, FunctionRegister
from azure.functions.decorators.function_app import BindingApi, FunctionRegister, TriggerApi
from azure.functions.decorators.dapr import DaprBindingOutput, DaprBindingTrigger, DaprInvokeOutput, DaprPublishOutput, DaprSecretInput, DaprServiceInvocationTrigger, DaprStateInput, DaprStateOutput, DaprTopicTrigger

class DaprTriggerApi(DecoratorApi, ABC):
class DaprTriggerApi(TriggerApi, ABC):

def dapr_service_invocation_trigger(self,
arg_name: str,
Expand Down Expand Up @@ -151,7 +151,7 @@ def decorator():

return wrap

class DaprBindingApi(DecoratorApi, ABC):
class DaprBindingApi(BindingApi, ABC):

def dapr_state_input(self,
arg_name: str,
Expand Down