advanced_settings.proto 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. // Copyright 2021 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.v3;
  16. import "google/api/field_behavior.proto";
  17. import "google/protobuf/duration.proto";
  18. import "google/api/annotations.proto";
  19. option cc_enable_arenas = true;
  20. option csharp_namespace = "Google.Cloud.Dialogflow.Cx.V3";
  21. option go_package = "google.golang.org/genproto/googleapis/cloud/dialogflow/cx/v3;cx";
  22. option java_multiple_files = true;
  23. option java_outer_classname = "AdvancedSettingsProto";
  24. option java_package = "com.google.cloud.dialogflow.cx.v3";
  25. option objc_class_prefix = "DF";
  26. // Hierarchical advanced settings for agent/flow/page/fulfillment/parameter.
  27. // Settings exposed at lower level overrides the settings exposed at higher
  28. // level.
  29. //
  30. // Hierarchy: Agent->Flow->Page->Fulfillment/Parameter.
  31. message AdvancedSettings {
  32. // Define behaviors on logging.
  33. message LoggingSettings {
  34. // If true, StackDriver logging is currently enabled.
  35. bool enable_stackdriver_logging = 2;
  36. // If true, DF Interaction logging is currently enabled.
  37. bool enable_interaction_logging = 3;
  38. }
  39. // Settings for logging.
  40. // Settings for Dialogflow History, Contact Center messages, StackDriver logs,
  41. // and speech logging.
  42. // Exposed at the following levels:
  43. // - Agent level.
  44. LoggingSettings logging_settings = 6;
  45. }