Class: Google::Privacy::Dlp::V2::TimePartConfig

Inherits:
Object
  • Object
show all
Defined in:
lib/google/cloud/dlp/v2/doc/google/privacy/dlp/v2/dlp.rb

Overview

For use with +Date+, +Timestamp+, and +TimeOfDay+, extract or preserve a portion of the value.

Defined Under Namespace

Modules: TimePart

Instance Attribute Summary collapse

Instance Attribute Details

#part_to_extractGoogle::Privacy::Dlp::V2::TimePartConfig::TimePart



956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
# File 'lib/google/cloud/dlp/v2/doc/google/privacy/dlp/v2/dlp.rb', line 956

class TimePartConfig
  module TimePart
    TIME_PART_UNSPECIFIED = 0

    # [0-9999]
    YEAR = 1

    # [1-12]
    MONTH = 2

    # [1-31]
    DAY_OF_MONTH = 3

    # [1-7]
    DAY_OF_WEEK = 4

    # [1-52]
    WEEK_OF_YEAR = 5

    # [0-23]
    HOUR_OF_DAY = 6
  end
end