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

Commit efe6286

Browse files
feat: added JSON_PACKAGE field to ExportAgentRequest (#497)
* chore: Update gapic-generator-python to v1.8.2 PiperOrigin-RevId: 504289125 Source-Link: googleapis/googleapis@38a48a4 Source-Link: https://github.com/googleapis/googleapis-gen/commit/b2dc22663dbe47a972c8d8c2f8a4df013dafdcbc 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: https://github.com/googleapis/googleapis-gen/commit/9f5f9293003d3d6713761a0b17b963325fbad9b4 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: https://github.com/googleapis/googleapis-gen/commit/5ade5ce87506d311df331a640804eb42924588c4 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>
1 parent 35277f4 commit efe6286

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

.coveragerc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ branch = True
55
show_missing = True
66
omit =
77
google/cloud/dialogflowcx/__init__.py
8+
google/cloud/dialogflowcx/gapic_version.py
89
exclude_lines =
910
# Re-enable the standard pragma
1011
pragma: NO COVER

google/cloud/dialogflowcx_v3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
from google.cloud.dialogflowcx import gapic_version as package_version
16+
from google.cloud.dialogflowcx_v3 import gapic_version as package_version
1717

1818
__version__ = package_version.__version__
1919

google/cloud/dialogflowcx_v3/types/agent.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -377,9 +377,13 @@ class DataFormat(proto.Enum):
377377
Unspecified format.
378378
BLOB (1):
379379
Agent content will be exported as raw bytes.
380+
JSON_PACKAGE (4):
381+
Agent content will be exported in JSON
382+
Package format.
380383
"""
381384
DATA_FORMAT_UNSPECIFIED = 0
382385
BLOB = 1
386+
JSON_PACKAGE = 4
383387

384388
name: str = proto.Field(
385389
proto.STRING,

google/cloud/dialogflowcx_v3beta1/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
from google.cloud.dialogflowcx import gapic_version as package_version
16+
from google.cloud.dialogflowcx_v3beta1 import gapic_version as package_version
1717

1818
__version__ = package_version.__version__
1919

0 commit comments

Comments
 (0)