Class: Google::Apis::DlpV2::GooglePrivacyDlpV2InfoTypeDescription

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dlp_v2/classes.rb,
lib/google/apis/dlp_v2/representations.rb,
lib/google/apis/dlp_v2/representations.rb

Overview

InfoType description.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GooglePrivacyDlpV2InfoTypeDescription

Returns a new instance of GooglePrivacyDlpV2InfoTypeDescription.



5681
5682
5683
# File 'lib/google/apis/dlp_v2/classes.rb', line 5681

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

Instance Attribute Details

#categoriesArray<Google::Apis::DlpV2::GooglePrivacyDlpV2InfoTypeCategory>

The category of the infoType. Corresponds to the JSON property categories



5642
5643
5644
# File 'lib/google/apis/dlp_v2/classes.rb', line 5642

def categories
  @categories
end

#descriptionString

Description of the infotype. Translated when language is provided in the request. Corresponds to the JSON property description

Returns:

  • (String)


5648
5649
5650
# File 'lib/google/apis/dlp_v2/classes.rb', line 5648

def description
  @description
end

#display_nameString

Human readable form of the infoType name. Corresponds to the JSON property displayName

Returns:

  • (String)


5653
5654
5655
# File 'lib/google/apis/dlp_v2/classes.rb', line 5653

def display_name
  @display_name
end

#exampleString

A sample true positive for this infoType. Corresponds to the JSON property example

Returns:

  • (String)


5658
5659
5660
# File 'lib/google/apis/dlp_v2/classes.rb', line 5658

def example
  @example
end

#nameString

Internal name of the infoType. Corresponds to the JSON property name

Returns:

  • (String)


5663
5664
5665
# File 'lib/google/apis/dlp_v2/classes.rb', line 5663

def name
  @name
end

#sensitivity_scoreGoogle::Apis::DlpV2::GooglePrivacyDlpV2SensitivityScore

Score is calculated from of all elements in the data profile. A higher level means the data is more sensitive. Corresponds to the JSON property sensitivityScore



5669
5670
5671
# File 'lib/google/apis/dlp_v2/classes.rb', line 5669

def sensitivity_score
  @sensitivity_score
end

#supported_byArray<String>

Which parts of the API supports this InfoType. Corresponds to the JSON property supportedBy

Returns:

  • (Array<String>)


5674
5675
5676
# File 'lib/google/apis/dlp_v2/classes.rb', line 5674

def supported_by
  @supported_by
end

#versionsArray<Google::Apis::DlpV2::GooglePrivacyDlpV2VersionDescription>

A list of available versions for the infotype. Corresponds to the JSON property versions



5679
5680
5681
# File 'lib/google/apis/dlp_v2/classes.rb', line 5679

def versions
  @versions
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
# File 'lib/google/apis/dlp_v2/classes.rb', line 5686

def update!(**args)
  @categories = args[:categories] if args.key?(:categories)
  @description = args[:description] if args.key?(:description)
  @display_name = args[:display_name] if args.key?(:display_name)
  @example = args[:example] if args.key?(:example)
  @name = args[:name] if args.key?(:name)
  @sensitivity_score = args[:sensitivity_score] if args.key?(:sensitivity_score)
  @supported_by = args[:supported_by] if args.key?(:supported_by)
  @versions = args[:versions] if args.key?(:versions)
end