Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1OutputConfigBigQueryDestination
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1OutputConfigBigQueryDestination
- 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
BigQuery destination configuration.
Instance Attribute Summary collapse
-
#dataset ⇒ String
Required.
-
#project_id ⇒ String
Optional.
-
#table ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1OutputConfigBigQueryDestination
constructor
A new instance of GoogleCloudContactcenterinsightsV1alpha1OutputConfigBigQueryDestination.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1OutputConfigBigQueryDestination
Returns a new instance of GoogleCloudContactcenterinsightsV1alpha1OutputConfigBigQueryDestination.
16503 16504 16505 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 16503 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dataset ⇒ String
Required. The name of the BigQuery dataset.
Corresponds to the JSON property dataset
16491 16492 16493 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 16491 def dataset @dataset end |
#project_id ⇒ String
Optional. A project ID or number.
Corresponds to the JSON property projectId
16496 16497 16498 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 16496 def project_id @project_id end |
#table ⇒ String
Required. The BigQuery table name.
Corresponds to the JSON property table
16501 16502 16503 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 16501 def table @table end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
16508 16509 16510 16511 16512 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 16508 def update!(**args) @dataset = args[:dataset] if args.key?(:dataset) @project_id = args[:project_id] if args.key?(:project_id) @table = args[:table] if args.key?(:table) end |