Class: Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1CloudStorageKey

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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

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_pathString

Path to the file. Corresponds to the JSON property filePath

Returns:

  • (String)


581
582
583
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 581

def file_path
  @file_path
end

#start_offsetFixnum

Byte offset of the referenced data in the file. Corresponds to the JSON property startOffset

Returns:

  • (Fixnum)


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