Skip to content

Commit e508b54

Browse files
authored
Proposed move of deidservice under healthcareapis (#8224)
* Proposed move of deidservice under healthcareapis * bump version with details * Fixed history.rst version format * updated healthcareapis summary * Bump healthcareapis extension version caused by deidservice move * Bump/clean minCliCoreVersion to 2.66.0
1 parent 0b37a1d commit e508b54

File tree

32 files changed

+2058
-333
lines changed

32 files changed

+2058
-333
lines changed

src/deidservice/HISTORY.rst

Lines changed: 0 additions & 8 deletions
This file was deleted.

src/deidservice/README.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

src/deidservice/azext_deidservice/__init__.py

Lines changed: 0 additions & 42 deletions
This file was deleted.

src/deidservice/azext_deidservice/_help.py

Lines changed: 0 additions & 11 deletions
This file was deleted.

src/deidservice/azext_deidservice/azext_metadata.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

src/deidservice/azext_deidservice/tests/__init__.py

Lines changed: 0 additions & 6 deletions
This file was deleted.

src/deidservice/setup.cfg

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/deidservice/setup.py

Lines changed: 0 additions & 49 deletions
This file was deleted.

src/healthcareapis/HISTORY.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
Release History
44
===============
55

6+
1.0.0
7+
++++++
8+
* Moved deidservice under healthcareapis
9+
* Bumped to 1.0.0 following the guidelines: https://github.com/Azure/azure-cli/blob/release/doc/extensions/versioning_guidelines.md
10+
611
0.4.0
712
++++++
813

src/healthcareapis/azext_healthcareapis/__init__.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,17 @@ def __init__(self, cli_ctx=None):
2626

2727
def load_command_table(self, args):
2828
from azext_healthcareapis.generated.commands import load_command_table
29+
from azure.cli.core.aaz import load_aaz_command_table
30+
try:
31+
from . import aaz
32+
except ImportError:
33+
aaz = None
34+
if aaz:
35+
load_aaz_command_table(
36+
loader=self,
37+
aaz_pkg_name=aaz.__name__,
38+
args=args
39+
)
2940
load_command_table(self, args)
3041
try:
3142
from azext_healthcareapis.manual.commands import load_command_table as load_command_table_manual

0 commit comments

Comments
 (0)