-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #266 from rubrikinc/jaapjaap-dev
Oracle Database support in Rubrik SDK for PowerShell. Resolve #255
- Loading branch information
Showing
7 changed files
with
286 additions
and
4 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
#requires -Version 3 | ||
function Get-RubrikOracleDB | ||
{ | ||
<# | ||
.SYNOPSIS | ||
Retrieves details on one or more Oracle DBs known to a Rubrik cluster | ||
.DESCRIPTION | ||
The Get-RubrikOracleDB cmdlet is used to pull a detailed data set from a Rubrik cluster on any number of Oracle DBs | ||
.NOTES | ||
Written by Jaap Brasser for community usage | ||
Twitter: @jaap_brasser | ||
GitHub: jaapbrasser | ||
.LINK | ||
http://rubrikinc.github.io/rubrik-sdk-for-powershell/reference/Get-RubrikOracleDB.html | ||
.EXAMPLE | ||
Get-RubrikOracleDB -Name 'OracleDB1' | ||
This will return details on all Oracle DBs named "OracleDB1". | ||
.EXAMPLE | ||
Get-RubrikOracleDB -Name 'OracleDB1' -SLA Gold | ||
This will return details on all Oracle DBs named "OracleDB1" that are protected by the Gold SLA Domain. | ||
.EXAMPLE | ||
Get-RubrikOracleDB -Relic | ||
This will return all removed Oracle DBs that were formerly protected by Rubrik. | ||
.EXAMPLE | ||
Get-RubrikOracleDB -Name OracleDB1 -DetailedObject | ||
This will return the Oracle DB object with all properties, including additional details such as snapshots taken of the Oracle DB. Using this switch parameter negatively affects performance as more API queries will be performed. | ||
#> | ||
|
||
[CmdletBinding()] | ||
Param( | ||
# Name of the Oracle DB | ||
[Parameter(Position = 0,ValueFromPipelineByPropertyName = $true)] | ||
[String]$Name, | ||
# Filter results to include only relic (removed) Oracle DBs | ||
[Alias('is_relic')] | ||
[Switch]$Relic, | ||
[Alias('is_live_mount')] | ||
[Switch]$LiveMount, | ||
# DetailedObject will retrieved the detailed VM object, the default behavior of the API is to only retrieve a subset of the full VM object unless we query directly by ID. Using this parameter does affect performance as more data will be retrieved and more API-queries will be performed. | ||
[Switch]$DetailedObject, | ||
# SLA Domain policy assigned to the Oracle DB | ||
[String]$SLA, | ||
# Filter by SLA Domain assignment type | ||
[Alias('sla_assignment')] | ||
[ValidateSet('Derived', 'Direct','Unassigned')] | ||
[String]$SLAAssignment, | ||
# Filter the summary information based on the primarycluster_id of the primary Rubrik cluster. Use **_local** as the primary_cluster_id of the Rubrik cluster that is hosting the current REST API session. | ||
[Alias('primary_cluster_id')] | ||
[String]$PrimaryClusterID, | ||
# Oracle DB id | ||
[Parameter(ValueFromPipelineByPropertyName = $true)] | ||
[String]$id, | ||
# SLA id value | ||
[Alias('effective_sla_domain_id')] | ||
[String]$SLAID, | ||
# Rubrik server IP or FQDN | ||
[String]$Server = $global:RubrikConnection.server, | ||
# API version | ||
[String]$api = $global:RubrikConnection.api | ||
) | ||
|
||
Begin { | ||
|
||
# The Begin section is used to perform one-time loads of data necessary to carry out the function's purpose | ||
# If a command needs to be run with each iteration or pipeline input, place it in the Process section | ||
|
||
# Check to ensure that a session to the Rubrik cluster exists and load the needed header data for authentication | ||
Test-RubrikConnection | ||
|
||
# API data references the name of the function | ||
# For convenience, that name is saved here to $function | ||
$function = $MyInvocation.MyCommand.Name | ||
|
||
# Retrieve all of the URI, method, body, query, result, filter, and success details for the API endpoint | ||
Write-Verbose -Message "Gather API Data for $function" | ||
$resources = Get-RubrikAPIData -endpoint $function | ||
Write-Verbose -Message "Load API data for $($resources.Function)" | ||
Write-Verbose -Message "Description: $($resources.Description)" | ||
|
||
} | ||
|
||
Process { | ||
|
||
#region One-off | ||
if ($SLAID.Length -eq 0 -and $SLA.Length -gt 0) { | ||
$SLAID = Test-RubrikSLA -SLA $SLA -Inherit $Inherit -DoNotProtect $DoNotProtect | ||
} | ||
#endregion | ||
|
||
$uri = New-URIString -server $Server -endpoint ($resources.URI) -id $id | ||
$uri = Test-QueryParam -querykeys ($resources.Query.Keys) -parameters ((Get-Command $function).Parameters.Values) -uri $uri | ||
$body = New-BodyString -bodykeys ($resources.Body.Keys) -parameters ((Get-Command $function).Parameters.Values) | ||
$result = Submit-Request -uri $uri -header $Header -method $($resources.Method) -body $body | ||
$result = Test-ReturnFormat -api $api -result $result -location $resources.Result | ||
$result = Test-FilterObject -filter ($resources.Filter) -result $result | ||
|
||
# If the Get-RubrikOracleDB function has been called with the -DetailedObject parameter a separate API query will be performed if the initial query was not based on ID | ||
if (($DetailedObject) -and (-not $PSBoundParameters.containskey('id'))) { | ||
for ($i = 0; $i -lt $result.Count; $i++) { | ||
$Percentage = [int]($i/$result.count*100) | ||
Write-Progress -Activity "DetailedObject queries in Progress, $($i+1) out of $($result.count)" -Status "$Percentage% Complete:" -PercentComplete $Percentage | ||
Get-RubrikOracleDB -id $result[$i].id | ||
} | ||
} else { | ||
return $result | ||
} | ||
|
||
} # End of process | ||
} # End of function |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
Remove-Module -Name 'Rubrik' -ErrorAction 'SilentlyContinue' | ||
Import-Module -Name './Rubrik/Rubrik.psd1' -Force | ||
|
||
foreach ( $privateFunctionFilePath in ( Get-ChildItem -Path './Rubrik/Private' | Where-Object extension -eq '.ps1').FullName ) { | ||
. $privateFunctionFilePath | ||
} | ||
|
||
Describe -Name 'Public/Get-RubrikOracleDB' -Tag 'Public', 'Get-RubrikOracleDB' -Fixture { | ||
#region init | ||
$global:rubrikConnection = @{ | ||
id = 'test-id' | ||
userId = 'test-userId' | ||
token = 'test-token' | ||
server = 'test-server' | ||
header = @{ 'Authorization' = 'Bearer test-authorization' } | ||
time = (Get-Date) | ||
api = 'v1' | ||
version = '4.0.5' | ||
} | ||
#endregion | ||
|
||
Context -Name 'Parameter/SLA' { | ||
Mock -CommandName Test-RubrikConnection -Verifiable -ModuleName 'Rubrik' -MockWith {} | ||
Mock -CommandName Get-RubrikSLA -Verifiable -ModuleName 'Rubrik' -MockWith { | ||
@{ 'id' = 'test-sla_id' } | ||
} | ||
Mock -CommandName Submit-Request -Verifiable -ModuleName 'Rubrik' -MockWith { | ||
@{ | ||
'name' = 'test-oracledb1' | ||
'effectiveSlaDomainName' = 'test-valid_sla_name' | ||
}, | ||
@{ # The server-side filter should not return this record, but this record will validate the response filter logic | ||
'name' = 'test-oracledb2' | ||
'effectiveSlaDomainName' = 'test-invalid_sla_name' | ||
} | ||
} | ||
It -Name 'should overwrite $SLAID' -Test { | ||
( Get-RubrikOracleDB -SLA 'test-valid_sla_name' ).Name | | ||
Should -BeExactly 'test-oracledb1' | ||
} | ||
Assert-VerifiableMock | ||
Assert-MockCalled -CommandName Test-RubrikConnection -ModuleName 'Rubrik' -Times 1 | ||
Assert-MockCalled -CommandName Get-RubrikSLA -ModuleName 'Rubrik' -Times 1 | ||
Assert-MockCalled -CommandName Submit-Request -ModuleName 'Rubrik' -Times 1 | ||
} | ||
|
||
Context -Name 'Parameter/SLAID' { | ||
Mock -CommandName Test-RubrikConnection -Verifiable -ModuleName 'Rubrik' -MockWith {} | ||
Mock -CommandName Submit-Request -Verifiable -ModuleName 'Rubrik' -MockWith { | ||
@{ | ||
'name' = 'test-oracledb1' | ||
'effectiveSlaDomainName' = 'test-valid_sla_name' | ||
} | ||
} | ||
It -Name 'SLAID Query should return OracleDB1 DB' -Test { | ||
( Get-RubrikOracleDB -SLAID 'test-valid_sla_id' ).Name | | ||
Should -BeExactly 'test-oracledb1' | ||
} | ||
It -Name 'SLAID Query should return OracleDB1 SLA' -Test { | ||
( Get-RubrikOracleDB -SLAID 'test-valid_sla_id' ).effectiveSlaDomainName | | ||
Should -BeExactly 'test-valid_sla_name' | ||
} | ||
Assert-VerifiableMock | ||
Assert-MockCalled -CommandName Test-RubrikConnection -ModuleName 'Rubrik' -Times 1 | ||
Assert-MockCalled -CommandName Submit-Request -ModuleName 'Rubrik' -Times 1 | ||
} | ||
} |
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,58 @@ | ||
Remove-Module -Name 'Rubrik' -ErrorAction 'SilentlyContinue' | ||
Import-Module -Name './Rubrik/Rubrik.psd1' -Force | ||
|
||
foreach ( $privateFunctionFilePath in ( Get-ChildItem -Path './Rubrik/Private' | Where-Object extension -eq '.ps1').FullName ) { | ||
. $privateFunctionFilePath | ||
} | ||
|
||
Describe -Name 'Public/New-RubrikSnapshot' -Tag 'Public', 'New-RubrikSnapshot' -Fixture { | ||
#region init | ||
$global:rubrikConnection = @{ | ||
id = 'test-id' | ||
userId = 'test-userId' | ||
token = 'test-token' | ||
server = 'test-server' | ||
header = @{ 'Authorization' = 'Bearer test-authorization' } | ||
time = (Get-Date) | ||
api = 'v1' | ||
version = '4.0.5' | ||
} | ||
#endregion | ||
|
||
Context -Name 'Parameters' { | ||
Mock -CommandName Test-RubrikConnection -Verifiable -ModuleName 'Rubrik' -MockWith {} | ||
Mock -CommandName Test-RubrikSLA -Verifiable -ModuleName 'Rubrik' -MockWith { | ||
@{ | ||
'slaid' = '11111' | ||
} | ||
} | ||
Mock -CommandName Test-QueryParam -Verifiable -ModuleName 'Rubrik' -MockWith { | ||
@{ | ||
'slaid' = 'https://server/api/internal/oracle/database/11111/snapshot' | ||
} | ||
} | ||
Mock -CommandName Submit-Request -Verifiable -ModuleName 'Rubrik' -MockWith { | ||
@{ | ||
'id' = 'CREATE_ORACLE_SNAPSHOT_11111' | ||
'status' = 'QUEUED' | ||
'progress' = '0' | ||
} | ||
} | ||
It -Name 'Should Return status of QUEUED' -Test { | ||
( New-RubrikSnapshot -id 1 -SLA 'Gold' -Confirm:$false).status | | ||
Should -BeExactly 'QUEUED' | ||
} | ||
Context -Name 'Parameter Validation' { | ||
It -Name 'Parameter id cannot be $null or empty' -Test { | ||
{ New-RubrikSnapshot -id $null } | | ||
Should -Throw "Cannot bind argument to parameter 'id' because it is an empty string." | ||
} | ||
|
||
} | ||
Assert-VerifiableMock | ||
Assert-MockCalled -CommandName Test-RubrikConnection -ModuleName 'Rubrik' -Times 1 | ||
Assert-MockCalled -CommandName Test-RubrikSLA -ModuleName 'Rubrik' -Times 1 | ||
Assert-MockCalled -CommandName Test-QueryParam -ModuleName 'Rubrik' -Times 1 | ||
Assert-MockCalled -CommandName Submit-Request -ModuleName 'Rubrik' -Times 1 | ||
} | ||
} |