Show / Hide Table of Contents

Class MyRequestRequesting

Requestable resource reference.
SCIM++ Properties:

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

Properties

Description

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

Resource description
Added In: 2307071836
SCIM++ Properties:

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

Display

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

Resource display name
SCIM++ Properties:

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

Ref

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

Resource URI
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: reference
  • uniqueness: none

Type

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

Requestable type. Allowed values are Group and App.
SCIM++ Properties:

  • caseExact: true
  • idcsCsvAttributeName: Requestable Type
  • idcsDefaultValue: Group
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Remarks

Required

Value

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

Resource identifier
SCIM++ Properties:

  • caseExact: true
  • idcsCsvAttributeName: requesting_id
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Remarks

Required

In this article
Back to top