Show / Hide Table of Contents

Class TablesForDiscovery

This contains the schema name along with one or more optional table names.

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

Properties

SchemaName

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

This contains the name of the schema.

Remarks

Required

TableNames

Declaration
[JsonProperty(PropertyName = "tableNames")]
public List<string> TableNames { get; set; }
Property Value
Type Description
List<string>

This contains an optional list of the table names.

In this article
Back to top