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.
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.
9402 9403 9404 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9402 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
9400 9401 9402 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9400 def content_uri @content_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9407 9408 9409 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9407 def update!(**args) @content_uri = args[:content_uri] if args.key?(:content_uri) end |