-
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: [dialogflow-cx] add support for AdvancedSettings (#4718)
* feat: add support for AdvancedSettings feat: add Intent import/export APIs feat: add Inline destination chore: remove the extraneous backend config PiperOrigin-RevId: 568902363 Source-Link: googleapis/googleapis@b00c429 Source-Link: googleapis/googleapis-gen@80e4e68 Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWRpYWxvZ2Zsb3ctY3gvLk93bEJvdC55YW1sIiwiaCI6IjgwZTRlNjhkYWM3ZWZjMzQ1NzY4ZTg0YTAwY2E1ZjU3ZjBkM2E0MzIifQ== * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * feat: add support for AdvancedSettings feat: add Intent import/export APIs feat: add Inline destination chore: remove the extraneous backend config PiperOrigin-RevId: 569217741 Source-Link: googleapis/googleapis@f91419c Source-Link: googleapis/googleapis-gen@0f779fa Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWRpYWxvZ2Zsb3ctY3gvLk93bEJvdC55YW1sIiwiaCI6IjBmNzc5ZmEyMWIzNDljMDA4ODI2MTVmNTA3MmI2MzU4MzNmOGE2ZTUifQ== * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
e071fe3
commit b94abd9
Showing
65 changed files
with
75,979 additions
and
64,045 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
43 changes: 43 additions & 0 deletions
43
packages/google-cloud-dialogflow-cx/protos/google/cloud/dialogflow/cx/v3/inline.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,43 @@ | ||
// Copyright 2023 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"; | ||
|
||
option cc_enable_arenas = true; | ||
option csharp_namespace = "Google.Cloud.Dialogflow.Cx.V3"; | ||
option go_package = "cloud.google.com/go/dialogflow/cx/apiv3/cxpb;cxpb"; | ||
option java_multiple_files = true; | ||
option java_outer_classname = "InlineProto"; | ||
option java_package = "com.google.cloud.dialogflow.cx.v3"; | ||
option objc_class_prefix = "DF"; | ||
option ruby_package = "Google::Cloud::Dialogflow::CX::V3"; | ||
|
||
// Inline destination for a Dialogflow operation that writes or exports objects | ||
// (e.g. [intents][google.cloud.dialogflow.cx.v3.Intent]) outside of Dialogflow. | ||
message InlineDestination { | ||
// Output only. The uncompressed byte content for the objects. | ||
// Only populated in responses. | ||
bytes content = 1 [(google.api.field_behavior) = OUTPUT_ONLY]; | ||
} | ||
|
||
// Inline source for a Dialogflow operation that reads or imports objects | ||
// (e.g. [intents][google.cloud.dialogflow.cx.v3.Intent]) into Dialogflow. | ||
message InlineSource { | ||
// The uncompressed byte content for the objects. | ||
bytes content = 1; | ||
} |
Oops, something went wrong.