Public/Logging/Get-R1LogTimezone.ps1
|
# .ExternalHelp psRadiantOne-help.xml function Get-R1LogTimezone { [CmdletBinding()] [OutputType('System.Object')] param( ) Begin { Assert-R1Session -RequireToken }#begin Process { $URI = Resolve-R1ServiceUrl -Service Settings -Path 'log_settings/timezones' Invoke-R1RestMethod -Uri $URI -Method GET }#process End { }#end } |