Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1BigQueryExportSettings
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1BigQueryExportSettings
- 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
The settings of BigQuery export.
Instance Attribute Summary collapse
-
#bigquery_table ⇒ String
The BigQuery table to export.
-
#enabled ⇒ Boolean
(also: #enabled?)
The field to indicate whether the BigQuery export is enabled.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1BigQueryExportSettings
constructor
A new instance of GoogleCloudDialogflowCxV3beta1BigQueryExportSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1BigQueryExportSettings
Returns a new instance of GoogleCloudDialogflowCxV3beta1BigQueryExportSettings.
5165 5166 5167 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5165 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bigquery_table ⇒ String
The BigQuery table to export. Format: projects//datasets//tables/.
Corresponds to the JSON property bigqueryTable
5157 5158 5159 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5157 def bigquery_table @bigquery_table end |
#enabled ⇒ Boolean Also known as: enabled?
The field to indicate whether the BigQuery export is enabled.
Corresponds to the JSON property enabled
5162 5163 5164 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5162 def enabled @enabled end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5170 5171 5172 5173 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5170 def update!(**args) @bigquery_table = args[:bigquery_table] if args.key?(:bigquery_table) @enabled = args[:enabled] if args.key?(:enabled) end |