Skip to content

Commit 2e8bdd2

Browse files
1 parent 4c9f190 commit 2e8bdd2

File tree

124 files changed

+111
-123354
lines changed

Some content is hidden

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

124 files changed

+111
-123354
lines changed

β€Žgoogle/cloud/bigtable_v2/types/types.pyβ€Ž

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,14 @@ class Type(proto.Message):
119119
map_type (google.cloud.bigtable_v2.types.Type.Map):
120120
Map
121121
122+
This field is a member of `oneof`_ ``kind``.
123+
proto_type (google.cloud.bigtable_v2.types.Type.Proto):
124+
Proto
125+
126+
This field is a member of `oneof`_ ``kind``.
127+
enum_type (google.cloud.bigtable_v2.types.Type.Enum):
128+
Enum
129+
122130
This field is a member of `oneof`_ ``kind``.
123131
"""
124132

@@ -351,6 +359,52 @@ class Field(proto.Message):
351359
message="Type.Struct.Field",
352360
)
353361

362+
class Proto(proto.Message):
363+
r"""A protobuf message type. Values of type ``Proto`` are stored in
364+
``Value.bytes_value``.
365+
366+
Attributes:
367+
schema_bundle_id (str):
368+
The ID of the schema bundle that this proto
369+
is defined in.
370+
message_name (str):
371+
The fully qualified name of the protobuf
372+
message, including package. In the format of
373+
"foo.bar.Message".
374+
"""
375+
376+
schema_bundle_id: str = proto.Field(
377+
proto.STRING,
378+
number=1,
379+
)
380+
message_name: str = proto.Field(
381+
proto.STRING,
382+
number=2,
383+
)
384+
385+
class Enum(proto.Message):
386+
r"""A protobuf enum type. Values of type ``Enum`` are stored in
387+
``Value.int_value``.
388+
389+
Attributes:
390+
schema_bundle_id (str):
391+
The ID of the schema bundle that this enum is
392+
defined in.
393+
enum_name (str):
394+
The fully qualified name of the protobuf enum
395+
message, including package. In the format of
396+
"foo.bar.EnumMessage".
397+
"""
398+
399+
schema_bundle_id: str = proto.Field(
400+
proto.STRING,
401+
number=1,
402+
)
403+
enum_name: str = proto.Field(
404+
proto.STRING,
405+
number=2,
406+
)
407+
354408
class Array(proto.Message):
355409
r"""An ordered list of elements of a given type. Values of type
356410
``Array`` are stored in ``Value.array_value``.
@@ -574,6 +628,18 @@ class HyperLogLogPlusPlusUniqueCount(proto.Message):
574628
oneof="kind",
575629
message=Map,
576630
)
631+
proto_type: Proto = proto.Field(
632+
proto.MESSAGE,
633+
number=13,
634+
oneof="kind",
635+
message=Proto,
636+
)
637+
enum_type: Enum = proto.Field(
638+
proto.MESSAGE,
639+
number=14,
640+
oneof="kind",
641+
message=Enum,
642+
)
577643

578644

579645
__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)