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

Change Get-RubrikOrganization to address issue 224 #293

Merged
merged 5 commits into from
May 27, 2019
Merged
Show file tree
Hide file tree
Changes from 3 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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## 2019-05-22

### Changed [Resolving issues]

* Get-RubrikOrganization will only return an exact match as per [224](https://github.com/rubrikinc/rubrik-sdk-for-powershell/issues/224)
* Updated documentation to fix errors on Protect-RubrikVM entry as per [162](https://github.com/rubrikinc/rubrik-sdk-for-powershell/issues/162)

## 2019-03-27 [Quickstart Documentation Update]

### Changed
Expand Down
4 changes: 3 additions & 1 deletion Rubrik/Private/Get-RubrikAPIData.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,9 @@ function Get-RubrikAPIData($endpoint) {
name = 'name'
}
Result = 'data'
Filter = ''
Filter = @{
'name' = 'name'
}
Success = '200'
}
}
Expand Down
2 changes: 1 addition & 1 deletion Rubrik/Rubrik.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'Rubrik.psm1'

# Version number of this module.
ModuleVersion = '4.0.0.254'
ModuleVersion = '4.0.0.255'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down