Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DestinationFeatureSetting
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DestinationFeatureSetting
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/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) ⇒ GoogleCloudAiplatformV1beta1DestinationFeatureSetting
constructor
A new instance of GoogleCloudAiplatformV1beta1DestinationFeatureSetting.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1DestinationFeatureSetting
Returns a new instance of GoogleCloudAiplatformV1beta1DestinationFeatureSetting.
4250 4251 4252 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 4250 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
4243 4244 4245 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 4243 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
4248 4249 4250 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 4248 def feature_id @feature_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4255 4256 4257 4258 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 4255 def update!(**args) @destination_field = args[:destination_field] if args.key?(:destination_field) @feature_id = args[:feature_id] if args.key?(:feature_id) end |