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

[connectedmachine] release stable version 2022-12-27 #6522

Merged
merged 24 commits into from
Aug 14, 2023
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
8467e6c
Adding ExtensionImage + aaz
ankjayant May 2, 2023
15e3a22
Updating patches + history
ankjayant May 11, 2023
4e4c419
Comment fixes + Generating from stable version
ankjayant May 25, 2023
de09bcc
add extension image commands
yaotongms Jul 7, 2023
b88a39e
remove private link scope show machine details
yaotongms Jul 14, 2023
a267318
Merge pull request #1 from yaotongms/feature-extensionimage
yaotongms Jul 14, 2023
8ea5b02
add all tests
yaotongms Jul 17, 2023
cfeb05a
add all tests
yaotongms Jul 17, 2023
6b8dd6b
fix swagger regex
yaotongms Jul 25, 2023
fdd9d74
add test on install patches
yaotongms Aug 7, 2023
515f0ff
Revert "add test on install patches"
yaotongms Aug 7, 2023
b54701a
add test on install patches
yaotongms Aug 8, 2023
9c5ebec
fix code style
yaotongms Aug 9, 2023
c15131a
remove old code and shorten argument names
yaotongms Aug 9, 2023
6d6fc0e
add missing descriptions
yaotongms Aug 9, 2023
db6fe17
fix command description
yaotongms Aug 9, 2023
4942cf4
Update src/connectedmachine/HISTORY.rst
yaotongms Aug 11, 2023
b1a0601
Update src/connectedmachine/azext_connectedmachine/aaz/latest/connect…
yaotongms Aug 11, 2023
d459313
Update src/connectedmachine/azext_connectedmachine/aaz/latest/connect…
yaotongms Aug 11, 2023
31deb65
Update src/connectedmachine/azext_connectedmachine/aaz/latest/connect…
yaotongms Aug 11, 2023
90cfcfe
Update src/connectedmachine/azext_connectedmachine/aaz/latest/connect…
yaotongms Aug 11, 2023
304ee24
fix command description
yaotongms Aug 11, 2023
6db95ab
fix command description
yaotongms Aug 11, 2023
0d23f55
Update src/connectedmachine/setup.py
yaotongms Aug 13, 2023
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
3 changes: 3 additions & 0 deletions src/connectedmachine/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

Release History
===============
0.6.0
+++++
* Adding install-patches/assess-patches/Extensionimage API's. 2022/12/27 is used for aaz generation. Migrated to aaz.
yaotongms marked this conversation as resolved.
Show resolved Hide resolved

0.5.1
+++++
Expand Down
10 changes: 0 additions & 10 deletions src/connectedmachine/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,16 +75,6 @@ az connectedmachine private-link-scope list --resource-group "my-resource-group"
```
az connectedmachine private-link-scope show --resource-group "my-resource-group" --scope-name "my-privatelinkscope"
```
##### Show-validation-detail #####
```
az connectedmachine private-link-scope show-validation-detail --location "wus2" \
--private-link-scope-id "f5dc51d3-92ed-4d7e-947a-775ea79b4919"
```
##### Show-validation-detail-for-machine #####
```
az connectedmachine private-link-scope show-validation-detail-for-machine --machine-name "machineName" \
--resource-group "my-resource-group"
```
##### Update-tag #####
```
az connectedmachine private-link-scope update-tag --tags Tag1="Value1" Tag2="Value2" \
Expand Down
11 changes: 11 additions & 0 deletions src/connectedmachine/azext_connectedmachine/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,17 @@ def __init__(self, cli_ctx=None):

def load_command_table(self, args):
from azext_connectedmachine.generated.commands import load_command_table
from azure.cli.core.aaz import load_aaz_command_table
try:
from . import aaz
except ImportError:
aaz = None
if aaz:
load_aaz_command_table(
loader=self,
aaz_pkg_name=aaz.__name__,
args=args
)
load_command_table(self, args)
try:
from azext_connectedmachine.manual.commands import load_command_table as load_command_table_manual
Expand Down
6 changes: 6 additions & 0 deletions src/connectedmachine/azext_connectedmachine/aaz/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
#
# Code generated by aaz-dev-tools
# --------------------------------------------------------------------------------------------
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
#
# Code generated by aaz-dev-tools
# --------------------------------------------------------------------------------------------
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
#
# Code generated by aaz-dev-tools
# --------------------------------------------------------------------------------------------

# pylint: skip-file
# flake8: noqa

from azure.cli.core.aaz import *


@register_command_group(
"connectedmachine",
)
class __CMDGroup(AAZCommandGroup):
"""Manage an Azure Arc-Enabled Server.
"""
pass


__all__ = ["__CMDGroup"]
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
#
# Code generated by aaz-dev-tools
# --------------------------------------------------------------------------------------------

# pylint: skip-file
# flake8: noqa

from .__cmd_group import *
from ._assess_patches import *
from ._delete import *
from ._install_patches import *
from ._list import *
from ._show import *
from ._update import *
from ._upgrade_extension import *
Loading