Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit40ee037

Browse files
feat: add support for AdvancedSettings (#11765)
BEGIN_COMMIT_OVERRIDEfeat: add support for AdvancedSettingsfeat: add Intent import/export APIsfeat: add Inline destinationchore: remove the extraneous backend configEND_COMMIT_OVERRIDE- [ ] Regenerate this pull request now.feat: add Intent import/export APIsfeat: add Inline destinationchore: remove the extraneous backend configPiperOrigin-RevId: 569217741Source-Link:googleapis/googleapis@f91419cSource-Link:googleapis/googleapis-gen@0f779faCopy-Tag:eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWRpYWxvZ2Zsb3ctY3gvLk93bEJvdC55YW1sIiwiaCI6IjBmNzc5ZmEyMWIzNDljMDA4ODI2MTVmNTA3MmI2MzU4MzNmOGE2ZTUifQ==BEGIN_NESTED_COMMITfeat: add support for AdvancedSettingsfeat: add Intent import/export APIsfeat: add Inline destinationchore: remove the extraneous backend configPiperOrigin-RevId: 568902363Source-Link:googleapis/googleapis@b00c429Source-Link:googleapis/googleapis-gen@80e4e68Copy-Tag:eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWRpYWxvZ2Zsb3ctY3gvLk93bEJvdC55YW1sIiwiaCI6IjgwZTRlNjhkYWM3ZWZjMzQ1NzY4ZTg0YTAwY2E1ZjU3ZjBkM2E0MzIifQ==END_NESTED_COMMIT---------Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>Co-authored-by: ohmayr <omairnaveed@ymail.com>
1 parent2996e9b commit40ee037

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
fromgoogle.cloud.dialogflowcx_v3.types.gcsimportGcsDestination
197197
fromgoogle.cloud.dialogflowcx_v3.types.generative_settingsimportGenerativeSettings
198198
fromgoogle.cloud.dialogflowcx_v3.types.import_strategyimportImportStrategy
199+
fromgoogle.cloud.dialogflowcx_v3.types.inlineimportInlineDestination,InlineSource
199200
fromgoogle.cloud.dialogflowcx_v3.types.intentimport (
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.gcsimportGcsDestination
155155
from .types.generative_settingsimportGenerativeSettings
156156
from .types.import_strategyimportImportStrategy
157+
from .types.inlineimportInlineDestination,InlineSource
157158
from .types.intentimport (
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
fromgoogle.protobufimporttimestamp_pb2# type: ignore
5353

5454
fromgoogle.cloud.dialogflowcx_v3.services.flowsimportpagers
55+
fromgoogle.cloud.dialogflowcx_v3.typesimportadvanced_settings
5556
fromgoogle.cloud.dialogflowcx_v3.typesimportflow
5657
fromgoogle.cloud.dialogflowcx_v3.typesimportflowasgcdc_flow
5758
fromgoogle.cloud.dialogflowcx_v3.typesimportpage,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
fromgoogle.protobufimporttimestamp_pb2# type: ignore
5757

5858
fromgoogle.cloud.dialogflowcx_v3.services.flowsimportpagers
59+
fromgoogle.cloud.dialogflowcx_v3.typesimportadvanced_settings
5960
fromgoogle.cloud.dialogflowcx_v3.typesimportflow
6061
fromgoogle.cloud.dialogflowcx_v3.typesimportflowasgcdc_flow
6162
fromgoogle.cloud.dialogflowcx_v3.typesimportpage,validation_message

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp