Class: Google::Apis::DlpV2::GooglePrivacyDlpV2beta1RiskAnalysisOperationMetadata

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dlp_v2/classes.rb,
generated/google/apis/dlp_v2/representations.rb,
generated/google/apis/dlp_v2/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



5983
5984
5985
# File 'generated/google/apis/dlp_v2/classes.rb', line 5983

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)


5967
5968
5969
# File 'generated/google/apis/dlp_v2/classes.rb', line 5967

def create_time
  @create_time
end

#requested_privacy_metricGoogle::Apis::DlpV2::GooglePrivacyDlpV2beta1PrivacyMetric

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



5972
5973
5974
# File 'generated/google/apis/dlp_v2/classes.rb', line 5972

def requested_privacy_metric
  @requested_privacy_metric
end

#requested_source_tableGoogle::Apis::DlpV2::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



5981
5982
5983
# File 'generated/google/apis/dlp_v2/classes.rb', line 5981

def requested_source_table
  @requested_source_table
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5988
5989
5990
5991
5992
# File 'generated/google/apis/dlp_v2/classes.rb', line 5988

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