Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit 493989d

Browse files
1 parent 64fccf8 commit 493989d

125 files changed

Lines changed: 119 additions & 123270 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

google/cloud/bigtable_admin_v2/types/types.py

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,14 @@ class Type(proto.Message):
112112
map_type (google.cloud.bigtable_admin_v2.types.Type.Map):
113113
Map
114114
115+
This field is a member of `oneof`_ ``kind``.
116+
proto_type (google.cloud.bigtable_admin_v2.types.Type.Proto):
117+
Proto
118+
119+
This field is a member of `oneof`_ ``kind``.
120+
enum_type (google.cloud.bigtable_admin_v2.types.Type.Enum):
121+
Enum
122+
115123
This field is a member of `oneof`_ ``kind``.
116124
"""
117125

@@ -548,6 +556,52 @@ class OrderedCodeBytes(proto.Message):
548556
message="Type.Struct.Encoding",
549557
)
550558

559+
class Proto(proto.Message):
560+
r"""A protobuf message type. Values of type ``Proto`` are stored in
561+
``Value.bytes_value``.
562+
563+
Attributes:
564+
schema_bundle_id (str):
565+
The ID of the schema bundle that this proto
566+
is defined in.
567+
message_name (str):
568+
The fully qualified name of the protobuf
569+
message, including package. In the format of
570+
"foo.bar.Message".
571+
"""
572+
573+
schema_bundle_id: str = proto.Field(
574+
proto.STRING,
575+
number=1,
576+
)
577+
message_name: str = proto.Field(
578+
proto.STRING,
579+
number=2,
580+
)
581+
582+
class Enum(proto.Message):
583+
r"""A protobuf enum type. Values of type ``Enum`` are stored in
584+
``Value.int_value``.
585+
586+
Attributes:
587+
schema_bundle_id (str):
588+
The ID of the schema bundle that this enum is
589+
defined in.
590+
enum_name (str):
591+
The fully qualified name of the protobuf enum
592+
message, including package. In the format of
593+
"foo.bar.EnumMessage".
594+
"""
595+
596+
schema_bundle_id: str = proto.Field(
597+
proto.STRING,
598+
number=1,
599+
)
600+
enum_name: str = proto.Field(
601+
proto.STRING,
602+
number=2,
603+
)
604+
551605
class Array(proto.Message):
552606
r"""An ordered list of elements of a given type. Values of type
553607
``Array`` are stored in ``Value.array_value``.
@@ -771,6 +825,18 @@ class HyperLogLogPlusPlusUniqueCount(proto.Message):
771825
oneof="kind",
772826
message=Map,
773827
)
828+
proto_type: Proto = proto.Field(
829+
proto.MESSAGE,
830+
number=13,
831+
oneof="kind",
832+
message=Proto,
833+
)
834+
enum_type: Enum = proto.Field(
835+
proto.MESSAGE,
836+
number=14,
837+
oneof="kind",
838+
message=Enum,
839+
)
774840

775841

776842
__all__ = tuple(sorted(__protobuf__.manifest))

owl-bot-staging/bigtable/v2/.coveragerc

Lines changed: 0 additions & 13 deletions
This file was deleted.

owl-bot-staging/bigtable/v2/.flake8

Lines changed: 0 additions & 34 deletions
This file was deleted.

owl-bot-staging/bigtable/v2/LICENSE

Lines changed: 0 additions & 202 deletions
This file was deleted.

owl-bot-staging/bigtable/v2/MANIFEST.in

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)