R/connections.R

Defines functions notebookutils.connections.getHelpString notebookutils.connections.getCredential

Documented in notebookutils.connections.getCredential notebookutils.connections.getHelpString

#' connections.R: Utility for Fabric connection credential operations
#'
#' @noRd
.dummyStr <- ""

#' Get credential for a connection
#'
#' Dummy implementation for local development.
#'
#' @param connectionId Connection id
#' @param artifactId Artifact id
#' @return A dummy credential object (list)
#' @export
notebookutils.connections.getCredential <- function(connectionId, artifactId = "") {
  NULL
}

#' Get help string for a method.
#'
#' @param funcName function name
#' @param namespace namespace
#' @export
notebookutils.connections.getHelpString <- function(funcName = "", namespace = "") {
  .dummyStr
}

Try the notebookutils package in your browser

Any scripts or data that you put into this service are public.

notebookutils documentation built on Jan. 26, 2026, 9:06 a.m.