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
35 changes: 35 additions & 0 deletions packages/service/_docs_source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,41 @@ def setup(sphinx):

intersphinx_mapping = {
"grpc": ("https://grpc.github.io/grpc/python/", None),
# Work around https://github.com/ni/ni-apis-python/issues/337 by using latest instead of stable
"ni_grpc_extensions": ("https://ni-grpc-extensions.readthedocs.io/en/latest/", None),
"ni.measurementlink.discovery.v1.client": (
"https://nimeasurementlinkdiscoveryv1client.readthedocs.io/en/latest/",
None,
),
"ni.measurementlink.discovery.v1.proto": (
"https://nimeasurementlinkdiscoveryv1proto.readthedocs.io/en/latest/",
None,
),
"ni.measurementlink.measurement.v1.proto": (
"https://nimeasurementlinkmeasurementv1proto.readthedocs.io/en/latest/",
None,
),
"ni.measurementlink.measurement.v2.proto": (
"https://nimeasurementlinkmeasurementv2proto.readthedocs.io/en/latest/",
None,
),
"ni.measurementlink.pinmap.v1.client": (
"https://nimeasurementlinkpinmapv1client.readthedocs.io/en/latest/",
None,
),
"ni.measurementlink.pinmap.v1.proto": (
"https://nimeasurementlinkpinmapv1proto.readthedocs.io/en/latest/",
None,
),
"ni.measurementlink.sessionmanagement.v1.client": (
"https://nimeasurementlinksessionmanagementclient.readthedocs.io/en/latest/",
None,
),
"ni.measurementlink.sessionmanagement.v1.proto": (
"https://nimeasurementlinksessionmanagementv1proto.readthedocs.io/en/latest/",
None,
),
"ni.protobuf.types": ("https://niprotobuftypes.readthedocs.io/en/latest/", None),
"nidaqmx": ("https://nidaqmx-python.readthedocs.io/en/stable/", None),
"nidcpower": ("https://nidcpower.readthedocs.io/en/stable/", None),
"nidigital": ("https://nidigital.readthedocs.io/en/stable/", None),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
"""Compatibility API for gRPC extensions.

The public gRPC extensions API has moved to the :mod:`ni_grpc_extensions`
package.
The public gRPC extensions API has moved to the :external+ni_grpc_extensions:doc:`index` package.
Comment thread
bkeryan marked this conversation as resolved.

The :mod:`ni_measurement_plugin_sdk_service.grpc` subpackage provides
compatibility with existing applications and will be deprecated in a future
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Compatibility API for gRPC channel pool.

The :obj:`GrpcChannelPool` class has moved to the :mod:`ni_grpc_extensions`
package.
The :obj:`GrpcChannelPool` class has moved to the :mod:`ni_grpc_extensions.channelpool`
submodule.

The :mod:`ni_measurement_plugin_sdk_service.grpc.channelpool` submodule provides
compatibility with existing applications and will be deprecated in a future
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Compatibility API for gRPC logging interceptors.

The gRPC logging interceptor classes have moved to the :mod:`ni_grpc_extensions`
package.
The gRPC logging interceptor classes have moved to the :mod:`ni_grpc_extensions.loggers`
submodule.

The :mod:`ni_measurement_plugin_sdk_service.grpc.loggers` submodule provides
compatibility with existing applications and will be deprecated in a future
Expand Down
Loading