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

Commit

Permalink
docs: Add documentation for enums (#131)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
gcf-owl-bot[bot] and gcf-owl-bot[bot] authored Jan 23, 2023
1 parent e5fe108 commit 702003c
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion google/cloud/source_context_v1/types/source_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,22 @@ class AliasContext(proto.Message):
"""

class Kind(proto.Enum):
r"""The type of an Alias."""
r"""The type of an Alias.
Values:
ANY (0):
Do not use.
FIXED (1):
Git tag
MOVABLE (2):
Git branch
OTHER (4):
OTHER is used to specify non-standard
aliases, those not of the kinds above. For
example, if a Git repo has a ref named
"refs/foo/bar", it is considered to be of kind
OTHER.
"""
ANY = 0
FIXED = 1
MOVABLE = 2
Expand Down

0 comments on commit 702003c

Please sign in to comment.