com.google.api.services.contactcenterinsights.v1.model.GoogleCloudContactcenterinsightsV1ExportInsightsDataRequest Maven / Gradle / Ivy
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/
package com.google.api.services.contactcenterinsights.v1.model;
/**
* The request to export insights.
*
* This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Contact Center AI Insights API. For a detailed
* explanation see:
* https://developers.google.com/api-client-library/java/google-http-java-client/json
*
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class GoogleCloudContactcenterinsightsV1ExportInsightsDataRequest extends com.google.api.client.json.GenericJson {
/**
* Specified if sink is a BigQuery table.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private GoogleCloudContactcenterinsightsV1ExportInsightsDataRequestBigQueryDestination bigQueryDestination;
/**
* A filter to reduce results to a specific subset. Useful for exporting conversations with
* specific properties.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String filter;
/**
* A fully qualified KMS key name for BigQuery tables protected by CMEK. Format: projects/{project
* }/locations/{location}/keyRings/{keyring}/cryptoKeys/{key}/cryptoKeyVersions/{version}
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String kmsKey;
/**
* Required. The parent resource to export data from.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String parent;
/**
* Options for what to do if the destination table already exists.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String writeDisposition;
/**
* Specified if sink is a BigQuery table.
* @return value or {@code null} for none
*/
public GoogleCloudContactcenterinsightsV1ExportInsightsDataRequestBigQueryDestination getBigQueryDestination() {
return bigQueryDestination;
}
/**
* Specified if sink is a BigQuery table.
* @param bigQueryDestination bigQueryDestination or {@code null} for none
*/
public GoogleCloudContactcenterinsightsV1ExportInsightsDataRequest setBigQueryDestination(GoogleCloudContactcenterinsightsV1ExportInsightsDataRequestBigQueryDestination bigQueryDestination) {
this.bigQueryDestination = bigQueryDestination;
return this;
}
/**
* A filter to reduce results to a specific subset. Useful for exporting conversations with
* specific properties.
* @return value or {@code null} for none
*/
public java.lang.String getFilter() {
return filter;
}
/**
* A filter to reduce results to a specific subset. Useful for exporting conversations with
* specific properties.
* @param filter filter or {@code null} for none
*/
public GoogleCloudContactcenterinsightsV1ExportInsightsDataRequest setFilter(java.lang.String filter) {
this.filter = filter;
return this;
}
/**
* A fully qualified KMS key name for BigQuery tables protected by CMEK. Format: projects/{project
* }/locations/{location}/keyRings/{keyring}/cryptoKeys/{key}/cryptoKeyVersions/{version}
* @return value or {@code null} for none
*/
public java.lang.String getKmsKey() {
return kmsKey;
}
/**
* A fully qualified KMS key name for BigQuery tables protected by CMEK. Format: projects/{project
* }/locations/{location}/keyRings/{keyring}/cryptoKeys/{key}/cryptoKeyVersions/{version}
* @param kmsKey kmsKey or {@code null} for none
*/
public GoogleCloudContactcenterinsightsV1ExportInsightsDataRequest setKmsKey(java.lang.String kmsKey) {
this.kmsKey = kmsKey;
return this;
}
/**
* Required. The parent resource to export data from.
* @return value or {@code null} for none
*/
public java.lang.String getParent() {
return parent;
}
/**
* Required. The parent resource to export data from.
* @param parent parent or {@code null} for none
*/
public GoogleCloudContactcenterinsightsV1ExportInsightsDataRequest setParent(java.lang.String parent) {
this.parent = parent;
return this;
}
/**
* Options for what to do if the destination table already exists.
* @return value or {@code null} for none
*/
public java.lang.String getWriteDisposition() {
return writeDisposition;
}
/**
* Options for what to do if the destination table already exists.
* @param writeDisposition writeDisposition or {@code null} for none
*/
public GoogleCloudContactcenterinsightsV1ExportInsightsDataRequest setWriteDisposition(java.lang.String writeDisposition) {
this.writeDisposition = writeDisposition;
return this;
}
@Override
public GoogleCloudContactcenterinsightsV1ExportInsightsDataRequest set(String fieldName, Object value) {
return (GoogleCloudContactcenterinsightsV1ExportInsightsDataRequest) super.set(fieldName, value);
}
@Override
public GoogleCloudContactcenterinsightsV1ExportInsightsDataRequest clone() {
return (GoogleCloudContactcenterinsightsV1ExportInsightsDataRequest) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy