Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1OutputConfig
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1OutputConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/contactcenterinsights_v1/classes.rb,
lib/google/apis/contactcenterinsights_v1/representations.rb,
lib/google/apis/contactcenterinsights_v1/representations.rb
Overview
Configuration for where to export or return the analysis findings.
Instance Attribute Summary collapse
-
#bigquery_destination ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1OutputConfigBigQueryDestination
BigQuery destination configuration.
-
#gcs_destination ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1OutputConfigGcsDestination
Cloud Storage destination configuration.
-
#google_sheets_destination ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1OutputConfigGoogleSheetsDestination
Google Sheets destination configuration.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1OutputConfig
constructor
A new instance of GoogleCloudContactcenterinsightsV1OutputConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1OutputConfig
Returns a new instance of GoogleCloudContactcenterinsightsV1OutputConfig.
7473 7474 7475 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7473 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bigquery_destination ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1OutputConfigBigQueryDestination
BigQuery destination configuration.
Corresponds to the JSON property bigqueryDestination
7461 7462 7463 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7461 def bigquery_destination @bigquery_destination end |
#gcs_destination ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1OutputConfigGcsDestination
Cloud Storage destination configuration.
Corresponds to the JSON property gcsDestination
7466 7467 7468 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7466 def gcs_destination @gcs_destination end |
#google_sheets_destination ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1OutputConfigGoogleSheetsDestination
Google Sheets destination configuration.
Corresponds to the JSON property googleSheetsDestination
7471 7472 7473 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7471 def google_sheets_destination @google_sheets_destination end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7478 7479 7480 7481 7482 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7478 def update!(**args) @bigquery_destination = args[:bigquery_destination] if args.key?(:bigquery_destination) @gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination) @google_sheets_destination = args[:google_sheets_destination] if args.key?(:google_sheets_destination) end |