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

Commit 702003c

Browse files
docs: Add documentation for enums (#131)
* docs: Add documentation for enums fix: Add context manager return types chore: Update gapic-generator-python to v1.8.1 PiperOrigin-RevId: 503210727 Source-Link: googleapis/googleapis@a391fd1 Source-Link: https://github.com/googleapis/googleapis-gen/commit/0080f830dec37c3384157082bce279e37079ea58 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMDA4MGY4MzBkZWMzN2MzMzg0MTU3MDgyYmNlMjc5ZTM3MDc5ZWE1OCJ9 * 🦉 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 e5fe108 commit 702003c

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

google/cloud/source_context_v1/types/source_context.py

+16-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,22 @@ class AliasContext(proto.Message):
129129
"""
130130

131131
class Kind(proto.Enum):
132-
r"""The type of an Alias."""
132+
r"""The type of an Alias.
133+
134+
Values:
135+
ANY (0):
136+
Do not use.
137+
FIXED (1):
138+
Git tag
139+
MOVABLE (2):
140+
Git branch
141+
OTHER (4):
142+
OTHER is used to specify non-standard
143+
aliases, those not of the kinds above. For
144+
example, if a Git repo has a ref named
145+
"refs/foo/bar", it is considered to be of kind
146+
OTHER.
147+
"""
133148
ANY = 0
134149
FIXED = 1
135150
MOVABLE = 2

0 commit comments

Comments
 (0)