serviceOption: Retrieve, set, and list the different service options.

Description

Retrieve, set, and list the different service options.

Usage

  serviceOption()

Arguments

name

The option name.

value

The option value to be set.

Details

Complete documentation: https://go.microsoft.com/fwlink/?linkid=836352

Value

A list of the current service options.

See Also

Other service methods: deleteService, getService, listServices, print.serviceDetails, publishService, summary.serviceDetails, updateService

Examples


 ## Not run:


# --- set option name|value
opts <- serviceOption()
opts$set('base_dir', getwd())

# --- get option
opts <- serviceOption()
base_dir <- opts$get('base_dir')

# --- list options
options <- serviceOption()$get()
## End(Not run)