Class: Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1RiskAnalysisOperationMetadata
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1RiskAnalysisOperationMetadata
- 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 GetOperation for risk analysis.
Instance Attribute Summary collapse
-
#create_time ⇒ String
The time which this request was started.
-
#requested_privacy_metric ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1PrivacyMetric
Privacy metric to compute for reidentification risk analysis.
-
#requested_source_table ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1BigQueryTable
Message defining the location of a BigQuery table.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2beta1RiskAnalysisOperationMetadata
constructor
A new instance of GooglePrivacyDlpV2beta1RiskAnalysisOperationMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2beta1RiskAnalysisOperationMetadata
Returns a new instance of GooglePrivacyDlpV2beta1RiskAnalysisOperationMetadata
2736 2737 2738 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2736 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
The time which this request was started.
Corresponds to the JSON property createTime
2720 2721 2722 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2720 def create_time @create_time end |
#requested_privacy_metric ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1PrivacyMetric
Privacy metric to compute for reidentification risk analysis.
Corresponds to the JSON property requestedPrivacyMetric
2725 2726 2727 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2725 def requested_privacy_metric @requested_privacy_metric end |
#requested_source_table ⇒ Google::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
2734 2735 2736 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2734 def requested_source_table @requested_source_table end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2741 2742 2743 2744 2745 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2741 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 |