Public/Set-RemoteSyslogModule.ps1

<#
    .DESCRIPTION
    Wrapper for Nutanix API version 0.3.
 
    .NOTES
    Author: Timothy Rasiah
#>


function Set-RemoteSyslogModule {
    [CmdletBinding()]
    param (
        $remote_syslog_module
    )
    
    $uuid = $remote_syslog_module.metadata.uuid
    $data = $remote_syslog_module

    $response = Send-Request -method "PUT" -endpoint "/remote_syslog_modules/$($uuid)" -data $data
    return $response
}