Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1OutputConfigBigQueryDestination

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1OutputConfigBigQueryDestination

Returns a new instance of GoogleCloudContactcenterinsightsV1alpha1OutputConfigBigQueryDestination.



16393
16394
16395
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 16393

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#datasetString

Required. The name of the BigQuery dataset. Corresponds to the JSON property dataset

Returns:

  • (String)


16381
16382
16383
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 16381

def dataset
  @dataset
end

#project_idString

Optional. A project ID or number. Corresponds to the JSON property projectId

Returns:

  • (String)


16386
16387
16388
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 16386

def project_id
  @project_id
end

#tableString

Required. The BigQuery table name. Corresponds to the JSON property table

Returns:

  • (String)


16391
16392
16393
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 16391

def table
  @table
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



16398
16399
16400
16401
16402
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 16398

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