Show / Hide Table of Contents

Class ExtensionDbcsGroup

Schema for Database Service Resource

Inheritance
object
ExtensionDbcsGroup
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 ExtensionDbcsGroup

Properties

DomainLevelSchema

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

DBCS Domain-level schema-name. This attribute refers implicitly to a value of 'domainLevelSchemaNames' for a particular DB Domain.
Added In: 18.2.4
SCIM++ Properties:

  • idcsSearchable: false
  • idcsSensitive: none
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none

DomainLevelSchemaNames

Declaration
[JsonProperty(PropertyName = "domainLevelSchemaNames")]
public List<GroupExtDomainLevelSchemaNames> DomainLevelSchemaNames { get; set; }
Property Value
Type Description
List<GroupExtDomainLevelSchemaNames>

DBCS Domain-level schema-names. Each value is specific to a DB Domain.
Added In: 18.2.4
SCIM++ Properties:

  • idcsCompositeKey: [domainName, schemaName]
  • idcsSearchable: true
  • multiValued: true
  • mutability: readOnly
  • required: false
  • returned: request
  • type: complex

InstanceLevelSchema

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

DBCS instance-level schema-name. This attribute refers implicitly to a value of 'instanceLevelSchemaNames' for a particular DB Instance.
Added In: 18.2.4
SCIM++ Properties:

  • idcsSearchable: false
  • idcsSensitive: none
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none

InstanceLevelSchemaNames

Declaration
[JsonProperty(PropertyName = "instanceLevelSchemaNames")]
public List<GroupExtInstanceLevelSchemaNames> InstanceLevelSchemaNames { get; set; }
Property Value
Type Description
List<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
In this article
Back to top