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.
3647 3648 3649 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3647 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
3640 3641 3642 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3640 def name @name end |
#type ⇒ String
Required. Immutable. The type of field.
Corresponds to the JSON property type
3645 3646 3647 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3645 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3652 3653 3654 3655 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3652 def update!(**args) @name = args[:name] if args.key?(:name) @type = args[:type] if args.key?(:type) end |