-
Notifications
You must be signed in to change notification settings - Fork 598
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add advanced settings for agent level feat: add rollout config,…
… state and failure reason for experiment feat: add insights export settings for security setting feat: add language code for streaming recognition result and flow versions for query p... (#156) * feat: add advanced settings for agent level feat: add rollout config, state and failure reason for experiment feat: add insights export settings for security setting feat: add language code for streaming recognition result and flow versions for query parameters docs: deprecate legacy logging settings PiperOrigin-RevId: 387851191 Source-Link: googleapis/googleapis@5af6d9b Source-Link: googleapis/googleapis-gen@d323f76 * 🦉 Updates from OwlBot See https://github.com/googleapis/repo-automation-bots/blob/master/packages/owl-bot/README.md Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
50a72c3
commit af5d66c
Showing
52 changed files
with
5,603 additions
and
717 deletions.
There are no files selected for viewing
52 changes: 52 additions & 0 deletions
52
...s/google-cloud-dialogflow-cx/protos/google/cloud/dialogflow/cx/v3/advanced_settings.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
// Copyright 2021 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 | ||
// | ||
// 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. | ||
|
||
syntax = "proto3"; | ||
|
||
package google.cloud.dialogflow.cx.v3; | ||
|
||
import "google/api/field_behavior.proto"; | ||
import "google/protobuf/duration.proto"; | ||
import "google/api/annotations.proto"; | ||
|
||
option cc_enable_arenas = true; | ||
option csharp_namespace = "Google.Cloud.Dialogflow.Cx.V3"; | ||
option go_package = "google.golang.org/genproto/googleapis/cloud/dialogflow/cx/v3;cx"; | ||
option java_multiple_files = true; | ||
option java_outer_classname = "AdvancedSettingsProto"; | ||
option java_package = "com.google.cloud.dialogflow.cx.v3"; | ||
option objc_class_prefix = "DF"; | ||
|
||
// Hierarchical advanced settings for agent/flow/page/fulfillment/parameter. | ||
// Settings exposed at lower level overrides the settings exposed at higher | ||
// level. | ||
// | ||
// Hierarchy: Agent->Flow->Page->Fulfillment/Parameter. | ||
message AdvancedSettings { | ||
// Define behaviors on logging. | ||
message LoggingSettings { | ||
// If true, StackDriver logging is currently enabled. | ||
bool enable_stackdriver_logging = 2; | ||
|
||
// If true, DF Interaction logging is currently enabled. | ||
bool enable_interaction_logging = 3; | ||
} | ||
|
||
// Settings for logging. | ||
// Settings for Dialogflow History, Contact Center messages, StackDriver logs, | ||
// and speech logging. | ||
// Exposed at the following levels: | ||
// - Agent level. | ||
LoggingSettings logging_settings = 6; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.