Skip to main content

PutClientLogConfigurationV1Request

Properties

NameTypeDescriptionNotes
ClientIdStringLog configuration's client ID[optional]
DurationMinutesInt32Duration in minutes for log configuration to remain in effect before resetting to defaults.[optional] [default to 240]
RootLevelStandardlevel[required]
LogLevelsmap[string]StandardlevelMapping of identifiers to Standard Log Level values[optional]
ExpirationSystem.DateTimeExpiration date-time of the log configuration request. Can be no greater than 24 hours from current date-time.[optional]

Examples

  • Prepare the resource
$PutClientLogConfigurationV1Request = Initialize-PutClientLogConfigurationV1Request  -ClientId 3a38a51992e8445ab51a549c0a70ee66 `
-DurationMinutes 120 `
-RootLevel null `
-LogLevels INFO `
-Expiration 2024-11-06T01:31:08.013164Z
  • Convert the resource to JSON
$PutClientLogConfigurationV1Request | ConvertTo-JSON

[Back to top]