Class: Google::Apis::DlpV2::GooglePrivacyDlpV2Value
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2Value
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dlp_v2/classes.rb,
generated/google/apis/dlp_v2/representations.rb,
generated/google/apis/dlp_v2/representations.rb
Overview
Set of primitive values supported by the system. Note that for the purposes of inspection or transformation, the number of bytes considered to comprise a 'Value' is based on its representation as a UTF-8 encoded string. For example, if 'integer_value' is set to 123456789, the number of bytes would be counted as 9, even though an int64 only holds up to 8 bytes of data.
Instance Attribute Summary collapse
-
#boolean_value ⇒ Boolean
(also: #boolean_value?)
Corresponds to the JSON property
booleanValue. -
#date_value ⇒ Google::Apis::DlpV2::GoogleTypeDate
Represents a whole or partial calendar date, e.g.
-
#day_of_week_value ⇒ String
Corresponds to the JSON property
dayOfWeekValue. -
#float_value ⇒ Float
Corresponds to the JSON property
floatValue. -
#integer_value ⇒ Fixnum
Corresponds to the JSON property
integerValue. -
#string_value ⇒ String
Corresponds to the JSON property
stringValue. -
#time_value ⇒ Google::Apis::DlpV2::GoogleTypeTimeOfDay
Represents a time of day.
-
#timestamp_value ⇒ String
Corresponds to the JSON property
timestampValue.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2Value
constructor
A new instance of GooglePrivacyDlpV2Value.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2Value
Returns a new instance of GooglePrivacyDlpV2Value
5909 5910 5911 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 5909 def initialize(**args) update!(**args) end |
Instance Attribute Details
#boolean_value ⇒ Boolean Also known as: boolean_value?
Corresponds to the JSON property booleanValue
5862 5863 5864 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 5862 def boolean_value @boolean_value end |
#date_value ⇒ Google::Apis::DlpV2::GoogleTypeDate
Represents a whole or partial calendar date, e.g. a birthday. The time of day and time zone are either specified elsewhere or are not significant. The date is relative to the Proleptic Gregorian Calendar. This can represent:
- A full date, with non-zero year, month and day values
- A month and day value, with a zero year, e.g. an anniversary
- A year on its own, with zero month and day values
- A year and month value, with a zero day, e.g. a credit card expiration date
Related types are google.type.TimeOfDay and
google.protobuf.Timestamp. Corresponds to the JSON propertydateValue
5875 5876 5877 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 5875 def date_value @date_value end |
#day_of_week_value ⇒ String
Corresponds to the JSON property dayOfWeekValue
5880 5881 5882 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 5880 def day_of_week_value @day_of_week_value end |
#float_value ⇒ Float
Corresponds to the JSON property floatValue
5885 5886 5887 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 5885 def float_value @float_value end |
#integer_value ⇒ Fixnum
Corresponds to the JSON property integerValue
5890 5891 5892 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 5890 def integer_value @integer_value end |
#string_value ⇒ String
Corresponds to the JSON property stringValue
5895 5896 5897 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 5895 def string_value @string_value end |
#time_value ⇒ Google::Apis::DlpV2::GoogleTypeTimeOfDay
Represents a time of day. The date and time zone are either not significant
or are specified elsewhere. An API may choose to allow leap seconds. Related
types are google.type.Date and google.protobuf.Timestamp.
Corresponds to the JSON property timeValue
5902 5903 5904 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 5902 def time_value @time_value end |
#timestamp_value ⇒ String
Corresponds to the JSON property timestampValue
5907 5908 5909 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 5907 def @timestamp_value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 5914 def update!(**args) @boolean_value = args[:boolean_value] if args.key?(:boolean_value) @date_value = args[:date_value] if args.key?(:date_value) @day_of_week_value = args[:day_of_week_value] if args.key?(:day_of_week_value) @float_value = args[:float_value] if args.key?(:float_value) @integer_value = args[:integer_value] if args.key?(:integer_value) @string_value = args[:string_value] if args.key?(:string_value) @time_value = args[:time_value] if args.key?(:time_value) @timestamp_value = args[:timestamp_value] if args.key?(:timestamp_value) end |