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
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ class CheckFilePathAvailability(AAZCommand):
"""Check if a file path is available.

Check if a file path is available

:example: CheckFilePathAvailability
az netappfiles check-file-path-availability --location eastus --name my-exact-filepth --subnet-id /subscriptions/9760acf5-4638-11e7-9bdb-020073ca7778/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3
"""

_aaz_info = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ class CheckNameAvailability(AAZCommand):
"""Check if a resource name is available.

Check if a resource name is available

:example: CheckNameAvailability
az netappfiles check-name-availability --location eastus --name accName --type Microsoft.NetApp/netAppAccounts --resource-group myRG
"""

_aaz_info = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
)
class AuthorizeExternalReplication(AAZCommand):
"""Starts SVM peering and returns a command to be run on the external ONTAP to accept it. Once the SVM have been peered a SnapMirror will be created

:example: Volumes_AuthorizeExternalReplication
az netappfiles volume replication authorize-external-replication --resource-group myRG --account-name account1 --pool-name pool1 --volume-name volume1
"""

_aaz_info = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
)
class FinalizeExternalReplication(AAZCommand):
"""Finalizes the migration of an external volume by releasing the replication and breaking the external cluster peering if no other migration is active.

:example: Volumes_FinalizeExternalReplication
az netappfiles volume replication finalize-external-replication --resource-group myRG --account-name account1 --pool-name pool1 --volume-name volume1
"""

_aaz_info = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
)
class PeerExternalCluster(AAZCommand):
"""Starts peering the external cluster for this migration volume

:example: Volumes_PeerExternalCluster
az netappfiles volume replication peer-external-cluster --resource-group myRG --account-name account1 --pool-name pool1 --volume-name volume1 --peer-ip-addresses "[0.0.0.1,0.0.0.2,0.0.0.3,0.0.0.4,0.0.0.5,0.0.0.6]"
"""

_aaz_info = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
)
class PerformReplicationTransfer(AAZCommand):
"""Performs an adhoc replication transfer on a volume with volumeType Migration

:example: Volumes_PerformReplicationTransfer
az netappfiles volume replication perform-replication-transfer --resource-group myRG --account-name account1 --pool-name pool1 --volume-name volume1
"""

_aaz_info = {
Expand Down
Loading