Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: put dataprocessor check under namespace #53

Merged
merged 13 commits into from
Nov 3, 2023
4 changes: 2 additions & 2 deletions azext_edge/edge/params.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def load_iotedge_arguments(self, _):
context.argument(
"edge_service",
options_list=["--edge-service", "-e"],
choices=CaseInsensitiveList(["mq"]),
choices=CaseInsensitiveList(["mq", "dataprocessor"]),
help="The edge service deployment that will be evaluated.",
)
context.argument(
Expand Down Expand Up @@ -273,7 +273,7 @@ def load_iotedge_arguments(self, _):
help="Flag when set, will configure the OPC-UA broker installer to spin-up a PLC server.",
arg_group="OPC-UA Broker",
)
# Bluefin
# Data Processor
context.argument(
"dp_instance_name",
options_list=["--dp-instance"],
Expand Down
Loading