Class: Google::Cloud::Dlp::V2::BigQueryOptions
- Inherits:
-
Object
- Object
- Google::Cloud::Dlp::V2::BigQueryOptions
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/privacy/dlp/v2/storage.rb
Overview
Options defining BigQuery table and row identifiers.
Defined Under Namespace
Modules: SampleMethod
Instance Attribute Summary collapse
-
#excluded_fields ⇒ ::Array<::Google::Cloud::Dlp::V2::FieldId>
References to fields excluded from scanning.
-
#identifying_fields ⇒ ::Array<::Google::Cloud::Dlp::V2::FieldId>
Table fields that may uniquely identify a row within the table.
-
#included_fields ⇒ ::Array<::Google::Cloud::Dlp::V2::FieldId>
Limit scanning only to these fields.
-
#rows_limit ⇒ ::Integer
Max number of rows to scan.
-
#rows_limit_percent ⇒ ::Integer
Max percentage of rows to scan.
-
#sample_method ⇒ ::Google::Cloud::Dlp::V2::BigQueryOptions::SampleMethod
How to sample the data.
-
#table_reference ⇒ ::Google::Cloud::Dlp::V2::BigQueryTable
Complete BigQuery table reference.
Instance Attribute Details
#excluded_fields ⇒ ::Array<::Google::Cloud::Dlp::V2::FieldId>
Returns References to fields excluded from scanning. This allows you to skip inspection of entire columns which you know have no findings. When inspecting a table, we recommend that you inspect all columns. Otherwise, findings might be affected because hints from excluded columns will not be used.
563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 |
# File 'proto_docs/google/privacy/dlp/v2/storage.rb', line 563 class BigQueryOptions include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # How to sample rows if not all rows are scanned. Meaningful only when used # in conjunction with either rows_limit or rows_limit_percent. If not # specified, rows are scanned in the order BigQuery reads them. module SampleMethod # No sampling. SAMPLE_METHOD_UNSPECIFIED = 0 # Scan groups of rows in the order BigQuery provides (default). Multiple # groups of rows may be scanned in parallel, so results may not appear in # the same order the rows are read. TOP = 1 # Randomly pick groups of rows to scan. RANDOM_START = 2 end end |
#identifying_fields ⇒ ::Array<::Google::Cloud::Dlp::V2::FieldId>
Returns Table fields that may uniquely identify a row within the table. When
actions.saveFindings.outputConfig.table
is specified, the values of
columns specified here are available in the output table under
location.content_locations.record_location.record_key.id_values
. Nested
fields such as person.birthdate.year
are allowed.
563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 |
# File 'proto_docs/google/privacy/dlp/v2/storage.rb', line 563 class BigQueryOptions include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # How to sample rows if not all rows are scanned. Meaningful only when used # in conjunction with either rows_limit or rows_limit_percent. If not # specified, rows are scanned in the order BigQuery reads them. module SampleMethod # No sampling. SAMPLE_METHOD_UNSPECIFIED = 0 # Scan groups of rows in the order BigQuery provides (default). Multiple # groups of rows may be scanned in parallel, so results may not appear in # the same order the rows are read. TOP = 1 # Randomly pick groups of rows to scan. RANDOM_START = 2 end end |
#included_fields ⇒ ::Array<::Google::Cloud::Dlp::V2::FieldId>
Returns Limit scanning only to these fields. When inspecting a table, we recommend that you inspect all columns. Otherwise, findings might be affected because hints from excluded columns will not be used.
563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 |
# File 'proto_docs/google/privacy/dlp/v2/storage.rb', line 563 class BigQueryOptions include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # How to sample rows if not all rows are scanned. Meaningful only when used # in conjunction with either rows_limit or rows_limit_percent. If not # specified, rows are scanned in the order BigQuery reads them. module SampleMethod # No sampling. SAMPLE_METHOD_UNSPECIFIED = 0 # Scan groups of rows in the order BigQuery provides (default). Multiple # groups of rows may be scanned in parallel, so results may not appear in # the same order the rows are read. TOP = 1 # Randomly pick groups of rows to scan. RANDOM_START = 2 end end |
#rows_limit ⇒ ::Integer
Returns Max number of rows to scan. If the table has more rows than this value, the rest of the rows are omitted. If not set, or if set to 0, all rows will be scanned. Only one of rows_limit and rows_limit_percent can be specified. Cannot be used in conjunction with TimespanConfig.
563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 |
# File 'proto_docs/google/privacy/dlp/v2/storage.rb', line 563 class BigQueryOptions include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # How to sample rows if not all rows are scanned. Meaningful only when used # in conjunction with either rows_limit or rows_limit_percent. If not # specified, rows are scanned in the order BigQuery reads them. module SampleMethod # No sampling. SAMPLE_METHOD_UNSPECIFIED = 0 # Scan groups of rows in the order BigQuery provides (default). Multiple # groups of rows may be scanned in parallel, so results may not appear in # the same order the rows are read. TOP = 1 # Randomly pick groups of rows to scan. RANDOM_START = 2 end end |
#rows_limit_percent ⇒ ::Integer
Returns Max percentage of rows to scan. The rest are omitted. The number of rows scanned is rounded down. Must be between 0 and 100, inclusively. Both 0 and 100 means no limit. Defaults to 0. Only one of rows_limit and rows_limit_percent can be specified. Cannot be used in conjunction with TimespanConfig.
Caution: A known
issue
is causing the rowsLimitPercent
field to behave unexpectedly. We
recommend using rowsLimit
instead.
563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 |
# File 'proto_docs/google/privacy/dlp/v2/storage.rb', line 563 class BigQueryOptions include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # How to sample rows if not all rows are scanned. Meaningful only when used # in conjunction with either rows_limit or rows_limit_percent. If not # specified, rows are scanned in the order BigQuery reads them. module SampleMethod # No sampling. SAMPLE_METHOD_UNSPECIFIED = 0 # Scan groups of rows in the order BigQuery provides (default). Multiple # groups of rows may be scanned in parallel, so results may not appear in # the same order the rows are read. TOP = 1 # Randomly pick groups of rows to scan. RANDOM_START = 2 end end |
#sample_method ⇒ ::Google::Cloud::Dlp::V2::BigQueryOptions::SampleMethod
Returns How to sample the data.
563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 |
# File 'proto_docs/google/privacy/dlp/v2/storage.rb', line 563 class BigQueryOptions include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # How to sample rows if not all rows are scanned. Meaningful only when used # in conjunction with either rows_limit or rows_limit_percent. If not # specified, rows are scanned in the order BigQuery reads them. module SampleMethod # No sampling. SAMPLE_METHOD_UNSPECIFIED = 0 # Scan groups of rows in the order BigQuery provides (default). Multiple # groups of rows may be scanned in parallel, so results may not appear in # the same order the rows are read. TOP = 1 # Randomly pick groups of rows to scan. RANDOM_START = 2 end end |
#table_reference ⇒ ::Google::Cloud::Dlp::V2::BigQueryTable
Returns Complete BigQuery table reference.
563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 |
# File 'proto_docs/google/privacy/dlp/v2/storage.rb', line 563 class BigQueryOptions include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # How to sample rows if not all rows are scanned. Meaningful only when used # in conjunction with either rows_limit or rows_limit_percent. If not # specified, rows are scanned in the order BigQuery reads them. module SampleMethod # No sampling. SAMPLE_METHOD_UNSPECIFIED = 0 # Scan groups of rows in the order BigQuery provides (default). Multiple # groups of rows may be scanned in parallel, so results may not appear in # the same order the rows are read. TOP = 1 # Randomly pick groups of rows to scan. RANDOM_START = 2 end end |