Class: Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryField
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryField
- 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
Message defining a field of a BigQuery table.
Instance Attribute Summary collapse
-
#field ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId
General identifier of a data field in a storage service.
-
#table ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryTable
Message defining the location of a BigQuery table.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2BigQueryField
constructor
A new instance of GooglePrivacyDlpV2BigQueryField.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2BigQueryField
Returns a new instance of GooglePrivacyDlpV2BigQueryField.
236 237 238 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 236 def initialize(**args) update!(**args) end |
Instance Attribute Details
#field ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId
General identifier of a data field in a storage service.
Corresponds to the JSON property field
227 228 229 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 227 def field @field end |
#table ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryTable
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: :.
or ..
.
Corresponds to the JSON property table
234 235 236 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 234 def table @table end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
241 242 243 244 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 241 def update!(**args) @field = args[:field] if args.key?(:field) @table = args[:table] if args.key?(:table) end |