Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ExportInsightsDataRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ExportInsightsDataRequest
 
 
- 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
The request to export insights.
Instance Attribute Summary collapse
- 
  
    
      #big_query_destination  ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ExportInsightsDataRequestBigQueryDestination 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A BigQuery Table Reference.
 - 
  
    
      #filter  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A filter to reduce results to a specific subset.
 - 
  
    
      #kms_key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A fully qualified KMS key name for BigQuery tables protected by CMEK.
 - 
  
    
      #parent  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #write_disposition  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Options for what to do if the destination table already exists.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudContactcenterinsightsV1alpha1ExportInsightsDataRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudContactcenterinsightsV1alpha1ExportInsightsDataRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1ExportInsightsDataRequest
Returns a new instance of GoogleCloudContactcenterinsightsV1alpha1ExportInsightsDataRequest.
      5580 5581 5582  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5580 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#big_query_destination ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ExportInsightsDataRequestBigQueryDestination
A BigQuery Table Reference.
Corresponds to the JSON property bigQueryDestination
      5555 5556 5557  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5555 def big_query_destination @big_query_destination end  | 
  
#filter ⇒ String
A filter to reduce results to a specific subset. Useful for exporting
conversations with specific properties.
Corresponds to the JSON property filter
      5561 5562 5563  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5561 def filter @filter end  | 
  
#kms_key ⇒ String
A fully qualified KMS key name for BigQuery tables protected by CMEK. Format:
projects/project/locations/location/keyRings/keyring/cryptoKeys/key/
cryptoKeyVersions/version
Corresponds to the JSON property kmsKey
      5568 5569 5570  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5568 def kms_key @kms_key end  | 
  
#parent ⇒ String
Required. The parent resource to export data from.
Corresponds to the JSON property parent
      5573 5574 5575  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5573 def parent @parent end  | 
  
#write_disposition ⇒ String
Options for what to do if the destination table already exists.
Corresponds to the JSON property writeDisposition
      5578 5579 5580  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5578 def write_disposition @write_disposition end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      5585 5586 5587 5588 5589 5590 5591  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5585 def update!(**args) @big_query_destination = args[:big_query_destination] if args.key?(:big_query_destination) @filter = args[:filter] if args.key?(:filter) @kms_key = args[:kms_key] if args.key?(:kms_key) @parent = args[:parent] if args.key?(:parent) @write_disposition = args[:write_disposition] if args.key?(:write_disposition) end  |