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
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -19,13 +19,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
19
19
### Added
20
20
21
21
* New `Get-RubrikVMDownloadLink` and `Start-RubrikVMDownloadLink` cmdlets added along with associated unit tests
22
-
* Added `Test-ManagedByRSC`,`Get-RubrikRSCVM`,`Get-RubrikRSCDatabase`,`Get-RubrikRSCFileset`,`Get-RubrikRSCFilesetTemplate`,`Get-RubrikRSCHost`,`Get-RubrikNutanixVM`,`Get-RubrikHyperVVM`, `Get-RubrikRSCSla`, `Get-RubrikRSCSqlInstance`, `New-RubrikRSCSla`, `Set-RubrikRSCSqlInstance`, `Set-RubrikRSCDatabase`,`Protect-RubrikRSCVM`,`Protect-RubrikRSCHyperVVM`,`Protect-RubrikRSCDatabase`, and `Protect-RubrikRSCNutanixVM` to support integration into the RSC PowerShell SDK
22
+
* Added `Test-ManagedByRSC`,`Get-RubrikRSCVM`,`Get-RubrikRSCDatabase`,`Get-RubrikRSCFileset`,`Get-RubrikRSCFilesetTemplate`,`Get-RubrikRSCHost`,`Get-RubrikNutanixVM`,`Get-RubrikHyperVVM`, `Get-RubrikRSCSla`, `Get-RubrikRSCSqlInstance`, `New-RubrikRSCSla`, `Set-RubrikRSCSla`, `Set-RubrikRSCSqlInstance`, `Set-RubrikRSCDatabase`,`Protect-RubrikRSCVM`,`Protect-RubrikRSCHyperVVM`,`Protect-RubrikRSCDatabase`, and `Protect-RubrikRSCNutanixVM` to support integration into the RSC PowerShell SDK
23
23
24
24
### Modified
25
25
* Modified `Connect-Rubrik` to detect if cluster is managed by RSC - if it is, redirect certain cmdlets to GQL Endpoints
26
26
* Added a new `-RedirectToRSC` parameter to `Connect-Rubrik` to turn redirection to GQL endpoints on or off
27
27
* Added new global variables `RSCInstance`,`clusterId`, and `RSCHeaders` to rubrikConnection
28
-
* Modified `Get-RubrikSla`,`Get-RubrikVM`,`Get-RubrikHyperVVM`, `Get-RubrikNutanixVM`,`Get-RubrikFileset`,`Get-RubrikFilesetTemplate`,`Get-RubrikHost`,`Get-RubrikDatabase`, `Get-RubrikSqlInstance`, `New-RubrikSla`, `Set-RubrikSqlInstance`, `Set-RubrikDatabase`,`Protect-RubrikDatabase`,`Protect-RubrikVM`,`Protect-RubrikNutanixVM`, and `Protect-RubrikHyperVVM` to redirect to newly added (above) cmdlets that call GQL endpoints
28
+
* Modified `Get-RubrikSla`,`Get-RubrikVM`,`Get-RubrikHyperVVM`, `Get-RubrikNutanixVM`,`Get-RubrikFileset`,`Get-RubrikFilesetTemplate`,`Get-RubrikHost`,`Get-RubrikDatabase`, `Get-RubrikSqlInstance`, `New-RubrikSla`, `Set-RubrikSqlInstance`, `Set-RubrikSla`, `Set-RubrikDatabase`,`Protect-RubrikDatabase`,`Protect-RubrikVM`,`Protect-RubrikNutanixVM`, and `Protect-RubrikHyperVVM` to redirect to newly added (above) cmdlets that call GQL endpoints
# Number of months, quarters or years to retain the monthly backups. For CDM versions prior to 5.0, this value must be set in years
41
+
[int]$MonthlyRetention,
42
+
# Day of month for the monthly snapshots when advanced configuration is enabled. The default is the last day of the month. Does not apply to CDM versions prior to 5.0
43
+
[ValidateSet('FirstDay','Fifteenth','LastDay')]
44
+
[String]$DayOfMonth='LastDay',
45
+
# Retention type to apply to monthly snapshots. Does not apply to CDM versions prior to 5.0
46
+
[ValidateSet('Monthly','Quarterly','Yearly')]
47
+
[String]$MonthlyRetentionType='Monthly',
48
+
# Quarterly frequency to take snapshots. Does not apply to CDM versions prior to 5.0
49
+
[int]$QuarterlyFrequency,
50
+
# Number of quarters or years to retain the monthly snapshots. Does not apply to CDM versions prior to 5.0
51
+
[int]$QuarterlyRetention,
52
+
# Day of quarter for the quarterly snapshots when advanced configuration is enabled. The default is the last day of the quarter. Does not apply to CDM versions prior to 5.0
53
+
[ValidateSet('FirstDay','LastDay')]
54
+
[String]$DayOfQuarter='LastDay',
55
+
# Month that starts the first quarter of the year for the quarterly snapshots when advanced configuration is enabled. The default is January. Does not apply to CDM versions prior to 5.0
# Retention type to apply to quarterly snapshots. The default is Quarterly. Does not apply to CDM versions prior to 5.0
59
+
[ValidateSet('Quarterly','Yearly')]
60
+
[String]$QuarterlyRetentionType='Quarterly',
61
+
# Yearly frequency to take snapshots
62
+
[int]$YearlyFrequency,
63
+
# Number of years to retain the yearly snapshots
64
+
[int]$YearlyRetention,
65
+
# Day of year for the yearly snapshots when advanced configuration is enabled. The default is the last day of the year. Does not apply to CDM versions prior to 5.0
66
+
[ValidateSet('FirstDay','LastDay')]
67
+
[String]$DayOfYear='LastDay',
68
+
# Month that starts the first quarter of the year for the quarterly snapshots when advanced configuration is enabled. The default is January. Does not apply to CDM versions prior to 5.0
0 commit comments