Skip to content

Commit 361a7e0

Browse files
yoshi-automationtseaver
authored andcommitted
Pick up enum fixes in the GAPIC generator. (#6607)
1 parent 295457a commit 361a7e0

File tree

1 file changed

+13
-13
lines changed
  • asset/google/cloud/asset_v1beta1/gapic

1 file changed

+13
-13
lines changed

asset/google/cloud/asset_v1beta1/gapic/enums.py

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,19 @@
1818
import enum
1919

2020

21+
class NullValue(enum.IntEnum):
22+
"""
23+
``NullValue`` is a singleton enumeration to represent the null value for
24+
the ``Value`` type union.
25+
26+
The JSON representation for ``NullValue`` is JSON ``null``.
27+
28+
Attributes:
29+
NULL_VALUE (int): Null value.
30+
"""
31+
NULL_VALUE = 0
32+
33+
2134
class ContentType(enum.IntEnum):
2235
"""
2336
Asset content type.
@@ -30,16 +43,3 @@ class ContentType(enum.IntEnum):
3043
CONTENT_TYPE_UNSPECIFIED = 0
3144
RESOURCE = 1
3245
IAM_POLICY = 2
33-
34-
35-
class NullValue(enum.IntEnum):
36-
"""
37-
``NullValue`` is a singleton enumeration to represent the null value for
38-
the ``Value`` type union.
39-
40-
The JSON representation for ``NullValue`` is JSON ``null``.
41-
42-
Attributes:
43-
NULL_VALUE (int): Null value.
44-
"""
45-
NULL_VALUE = 0

0 commit comments

Comments
 (0)