Class: Google::Apis::DlpV2::GooglePrivacyDlpV2DataProfileLocation
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2DataProfileLocation
- 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
The data that will be profiled.
Instance Attribute Summary collapse
-
#folder_id ⇒ Fixnum
The ID of the folder within an organization to scan.
-
#organization_id ⇒ Fixnum
The ID of an organization to scan.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2DataProfileLocation
constructor
A new instance of GooglePrivacyDlpV2DataProfileLocation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2DataProfileLocation
Returns a new instance of GooglePrivacyDlpV2DataProfileLocation.
2622 2623 2624 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 2622 def initialize(**args) update!(**args) end |
Instance Attribute Details
#folder_id ⇒ Fixnum
The ID of the folder within an organization to scan.
Corresponds to the JSON property folderId
2615 2616 2617 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 2615 def folder_id @folder_id end |
#organization_id ⇒ Fixnum
The ID of an organization to scan.
Corresponds to the JSON property organizationId
2620 2621 2622 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 2620 def organization_id @organization_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2627 2628 2629 2630 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 2627 def update!(**args) @folder_id = args[:folder_id] if args.key?(:folder_id) @organization_id = args[:organization_id] if args.key?(:organization_id) end |