Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DestinationFeatureSetting
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DestinationFeatureSetting
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb
Instance Attribute Summary collapse
-
#destination_field ⇒ String
Specify the field name in the export destination.
-
#feature_id ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1DestinationFeatureSetting
constructor
A new instance of GoogleCloudAiplatformV1DestinationFeatureSetting.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1DestinationFeatureSetting
Returns a new instance of GoogleCloudAiplatformV1DestinationFeatureSetting.
5682 5683 5684 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 5682 def initialize(**args) update!(**args) end |
Instance Attribute Details
#destination_field ⇒ String
Specify the field name in the export destination. If not specified, Feature ID
is used.
Corresponds to the JSON property destinationField
5675 5676 5677 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 5675 def destination_field @destination_field end |
#feature_id ⇒ String
Required. The ID of the Feature to apply the setting to.
Corresponds to the JSON property featureId
5680 5681 5682 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 5680 def feature_id @feature_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5687 5688 5689 5690 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 5687 def update!(**args) @destination_field = args[:destination_field] if args.key?(:destination_field) @feature_id = args[:feature_id] if args.key?(:feature_id) end |