Show / Hide Table of Contents

Class MyTrustedUserAgentUser

user for whom the trust-token was issued
SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
Inheritance
object
MyTrustedUserAgentUser
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 MyTrustedUserAgentUser

Properties

Display

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

Friendly name of the User to be used for purposes of display.
SCIM++ Properties:

  • caseExact: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

Ocid

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

The OCID of the user
Added In: 2105091740
SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • idcsRequiresWriteForAccessFlows: true
  • required: false
  • returned: always
  • type: string
  • uniqueness: none

Ref

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

Full URI to the user for whom the trust-token was issued.
SCIM++ Properties:

  • caseExact: false
  • multiValued: false
  • mutability: readOnly
  • idcsRequiresWriteForAccessFlows: true
  • required: true
  • returned: default
  • type: reference
  • uniqueness: none
Remarks

Required

Value

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

The SCIM ID of the user for whom the trust-token was issued.
SCIM++ Properties:

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

Required

In this article
Back to top