Class: Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1CloudStorageKey
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1CloudStorageKey
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dlp_v2beta1/classes.rb,
generated/google/apis/dlp_v2beta1/representations.rb,
generated/google/apis/dlp_v2beta1/representations.rb
Overview
Record key for a finding in a Cloud Storage file.
Instance Attribute Summary collapse
-
#file_path ⇒ String
Path to the file.
-
#start_offset ⇒ Fixnum
Byte offset of the referenced data in the file.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2beta1CloudStorageKey
constructor
A new instance of GooglePrivacyDlpV2beta1CloudStorageKey.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2beta1CloudStorageKey
Returns a new instance of GooglePrivacyDlpV2beta1CloudStorageKey
588 589 590 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 588 def initialize(**args) update!(**args) end |
Instance Attribute Details
#file_path ⇒ String
Path to the file.
Corresponds to the JSON property filePath
581 582 583 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 581 def file_path @file_path end |
#start_offset ⇒ Fixnum
Byte offset of the referenced data in the file.
Corresponds to the JSON property startOffset
586 587 588 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 586 def start_offset @start_offset end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
593 594 595 596 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 593 def update!(**args) @file_path = args[:file_path] if args.key?(:file_path) @start_offset = args[:start_offset] if args.key?(:start_offset) end |