SchemaDefinition

class oci.database_management.models.SchemaDefinition(**kwargs)

Bases: object

The schema object details.

Methods

__init__(**kwargs) Initializes a new SchemaDefinition object with values from keyword arguments.

Attributes

name [Required] Gets the name of this SchemaDefinition.
objects Gets the objects of this SchemaDefinition.
__init__(**kwargs)

Initializes a new SchemaDefinition object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • name (str) – The value to assign to the name property of this SchemaDefinition.
  • objects (list[str]) – The value to assign to the objects property of this SchemaDefinition.
name

[Required] Gets the name of this SchemaDefinition. The name of the schema.

Returns:The name of this SchemaDefinition.
Return type:str
objects

Gets the objects of this SchemaDefinition. The names of schema objects.

Returns:The objects of this SchemaDefinition.
Return type:list[str]