Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2KnowledgeOperationMetadata
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2KnowledgeOperationMetadata
- 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
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::DialogflowV2::GoogleCloudDialogflowV2ExportOperationMetadata
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
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2KnowledgeOperationMetadata
constructor
A new instance of GoogleCloudDialogflowV2KnowledgeOperationMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2KnowledgeOperationMetadata
Returns a new instance of GoogleCloudDialogflowV2KnowledgeOperationMetadata.
15058 15059 15060 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 15058 def initialize(**args) update!(**args) end |
Instance Attribute Details
#done_time ⇒ String
The time when the operation finished.
Corresponds to the JSON property doneTime
15041 15042 15043 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 15041 def done_time @done_time end |
#export_operation_metadata ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ExportOperationMetadata
Metadata related to the Export Data Operations (e.g. ExportDocument).
Corresponds to the JSON property exportOperationMetadata
15046 15047 15048 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 15046 def end |
#knowledge_base ⇒ String
The name of the knowledge base interacted with during the operation.
Corresponds to the JSON property knowledgeBase
15051 15052 15053 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 15051 def knowledge_base @knowledge_base end |
#state ⇒ String
Output only. The current state of this operation.
Corresponds to the JSON property state
15056 15057 15058 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 15056 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
15063 15064 15065 15066 15067 15068 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 15063 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 |