Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 40ee037

Browse files
feat: add support for AdvancedSettings (#11765)
BEGIN_COMMIT_OVERRIDE feat: add support for AdvancedSettings feat: add Intent import/export APIs feat: add Inline destination chore: remove the extraneous backend config END_COMMIT_OVERRIDE - [ ] Regenerate this pull request now. 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== BEGIN_NESTED_COMMIT 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== END_NESTED_COMMIT --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: ohmayr <[email protected]>
1 parent 2996e9b commit 40ee037

File tree

70 files changed

+6272
-87
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+6272
-87
lines changed

packages/google-cloud-dialogflow-cx/CONTRIBUTING.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,12 +143,12 @@ Running System Tests
143143
$ nox -s system
144144

145145
# Run a single system test
146-
$ nox -s system- -- -k <name of test>
146+
$ nox -s system-3.11 -- -k <name of test>
147147

148148

149149
.. note::
150150

151-
System tests are only configured to run under Python.
151+
System tests are only configured to run under Python 3.8, 3.9, 3.10 and 3.11.
152152
For expediency, we do not run them in older versions of Python 3.
153153

154154
This alone will not run the tests. You'll need to change some local

packages/google-cloud-dialogflow-cx/google/cloud/dialogflowcx/__init__.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,10 +196,17 @@
196196
from google.cloud.dialogflowcx_v3.types.gcs import GcsDestination
197197
from google.cloud.dialogflowcx_v3.types.generative_settings import GenerativeSettings
198198
from google.cloud.dialogflowcx_v3.types.import_strategy import ImportStrategy
199+
from google.cloud.dialogflowcx_v3.types.inline import InlineDestination, InlineSource
199200
from google.cloud.dialogflowcx_v3.types.intent import (
200201
CreateIntentRequest,
201202
DeleteIntentRequest,
203+
ExportIntentsMetadata,
204+
ExportIntentsRequest,
205+
ExportIntentsResponse,
202206
GetIntentRequest,
207+
ImportIntentsMetadata,
208+
ImportIntentsRequest,
209+
ImportIntentsResponse,
203210
Intent,
204211
IntentView,
205212
ListIntentsRequest,
@@ -466,9 +473,17 @@
466473
"GcsDestination",
467474
"GenerativeSettings",
468475
"ImportStrategy",
476+
"InlineDestination",
477+
"InlineSource",
469478
"CreateIntentRequest",
470479
"DeleteIntentRequest",
480+
"ExportIntentsMetadata",
481+
"ExportIntentsRequest",
482+
"ExportIntentsResponse",
471483
"GetIntentRequest",
484+
"ImportIntentsMetadata",
485+
"ImportIntentsRequest",
486+
"ImportIntentsResponse",
472487
"Intent",
473488
"ListIntentsRequest",
474489
"ListIntentsResponse",

packages/google-cloud-dialogflow-cx/google/cloud/dialogflowcx/gapic_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
__version__ = "1.27.1" # {x-release-please-version}
16+
__version__ = "0.0.0" # {x-release-please-version}

packages/google-cloud-dialogflow-cx/google/cloud/dialogflowcx_v3/__init__.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,10 +154,17 @@
154154
from .types.gcs import GcsDestination
155155
from .types.generative_settings import GenerativeSettings
156156
from .types.import_strategy import ImportStrategy
157+
from .types.inline import InlineDestination, InlineSource
157158
from .types.intent import (
158159
CreateIntentRequest,
159160
DeleteIntentRequest,
161+
ExportIntentsMetadata,
162+
ExportIntentsRequest,
163+
ExportIntentsResponse,
160164
GetIntentRequest,
165+
ImportIntentsMetadata,
166+
ImportIntentsRequest,
167+
ImportIntentsResponse,
161168
Intent,
162169
IntentView,
163170
ListIntentsRequest,
@@ -376,6 +383,9 @@
376383
"ExportAgentResponse",
377384
"ExportFlowRequest",
378385
"ExportFlowResponse",
386+
"ExportIntentsMetadata",
387+
"ExportIntentsRequest",
388+
"ExportIntentsResponse",
379389
"ExportTestCasesMetadata",
380390
"ExportTestCasesRequest",
381391
"ExportTestCasesResponse",
@@ -410,10 +420,15 @@
410420
"GetWebhookRequest",
411421
"ImportFlowRequest",
412422
"ImportFlowResponse",
423+
"ImportIntentsMetadata",
424+
"ImportIntentsRequest",
425+
"ImportIntentsResponse",
413426
"ImportStrategy",
414427
"ImportTestCasesMetadata",
415428
"ImportTestCasesRequest",
416429
"ImportTestCasesResponse",
430+
"InlineDestination",
431+
"InlineSource",
417432
"InputAudioConfig",
418433
"Intent",
419434
"IntentCoverage",

packages/google-cloud-dialogflow-cx/google/cloud/dialogflowcx_v3/gapic_metadata.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -843,11 +843,21 @@
843843
"delete_intent"
844844
]
845845
},
846+
"ExportIntents": {
847+
"methods": [
848+
"export_intents"
849+
]
850+
},
846851
"GetIntent": {
847852
"methods": [
848853
"get_intent"
849854
]
850855
},
856+
"ImportIntents": {
857+
"methods": [
858+
"import_intents"
859+
]
860+
},
851861
"ListIntents": {
852862
"methods": [
853863
"list_intents"
@@ -873,11 +883,21 @@
873883
"delete_intent"
874884
]
875885
},
886+
"ExportIntents": {
887+
"methods": [
888+
"export_intents"
889+
]
890+
},
876891
"GetIntent": {
877892
"methods": [
878893
"get_intent"
879894
]
880895
},
896+
"ImportIntents": {
897+
"methods": [
898+
"import_intents"
899+
]
900+
},
881901
"ListIntents": {
882902
"methods": [
883903
"list_intents"
@@ -903,11 +923,21 @@
903923
"delete_intent"
904924
]
905925
},
926+
"ExportIntents": {
927+
"methods": [
928+
"export_intents"
929+
]
930+
},
906931
"GetIntent": {
907932
"methods": [
908933
"get_intent"
909934
]
910935
},
936+
"ImportIntents": {
937+
"methods": [
938+
"import_intents"
939+
]
940+
},
911941
"ListIntents": {
912942
"methods": [
913943
"list_intents"

packages/google-cloud-dialogflow-cx/google/cloud/dialogflowcx_v3/gapic_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
__version__ = "1.27.1" # {x-release-please-version}
16+
__version__ = "0.0.0" # {x-release-please-version}

packages/google-cloud-dialogflow-cx/google/cloud/dialogflowcx_v3/services/flows/async_client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
from google.protobuf import timestamp_pb2 # type: ignore
5353

5454
from google.cloud.dialogflowcx_v3.services.flows import pagers
55+
from google.cloud.dialogflowcx_v3.types import advanced_settings
5556
from google.cloud.dialogflowcx_v3.types import flow
5657
from google.cloud.dialogflowcx_v3.types import flow as gcdc_flow
5758
from google.cloud.dialogflowcx_v3.types import page, validation_message

packages/google-cloud-dialogflow-cx/google/cloud/dialogflowcx_v3/services/flows/client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
from google.protobuf import timestamp_pb2 # type: ignore
5757

5858
from google.cloud.dialogflowcx_v3.services.flows import pagers
59+
from google.cloud.dialogflowcx_v3.types import advanced_settings
5960
from google.cloud.dialogflowcx_v3.types import flow
6061
from google.cloud.dialogflowcx_v3.types import flow as gcdc_flow
6162
from google.cloud.dialogflowcx_v3.types import page, validation_message

0 commit comments

Comments
 (0)