Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1InputDataset
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1InputDataset
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dialogflow_v2/classes.rb,
generated/google/apis/dialogflow_v2/representations.rb,
generated/google/apis/dialogflow_v2/representations.rb
Overview
InputDataset used to create model or do evaluation.
Instance Attribute Summary collapse
-
#dataset ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1InputDataset
constructor
A new instance of GoogleCloudDialogflowV2beta1InputDataset.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1InputDataset
Returns a new instance of GoogleCloudDialogflowV2beta1InputDataset
3078 3079 3080 |
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 3078 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dataset ⇒ String
Required. ConversationDataset resource name. Format:
projects/<Project ID>/conversationDatasets/<Conversation Dataset ID>
or
projects/<Project ID>/conversationDatasets/<Conversation Dataset
ID>/annotatedConversationDatasets/<Annotated Conversation Dataset ID>
Corresponds to the JSON property dataset
3076 3077 3078 |
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 3076 def dataset @dataset end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3083 3084 3085 |
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 3083 def update!(**args) @dataset = args[:dataset] if args.key?(:dataset) end |