ColumnMetadata

class oci.fleet_apps_management.models.ColumnMetadata(**kwargs)

Bases: object

Column metadata.

Attributes

TYPE_DATE_TIME A constant which can be used with the type property of a ColumnMetadata.
TYPE_NUMBER A constant which can be used with the type property of a ColumnMetadata.
TYPE_STRING A constant which can be used with the type property of a ColumnMetadata.
description [Required] Gets the description of this ColumnMetadata.
name [Required] Gets the name of this ColumnMetadata.
type [Required] Gets the type of this ColumnMetadata.

Methods

__init__(**kwargs) Initializes a new ColumnMetadata object with values from keyword arguments.
TYPE_DATE_TIME = 'DATE_TIME'

A constant which can be used with the type property of a ColumnMetadata. This constant has a value of “DATE_TIME”

TYPE_NUMBER = 'NUMBER'

A constant which can be used with the type property of a ColumnMetadata. This constant has a value of “NUMBER”

TYPE_STRING = 'STRING'

A constant which can be used with the type property of a ColumnMetadata. This constant has a value of “STRING”

__init__(**kwargs)

Initializes a new ColumnMetadata 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 ColumnMetadata.
  • description (str) – The value to assign to the description property of this ColumnMetadata.
  • type (str) – The value to assign to the type property of this ColumnMetadata. Allowed values for this property are: “STRING”, “NUMBER”, “DATE_TIME”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
description

[Required] Gets the description of this ColumnMetadata. Column description

Returns:The description of this ColumnMetadata.
Return type:str
name

[Required] Gets the name of this ColumnMetadata. Column name.

Returns:The name of this ColumnMetadata.
Return type:str
type

[Required] Gets the type of this ColumnMetadata. Column value type.

Allowed values for this property are: “STRING”, “NUMBER”, “DATE_TIME”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.

Returns:The type of this ColumnMetadata.
Return type:str