Skip to content
Open
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
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,743 changes: 1,553 additions & 3,190 deletions src/aem/azext_aem/tests/latest/recordings/test_ExtensionDowngrade.yaml

Large diffs are not rendered by default.

5,027 changes: 1,600 additions & 3,427 deletions src/aem/azext_aem/tests/latest/recordings/test_ExtensionReinstall.yaml

Large diffs are not rendered by default.

4,331 changes: 1,261 additions & 3,070 deletions src/aem/azext_aem/tests/latest/recordings/test_ExtensionUpgrade.yaml

Large diffs are not rendered by default.

8,117 changes: 2,501 additions & 5,616 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,909 changes: 2,966 additions & 5,943 deletions src/aem/azext_aem/tests/latest/recordings/test_NewExtensionUltraDisk.yaml

Large diffs are not rendered by default.

4,630 changes: 1,411 additions & 3,219 deletions src/aem/azext_aem/tests/latest/recordings/test_OldExtensionReinstall.yaml

Large diffs are not rendered by default.

4,292 changes: 1,379 additions & 2,913 deletions src/aem/azext_aem/tests/latest/recordings/test_WithSystemAssignedIdentity.yaml

Large diffs are not rendered by default.

5,425 changes: 1,681 additions & 3,744 deletions src/aem/azext_aem/tests/latest/recordings/test_WithUserAssignedIdentity.yaml

Large diffs are not rendered by default.

4,131 changes: 1,316 additions & 2,815 deletions src/aem/azext_aem/tests/latest/recordings/test_WithoutIdentity.yaml

Large diffs are not rendered by default.

3,631 changes: 1,136 additions & 2,495 deletions src/aem/azext_aem/tests/latest/recordings/test_vm_aem_configure.yaml

Large diffs are not rendered by default.

4,200 changes: 1,335 additions & 2,865 deletions src/aem/azext_aem/tests/latest/recordings/test_vm_aem_configure_v2.yaml

Large diffs are not rendered by default.

4,666 changes: 1,399 additions & 3,267 deletions src/aem/azext_aem/tests/latest/recordings/test_vm_aem_configure_v2_individual.yaml

Large diffs are not rendered by default.

4,039 changes: 1,258 additions & 2,781 deletions src/aem/azext_aem/tests/latest/recordings/test_vm_aem_configure_v2_proxy.yaml

Large diffs are not rendered by default.

81 changes: 55 additions & 26 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