Module: Google::Cloud::Dlp::V2::ColumnDataProfile::ColumnDataType

Defined in:
proto_docs/google/privacy/dlp/v2/dlp.rb

Overview

Data types of the data in a column. Types may be added over time.

Constant Summary collapse

COLUMN_DATA_TYPE_UNSPECIFIED =

Invalid type.

0
TYPE_INT64 =

Encoded as a string in decimal format.

1
TYPE_BOOL =

Encoded as a boolean "false" or "true".

2
TYPE_FLOAT64 =

Encoded as a number, or string "NaN", "Infinity" or "-Infinity".

3
TYPE_STRING =

Encoded as a string value.

4
TYPE_BYTES =

Encoded as a base64 string per RFC 4648, section 4.

5
TYPE_TIMESTAMP =

Encoded as an RFC 3339 timestamp with mandatory "Z" time zone string: 1985-04-12T23:20:50.52Z

6
TYPE_DATE =

Encoded as RFC 3339 full-date format string: 1985-04-12

7
TYPE_TIME =

Encoded as RFC 3339 partial-time format string: 23:20:50.52

8
TYPE_DATETIME =

Encoded as RFC 3339 full-date "T" partial-time: 1985-04-12T23:20:50.52

9
TYPE_GEOGRAPHY =

Encoded as WKT

10
TYPE_NUMERIC =

Encoded as a decimal string.

11
TYPE_RECORD =

Container of ordered fields, each with a type and field name.

12
TYPE_BIGNUMERIC =

Decimal type.

13
TYPE_JSON =

Json type.

14