Skip to content
This repository has been archived by the owner on Jan 6, 2024. It is now read-only.

Commit

Permalink
feat(v3beta1): added API for changelogs (#198)
Browse files Browse the repository at this point in the history
* feat: added API for changelogs docs: clarified semantic of the streaming APIs

PiperOrigin-RevId: 404659561

Source-Link: googleapis/googleapis@19943c1

Source-Link: googleapis/googleapis-gen@71bad2d
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNzFiYWQyZDRkNWQzY2YyMmUyZTNjYzA4OTBmZTMwYzhmNGIwYzE0OCJ9

* 🦉 Updates from OwlBot

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
gcf-owl-bot[bot] and gcf-owl-bot[bot] committed Oct 21, 2021
1 parent 4f41653 commit 484e13a
Show file tree
Hide file tree
Showing 18 changed files with 3,842 additions and 75 deletions.
10 changes: 10 additions & 0 deletions docs/dialogflowcx_v3beta1/changelogs.rst
@@ -0,0 +1,10 @@
Changelogs
----------------------------

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

.. automodule:: google.cloud.dialogflowcx_v3beta1.services.changelogs.pagers
:members:
:inherited-members:
1 change: 1 addition & 0 deletions docs/dialogflowcx_v3beta1/services.rst
Expand Up @@ -4,6 +4,7 @@ Services for Google Cloud Dialogflowcx v3beta1 API
:maxdepth: 2

agents
changelogs
deployments
entity_types
environments
Expand Down
12 changes: 12 additions & 0 deletions google/cloud/dialogflowcx_v3beta1/__init__.py
Expand Up @@ -16,6 +16,8 @@

from .services.agents import AgentsClient
from .services.agents import AgentsAsyncClient
from .services.changelogs import ChangelogsClient
from .services.changelogs import ChangelogsAsyncClient
from .services.deployments import DeploymentsClient
from .services.deployments import DeploymentsAsyncClient
from .services.entity_types import EntityTypesClient
Expand Down Expand Up @@ -69,6 +71,10 @@
from .types.audio_config import OutputAudioEncoding
from .types.audio_config import SpeechModelVariant
from .types.audio_config import SsmlVoiceGender
from .types.changelog import Changelog
from .types.changelog import GetChangelogRequest
from .types.changelog import ListChangelogsRequest
from .types.changelog import ListChangelogsResponse
from .types.deployment import Deployment
from .types.deployment import GetDeploymentRequest
from .types.deployment import ListDeploymentsRequest
Expand Down Expand Up @@ -246,6 +252,7 @@

__all__ = (
"AgentsAsyncClient",
"ChangelogsAsyncClient",
"DeploymentsAsyncClient",
"EntityTypesAsyncClient",
"EnvironmentsAsyncClient",
Expand All @@ -272,6 +279,8 @@
"BatchRunTestCasesResponse",
"CalculateCoverageRequest",
"CalculateCoverageResponse",
"Changelog",
"ChangelogsClient",
"ContinuousTestResult",
"ConversationTurn",
"CreateAgentRequest",
Expand Down Expand Up @@ -332,6 +341,7 @@
"Fulfillment",
"GetAgentRequest",
"GetAgentValidationResultRequest",
"GetChangelogRequest",
"GetDeploymentRequest",
"GetEntityTypeRequest",
"GetEnvironmentRequest",
Expand Down Expand Up @@ -360,6 +370,8 @@
"IntentsClient",
"ListAgentsRequest",
"ListAgentsResponse",
"ListChangelogsRequest",
"ListChangelogsResponse",
"ListContinuousTestResultsRequest",
"ListContinuousTestResultsResponse",
"ListDeploymentsRequest",
Expand Down
34 changes: 34 additions & 0 deletions google/cloud/dialogflowcx_v3beta1/gapic_metadata.json
Expand Up @@ -109,6 +109,40 @@
}
}
},
"Changelogs": {
"clients": {
"grpc": {
"libraryClient": "ChangelogsClient",
"rpcs": {
"GetChangelog": {
"methods": [
"get_changelog"
]
},
"ListChangelogs": {
"methods": [
"list_changelogs"
]
}
}
},
"grpc-async": {
"libraryClient": "ChangelogsAsyncClient",
"rpcs": {
"GetChangelog": {
"methods": [
"get_changelog"
]
},
"ListChangelogs": {
"methods": [
"list_changelogs"
]
}
}
}
}
},
"Deployments": {
"clients": {
"grpc": {
Expand Down
22 changes: 22 additions & 0 deletions google/cloud/dialogflowcx_v3beta1/services/changelogs/__init__.py
@@ -0,0 +1,22 @@
# -*- coding: utf-8 -*-
# Copyright 2020 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 .client import ChangelogsClient
from .async_client import ChangelogsAsyncClient

__all__ = (
"ChangelogsClient",
"ChangelogsAsyncClient",
)

0 comments on commit 484e13a

Please sign in to comment.