mirror of
https://github.com/googleapis/googleapis.git
synced 2026-08-15 12:50:26 +02:00
feat: added include_bigquery_export_settings to ExportAgentRequest
feat: added session_ttl to SessionProto PiperOrigin-RevId: 541070954
This commit is contained in:
parent
f47256507d
commit
439d4eec18
3 changed files with 17 additions and 2 deletions
|
|
@ -100,8 +100,8 @@ java_gapic_library(
|
|||
rest_numeric_enums = True,
|
||||
service_yaml = "dialogflow_v3.yaml",
|
||||
test_deps = [
|
||||
":cx_java_grpc",
|
||||
"//google/cloud/location:location_java_grpc",
|
||||
":cx_java_grpc",
|
||||
],
|
||||
transport = "grpc+rest",
|
||||
deps = [
|
||||
|
|
@ -226,6 +226,7 @@ load(
|
|||
"@com_google_googleapis_imports//:imports.bzl",
|
||||
"py_gapic_assembly_pkg",
|
||||
"py_gapic_library",
|
||||
"py_test",
|
||||
)
|
||||
|
||||
py_gapic_library(
|
||||
|
|
@ -286,7 +287,9 @@ php_gapic_library(
|
|||
rest_numeric_enums = True,
|
||||
service_yaml = "dialogflow_v3.yaml",
|
||||
transport = "grpc+rest",
|
||||
deps = [":cx_php_proto"],
|
||||
deps = [
|
||||
":cx_php_proto",
|
||||
],
|
||||
)
|
||||
|
||||
# Open Source Packages
|
||||
|
|
@ -397,6 +400,7 @@ load(
|
|||
|
||||
csharp_proto_library(
|
||||
name = "cx_csharp_proto",
|
||||
extra_opts = [],
|
||||
deps = [":cx_proto"],
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -408,6 +408,10 @@ message ExportAgentRequest {
|
|||
type: "dialogflow.googleapis.com/Environment"
|
||||
}
|
||||
];
|
||||
|
||||
// Optional. Whether to include BigQuery Export setting.
|
||||
bool include_bigquery_export_settings = 7
|
||||
[(google.api.field_behavior) = OPTIONAL];
|
||||
}
|
||||
|
||||
// The response message for
|
||||
|
|
|
|||
|
|
@ -596,6 +596,13 @@ message QueryParameters {
|
|||
// [ResponseMessage][google.cloud.dialogflow.cx.v3.ResponseMessage] with
|
||||
// unspecified channel will be returned.
|
||||
string channel = 15;
|
||||
|
||||
// Optional. Sets Dialogflow session life time.
|
||||
// By default, a Dialogflow session remains active and its data is stored for
|
||||
// 30 minutes after the last request is sent for the session.
|
||||
// This value should be no longer than 1 day.
|
||||
google.protobuf.Duration session_ttl = 16
|
||||
[(google.api.field_behavior) = OPTIONAL];
|
||||
}
|
||||
|
||||
// Represents the query input. It can contain one of:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue