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

[NetAppFiles] bump to 2024-03-01-preview #7947

Merged
Merged
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
12 changes: 12 additions & 0 deletions src/netappfiles-preview/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

Release History
===============
1.0.0b2
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems there are no release notes for 1.0.0b1.

Copy link
Member Author

@audunn audunn Sep 18, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jsntcy You mean the previous version? Do we need to add notes for that here?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add the history for 1.0.0b1 in later PRs

+++++
Support for api-version 2024-03-01-preview
`az netappfiles account backup-vault backup update removed parameter use_existing_snapshot
`az netappfiles volume create` removed parameter `backup-enabled`
`az netappfiles volume create` removed parameter `replication-id`
`az netappfiles volume create` update parameter `usage-threshold`: updated property default from 107374182400 to 100
`az netappfiles volume create` update parameter `usage-threshold`: updated property default from 107374182400 to 100
`az netappfiles volume update` removed parameter `backup-enabled`
`az netappfiles volume update` removed parameter `remote-volume-resource_id`
`az netappfiles volume update` removed parameter `replication-id`

0.4.2
+++++
Support for api-version 2022-11-01-preview
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,29 +4,3 @@
# --------------------------------------------------------------------------------------------

# pylint: disable=unused-argument


def cf_netapp(cli_ctx, *kwargs):
from azure.cli.core.commands.client_factory import get_mgmt_service_client
from azext_netappfiles_preview.vendored_sdks import AzureNetAppFilesManagementClient
return get_mgmt_service_client(cli_ctx, AzureNetAppFilesManagementClient)


def accounts_mgmt_client_factory(cli_ctx, _):
return cf_netapp(cli_ctx).accounts


def pools_mgmt_client_factory(cli_ctx, _):
return cf_netapp(cli_ctx).pools


def volumes_mgmt_client_factory(cli_ctx, _):
return cf_netapp(cli_ctx).volumes


def mount_targets_mgmt_client_factory(cli_ctx, _):
return cf_netapp(cli_ctx).mount_targets


def snapshots_mgmt_client_factory(cli_ctx, _):
return cf_netapp(cli_ctx).snapshots
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,7 @@
#
# Code generated by aaz-dev-tools
# --------------------------------------------------------------------------------------------

# pylint: skip-file
# flake8: noqa

Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command_group(
"netappfiles",
is_preview=True,
)
class __CMDGroup(AAZCommandGroup):
"""Manage Azure NetApp Files (ANF) Resources
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command_group(
"netappfiles account",
is_preview=True,
)
class __CMDGroup(AAZCommandGroup):
"""Manage Azure NetApp Files (ANF) Account Resources.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,11 @@
# flake8: noqa

from .__cmd_group import *
from ._create import *
from ._delete import *
from ._list import *
from ._migrate_backup import *
from ._renew_credentials import *
from ._show import *
from ._update import *
from ._wait import *
Loading
Loading