Class: Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta1RiskAnalysisOperationMetadata

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dlp_v2beta2/classes.rb,
generated/google/apis/dlp_v2beta2/representations.rb,
generated/google/apis/dlp_v2beta2/representations.rb

Overview

Metadata returned within the riskAnalysis.operations.get for risk analysis.

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

Returns a new instance of GooglePrivacyDlpV2beta1RiskAnalysisOperationMetadata



1309
1310
1311
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 1309

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

Instance Attribute Details

#create_timeString

The time which this request was started. Corresponds to the JSON property createTime

Returns:

  • (String)


1293
1294
1295
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 1293

def create_time
  @create_time
end

#requested_privacy_metricGoogle::Apis::DlpV2beta2::GooglePrivacyDlpV2beta1PrivacyMetric

Privacy metric to compute for reidentification risk analysis. Corresponds to the JSON property requestedPrivacyMetric



1298
1299
1300
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 1298

def requested_privacy_metric
  @requested_privacy_metric
end

#requested_source_tableGoogle::Apis::DlpV2beta2::GooglePrivacyDlpV2beta1BigQueryTable

Message defining the location of a BigQuery table. A table is uniquely identified by its project_id, dataset_id, and table_name. Within a query a table is often referenced with a string in the format of: <project_id>:<dataset_id>.<table_id> or <project_id>.<dataset_id>.<table_id>. Corresponds to the JSON property requestedSourceTable



1307
1308
1309
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 1307

def requested_source_table
  @requested_source_table
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1314
1315
1316
1317
1318
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 1314

def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @requested_privacy_metric = args[:requested_privacy_metric] if args.key?(:requested_privacy_metric)
  @requested_source_table = args[:requested_source_table] if args.key?(:requested_source_table)
end