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 the
riskAnalysis.operations.get
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
3041 3042 3043 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3041 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
3025 3026 3027 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3025 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
3030 3031 3032 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3030 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
3039 3040 3041 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3039 def requested_source_table @requested_source_table end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3046 3047 3048 3049 3050 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3046 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 |