This repository has been archived by the owner on Jan 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(v3beta1): add advanced settings for agent level (#138)
PiperOrigin-RevId: 387851191 Source-Link: googleapis/googleapis@5af6d9b Source-Link: https://github.com/googleapis/googleapis-gen/commit/d323f766c0c6406e6a7bfae91ebaefb0819a3681 feat(v3beta1): add rollout config, state and failure reason for experiment feat(v3beta1): add insights export settings for security setting feat(v3beta1): add language code for streaming recognition result and flow versions for query parameters docs(v3beta1): deprecate legacy logging settings
- Loading branch information
1 parent
24ef477
commit 96141a1
Showing
14 changed files
with
300 additions
and
25 deletions.
There are no files selected for viewing
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
57 changes: 57 additions & 0 deletions
57
google/cloud/dialogflowcx_v3beta1/types/advanced_settings.py
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,57 @@ | ||
# -*- coding: utf-8 -*- | ||
# Copyright 2020 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. | ||
# | ||
import proto # type: ignore | ||
|
||
|
||
__protobuf__ = proto.module( | ||
package="google.cloud.dialogflow.cx.v3beta1", manifest={"AdvancedSettings",}, | ||
) | ||
|
||
|
||
class AdvancedSettings(proto.Message): | ||
r"""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. | ||
Attributes: | ||
logging_settings (google.cloud.dialogflowcx_v3beta1.types.AdvancedSettings.LoggingSettings): | ||
Settings for logging. | ||
Settings for Dialogflow History, Contact Center | ||
messages, StackDriver logs, and speech logging. | ||
Exposed at the following levels: | ||
- Agent level. | ||
""" | ||
|
||
class LoggingSettings(proto.Message): | ||
r"""Define behaviors on logging. | ||
Attributes: | ||
enable_stackdriver_logging (bool): | ||
If true, StackDriver logging is currently | ||
enabled. | ||
enable_interaction_logging (bool): | ||
If true, DF Interaction logging is currently | ||
enabled. | ||
""" | ||
|
||
enable_stackdriver_logging = proto.Field(proto.BOOL, number=2,) | ||
enable_interaction_logging = proto.Field(proto.BOOL, number=3,) | ||
|
||
logging_settings = proto.Field(proto.MESSAGE, number=6, message=LoggingSettings,) | ||
|
||
|
||
__all__ = tuple(sorted(__protobuf__.manifest)) |
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.