Skip to content

Commit

Permalink
feat: [google-cloud-dialogflow-cx] added Generator API (#12053)
Browse files Browse the repository at this point in the history
- [ ] Regenerate this pull request now.

BEGIN_COMMIT_OVERRIDE
feat: added Generator API 
docs: updated doc for speech model
END_COMMIT_OVERRIDE



PiperOrigin-RevId: 586288282

Source-Link:
googleapis/googleapis@17d36c4

Source-Link:
googleapis/googleapis-gen@e2fb5ba
Copy-Tag:
eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWRpYWxvZ2Zsb3ctY3gvLk93bEJvdC55YW1sIiwiaCI6ImUyZmI1YmFiZmVjOTJmNzVmMTdmMzFmOTBiNjViYTVmZjNkNjkwOTUifQ==

---------

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
  • Loading branch information
gcf-owl-bot[bot] and gcf-owl-bot[bot] committed Nov 29, 2023
1 parent 4910ff6 commit 5fc7b7b
Show file tree
Hide file tree
Showing 29 changed files with 12,301 additions and 8 deletions.
@@ -0,0 +1,10 @@
Generators
----------------------------

.. automodule:: google.cloud.dialogflowcx_v3beta1.services.generators
:members:
:inherited-members:

.. automodule:: google.cloud.dialogflowcx_v3beta1.services.generators.pagers
:members:
:inherited-members:
Expand Up @@ -10,6 +10,7 @@ Services for Google Cloud Dialogflowcx v3beta1 API
environments
experiments
flows
generators
intents
pages
security_settings_service
Expand Down
Expand Up @@ -25,6 +25,7 @@
from .services.environments import EnvironmentsAsyncClient, EnvironmentsClient
from .services.experiments import ExperimentsAsyncClient, ExperimentsClient
from .services.flows import FlowsAsyncClient, FlowsClient
from .services.generators import GeneratorsAsyncClient, GeneratorsClient
from .services.intents import IntentsAsyncClient, IntentsClient
from .services.pages import PagesAsyncClient, PagesClient
from .services.security_settings_service import (
Expand Down Expand Up @@ -154,6 +155,16 @@
from .types.fulfillment import Fulfillment
from .types.gcs import GcsDestination
from .types.generative_settings import GenerativeSettings
from .types.generator import (
CreateGeneratorRequest,
DeleteGeneratorRequest,
Generator,
GetGeneratorRequest,
ListGeneratorsRequest,
ListGeneratorsResponse,
Phrase,
UpdateGeneratorRequest,
)
from .types.import_strategy import ImportStrategy
from .types.inline import InlineDestination, InlineSource
from .types.intent import (
Expand Down Expand Up @@ -314,6 +325,7 @@
"EnvironmentsAsyncClient",
"ExperimentsAsyncClient",
"FlowsAsyncClient",
"GeneratorsAsyncClient",
"IntentsAsyncClient",
"PagesAsyncClient",
"SecuritySettingsServiceAsyncClient",
Expand Down Expand Up @@ -351,6 +363,7 @@
"CreateEnvironmentRequest",
"CreateExperimentRequest",
"CreateFlowRequest",
"CreateGeneratorRequest",
"CreateIntentRequest",
"CreatePageRequest",
"CreateSecuritySettingsRequest",
Expand All @@ -367,6 +380,7 @@
"DeleteEnvironmentRequest",
"DeleteExperimentRequest",
"DeleteFlowRequest",
"DeleteGeneratorRequest",
"DeleteIntentRequest",
"DeletePageRequest",
"DeleteSecuritySettingsRequest",
Expand Down Expand Up @@ -411,6 +425,8 @@
"Fulfillment",
"GcsDestination",
"GenerativeSettings",
"Generator",
"GeneratorsClient",
"GetAgentRequest",
"GetAgentValidationResultRequest",
"GetChangelogRequest",
Expand All @@ -421,6 +437,7 @@
"GetFlowRequest",
"GetFlowValidationResultRequest",
"GetGenerativeSettingsRequest",
"GetGeneratorRequest",
"GetIntentRequest",
"GetPageRequest",
"GetSecuritySettingsRequest",
Expand Down Expand Up @@ -464,6 +481,8 @@
"ListExperimentsResponse",
"ListFlowsRequest",
"ListFlowsResponse",
"ListGeneratorsRequest",
"ListGeneratorsResponse",
"ListIntentsRequest",
"ListIntentsResponse",
"ListPagesRequest",
Expand Down Expand Up @@ -494,6 +513,7 @@
"Page",
"PageInfo",
"PagesClient",
"Phrase",
"QueryInput",
"QueryParameters",
"QueryResult",
Expand Down Expand Up @@ -550,6 +570,7 @@
"UpdateExperimentRequest",
"UpdateFlowRequest",
"UpdateGenerativeSettingsRequest",
"UpdateGeneratorRequest",
"UpdateIntentRequest",
"UpdatePageRequest",
"UpdateSecuritySettingsRequest",
Expand Down
Expand Up @@ -828,6 +828,100 @@
}
}
},
"Generators": {
"clients": {
"grpc": {
"libraryClient": "GeneratorsClient",
"rpcs": {
"CreateGenerator": {
"methods": [
"create_generator"
]
},
"DeleteGenerator": {
"methods": [
"delete_generator"
]
},
"GetGenerator": {
"methods": [
"get_generator"
]
},
"ListGenerators": {
"methods": [
"list_generators"
]
},
"UpdateGenerator": {
"methods": [
"update_generator"
]
}
}
},
"grpc-async": {
"libraryClient": "GeneratorsAsyncClient",
"rpcs": {
"CreateGenerator": {
"methods": [
"create_generator"
]
},
"DeleteGenerator": {
"methods": [
"delete_generator"
]
},
"GetGenerator": {
"methods": [
"get_generator"
]
},
"ListGenerators": {
"methods": [
"list_generators"
]
},
"UpdateGenerator": {
"methods": [
"update_generator"
]
}
}
},
"rest": {
"libraryClient": "GeneratorsClient",
"rpcs": {
"CreateGenerator": {
"methods": [
"create_generator"
]
},
"DeleteGenerator": {
"methods": [
"delete_generator"
]
},
"GetGenerator": {
"methods": [
"get_generator"
]
},
"ListGenerators": {
"methods": [
"list_generators"
]
},
"UpdateGenerator": {
"methods": [
"update_generator"
]
}
}
}
}
},
"Intents": {
"clients": {
"grpc": {
Expand Down
@@ -0,0 +1,22 @@
# -*- coding: utf-8 -*-
# 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.
#
from .async_client import GeneratorsAsyncClient
from .client import GeneratorsClient

__all__ = (
"GeneratorsClient",
"GeneratorsAsyncClient",
)

0 comments on commit 5fc7b7b

Please sign in to comment.