Show / Hide Table of Contents

Class GroupExtInstanceLevelSchemaNames

DBCS instance-level schema-names. Each schema-name is specific to a DB Instance.
Added In: 18.2.4
SCIM++ Properties:

  • idcsCompositeKey: [dbInstanceId, schemaName]
  • idcsSearchable: true
  • multiValued: true
  • mutability: readOnly
  • required: false
  • returned: request
  • type: complex
Inheritance
object
GroupExtInstanceLevelSchemaNames
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 GroupExtInstanceLevelSchemaNames

Properties

DbInstanceId

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

App Id of DBCS App instance
Added In: 18.2.4
SCIM++ Properties:

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

Required

SchemaName

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

The DBCS schema-name granted to this Group for the DB instance that 'dbInstanceId' specifies.
Added In: 18.2.4
SCIM++ Properties:

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

Required

In this article
Back to top