Skip to content
Open
4 changes: 4 additions & 0 deletions src/aem/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Release History
===============
1.0.2
+++++
* Migrate code from Azure SDK to AAZ based commands for compute operations (VM, extensions, disks)

1.0.1
+++++
* Remove DATA_COSMOS_TABLE and DATA_STORAGE references
Expand Down
3 changes: 1 addition & 2 deletions src/aem/azext_aem/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
# --------------------------------------------------------------------------------------------

from azure.cli.core import AzCommandsLoader
from azure.cli.core.profiles import ResourceType

import azext_aem._help # pylint: disable=unused-import

Expand All @@ -19,7 +18,7 @@ def __init__(self, cli_ctx=None):
custom_command_type=aem_custom)

def load_command_table(self, _):
with self.command_group('vm aem', min_api='2016-04-30-preview', resource_type=ResourceType.MGMT_COMPUTE) as g:
with self.command_group('vm aem') as g:
g.custom_command('set', 'set_aem')
g.custom_command('delete', 'delete_aem')
g.custom_command('verify', 'verify_aem')
Expand Down
302 changes: 170 additions & 132 deletions src/aem/azext_aem/custom.py

Large diffs are not rendered by default.

4,677 changes: 1,544 additions & 3,133 deletions src/aem/azext_aem/tests/latest/recordings/test_ExtensionDowngrade.yaml

Large diffs are not rendered by default.

4,596 changes: 1,358 additions & 3,238 deletions src/aem/azext_aem/tests/latest/recordings/test_ExtensionReinstall.yaml

Large diffs are not rendered by default.

4,309 changes: 1,266 additions & 3,043 deletions src/aem/azext_aem/tests/latest/recordings/test_ExtensionUpgrade.yaml

Large diffs are not rendered by default.

8,099 changes: 2,478 additions & 5,621 deletions src/aem/azext_aem/tests/latest/recordings/test_NewExtensionDiskAdd.yaml

Large diffs are not rendered by default.

5,874 changes: 403 additions & 5,471 deletions src/aem/azext_aem/tests/latest/recordings/test_NewExtensionMultiNic.yaml

Large diffs are not rendered by default.

8,068 changes: 2,596 additions & 5,472 deletions src/aem/azext_aem/tests/latest/recordings/test_NewExtensionUltraDisk.yaml

Large diffs are not rendered by default.

4,667 changes: 1,421 additions & 3,246 deletions src/aem/azext_aem/tests/latest/recordings/test_OldExtensionReinstall.yaml

Large diffs are not rendered by default.

3,820 changes: 1,187 additions & 2,633 deletions src/aem/azext_aem/tests/latest/recordings/test_WithSystemAssignedIdentity.yaml

Large diffs are not rendered by default.

5,417 changes: 1,664 additions & 3,753 deletions src/aem/azext_aem/tests/latest/recordings/test_WithUserAssignedIdentity.yaml

Large diffs are not rendered by default.

3,751 changes: 1,126 additions & 2,625 deletions src/aem/azext_aem/tests/latest/recordings/test_WithoutIdentity.yaml

Large diffs are not rendered by default.

3,612 changes: 1,144 additions & 2,468 deletions src/aem/azext_aem/tests/latest/recordings/test_vm_aem_configure.yaml

Large diffs are not rendered by default.

4,185 changes: 1,339 additions & 2,846 deletions src/aem/azext_aem/tests/latest/recordings/test_vm_aem_configure_v2.yaml

Large diffs are not rendered by default.

4,647 changes: 1,407 additions & 3,240 deletions src/aem/azext_aem/tests/latest/recordings/test_vm_aem_configure_v2_individual.yaml

Large diffs are not rendered by default.

4,002 changes: 1,257 additions & 2,745 deletions src/aem/azext_aem/tests/latest/recordings/test_vm_aem_configure_v2_proxy.yaml

Large diffs are not rendered by default.

71 changes: 47 additions & 24 deletions src/aem/azext_aem/tests/latest/test_aem_commands.py

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/aem/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from codecs import open
from setuptools import setup, find_packages

VERSION = "1.0.1"
VERSION = "1.0.2"

CLASSIFIERS = [
'Development Status :: 4 - Beta',
Expand Down
Loading