Enable Radius
| directoryservice_enable_radius | R Documentation | 
Enables multi-factor authentication (MFA) with the Remote Authentication Dial In User Service (RADIUS) server for an AD Connector or Microsoft AD directory¶
Description¶
Enables multi-factor authentication (MFA) with the Remote Authentication Dial In User Service (RADIUS) server for an AD Connector or Microsoft AD directory.
Usage¶
directoryservice_enable_radius(DirectoryId, RadiusSettings)
Arguments¶
| DirectoryId | [required] The identifier of the directory for which to enable MFA. | 
| RadiusSettings | [required] A RadiusSettings object that contains information about the RADIUS server. | 
Value¶
An empty list.
Request syntax¶
svc$enable_radius(
  DirectoryId = "string",
  RadiusSettings = list(
    RadiusServers = list(
      "string"
    ),
    RadiusPort = 123,
    RadiusTimeout = 123,
    RadiusRetries = 123,
    SharedSecret = "string",
    AuthenticationProtocol = "PAP"|"CHAP"|"MS-CHAPv1"|"MS-CHAPv2",
    DisplayLabel = "string",
    UseSameUsername = TRUE|FALSE
  )
)