Updates for 10.7p1

Added Scope to the keycloak call.
This commit is contained in:
2025-09-17 08:32:17 -04:00
parent 5b9c692f5b
commit b3e27c8ef7
5 changed files with 16 additions and 4 deletions
+10
View File
@@ -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/),
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]
### Added
-1
View File
@@ -36,7 +36,6 @@ All recent updates can now be tracked via the [Change Log](https://github.com/Ze
## TODO
* Support ZVM appliance (different connection flow)
* JFLR Functionality
* Create VPG (Per-VM modification and Backup Settings)
* Edit VPG
@@ -1,4 +1,6 @@
<# .ExternalHelp ./en-us/ZertoApiWrapper-help.xml #>
<#
.ExternalHelp ./en-us/ZertoApiWrapper-help.xml
#>
function Invoke-ZertoRestRequest {
[cmdletbinding()]
param(
@@ -64,6 +66,7 @@ function Invoke-ZertoRestRequest {
'username' = $credential.GetNetworkCredential().UserName
'password' = $credential.GetNetworkCredential().Password
'grant_type' = 'password'
'scope' = 'openid'
}
$params = @{
+1 -1
View File
@@ -12,7 +12,7 @@
RootModule = '.\ZertoApiWrapper.psm1'
# Version number of this module.
ModuleVersion = '2.0.1'
ModuleVersion = '2.1.0'
# Supported PSEditions
# CompatiblePSEditions = @()
+1 -1
View File
@@ -1 +1 @@
2.0.1
2.1.0