Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PurgeExecutionsRequest
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PurgeExecutionsRequest
- 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
Overview
Request message for MetadataService.PurgeExecutions.
Instance Attribute Summary collapse
-
#filter ⇒ String
Required.
-
#force ⇒ Boolean
(also: #force?)
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1PurgeExecutionsRequest
constructor
A new instance of GoogleCloudAiplatformV1beta1PurgeExecutionsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1PurgeExecutionsRequest
Returns a new instance of GoogleCloudAiplatformV1beta1PurgeExecutionsRequest.
21903 21904 21905 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21903 def initialize(**args) update!(**args) end |
Instance Attribute Details
#filter ⇒ String
Required. A required filter matching the Executions to be purged. E.g.,
update_time <= 2020-11-19T11:30:00-04:00
.
Corresponds to the JSON property filter
21893 21894 21895 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21893 def filter @filter end |
#force ⇒ Boolean Also known as: force?
Optional. Flag to indicate to actually perform the purge. If force
is set to
false, the method will return a sample of Execution names that would be
deleted.
Corresponds to the JSON property force
21900 21901 21902 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21900 def force @force end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
21908 21909 21910 21911 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21908 def update!(**args) @filter = args[:filter] if args.key?(:filter) @force = args[:force] if args.key?(:force) end |