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



501
502
503
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 501

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

Instance Attribute Details

#file_pathString

Path to the file. Corresponds to the JSON property filePath

Returns:

  • (String)


494
495
496
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 494

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)


499
500
501
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 499

def start_offset
  @start_offset
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



506
507
508
509
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 506

def update!(**args)
  @file_path = args[:file_path] if args.key?(:file_path)
  @start_offset = args[:start_offset] if args.key?(:start_offset)
end