Class: Google::Cloud::Dataplex::V1::Action::InvalidDataPartition
- Inherits:
-
Object
- Object
- Google::Cloud::Dataplex::V1::Action::InvalidDataPartition
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/dataplex/v1/resources.rb
Overview
Action details for invalid or unsupported partitions detected by discovery.
Defined Under Namespace
Modules: PartitionStructure
Instance Attribute Summary collapse
-
#expected_structure ⇒ ::Google::Cloud::Dataplex::V1::Action::InvalidDataPartition::PartitionStructure
The issue type of InvalidDataPartition.
Instance Attribute Details
#expected_structure ⇒ ::Google::Cloud::Dataplex::V1::Action::InvalidDataPartition::PartitionStructure
Returns The issue type of InvalidDataPartition.
469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 |
# File 'proto_docs/google/cloud/dataplex/v1/resources.rb', line 469 class InvalidDataPartition include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The expected partition structure. module PartitionStructure # PartitionStructure unspecified. PARTITION_STRUCTURE_UNSPECIFIED = 0 # Consistent hive-style partition definition (both raw and curated zone). CONSISTENT_KEYS = 1 # Hive style partition definition (curated zone only). HIVE_STYLE_KEYS = 2 end end |