-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Migrate vmware private-cloud show/create/update/delete/list * migrate vmware private-cloud list-admin-credential/rotate-vcenter-password * Migrate commands vmware private-cloud identity and enable-cmk-encryption/disable-cmk-encryption * migrate commands group 'vmware cluster' * migrate commands group 'vmware authorization' * migrate commands group 'vmware hcx-enterprise-site' * Optimize the confirmation prompt for vmware create command * migrate commands group 'vmware location' * migrate commands group 'vmware datastore' * migrate commands group 'vmware addon' * migrate commands group 'vmware global-reach-connection' * migrate commands group 'vmware cloud-link' * migrate commands group 'vmware script-cmdlet' * migrate commands group 'vmware script-package' * migrate commands group 'vmware workload-network dhcp' * migrate commands group 'vmware workload-network dns-service' * migrate commands group 'vmware workload-network dns-zone' * migrate commands group 'vmware workload-network port-mirroring' * migrate commands group 'vmware workload-network segment' * migrate commands group 'vmware workload-network public-ip' * migrate commands group 'vmware workload-network vm-group' * migrate commands group 'vmware workload-network vm' * migrate commands group 'vmware workload-network gateway' * migrate commands group 'vmware placement-policy' * migrate commands group 'vmware vm' * Migrate vmware private-cloud identity-source * migrate command group 'vmware script-execution', except create command * record test for test_vmware_private_cloud * fix test issues * add tests for vmware delete * update vmware tests * fix identity source create tests * fix ci issues * fix ci issues * migrate command 'az vmware script-execution create' * clean up code * fix linter issues * remove vendored_sdks * fix linter issues
- Loading branch information
Showing
234 changed files
with
59,701 additions
and
31,690 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
# -------------------------------------------------------------------------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
# -------------------------------------------------------------------------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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( | ||
"vmware", | ||
) | ||
class __CMDGroup(AAZCommandGroup): | ||
"""Commands to manage Azure VMware Solution. | ||
""" | ||
pass | ||
|
||
|
||
__all__ = ["__CMDGroup"] |
22 changes: 11 additions & 11 deletions
22
src/vmware/azext_vmware/_client_factory.py → ...zext_vmware/aaz/latest/vmware/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# -------------------------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See License.txt in the project root for license information. | ||
# -------------------------------------------------------------------------------------------- | ||
|
||
|
||
def cf_vmware(cli_ctx, *_): | ||
|
||
from azure.cli.core.commands.client_factory import get_mgmt_service_client | ||
from azext_vmware.vendored_sdks.avs_client import AVSClient | ||
return get_mgmt_service_client(cli_ctx, AVSClient) | ||
# -------------------------------------------------------------------------------------------- | ||
# 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 * |
23 changes: 23 additions & 0 deletions
23
src/vmware/azext_vmware/aaz/latest/vmware/addon/__cmd_group.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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( | ||
"vmware addon", | ||
) | ||
class __CMDGroup(AAZCommandGroup): | ||
"""Commands to manage addons for a private cloud. | ||
""" | ||
pass | ||
|
||
|
||
__all__ = ["__CMDGroup"] |
16 changes: 16 additions & 0 deletions
16
src/vmware/azext_vmware/aaz/latest/vmware/addon/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# -------------------------------------------------------------------------------------------- | ||
# 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 ._create import * | ||
from ._delete import * | ||
from ._list import * | ||
from ._show import * | ||
from ._update import * |
Oops, something went wrong.