advanced_settings.proto 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. // Copyright 2022 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.cloud.dialogflow.cx.v3beta1;
  16. import "google/api/field_behavior.proto";
  17. option cc_enable_arenas = true;
  18. option csharp_namespace = "Google.Cloud.Dialogflow.Cx.V3Beta1";
  19. option go_package = "google.golang.org/genproto/googleapis/cloud/dialogflow/cx/v3beta1;cx";
  20. option java_multiple_files = true;
  21. option java_outer_classname = "AdvancedSettingsProto";
  22. option java_package = "com.google.cloud.dialogflow.cx.v3beta1";
  23. option objc_class_prefix = "DF";
  24. option ruby_package = "Google::Cloud::Dialogflow::CX::V3beta1";
  25. // Hierarchical advanced settings for agent/flow/page/fulfillment/parameter.
  26. // Settings exposed at lower level overrides the settings exposed at higher
  27. // level. Overriding occurs at the sub-setting level. For example, the
  28. // playback_interruption_settings at fulfillment level only overrides the
  29. // playback_interruption_settings at the agent level, leaving other settings
  30. // at the agent level unchanged.
  31. //
  32. // DTMF settings does not override each other. DTMF settings set at different
  33. // levels define DTMF detections running in parallel.
  34. //
  35. // Hierarchy: Agent->Flow->Page->Fulfillment/Parameter.
  36. message AdvancedSettings {
  37. // Define behaviors on logging.
  38. message LoggingSettings {
  39. // If true, StackDriver logging is currently enabled.
  40. bool enable_stackdriver_logging = 2;
  41. // If true, DF Interaction logging is currently enabled.
  42. bool enable_interaction_logging = 3;
  43. }
  44. // Settings for logging.
  45. // Settings for Dialogflow History, Contact Center messages, StackDriver logs,
  46. // and speech logging.
  47. // Exposed at the following levels:
  48. // - Agent level.
  49. LoggingSettings logging_settings = 6;
  50. }