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

Commit

Permalink
feat: added JSON_PACKAGE field to ExportAgentRequest (#497)
Browse files Browse the repository at this point in the history
* chore: Update gapic-generator-python to v1.8.2

PiperOrigin-RevId: 504289125

Source-Link: googleapis/googleapis@38a48a4

Source-Link: googleapis/googleapis-gen@b2dc226
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiYjJkYzIyNjYzZGJlNDdhOTcyYzhkOGMyZjhhNGRmMDEzZGFmZGNiYyJ9

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

* chore: fix proto formatting

PiperOrigin-RevId: 504297016

Source-Link: googleapis/googleapis@62194f8

Source-Link: googleapis/googleapis-gen@9f5f929
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiOWY1ZjkyOTMwMDNkM2Q2NzEzNzYxYTBiMTdiOTYzMzI1ZmJhZDliNCJ9

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

* feat: added JSON_PACKAGE field to ExportAgentRequest

PiperOrigin-RevId: 504306290

Source-Link: googleapis/googleapis@ce6911f

Source-Link: googleapis/googleapis-gen@5ade5ce
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNWFkZTVjZTg3NTA2ZDMxMWRmMzMxYTY0MDgwNGViNDI5MjQ1ODhjNCJ9

* 🦉 Updates from OwlBot post-processor

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 Jan 25, 2023
1 parent 35277f4 commit efe6286
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ branch = True
show_missing = True
omit =
google/cloud/dialogflowcx/__init__.py
google/cloud/dialogflowcx/gapic_version.py
exclude_lines =
# Re-enable the standard pragma
pragma: NO COVER
Expand Down
2 changes: 1 addition & 1 deletion google/cloud/dialogflowcx_v3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
from google.cloud.dialogflowcx import gapic_version as package_version
from google.cloud.dialogflowcx_v3 import gapic_version as package_version

__version__ = package_version.__version__

Expand Down
4 changes: 4 additions & 0 deletions google/cloud/dialogflowcx_v3/types/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,9 +377,13 @@ class DataFormat(proto.Enum):
Unspecified format.
BLOB (1):
Agent content will be exported as raw bytes.
JSON_PACKAGE (4):
Agent content will be exported in JSON
Package format.
"""
DATA_FORMAT_UNSPECIFIED = 0
BLOB = 1
JSON_PACKAGE = 4

name: str = proto.Field(
proto.STRING,
Expand Down
2 changes: 1 addition & 1 deletion google/cloud/dialogflowcx_v3beta1/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
from google.cloud.dialogflowcx import gapic_version as package_version
from google.cloud.dialogflowcx_v3beta1 import gapic_version as package_version

__version__ = package_version.__version__

Expand Down

0 comments on commit efe6286

Please sign in to comment.