Skip to content

Commit

Permalink
feat: add support for AdvancedSettings (#11765)
Browse files Browse the repository at this point in the history
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 <omairnaveed@ymail.com>
  • Loading branch information
3 people committed Sep 30, 2023
1 parent 2996e9b commit 40ee037
Show file tree
Hide file tree
Showing 70 changed files with 6,272 additions and 87 deletions.
4 changes: 2 additions & 2 deletions packages/google-cloud-dialogflow-cx/CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -143,12 +143,12 @@ Running System Tests
$ nox -s system

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


.. note::

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

This alone will not run the tests. You'll need to change some local
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,10 +196,17 @@
from google.cloud.dialogflowcx_v3.types.gcs import GcsDestination
from google.cloud.dialogflowcx_v3.types.generative_settings import GenerativeSettings
from google.cloud.dialogflowcx_v3.types.import_strategy import ImportStrategy
from google.cloud.dialogflowcx_v3.types.inline import InlineDestination, InlineSource
from google.cloud.dialogflowcx_v3.types.intent import (
CreateIntentRequest,
DeleteIntentRequest,
ExportIntentsMetadata,
ExportIntentsRequest,
ExportIntentsResponse,
GetIntentRequest,
ImportIntentsMetadata,
ImportIntentsRequest,
ImportIntentsResponse,
Intent,
IntentView,
ListIntentsRequest,
Expand Down Expand Up @@ -466,9 +473,17 @@
"GcsDestination",
"GenerativeSettings",
"ImportStrategy",
"InlineDestination",
"InlineSource",
"CreateIntentRequest",
"DeleteIntentRequest",
"ExportIntentsMetadata",
"ExportIntentsRequest",
"ExportIntentsResponse",
"GetIntentRequest",
"ImportIntentsMetadata",
"ImportIntentsRequest",
"ImportIntentsResponse",
"Intent",
"ListIntentsRequest",
"ListIntentsResponse",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "1.27.1" # {x-release-please-version}
__version__ = "0.0.0" # {x-release-please-version}
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,17 @@
from .types.gcs import GcsDestination
from .types.generative_settings import GenerativeSettings
from .types.import_strategy import ImportStrategy
from .types.inline import InlineDestination, InlineSource
from .types.intent import (
CreateIntentRequest,
DeleteIntentRequest,
ExportIntentsMetadata,
ExportIntentsRequest,
ExportIntentsResponse,
GetIntentRequest,
ImportIntentsMetadata,
ImportIntentsRequest,
ImportIntentsResponse,
Intent,
IntentView,
ListIntentsRequest,
Expand Down Expand Up @@ -376,6 +383,9 @@
"ExportAgentResponse",
"ExportFlowRequest",
"ExportFlowResponse",
"ExportIntentsMetadata",
"ExportIntentsRequest",
"ExportIntentsResponse",
"ExportTestCasesMetadata",
"ExportTestCasesRequest",
"ExportTestCasesResponse",
Expand Down Expand Up @@ -410,10 +420,15 @@
"GetWebhookRequest",
"ImportFlowRequest",
"ImportFlowResponse",
"ImportIntentsMetadata",
"ImportIntentsRequest",
"ImportIntentsResponse",
"ImportStrategy",
"ImportTestCasesMetadata",
"ImportTestCasesRequest",
"ImportTestCasesResponse",
"InlineDestination",
"InlineSource",
"InputAudioConfig",
"Intent",
"IntentCoverage",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -843,11 +843,21 @@
"delete_intent"
]
},
"ExportIntents": {
"methods": [
"export_intents"
]
},
"GetIntent": {
"methods": [
"get_intent"
]
},
"ImportIntents": {
"methods": [
"import_intents"
]
},
"ListIntents": {
"methods": [
"list_intents"
Expand All @@ -873,11 +883,21 @@
"delete_intent"
]
},
"ExportIntents": {
"methods": [
"export_intents"
]
},
"GetIntent": {
"methods": [
"get_intent"
]
},
"ImportIntents": {
"methods": [
"import_intents"
]
},
"ListIntents": {
"methods": [
"list_intents"
Expand All @@ -903,11 +923,21 @@
"delete_intent"
]
},
"ExportIntents": {
"methods": [
"export_intents"
]
},
"GetIntent": {
"methods": [
"get_intent"
]
},
"ImportIntents": {
"methods": [
"import_intents"
]
},
"ListIntents": {
"methods": [
"list_intents"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "1.27.1" # {x-release-please-version}
__version__ = "0.0.0" # {x-release-please-version}
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
from google.protobuf import timestamp_pb2 # type: ignore

from google.cloud.dialogflowcx_v3.services.flows import pagers
from google.cloud.dialogflowcx_v3.types import advanced_settings
from google.cloud.dialogflowcx_v3.types import flow
from google.cloud.dialogflowcx_v3.types import flow as gcdc_flow
from google.cloud.dialogflowcx_v3.types import page, validation_message
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
from google.protobuf import timestamp_pb2 # type: ignore

from google.cloud.dialogflowcx_v3.services.flows import pagers
from google.cloud.dialogflowcx_v3.types import advanced_settings
from google.cloud.dialogflowcx_v3.types import flow
from google.cloud.dialogflowcx_v3.types import flow as gcdc_flow
from google.cloud.dialogflowcx_v3.types import page, validation_message
Expand Down
Loading

0 comments on commit 40ee037

Please sign in to comment.