com.google.cloud.contactcenterinsights.v1.SettingsOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-contact-center-insights-v1 Show documentation
Show all versions of proto-google-cloud-contact-center-insights-v1 Show documentation
Proto library for google-cloud-contact-center-insights
/*
* Copyright 2024 Google LLC
*
* 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
*
* https://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.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/contactcenterinsights/v1/resources.proto
// Protobuf Java Version: 3.25.4
package com.google.cloud.contactcenterinsights.v1;
public interface SettingsOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.contactcenterinsights.v1.Settings)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Immutable. The resource name of the settings resource.
* Format:
* projects/{project}/locations/{location}/settings
*
*
* string name = 1 [(.google.api.field_behavior) = IMMUTABLE];
*
* @return The name.
*/
java.lang.String getName();
/**
*
*
*
* Immutable. The resource name of the settings resource.
* Format:
* projects/{project}/locations/{location}/settings
*
*
* string name = 1 [(.google.api.field_behavior) = IMMUTABLE];
*
* @return The bytes for name.
*/
com.google.protobuf.ByteString getNameBytes();
/**
*
*
*
* Output only. The time at which the settings was created.
*
*
* .google.protobuf.Timestamp create_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return Whether the createTime field is set.
*/
boolean hasCreateTime();
/**
*
*
*
* Output only. The time at which the settings was created.
*
*
* .google.protobuf.Timestamp create_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The createTime.
*/
com.google.protobuf.Timestamp getCreateTime();
/**
*
*
*
* Output only. The time at which the settings was created.
*
*
* .google.protobuf.Timestamp create_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*/
com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder();
/**
*
*
*
* Output only. The time at which the settings were last updated.
*
*
* .google.protobuf.Timestamp update_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return Whether the updateTime field is set.
*/
boolean hasUpdateTime();
/**
*
*
*
* Output only. The time at which the settings were last updated.
*
*
* .google.protobuf.Timestamp update_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The updateTime.
*/
com.google.protobuf.Timestamp getUpdateTime();
/**
*
*
*
* Output only. The time at which the settings were last updated.
*
*
* .google.protobuf.Timestamp update_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*/
com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder();
/**
*
*
*
* A language code to be applied to each transcript segment unless the segment
* already specifies a language code. Language code defaults to "en-US" if it
* is neither specified on the segment nor here.
*
*
* string language_code = 4;
*
* @return The languageCode.
*/
java.lang.String getLanguageCode();
/**
*
*
*
* A language code to be applied to each transcript segment unless the segment
* already specifies a language code. Language code defaults to "en-US" if it
* is neither specified on the segment nor here.
*
*
* string language_code = 4;
*
* @return The bytes for languageCode.
*/
com.google.protobuf.ByteString getLanguageCodeBytes();
/**
*
*
*
* The default TTL for newly-created conversations. If a conversation has a
* specified expiration, that value will be used instead. Changing this
* value will not change the expiration of existing conversations.
* Conversations with no expire time persist until they are deleted.
*
*
* .google.protobuf.Duration conversation_ttl = 5;
*
* @return Whether the conversationTtl field is set.
*/
boolean hasConversationTtl();
/**
*
*
*
* The default TTL for newly-created conversations. If a conversation has a
* specified expiration, that value will be used instead. Changing this
* value will not change the expiration of existing conversations.
* Conversations with no expire time persist until they are deleted.
*
*
* .google.protobuf.Duration conversation_ttl = 5;
*
* @return The conversationTtl.
*/
com.google.protobuf.Duration getConversationTtl();
/**
*
*
*
* The default TTL for newly-created conversations. If a conversation has a
* specified expiration, that value will be used instead. Changing this
* value will not change the expiration of existing conversations.
* Conversations with no expire time persist until they are deleted.
*
*
* .google.protobuf.Duration conversation_ttl = 5;
*/
com.google.protobuf.DurationOrBuilder getConversationTtlOrBuilder();
/**
*
*
*
* A map that maps a notification trigger to a Pub/Sub topic. Each time a
* specified trigger occurs, Insights will notify the corresponding Pub/Sub
* topic.
*
* Keys are notification triggers. Supported keys are:
*
* * "all-triggers": Notify each time any of the supported triggers occurs.
* * "create-analysis": Notify each time an analysis is created.
* * "create-conversation": Notify each time a conversation is created.
* * "export-insights-data": Notify each time an export is complete.
* * "update-conversation": Notify each time a conversation is updated via
* UpdateConversation.
*
* Values are Pub/Sub topics. The format of each Pub/Sub topic is:
* projects/{project}/topics/{topic}
*
*
* map<string, string> pubsub_notification_settings = 6;
*/
int getPubsubNotificationSettingsCount();
/**
*
*
*
* A map that maps a notification trigger to a Pub/Sub topic. Each time a
* specified trigger occurs, Insights will notify the corresponding Pub/Sub
* topic.
*
* Keys are notification triggers. Supported keys are:
*
* * "all-triggers": Notify each time any of the supported triggers occurs.
* * "create-analysis": Notify each time an analysis is created.
* * "create-conversation": Notify each time a conversation is created.
* * "export-insights-data": Notify each time an export is complete.
* * "update-conversation": Notify each time a conversation is updated via
* UpdateConversation.
*
* Values are Pub/Sub topics. The format of each Pub/Sub topic is:
* projects/{project}/topics/{topic}
*
*
* map<string, string> pubsub_notification_settings = 6;
*/
boolean containsPubsubNotificationSettings(java.lang.String key);
/** Use {@link #getPubsubNotificationSettingsMap()} instead. */
@java.lang.Deprecated
java.util.Map getPubsubNotificationSettings();
/**
*
*
*
* A map that maps a notification trigger to a Pub/Sub topic. Each time a
* specified trigger occurs, Insights will notify the corresponding Pub/Sub
* topic.
*
* Keys are notification triggers. Supported keys are:
*
* * "all-triggers": Notify each time any of the supported triggers occurs.
* * "create-analysis": Notify each time an analysis is created.
* * "create-conversation": Notify each time a conversation is created.
* * "export-insights-data": Notify each time an export is complete.
* * "update-conversation": Notify each time a conversation is updated via
* UpdateConversation.
*
* Values are Pub/Sub topics. The format of each Pub/Sub topic is:
* projects/{project}/topics/{topic}
*
*
* map<string, string> pubsub_notification_settings = 6;
*/
java.util.Map getPubsubNotificationSettingsMap();
/**
*
*
*
* A map that maps a notification trigger to a Pub/Sub topic. Each time a
* specified trigger occurs, Insights will notify the corresponding Pub/Sub
* topic.
*
* Keys are notification triggers. Supported keys are:
*
* * "all-triggers": Notify each time any of the supported triggers occurs.
* * "create-analysis": Notify each time an analysis is created.
* * "create-conversation": Notify each time a conversation is created.
* * "export-insights-data": Notify each time an export is complete.
* * "update-conversation": Notify each time a conversation is updated via
* UpdateConversation.
*
* Values are Pub/Sub topics. The format of each Pub/Sub topic is:
* projects/{project}/topics/{topic}
*
*
* map<string, string> pubsub_notification_settings = 6;
*/
/* nullable */
java.lang.String getPubsubNotificationSettingsOrDefault(
java.lang.String key,
/* nullable */
java.lang.String defaultValue);
/**
*
*
*
* A map that maps a notification trigger to a Pub/Sub topic. Each time a
* specified trigger occurs, Insights will notify the corresponding Pub/Sub
* topic.
*
* Keys are notification triggers. Supported keys are:
*
* * "all-triggers": Notify each time any of the supported triggers occurs.
* * "create-analysis": Notify each time an analysis is created.
* * "create-conversation": Notify each time a conversation is created.
* * "export-insights-data": Notify each time an export is complete.
* * "update-conversation": Notify each time a conversation is updated via
* UpdateConversation.
*
* Values are Pub/Sub topics. The format of each Pub/Sub topic is:
* projects/{project}/topics/{topic}
*
*
* map<string, string> pubsub_notification_settings = 6;
*/
java.lang.String getPubsubNotificationSettingsOrThrow(java.lang.String key);
/**
*
*
*
* Default analysis settings.
*
*
* .google.cloud.contactcenterinsights.v1.Settings.AnalysisConfig analysis_config = 7;
*
*
* @return Whether the analysisConfig field is set.
*/
boolean hasAnalysisConfig();
/**
*
*
*
* Default analysis settings.
*
*
* .google.cloud.contactcenterinsights.v1.Settings.AnalysisConfig analysis_config = 7;
*
*
* @return The analysisConfig.
*/
com.google.cloud.contactcenterinsights.v1.Settings.AnalysisConfig getAnalysisConfig();
/**
*
*
*
* Default analysis settings.
*
*
* .google.cloud.contactcenterinsights.v1.Settings.AnalysisConfig analysis_config = 7;
*
*/
com.google.cloud.contactcenterinsights.v1.Settings.AnalysisConfigOrBuilder
getAnalysisConfigOrBuilder();
/**
*
*
*
* Default DLP redaction resources to be applied while ingesting
* conversations.
*
*
* .google.cloud.contactcenterinsights.v1.RedactionConfig redaction_config = 10;
*
* @return Whether the redactionConfig field is set.
*/
boolean hasRedactionConfig();
/**
*
*
*
* Default DLP redaction resources to be applied while ingesting
* conversations.
*
*
* .google.cloud.contactcenterinsights.v1.RedactionConfig redaction_config = 10;
*
* @return The redactionConfig.
*/
com.google.cloud.contactcenterinsights.v1.RedactionConfig getRedactionConfig();
/**
*
*
*
* Default DLP redaction resources to be applied while ingesting
* conversations.
*
*
* .google.cloud.contactcenterinsights.v1.RedactionConfig redaction_config = 10;
*/
com.google.cloud.contactcenterinsights.v1.RedactionConfigOrBuilder getRedactionConfigOrBuilder();
/**
*
*
*
* Optional. Default Speech-to-Text resources to be used while ingesting audio
* files. Optional, CCAI Insights will create a default if not provided.
*
*
*
* .google.cloud.contactcenterinsights.v1.SpeechConfig speech_config = 11 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return Whether the speechConfig field is set.
*/
boolean hasSpeechConfig();
/**
*
*
*
* Optional. Default Speech-to-Text resources to be used while ingesting audio
* files. Optional, CCAI Insights will create a default if not provided.
*
*
*
* .google.cloud.contactcenterinsights.v1.SpeechConfig speech_config = 11 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return The speechConfig.
*/
com.google.cloud.contactcenterinsights.v1.SpeechConfig getSpeechConfig();
/**
*
*
*
* Optional. Default Speech-to-Text resources to be used while ingesting audio
* files. Optional, CCAI Insights will create a default if not provided.
*
*
*
* .google.cloud.contactcenterinsights.v1.SpeechConfig speech_config = 11 [(.google.api.field_behavior) = OPTIONAL];
*
*/
com.google.cloud.contactcenterinsights.v1.SpeechConfigOrBuilder getSpeechConfigOrBuilder();
}