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.
6375 6376 6377 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6375 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
6368 6369 6370 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6368 def name @name end |
#type ⇒ String
Required. Immutable. The type of field.
Corresponds to the JSON property type
6373 6374 6375 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6373 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6380 6381 6382 6383 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6380 def update!(**args) @name = args[:name] if args.key?(:name) @type = args[:type] if args.key?(:type) end |