Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DeleteFeatureValuesResponseSelectEntity
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DeleteFeatureValuesResponseSelectEntity
- 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
Overview
Response message if the request uses the SelectEntity option.
Instance Attribute Summary collapse
-
#offline_storage_deleted_entity_row_count ⇒ Fixnum
The count of deleted entity rows in the offline storage.
-
#online_storage_deleted_entity_count ⇒ Fixnum
The count of deleted entities in the online storage.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1DeleteFeatureValuesResponseSelectEntity
constructor
A new instance of GoogleCloudAiplatformV1DeleteFeatureValuesResponseSelectEntity.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1DeleteFeatureValuesResponseSelectEntity
Returns a new instance of GoogleCloudAiplatformV1DeleteFeatureValuesResponseSelectEntity.
4929 4930 4931 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 4929 def initialize(**args) update!(**args) end |
Instance Attribute Details
#offline_storage_deleted_entity_row_count ⇒ Fixnum
The count of deleted entity rows in the offline storage. Each row corresponds
to the combination of an entity ID and a timestamp. One entity ID can have
multiple rows in the offline storage.
Corresponds to the JSON property offlineStorageDeletedEntityRowCount
4921 4922 4923 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 4921 def offline_storage_deleted_entity_row_count @offline_storage_deleted_entity_row_count end |
#online_storage_deleted_entity_count ⇒ Fixnum
The count of deleted entities in the online storage. Each entity ID
corresponds to one entity.
Corresponds to the JSON property onlineStorageDeletedEntityCount
4927 4928 4929 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 4927 def online_storage_deleted_entity_count @online_storage_deleted_entity_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4934 4935 4936 4937 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 4934 def update!(**args) @offline_storage_deleted_entity_row_count = args[:offline_storage_deleted_entity_row_count] if args.key?(:offline_storage_deleted_entity_row_count) @online_storage_deleted_entity_count = args[:online_storage_deleted_entity_count] if args.key?(:online_storage_deleted_entity_count) end |