orderly_remote_sharepoint.RdImplements an orderly "remote" using Sharepoint as a backend. Use
this within an orderly_config.yml configuration.
orderly_remote_sharepoint(url, site, path, name = NULL)Sharepoint URL
Sharepoint "site"
Path within the Sharepoint site. In our experience
these often start with Shared Documents but your setup
may vary.
Friendly name for the remote
An orderly_remote_sharepoint object
An orderly_remote_sharepoint object, designed to be
used by orderly. This function should however not generally be
called by users directly, as it should be used within
orderly_config.yml
A configuration might look like:
remote:
real:
driver: orderly.sharepoint::orderly_remote_sharepoint
args:
url: https://example.sharepoint.com
site: mysite
path: Shared Documents/orderly/real
which would create a remote called real, using your group's
Sharepoint hosted at https://example.sharepoint.com, on
site mysite and within that site using path Shared
Documents/orderly/real.
Currently authentication is interactive, or uses the values of
environment variables SHAREPOINT_USERNAME and
SHAREPOINT_PASS. Once we expose richer authentication
approaches in spud that will be exposed here (RESIDE-162).
This function is not intended to be used interactively