class Google::Apis::DlpV2::GooglePrivacyDlpV2InfoTypeDescription

InfoType description.

Attributes

description[RW]

Description of the infotype. Translated when language is provided in the request. Corresponds to the JSON property `description` @return [String]

display_name[RW]

Human readable form of the infoType name. Corresponds to the JSON property `displayName` @return [String]

name[RW]

Internal name of the infoType. Corresponds to the JSON property `name` @return [String]

supported_by[RW]

Which parts of the API supports this InfoType. Corresponds to the JSON property `supportedBy` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dlp_v2/classes.rb, line 2984
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dlp_v2/classes.rb, line 2989
def update!(**args)
  @description = args[:description] if args.key?(:description)
  @display_name = args[:display_name] if args.key?(:display_name)
  @name = args[:name] if args.key?(:name)
  @supported_by = args[:supported_by] if args.key?(:supported_by)
end