class Artifactory::Resource::System
def configuration(options = {})
-
(REXML::Document)
-
Options Hash:
(**options)
-
:client
(Artifactory::Client
) --
Parameters:
-
options
(Hash
) --
Other tags:
- Example: Get the current configuration -
def configuration(options = {}) client = extract_client!(options) response = client.get("/api/system/configuration") REXML::Document.new(response) end