Class: Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1RiskAnalysisOperationMetadata

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

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



3149
3150
3151
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3149

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)


3133
3134
3135
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3133

def create_time
  @create_time
end

#requested_privacy_metricGoogle::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1PrivacyMetric

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



3138
3139
3140
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3138

def requested_privacy_metric
  @requested_privacy_metric
end

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



3147
3148
3149
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3147

def requested_source_table
  @requested_source_table
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3154
3155
3156
3157
3158
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3154

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