Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ReloadDocumentRequest
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ReloadDocumentRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2/classes.rb,
lib/google/apis/dialogflow_v2/representations.rb,
lib/google/apis/dialogflow_v2/representations.rb
Overview
Request message for Documents.ReloadDocument.
Instance Attribute Summary collapse
-
#content_uri ⇒ String
Optional.
-
#import_gcs_custom_metadata ⇒ Boolean
(also: #import_gcs_custom_metadata?)
Optional.
-
#smart_messaging_partial_update ⇒ Boolean
(also: #smart_messaging_partial_update?)
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2ReloadDocumentRequest
constructor
A new instance of GoogleCloudDialogflowV2ReloadDocumentRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2ReloadDocumentRequest
Returns a new instance of GoogleCloudDialogflowV2ReloadDocumentRequest.
11772 11773 11774 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 11772 def initialize(**args) update!(**args) end |
Instance Attribute Details
#content_uri ⇒ String
Optional. The path of gcs source file for reloading document content. For now,
only gcs uri is supported. For documents stored in Google Cloud Storage, these
URIs must have the form gs:///.
Corresponds to the JSON property contentUri
11756 11757 11758 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 11756 def content_uri @content_uri end |
#import_gcs_custom_metadata ⇒ Boolean Also known as: import_gcs_custom_metadata?
Optional. Whether to import custom metadata from Google Cloud Storage. Only
valid when the document source is Google Cloud Storage URI.
Corresponds to the JSON property importGcsCustomMetadata
11762 11763 11764 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 11762 def @import_gcs_custom_metadata end |
#smart_messaging_partial_update ⇒ Boolean Also known as: smart_messaging_partial_update?
Optional. When enabled, the reload request is to apply partial update to the
smart messaging allowlist.
Corresponds to the JSON property smartMessagingPartialUpdate
11769 11770 11771 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 11769 def smart_messaging_partial_update @smart_messaging_partial_update end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11777 11778 11779 11780 11781 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 11777 def update!(**args) @content_uri = args[:content_uri] if args.key?(:content_uri) @import_gcs_custom_metadata = args[:import_gcs_custom_metadata] if args.key?(:import_gcs_custom_metadata) @smart_messaging_partial_update = args[:smart_messaging_partial_update] if args.key?(:smart_messaging_partial_update) end |