Class: Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1StorageConfig

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

Shared message indicating Cloud storage type.

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) ⇒ GooglePrivacyDlpV2beta1StorageConfig

Returns a new instance of GooglePrivacyDlpV2beta1StorageConfig



2915
2916
2917
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2915

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

Instance Attribute Details

#big_query_optionsGoogle::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1BigQueryOptions

Options defining BigQuery table and row identifiers. Corresponds to the JSON property bigQueryOptions



2902
2903
2904
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2902

def big_query_options
  @big_query_options
end

#cloud_storage_optionsGoogle::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1CloudStorageOptions

Options defining a file or a set of files (path ending with *) within a Google Cloud Storage bucket. Corresponds to the JSON property cloudStorageOptions



2908
2909
2910
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2908

def cloud_storage_options
  @cloud_storage_options
end

#datastore_optionsGoogle::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1DatastoreOptions

Options defining a data set within Google Cloud Datastore. Corresponds to the JSON property datastoreOptions



2913
2914
2915
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2913

def datastore_options
  @datastore_options
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2920
2921
2922
2923
2924
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2920

def update!(**args)
  @big_query_options = args[:big_query_options] if args.key?(:big_query_options)
  @cloud_storage_options = args[:cloud_storage_options] if args.key?(:cloud_storage_options)
  @datastore_options = args[:datastore_options] if args.key?(:datastore_options)
end