Class: Google::Apis::SecuritycenterV1beta2::CloudDlpInspection

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

Overview

Details about the Cloud Data Loss Prevention (Cloud DLP) inspection job that produced the finding.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CloudDlpInspection

Returns a new instance of CloudDlpInspection.



1126
1127
1128
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 1126

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

Instance Attribute Details

#full_scanBoolean Also known as: full_scan?

Whether Cloud DLP scanned the complete resource or a sampled subset. Corresponds to the JSON property fullScan

Returns:

  • (Boolean)


1106
1107
1108
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 1106

def full_scan
  @full_scan
end

#info_typeString

The type of information (or infoType) found, for example, EMAIL_ADDRESS or STREET_ADDRESS. Corresponds to the JSON property infoType

Returns:

  • (String)


1113
1114
1115
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 1113

def info_type
  @info_type
end

#info_type_countFixnum

The number of times Cloud DLP found this infoType within this job and resource. Corresponds to the JSON property infoTypeCount

Returns:

  • (Fixnum)


1118
1119
1120
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 1118

def info_type_count
  @info_type_count
end

#inspect_jobString

Name of the inspection job, for example, projects/123/locations/europe/ dlpJobs/i-8383929. Corresponds to the JSON property inspectJob

Returns:

  • (String)


1124
1125
1126
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 1124

def inspect_job
  @inspect_job
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1131
1132
1133
1134
1135
1136
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 1131

def update!(**args)
  @full_scan = args[:full_scan] if args.key?(:full_scan)
  @info_type = args[:info_type] if args.key?(:info_type)
  @info_type_count = args[:info_type_count] if args.key?(:info_type_count)
  @inspect_job = args[:inspect_job] if args.key?(:inspect_job)
end