Updates for 10.7p1
Added Scope to the keycloak call.
This commit is contained in:
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project is transitioning to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project is transitioning to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [2.1.0]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
* Added Support for Zerto 10.7u1 Virtual Appliance - You can now authenticate to Zerto Virtual Appliances and run the other functions of this module.
|
||||||
|
|
||||||
|
### Updated
|
||||||
|
|
||||||
|
* Updated `Invoke-ZertoRestRequest` function [help documentation](https://github.com/ZertoPublic/ZertoApiWrapper/blob/master/docs/Install-ZertoVra.md)
|
||||||
|
|
||||||
## [2.0.0]
|
## [2.0.0]
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
@@ -36,7 +36,6 @@ All recent updates can now be tracked via the [Change Log](https://github.com/Ze
|
|||||||
|
|
||||||
## TODO
|
## TODO
|
||||||
|
|
||||||
* Support ZVM appliance (different connection flow)
|
|
||||||
* JFLR Functionality
|
* JFLR Functionality
|
||||||
* Create VPG (Per-VM modification and Backup Settings)
|
* Create VPG (Per-VM modification and Backup Settings)
|
||||||
* Edit VPG
|
* Edit VPG
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
<# .ExternalHelp ./en-us/ZertoApiWrapper-help.xml #>
|
<#
|
||||||
|
.ExternalHelp ./en-us/ZertoApiWrapper-help.xml
|
||||||
|
#>
|
||||||
function Invoke-ZertoRestRequest {
|
function Invoke-ZertoRestRequest {
|
||||||
[cmdletbinding()]
|
[cmdletbinding()]
|
||||||
param(
|
param(
|
||||||
@@ -64,6 +66,7 @@ function Invoke-ZertoRestRequest {
|
|||||||
'username' = $credential.GetNetworkCredential().UserName
|
'username' = $credential.GetNetworkCredential().UserName
|
||||||
'password' = $credential.GetNetworkCredential().Password
|
'password' = $credential.GetNetworkCredential().Password
|
||||||
'grant_type' = 'password'
|
'grant_type' = 'password'
|
||||||
|
'scope' = 'openid'
|
||||||
}
|
}
|
||||||
|
|
||||||
$params = @{
|
$params = @{
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
RootModule = '.\ZertoApiWrapper.psm1'
|
RootModule = '.\ZertoApiWrapper.psm1'
|
||||||
|
|
||||||
# Version number of this module.
|
# Version number of this module.
|
||||||
ModuleVersion = '2.0.1'
|
ModuleVersion = '2.1.0'
|
||||||
|
|
||||||
# Supported PSEditions
|
# Supported PSEditions
|
||||||
# CompatiblePSEditions = @()
|
# CompatiblePSEditions = @()
|
||||||
|
|||||||
+1
-1
@@ -1 +1 @@
|
|||||||
2.0.1
|
2.1.0
|
||||||
|
|||||||
Reference in New Issue
Block a user