Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1SchemaPartitionField
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1SchemaPartitionField
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataplex_v1/classes.rb,
lib/google/apis/dataplex_v1/representations.rb,
lib/google/apis/dataplex_v1/representations.rb
Overview
Represents a key field within the entity's partition structure. You could have up to 20 partition fields, but only the first 10 partitions have the filtering ability due to performance consideration. Note: Partition fields are immutable.
Instance Attribute Summary collapse
-
#name ⇒ String
Required.
-
#type ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1SchemaPartitionField
constructor
A new instance of GoogleCloudDataplexV1SchemaPartitionField.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1SchemaPartitionField
Returns a new instance of GoogleCloudDataplexV1SchemaPartitionField.
6751 6752 6753 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6751 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Required. Partition field name must consist of letters, numbers, and
underscores only, with a maximum of length of 256 characters, and must begin
with a letter or underscore..
Corresponds to the JSON property name
6744 6745 6746 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6744 def name @name end |
#type ⇒ String
Required. Immutable. The type of field.
Corresponds to the JSON property type
6749 6750 6751 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6749 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6756 6757 6758 6759 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6756 def update!(**args) @name = args[:name] if args.key?(:name) @type = args[:type] if args.key?(:type) end |