feat: added include_bigquery_export_settings to ExportAgentRequest

feat: added session_ttl to SessionProto

PiperOrigin-RevId: 541038902
gce-action-fix
Google APIs 2 years ago committed by Copybara-Service
parent f78641709f
commit f47256507d
  1. 8
      google/cloud/dialogflow/cx/v3beta1/BUILD.bazel
  2. 4
      google/cloud/dialogflow/cx/v3beta1/agent.proto
  3. 7
      google/cloud/dialogflow/cx/v3beta1/session.proto

@ -100,8 +100,8 @@ java_gapic_library(
rest_numeric_enums = True,
service_yaml = "dialogflow_v3beta1.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_v3beta1.yaml",
transport = "grpc+rest",
deps = [":cx_php_proto"],
deps = [
":cx_php_proto",
],
)
# Open Source Packages
@ -396,6 +399,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

@ -598,6 +598,13 @@ message QueryParameters {
// [ResponseMessage][google.cloud.dialogflow.cx.v3beta1.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…
Cancel
Save