Skip to content

Commit 8357d6f

Browse files
Aman-Jain-14Aman JainCopilot
authored
[amlfs] Add az amlfs auto-import commands (#9134)
* [amlfs] Add az amlfs auto-import commands * Updating History and setup files * Update src/amlfs/azext_amlfs/aaz/latest/amlfs/auto_import/_update.py Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> (cherry picked from commit 3d1f1fc) * Updating create option conflict resolution for shorter length * Adding re-recorded Import Job test * Adding re-recorded AutoExportJob tests * Adding re-recorded test results --------- Co-authored-by: Aman Jain <amajai@microsoft.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 9fdce07 commit 8357d6f

File tree

17 files changed

+10175
-2898
lines changed

17 files changed

+10175
-2898
lines changed

src/amlfs/HISTORY.rst

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

6+
1.2.0
7+
+++++
8+
Added: az amlfs auto-import create/update/list/show/delete commands for automatically importing data from Blob Storage to AMLFS
9+
610
1.1.0
711
+++++
812
Added: az amlfs import create/update/list/show/delete commands for importing data from Blob Storage to AMLFS

src/amlfs/azext_amlfs/aaz/latest/amlfs/__cmd_group.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"amlfs",
1616
)
1717
class __CMDGroup(AAZCommandGroup):
18-
"""This is an extension to Azure CLI to manage Amlfs resources.
18+
"""Manage Azure Managed Lustre Filesystem
1919
"""
2020
pass
2121

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# --------------------------------------------------------------------------------------------
2+
# Copyright (c) Microsoft Corporation. All rights reserved.
3+
# Licensed under the MIT License. See License.txt in the project root for license information.
4+
#
5+
# Code generated by aaz-dev-tools
6+
# --------------------------------------------------------------------------------------------
7+
8+
# pylint: skip-file
9+
# flake8: noqa
10+
11+
from azure.cli.core.aaz import *
12+
13+
14+
@register_command_group(
15+
"amlfs auto-import",
16+
)
17+
class __CMDGroup(AAZCommandGroup):
18+
"""Manage Auto Import Job
19+
"""
20+
pass
21+
22+
23+
__all__ = ["__CMDGroup"]
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# --------------------------------------------------------------------------------------------
2+
# Copyright (c) Microsoft Corporation. All rights reserved.
3+
# Licensed under the MIT License. See License.txt in the project root for license information.
4+
#
5+
# Code generated by aaz-dev-tools
6+
# --------------------------------------------------------------------------------------------
7+
8+
# pylint: skip-file
9+
# flake8: noqa
10+
11+
from .__cmd_group import *
12+
from ._create import *
13+
from ._delete import *
14+
from ._list import *
15+
from ._show import *
16+
from ._update import *
17+
from ._wait import *

0 commit comments

Comments
 (0)