Show / Hide Table of Contents

Class SchemaSummary

The details of a schema fetched from the database.

Inheritance
object
SchemaSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatasafeService.Models
Assembly: OCI.DotNetSDK.Datasafe.dll
Syntax
public class SchemaSummary

Properties

IsOracleMaintained

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

Indicates if the schema is oracle supplied.

Remarks

Required

SchemaName

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

Name of the schema.

Remarks

Required

In this article
Back to top