feat: added include_bigquery_export_settings to ExportAgentRequest

feat: added session_ttl to SessionProto

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

@ -100,8 +100,8 @@ java_gapic_library(
rest_numeric_enums = True, rest_numeric_enums = True,
service_yaml = "dialogflow_v3.yaml", service_yaml = "dialogflow_v3.yaml",
test_deps = [ test_deps = [
":cx_java_grpc",
"//google/cloud/location:location_java_grpc", "//google/cloud/location:location_java_grpc",
":cx_java_grpc",
], ],
transport = "grpc+rest", transport = "grpc+rest",
deps = [ deps = [
@ -226,6 +226,7 @@ load(
"@com_google_googleapis_imports//:imports.bzl", "@com_google_googleapis_imports//:imports.bzl",
"py_gapic_assembly_pkg", "py_gapic_assembly_pkg",
"py_gapic_library", "py_gapic_library",
"py_test",
) )
py_gapic_library( py_gapic_library(
@ -286,7 +287,9 @@ php_gapic_library(
rest_numeric_enums = True, rest_numeric_enums = True,
service_yaml = "dialogflow_v3.yaml", service_yaml = "dialogflow_v3.yaml",
transport = "grpc+rest", transport = "grpc+rest",
deps = [":cx_php_proto"], deps = [
":cx_php_proto",
],
) )
# Open Source Packages # Open Source Packages
@ -397,6 +400,7 @@ load(
csharp_proto_library( csharp_proto_library(
name = "cx_csharp_proto", name = "cx_csharp_proto",
extra_opts = [],
deps = [":cx_proto"], deps = [":cx_proto"],
) )

@ -408,6 +408,10 @@ message ExportAgentRequest {
type: "dialogflow.googleapis.com/Environment" 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 // The response message for

@ -596,6 +596,13 @@ message QueryParameters {
// [ResponseMessage][google.cloud.dialogflow.cx.v3.ResponseMessage] with // [ResponseMessage][google.cloud.dialogflow.cx.v3.ResponseMessage] with
// unspecified channel will be returned. // unspecified channel will be returned.
string channel = 15; 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: // Represents the query input. It can contain one of:

Loading…
Cancel
Save