Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb
Overview
Metadata in google::longrunning::Operation for Knowledge operations.
Instance Attribute Summary collapse
-
#done_time ⇒ String
The time when the operation finished.
-
#export_operation_metadata ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1ExportOperationMetadata
Metadata related to the Export Data Operations (e.g. ExportDocument).
-
#knowledge_base ⇒ String
The name of the knowledge base interacted with during the operation.
-
#state ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata
constructor
A new instance of GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata
Returns a new instance of GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata.
23672 23673 23674 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 23672 def initialize(**args) update!(**args) end |
Instance Attribute Details
#done_time ⇒ String
The time when the operation finished.
Corresponds to the JSON property doneTime
23655 23656 23657 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 23655 def done_time @done_time end |
#export_operation_metadata ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1ExportOperationMetadata
Metadata related to the Export Data Operations (e.g. ExportDocument).
Corresponds to the JSON property exportOperationMetadata
23660 23661 23662 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 23660 def end |
#knowledge_base ⇒ String
The name of the knowledge base interacted with during the operation.
Corresponds to the JSON property knowledgeBase
23665 23666 23667 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 23665 def knowledge_base @knowledge_base end |
#state ⇒ String
Required. Output only. The current state of this operation.
Corresponds to the JSON property state
23670 23671 23672 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 23670 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
23677 23678 23679 23680 23681 23682 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 23677 def update!(**args) @done_time = args[:done_time] if args.key?(:done_time) = args[:export_operation_metadata] if args.key?(:export_operation_metadata) @knowledge_base = args[:knowledge_base] if args.key?(:knowledge_base) @state = args[:state] if args.key?(:state) end |