Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1OutputConfigBigQueryDestination

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) ⇒ GoogleCloudContactcenterinsightsV1OutputConfigBigQueryDestination

Returns a new instance of GoogleCloudContactcenterinsightsV1OutputConfigBigQueryDestination.



7504
7505
7506
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7504

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)


7492
7493
7494
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7492

def dataset
  @dataset
end

#project_idString

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

Returns:

  • (String)


7497
7498
7499
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7497

def project_id
  @project_id
end

#tableString

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

Returns:

  • (String)


7502
7503
7504
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7502

def table
  @table
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7509
7510
7511
7512
7513
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7509

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