Show / Hide Table of Contents

Class AppBasedOnTemplate

Application template on which the application is based.
SCIM++ Properties:

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

Properties

LastModified

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

The most recent DateTime that the appTemplate on which the application based upon is updated. The attribute MUST be a DateTime.
SCIM++ Properties:

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

Ref

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

URI of the application template.
SCIM++ Properties:

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

Value

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

Identifier of the application template.
SCIM++ Properties:

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

Required

WellKnownId

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

Unique Well-known identifier used to reference app template.
Added In: 18.2.6
SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
In this article
Back to top