Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaPurgeDocumentsRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/discoveryengine_v1beta/classes.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb

Overview

Request message for DocumentService.PurgeDocuments method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaPurgeDocumentsRequest

Returns a new instance of GoogleCloudDiscoveryengineV1betaPurgeDocumentsRequest.



2725
2726
2727
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 2725

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#filterString

Required. Filter matching documents to purge. Only currently supported value is * (all items). Corresponds to the JSON property filter

Returns:

  • (String)


2716
2717
2718
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 2716

def filter
  @filter
end

#forceBoolean Also known as: force?

Actually performs the purge. If force is set to false, return the expected purge count without deleting any documents. Corresponds to the JSON property force

Returns:

  • (Boolean)


2722
2723
2724
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 2722

def force
  @force
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2730
2731
2732
2733
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 2730

def update!(**args)
  @filter = args[:filter] if args.key?(:filter)
  @force = args[:force] if args.key?(:force)
end