Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@ Submodules
.. toctree::
:maxdepth: 1

/autoapi/ni/measurementlink/sessionmanagement/v1/annotations/index
/autoapi/ni/measurementlink/sessionmanagement/v1/session_management_service_pb2/index
/autoapi/ni/measurementlink/sessionmanagement/v1/session_management_service_pb2_grpc/index
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
"""Constants for session client details annotations."""

RESERVED_HOSTNAME = "ni/reserved.hostname"
"""Key for an annotation indicating the hostname that reserved the session."""

RESERVED_USERNAME = "ni/reserved.username"
"""Key for an annotation indicating the user name that reserved the session."""

RESERVED_IPADDRESS = "ni/reserved.ipaddress"
"""Key for an annotation indicating the IP address that reserved the session."""

REGISTERED_HOSTNAME = "ni/registered.hostname"
"""Key for an annotation indicating the hostname that registered the session."""

REGISTERED_USERNAME = "ni/registered.username"
"""Key for an annotation indicating the user name that registered the session."""

REGISTERED_IPADDRESS = "ni/registered.ipaddress"
"""Key for an annotation indicating the IP address that registered the session."""
Loading