Show / Hide Table of Contents

Class AuthenticationFactorSettingsDuoSecuritySettings

Settings related to Duo Security
Added In: 19.2.1
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: complex
  • uniqueness: none
Inheritance
object
AuthenticationFactorSettingsDuoSecuritySettings
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.IdentitydomainsService.Models
Assembly: OCI.DotNetSDK.Identitydomains.dll
Syntax
public class AuthenticationFactorSettingsDuoSecuritySettings

Properties

ApiHostname

Declaration
[Required(ErrorMessage = "ApiHostname is required.")]
[JsonProperty(PropertyName = "apiHostname")]
public string ApiHostname { get; set; }
Property Value
Type Description
string

Hostname to access the Duo security account
Added In: 19.2.1
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Remarks

Required

AttestationKey

Declaration
[JsonProperty(PropertyName = "attestationKey")]
public string AttestationKey { get; set; }
Property Value
Type Description
string

Attestation key to attest the request and response between Duo Security
Added In: 19.2.1
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: never
  • type: string
  • uniqueness: none

IntegrationKey

Declaration
[Required(ErrorMessage = "IntegrationKey is required.")]
[JsonProperty(PropertyName = "integrationKey")]
public string IntegrationKey { get; set; }
Property Value
Type Description
string

Integration key from Duo Security authenticator
Added In: 19.2.1
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Remarks

Required

SecretKey

Declaration
[Required(ErrorMessage = "SecretKey is required.")]
[JsonProperty(PropertyName = "secretKey")]
public string SecretKey { get; set; }
Property Value
Type Description
string

Secret key from Duo Security authenticator
Added In: 19.2.1
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Remarks

Required

UserMappingAttribute

Declaration
[Required(ErrorMessage = "UserMappingAttribute is required.")]
[JsonProperty(PropertyName = "userMappingAttribute")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AuthenticationFactorSettingsDuoSecuritySettings.UserMappingAttributeEnum? UserMappingAttribute { get; set; }
Property Value
Type Description
AuthenticationFactorSettingsDuoSecuritySettings.UserMappingAttributeEnum?

User attribute mapping value
Added In: 19.2.1
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Remarks

Required

In this article
Back to top