Class: Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoTypeConfig

Inherits:
Object
  • Object
show all
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

Configuration for a StoredInfoType.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GooglePrivacyDlpV2StoredInfoTypeConfig

Returns a new instance of GooglePrivacyDlpV2StoredInfoTypeConfig



4963
4964
4965
# File 'generated/google/apis/dlp_v2/classes.rb', line 4963

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#descriptionString

Description of the StoredInfoType (max 256 characters). Corresponds to the JSON property description

Returns:

  • (String)


4946
4947
4948
# File 'generated/google/apis/dlp_v2/classes.rb', line 4946

def description
  @description
end

#display_nameString

Display name of the StoredInfoType (max 256 characters). Corresponds to the JSON property displayName

Returns:

  • (String)


4951
4952
4953
# File 'generated/google/apis/dlp_v2/classes.rb', line 4951

def display_name
  @display_name
end

#large_custom_dictionaryGoogle::Apis::DlpV2::GooglePrivacyDlpV2LargeCustomDictionaryConfig

Configuration for a custom dictionary created from a data source of any size up to the maximum size defined in the limits page. The artifacts of dictionary creation are stored in the specified Google Cloud Storage location. Consider using CustomInfoType.Dictionary for smaller dictionaries that satisfy the size requirements. Corresponds to the JSON property largeCustomDictionary



4961
4962
4963
# File 'generated/google/apis/dlp_v2/classes.rb', line 4961

def large_custom_dictionary
  @large_custom_dictionary
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4968
4969
4970
4971
4972
# File 'generated/google/apis/dlp_v2/classes.rb', line 4968

def update!(**args)
  @description = args[:description] if args.key?(:description)
  @display_name = args[:display_name] if args.key?(:display_name)
  @large_custom_dictionary = args[:large_custom_dictionary] if args.key?(:large_custom_dictionary)
end