You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
25
25
26
26
### Fixed
27
27
28
+
* Fixed documentation for `New-RubrikHyperVVMMount` resolving [Issue 756](https://github.com/rubrikinc/rubrik-sdk-for-powershell/issues/756)
28
29
* Fixed documentation for `Sync-RubrikTag`, resolving [Issue 757](https://github.com/rubrikinc/rubrik-sdk-for-powershell/issues/757)
29
30
* Updated API endpoints to `v1` for `Get-RubrikHostVolume`, `New-RubrikSnapshot` (VolumeGroup endpoint) & `Protect-RubrikVolumeGroup` cmdlets, fixing [Issue 747](https://github.com/rubrikinc/rubrik-sdk-for-powershell/issues/747)
30
31
* Fixed bug in `Submit-Request` which causes several issues [Issue 751](https://github.com/rubrikinc/rubrik-sdk-for-powershell/issues/751) & [Issue 752](https://github.com/rubrikinc/rubrik-sdk-for-powershell/issues/752)
# Whether the network should be disabled on mount.This should be set true to avoid ip conflict in case of static IPs.
47
+
# Whether the network should be disabled on mount.This should be set true to avoid ip conflict in case of static IPs.
48
48
[Switch]$DisableNetwork,
49
49
# Whether the network devices should be removed on mount.
50
50
[Switch]$RemoveNetworkDevices,
51
-
# Whether the VM should be powered on after mount.
51
+
# Whether the VM should be powered on after mount. Without this parameter the VM defaults to be powered on. To ensure it isn't, specify -PoweredOn:$false
52
52
[Switch]$PowerOn,
53
53
# Rubrik server IP or FQDN
54
54
[String]$Server=$global:RubrikConnection.server,
@@ -60,28 +60,28 @@ function New-RubrikHyperVVMMount
60
60
61
61
# The Begin section is used to perform one-time loads of data necessary to carry out the function's purpose
62
62
# If a command needs to be run with each iteration or pipeline input, place it in the Process section
63
-
63
+
64
64
# Check to ensure that a session to the Rubrik cluster exists and load the needed header data for authentication
65
65
Test-RubrikConnection
66
-
66
+
67
67
# API data references the name of the function
68
68
# For convenience, that name is saved here to $function
69
69
$function=$MyInvocation.MyCommand.Name
70
-
70
+
71
71
# Retrieve all of the URI, method, body, query, result, filter, and success details for the API endpoint
72
72
Write-Verbose-Message "Gather API Data for $function"
73
73
$resources=Get-RubrikAPIData-endpoint $function
74
74
Write-Verbose-Message "Load API data for $($resources.Function)"
0 commit comments