feat: Add new gcloud commands, API clients, and third-party libraries across various services.

This commit is contained in:
2026-01-01 20:26:35 +01:00
parent 5e23cbece0
commit a19e592eb7
25221 changed files with 8324611 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
from __future__ import unicode_literals
class IncrementalSearchDirection(object):
FORWARD = 'FORWARD'
BACKWARD = 'BACKWARD'
class EditingMode(object):
# The set of key bindings that is active.
VI = 'VI'
EMACS = 'EMACS'
#: Name of the search buffer.
SEARCH_BUFFER = 'SEARCH_BUFFER'
#: Name of the default buffer.
DEFAULT_BUFFER = 'DEFAULT_BUFFER'
#: Name of the system buffer.
SYSTEM_BUFFER = 'SYSTEM_BUFFER'
# Dummy buffer. This is the buffer returned by
# `CommandLineInterface.current_buffer` when the top of the `FocusStack` is
# `None`. This could be the case when there is some widget has the focus and no
# actual text editing is possible. This buffer should also never be displayed.
# (It will never contain any actual text.)
DUMMY_BUFFER = 'DUMMY_BUFFER'