Data
- Default Namespace
- XML Schema File: ns0.xsd
The data in this namespace is divided into elements and types. Types define the structure of the data. Elements define specific instances of the types, and are therefore more relevant to REST endpoints, which generally consume and/or produce elements.
The following elements are members of this namespace:
- error-report-request
- global-settings
- log-config
- mirror-list-request
- privilege-request
- repo-group
- repo-route
- repository
- repository-status
- repo-target
- scheduled-task
- smtp-settings-request
- user-account-request
The following types are members of this namespace:
- authentication-settings
- base-repository
- error-reporting-settings
- errorReportRequest
- error-report-request-dto
- globalConfigurationResourceResponse
- global-settings-item
- log-config-resource
- logConfigResourceResponse
- mirror-resource
- mirrorResourceListRequest
- nexusResponse
- privilege
- privilegeResourceRequest
- remote-connection-settings
- remote-http-proxy-settings
- repository-dependent-status
- repository-group-member-repository
- repository-group-resource
- repositoryGroupResourceResponse
- repositoryResourceResponse
- repository-route-member-repo
- repository-route-resource
- repositoryRouteResourceResponse
- repository-status
- repositoryStatusResourceResponse
- repository-target-resource
- repositoryTargetResourceResponse
- rest-api-settings
- scheduled-service-base-resource
- scheduled-service-property-resource
- scheduledServiceResourceResponse
- smtp-settings
- smtp-settings-resource
- smtpSettingsResourceRequest
- system-notification-settings
- userAccount
- userAccountRequestResponseWrapper
Element error-report-request
- Type: errorReportRequest
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<error-report-request>
<data>
<!--content of type 'error-report-request-dto'-->
<errorReportingSettings>
<!--content of type 'error-reporting-settings'-->
<jiraUsername>
<!--content of type 'string'-->
...
</jiraUsername>
<reportErrorsAutomatically>
<!--content of type 'boolean'-->
...
</reportErrorsAutomatically>
<jiraPassword>
<!--content of type 'string'-->
...
</jiraPassword>
<useGlobalProxy>
<!--content of type 'boolean'-->
...
</useGlobalProxy>
</errorReportingSettings>
<description>
<!--content of type 'string'-->
...
</description>
<title>
<!--content of type 'string'-->
...
</title>
<saveErrorReportingSettings>
<!--content of type 'boolean'-->
...
</saveErrorReportingSettings>
</data>
</error-report-request>
Example JSON
{
"data" : {
"errorReportingSettings" : {
"jiraUsername" : "...",
"reportErrorsAutomatically" : false,
"jiraPassword" : "...",
"useGlobalProxy" : false
},
"description" : "...",
"title" : "...",
"saveErrorReportingSettings" : false
}
}
Element global-settings
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<global-settings>
<data>
<!--content of type 'global-settings-item'-->
<smtpSettings>
<!--content of type 'smtp-settings'-->
<port>
<!--content of type 'int'-->
...
</port>
<systemEmailAddress>
<!--content of type 'string'-->
...
</systemEmailAddress>
<tlsEnabled>
<!--content of type 'boolean'-->
...
</tlsEnabled>
<password>
<!--content of type 'string'-->
...
</password>
<username>
<!--content of type 'string'-->
...
</username>
<host>
<!--content of type 'string'-->
...
</host>
<sslEnabled>
<!--content of type 'boolean'-->
...
</sslEnabled>
</smtpSettings>
<securityEnabled>
<!--content of type 'boolean'-->
...
</securityEnabled>
<securityAnonymousUsername>
<!--content of type 'string'-->
...
</securityAnonymousUsername>
<errorReportingSettings>
<!--content of type 'error-reporting-settings'-->
<jiraUsername>
<!--content of type 'string'-->
...
</jiraUsername>
<reportErrorsAutomatically>
<!--content of type 'boolean'-->
...
</reportErrorsAutomatically>
<jiraPassword>
<!--content of type 'string'-->
...
</jiraPassword>
<useGlobalProxy>
<!--content of type 'boolean'-->
...
</useGlobalProxy>
</errorReportingSettings>
<securityRealms>
<securityRealmItem>
<!--content of type 'string'-->
...
</securityRealmItem>
<securityRealmItem>
<!--(another 'string' type)-->
</securityRealmItem>
<!--...more "securityRealmItem" elements...-->
</securityRealms>
<globalHttpProxySettings>
<!--content of type 'remote-http-proxy-settings'-->
<nonProxyHosts>
<!--content of type 'string'-->
...
</nonProxyHosts>
<nonProxyHosts>
<!--(another 'string' type)-->
</nonProxyHosts>
<!--...more "nonProxyHosts" elements...-->
<proxyPort>
<!--content of type 'int'-->
...
</proxyPort>
<proxyHostname>
<!--content of type 'string'-->
...
</proxyHostname>
<authentication>
<!--content of type 'authentication-settings'-->
<username>
<!--content of type 'string'-->
...
</username>
<ntlmDomain>
<!--content of type 'string'-->
...
</ntlmDomain>
<ntlmHost>
<!--content of type 'string'-->
...
</ntlmHost>
<password>
<!--content of type 'string'-->
...
</password>
</authentication>
</globalHttpProxySettings>
<systemNotificationSettings>
<!--content of type 'system-notification-settings'-->
<roles>
<!--content of type 'string'-->
...
</roles>
<roles>
<!--(another 'string' type)-->
</roles>
<!--...more "roles" elements...-->
<enabled>
<!--content of type 'boolean'-->
...
</enabled>
<emailAddresses>
<!--content of type 'string'-->
...
</emailAddresses>
</systemNotificationSettings>
<globalConnectionSettings>
<!--content of type 'remote-connection-settings'-->
<retrievalRetryCount>
<!--content of type 'int'-->
...
</retrievalRetryCount>
<queryString>
<!--content of type 'string'-->
...
</queryString>
<connectionTimeout>
<!--content of type 'int'-->
...
</connectionTimeout>
<userAgentString>
<!--content of type 'string'-->
...
</userAgentString>
</globalConnectionSettings>
<securityAnonymousPassword>
<!--content of type 'string'-->
...
</securityAnonymousPassword>
<globalRestApiSettings>
<!--content of type 'rest-api-settings'-->
<forceBaseUrl>
<!--content of type 'boolean'-->
...
</forceBaseUrl>
<uiTimeout>
<!--content of type 'int'-->
...
</uiTimeout>
<baseUrl>
<!--content of type 'string'-->
...
</baseUrl>
</globalRestApiSettings>
<securityAnonymousAccessEnabled>
<!--content of type 'boolean'-->
...
</securityAnonymousAccessEnabled>
</data>
</global-settings>
Example JSON
{
"data" : {
"smtpSettings" : {
"port" : ...,
"systemEmailAddress" : "...",
"tlsEnabled" : false,
"password" : "...",
"username" : "...",
"host" : "...",
"sslEnabled" : false
},
"securityEnabled" : false,
"securityAnonymousUsername" : "...",
"errorReportingSettings" : {
"jiraUsername" : "...",
"reportErrorsAutomatically" : false,
"jiraPassword" : "...",
"useGlobalProxy" : false
},
"securityRealms" : [ "...", ... ],
"globalHttpProxySettings" : {
"nonProxyHosts" : [ "...", ... ],
"proxyPort" : ...,
"proxyHostname" : "...",
"authentication" : {
"username" : "...",
"ntlmDomain" : "...",
"ntlmHost" : "...",
"password" : "..."
}
},
"systemNotificationSettings" : {
"roles" : [ "...", ... ],
"enabled" : false,
"emailAddresses" : "..."
},
"globalConnectionSettings" : {
"retrievalRetryCount" : ...,
"queryString" : "...",
"connectionTimeout" : ...,
"userAgentString" : "..."
},
"securityAnonymousPassword" : "...",
"globalRestApiSettings" : {
"forceBaseUrl" : false,
"uiTimeout" : ...,
"baseUrl" : "..."
},
"securityAnonymousAccessEnabled" : false
}
}
Element log-config
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<log-config>
<data>
<!--content of type 'log-config-resource'-->
<fileAppenderLocation>
<!--content of type 'string'-->
...
</fileAppenderLocation>
<fileAppenderPattern>
<!--content of type 'string'-->
...
</fileAppenderPattern>
<rootLoggerLevel>
<!--content of type 'string'-->
...
</rootLoggerLevel>
<rootLoggerAppenders>
<!--content of type 'string'-->
...
</rootLoggerAppenders>
</data>
</log-config>
Example JSON
{
"data" : {
"fileAppenderLocation" : "...",
"fileAppenderPattern" : "...",
"rootLoggerLevel" : "...",
"rootLoggerAppenders" : "..."
}
}
Element mirror-list-request
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<mirror-list-request>
<data>
<mirrorResource>
<!--content of type 'mirror-resource'-->
<url>
<!--content of type 'string'-->
...
</url>
<id>
<!--content of type 'string'-->
...
</id>
</mirrorResource>
<mirrorResource>
<!--(another 'mirror-resource' type)-->
</mirrorResource>
<!--...more "mirrorResource" elements...-->
</data>
</mirror-list-request>
Example JSON
{
"data" : [ {
"url" : "...",
"id" : "..."
}, ... ]
}
Element privilege-request
- Type: privilegeResourceRequest
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<privilege-request>
<data>
<!--content of type 'privilege'-->
<methods>
<method>
<!--content of type 'string'-->
...
</method>
<method>
<!--(another 'string' type)-->
</method>
<!--...more "method" elements...-->
</methods>
<repositoryId>
<!--content of type 'string'-->
...
</repositoryId>
<description>
<!--content of type 'string'-->
...
</description>
<name>
<!--content of type 'string'-->
...
</name>
<type>
<!--content of type 'string'-->
...
</type>
<repositoryGroupId>
<!--content of type 'string'-->
...
</repositoryGroupId>
<repositoryTargetId>
<!--content of type 'string'-->
...
</repositoryTargetId>
</data>
</privilege-request>
Example JSON
{
"data" : {
"methods" : [ "...", ... ],
"repositoryId" : "...",
"description" : "...",
"name" : "...",
"type" : "...",
"repositoryGroupId" : "...",
"repositoryTargetId" : "..."
}
}
Element repo-group
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<repo-group>
<data>
<!--content of type 'repository-group-resource'-->
<repositories>
<repo-group-member>
<!--content of type 'repository-group-member-repository'-->
<resourceURI>
<!--content of type 'string'-->
...
</resourceURI>
<name>
<!--content of type 'string'-->
...
</name>
<id>
<!--content of type 'string'-->
...
</id>
</repo-group-member>
<repo-group-member>
<!--(another 'repository-group-member-repository' type)-->
</repo-group-member>
<!--...more "repo-group-member" elements...-->
</repositories>
</data>
</repo-group>
Example JSON
{
"data" : {
"repositories" : [ {
"resourceURI" : "...",
"name" : "...",
"id" : "..."
}, ... ]
}
}
Element repo-route
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<repo-route>
<data>
<!--content of type 'repository-route-resource'-->
<groupId>
<!--content of type 'string'-->
...
</groupId>
<ruleType>
<!--content of type 'string'-->
...
</ruleType>
<id>
<!--content of type 'string'-->
...
</id>
<repositories>
<repository>
<!--content of type 'repository-route-member-repo'-->
<name>
<!--content of type 'string'-->
...
</name>
<id>
<!--content of type 'string'-->
...
</id>
<resourceURI>
<!--content of type 'string'-->
...
</resourceURI>
</repository>
<repository>
<!--(another 'repository-route-member-repo' type)-->
</repository>
<!--...more "repository" elements...-->
</repositories>
<pattern>
<!--content of type 'string'-->
...
</pattern>
</data>
</repo-route>
Example JSON
{
"data" : {
"groupId" : "...",
"ruleType" : "...",
"id" : "...",
"repositories" : [ {
"name" : "...",
"id" : "...",
"resourceURI" : "..."
}, ... ],
"pattern" : "..."
}
}
Element repository
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<repository>
<data>
<!--content of type 'base-repository'-->
<contentResourceURI>
<!--content of type 'string'-->
...
</contentResourceURI>
<repoType>
<!--content of type 'string'-->
...
</repoType>
<name>
<!--content of type 'string'-->
...
</name>
<exposed>
<!--content of type 'boolean'-->
...
</exposed>
<format>
<!--content of type 'string'-->
...
</format>
<provider>
<!--content of type 'string'-->
...
</provider>
<id>
<!--content of type 'string'-->
...
</id>
<providerRole>
<!--content of type 'string'-->
...
</providerRole>
</data>
</repository>
Example JSON
{
"data" : {
"contentResourceURI" : "...",
"repoType" : "...",
"name" : "...",
"exposed" : false,
"format" : "...",
"provider" : "...",
"id" : "...",
"providerRole" : "..."
}
}
Element repository-status
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<repository-status>
<data>
<!--content of type 'repository-status'-->
<repoType>
<!--content of type 'string'-->
...
</repoType>
<id>
<!--content of type 'string'-->
...
</id>
<localStatus>
<!--content of type 'string'-->
...
</localStatus>
<format>
<!--content of type 'string'-->
...
</format>
<proxyMode>
<!--content of type 'string'-->
...
</proxyMode>
<dependentRepos>
<dependentRepoItem>
<!--content of type 'repository-dependent-status'-->
<repoType>
<!--content of type 'string'-->
...
</repoType>
<localStatus>
<!--content of type 'string'-->
...
</localStatus>
<id>
<!--content of type 'string'-->
...
</id>
<format>
<!--content of type 'string'-->
...
</format>
</dependentRepoItem>
<dependentRepoItem>
<!--(another 'repository-dependent-status' type)-->
</dependentRepoItem>
<!--...more "dependentRepoItem" elements...-->
</dependentRepos>
<remoteStatus>
<!--content of type 'string'-->
...
</remoteStatus>
</data>
</repository-status>
Example JSON
{
"data" : {
"repoType" : "...",
"id" : "...",
"localStatus" : "...",
"format" : "...",
"proxyMode" : "...",
"dependentRepos" : [ {
"repoType" : "...",
"localStatus" : "...",
"id" : "...",
"format" : "..."
}, ... ],
"remoteStatus" : "..."
}
}
Element repo-target
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<repo-target>
<data>
<!--content of type 'repository-target-resource'-->
<resourceURI>
<!--content of type 'string'-->
...
</resourceURI>
<contentClass>
<!--content of type 'string'-->
...
</contentClass>
<patterns>
<pattern>
<!--content of type 'string'-->
...
</pattern>
<pattern>
<!--(another 'string' type)-->
</pattern>
<!--...more "pattern" elements...-->
</patterns>
<name>
<!--content of type 'string'-->
...
</name>
<id>
<!--content of type 'string'-->
...
</id>
</data>
</repo-target>
Example JSON
{
"data" : {
"resourceURI" : "...",
"contentClass" : "...",
"patterns" : [ "...", ... ],
"name" : "...",
"id" : "..."
}
}
Element scheduled-task
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<scheduled-task>
<data>
<!--content of type 'scheduled-service-base-resource'-->
<schedule>
<!--content of type 'string'-->
...
</schedule>
<name>
<!--content of type 'string'-->
...
</name>
<typeId>
<!--content of type 'string'-->
...
</typeId>
<enabled>
<!--content of type 'boolean'-->
...
</enabled>
<id>
<!--content of type 'string'-->
...
</id>
<properties>
<scheduled-task-property>
<!--content of type 'scheduled-service-property-resource'-->
<key>
<!--content of type 'string'-->
...
</key>
<value>
<!--content of type 'string'-->
...
</value>
</scheduled-task-property>
<scheduled-task-property>
<!--(another 'scheduled-service-property-resource' type)-->
</scheduled-task-property>
<!--...more "scheduled-task-property" elements...-->
</properties>
<alertEmail>
<!--content of type 'string'-->
...
</alertEmail>
</data>
</scheduled-task>
Example JSON
{
"data" : {
"schedule" : "...",
"name" : "...",
"typeId" : "...",
"enabled" : false,
"id" : "...",
"properties" : [ {
"key" : "...",
"value" : "..."
}, ... ],
"alertEmail" : "..."
}
}
Element smtp-settings-request
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<smtp-settings-request>
<data>
<!--content of type 'smtp-settings-resource'-->
<sslEnabled>
<!--content of type 'boolean'-->
...
</sslEnabled>
<host>
<!--content of type 'string'-->
...
</host>
<tlsEnabled>
<!--content of type 'boolean'-->
...
</tlsEnabled>
<systemEmailAddress>
<!--content of type 'string'-->
...
</systemEmailAddress>
<testEmail>
<!--content of type 'string'-->
...
</testEmail>
<password>
<!--content of type 'string'-->
...
</password>
<username>
<!--content of type 'string'-->
...
</username>
<port>
<!--content of type 'int'-->
...
</port>
</data>
</smtp-settings-request>
Example JSON
{
"data" : {
"sslEnabled" : false,
"host" : "...",
"tlsEnabled" : false,
"systemEmailAddress" : "...",
"testEmail" : "...",
"password" : "...",
"username" : "...",
"port" : ...
}
}
Element user-account-request
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<user-account-request>
<data>
<!--content of type 'userAccount'-->
<lastName>
<!--content of type 'string'-->
...
</lastName>
<userId>
<!--content of type 'string'-->
...
</userId>
<email>
<!--content of type 'string'-->
...
</email>
<firstName>
<!--content of type 'string'-->
...
</firstName>
</data>
</user-account-request>
Example JSON
{
"data" : {
"lastName" : "...",
"userId" : "...",
"email" : "...",
"firstName" : "..."
}
}
Type authentication-settings
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
username (string) | 0/1 | (no documentation provided) |
ntlmDomain (string) | 0/1 | (no documentation provided) |
ntlmHost (string) | 0/1 | (no documentation provided) |
password (string) | 0/1 | (no documentation provided) |
Type base-repository
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
contentResourceURI (string) | 0/1 | (no documentation provided) |
repoType (string) | 0/1 | (no documentation provided) |
name (string) | 0/1 | (no documentation provided) |
exposed (boolean) | 1/1 | (no documentation provided) |
format (string) | 0/1 | (no documentation provided) |
provider (string) | 0/1 | (no documentation provided) |
id (string) | 0/1 | (no documentation provided) |
providerRole (string) | 0/1 | (no documentation provided) |
Type error-reporting-settings
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
jiraUsername (string) | 0/1 | (no documentation provided) |
reportErrorsAutomatically (boolean) | 1/1 | (no documentation provided) |
jiraPassword (string) | 0/1 | (no documentation provided) |
useGlobalProxy (boolean) | 1/1 | (no documentation provided) |
Type errorReportRequest
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
data (error-report-request-dto) | 0/1 | (no documentation provided) |
Type error-report-request-dto
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
errorReportingSettings (error-reporting-settings) | 0/1 | (no documentation provided) |
description (string) | 0/1 | (no documentation provided) |
title (string) | 0/1 | (no documentation provided) |
saveErrorReportingSettings (boolean) | 1/1 | (no documentation provided) |
Type globalConfigurationResourceResponse
- Extends: nexusResponse
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
data (global-settings-item) | 0/1 | (no documentation provided) |
Type global-settings-item
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
smtpSettings (smtp-settings) | 0/1 | (no documentation provided) |
securityEnabled (boolean) | 1/1 | (no documentation provided) |
securityAnonymousUsername (string) | 0/1 | (no documentation provided) |
errorReportingSettings (error-reporting-settings) | 0/1 | (no documentation provided) |
securityRealmItem (string) | 0/unbounded | (no documentation provided) |
globalHttpProxySettings (remote-http-proxy-settings) | 0/1 | (no documentation provided) |
systemNotificationSettings (system-notification-settings) | 0/1 | (no documentation provided) |
globalConnectionSettings (remote-connection-settings) | 0/1 | (no documentation provided) |
securityAnonymousPassword (string) | 0/1 | (no documentation provided) |
globalRestApiSettings (rest-api-settings) | 0/1 | (no documentation provided) |
securityAnonymousAccessEnabled (boolean) | 1/1 | (no documentation provided) |
Type log-config-resource
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
fileAppenderLocation (string) | 0/1 | (no documentation provided) |
fileAppenderPattern (string) | 0/1 | (no documentation provided) |
rootLoggerLevel (string) | 0/1 | (no documentation provided) |
rootLoggerAppenders (string) | 0/1 | (no documentation provided) |
Type logConfigResourceResponse
- Extends: nexusResponse
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
data (log-config-resource) | 0/1 | (no documentation provided) |
Type mirror-resource
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
url (string) | 0/1 | (no documentation provided) |
id (string) | 0/1 | (no documentation provided) |
Type mirrorResourceListRequest
- Extends: nexusResponse
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
mirrorResource (mirror-resource) | 0/unbounded | (no documentation provided) |
Type privilege
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
method (string) | 0/unbounded | (no documentation provided) |
repositoryId (string) | 0/1 | (no documentation provided) |
description (string) | 0/1 | (no documentation provided) |
name (string) | 0/1 | (no documentation provided) |
type (string) | 0/1 | (no documentation provided) |
repositoryGroupId (string) | 0/1 | (no documentation provided) |
repositoryTargetId (string) | 0/1 | (no documentation provided) |
Type privilegeResourceRequest
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
data (privilege) | 0/1 | (no documentation provided) |
Type remote-connection-settings
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
retrievalRetryCount (int) | 1/1 | (no documentation provided) |
queryString (string) | 0/1 | (no documentation provided) |
connectionTimeout (int) | 1/1 | (no documentation provided) |
userAgentString (string) | 0/1 | (no documentation provided) |
Type remote-http-proxy-settings
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
nonProxyHosts (string) | 0/unbounded | (no documentation provided) |
proxyPort (int) | 1/1 | (no documentation provided) |
proxyHostname (string) | 0/1 | (no documentation provided) |
authentication (authentication-settings) | 0/1 | (no documentation provided) |
Type repository-dependent-status
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
repoType (string) | 0/1 | (no documentation provided) |
localStatus (string) | 0/1 | (no documentation provided) |
id (string) | 0/1 | (no documentation provided) |
format (string) | 0/1 | (no documentation provided) |
Type repository-group-member-repository
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
resourceURI (string) | 0/1 | (no documentation provided) |
name (string) | 0/1 | (no documentation provided) |
id (string) | 0/1 | (no documentation provided) |
Type repository-group-resource
- Extends: base-repository
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
repo-group-member (repository-group-member-repository) | 0/unbounded | (no documentation provided) |
Type repositoryGroupResourceResponse
- Extends: nexusResponse
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
data (repository-group-resource) | 0/1 | (no documentation provided) |
Type repositoryResourceResponse
- Extends: nexusResponse
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
data (base-repository) | 0/1 | (no documentation provided) |
Type repository-route-member-repo
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
name (string) | 0/1 | (no documentation provided) |
id (string) | 0/1 | (no documentation provided) |
resourceURI (string) | 0/1 | (no documentation provided) |
Type repository-route-resource
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
groupId (string) | 0/1 | (no documentation provided) |
ruleType (string) | 0/1 | (no documentation provided) |
id (string) | 0/1 | (no documentation provided) |
repository (repository-route-member-repo) | 0/unbounded | (no documentation provided) |
pattern (string) | 0/1 | (no documentation provided) |
Type repositoryRouteResourceResponse
- Extends: nexusResponse
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
data (repository-route-resource) | 0/1 | (no documentation provided) |
Type repository-status
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
repoType (string) | 0/1 | (no documentation provided) |
id (string) | 0/1 | (no documentation provided) |
localStatus (string) | 0/1 | (no documentation provided) |
format (string) | 0/1 | (no documentation provided) |
proxyMode (string) | 0/1 | (no documentation provided) |
dependentRepoItem (repository-dependent-status) | 0/unbounded | (no documentation provided) |
remoteStatus (string) | 0/1 | (no documentation provided) |
Type repositoryStatusResourceResponse
- Extends: nexusResponse
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
data (repository-status) | 0/1 | (no documentation provided) |
Type repository-target-resource
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
resourceURI (string) | 0/1 | (no documentation provided) |
contentClass (string) | 0/1 | (no documentation provided) |
pattern (string) | 0/unbounded | (no documentation provided) |
name (string) | 0/1 | (no documentation provided) |
id (string) | 0/1 | (no documentation provided) |
Type repositoryTargetResourceResponse
- Extends: nexusResponse
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
data (repository-target-resource) | 0/1 | (no documentation provided) |
Type rest-api-settings
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
forceBaseUrl (boolean) | 1/1 | (no documentation provided) |
uiTimeout (int) | 1/1 | (no documentation provided) |
baseUrl (string) | 0/1 | (no documentation provided) |
Type scheduled-service-base-resource
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
schedule (string) | 0/1 | (no documentation provided) |
name (string) | 0/1 | (no documentation provided) |
typeId (string) | 0/1 | (no documentation provided) |
enabled (boolean) | 1/1 | (no documentation provided) |
id (string) | 0/1 | (no documentation provided) |
scheduled-task-property (scheduled-service-property-resource) | 0/unbounded | (no documentation provided) |
alertEmail (string) | 0/1 | (no documentation provided) |
Type scheduled-service-property-resource
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
key (string) | 0/1 | (no documentation provided) |
value (string) | 0/1 | (no documentation provided) |
Type scheduledServiceResourceResponse
- Extends: nexusResponse
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
data (scheduled-service-base-resource) | 0/1 | (no documentation provided) |
Type smtp-settings
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
port (int) | 1/1 | (no documentation provided) |
systemEmailAddress (string) | 0/1 | (no documentation provided) |
tlsEnabled (boolean) | 1/1 | (no documentation provided) |
password (string) | 0/1 | (no documentation provided) |
username (string) | 0/1 | (no documentation provided) |
host (string) | 0/1 | (no documentation provided) |
sslEnabled (boolean) | 1/1 | (no documentation provided) |
Type smtp-settings-resource
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
sslEnabled (boolean) | 1/1 | (no documentation provided) |
host (string) | 0/1 | (no documentation provided) |
tlsEnabled (boolean) | 1/1 | (no documentation provided) |
systemEmailAddress (string) | 0/1 | (no documentation provided) |
testEmail (string) | 0/1 | (no documentation provided) |
password (string) | 0/1 | (no documentation provided) |
username (string) | 0/1 | (no documentation provided) |
port (int) | 1/1 | (no documentation provided) |
Type smtpSettingsResourceRequest
- Extends: nexusResponse
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
data (smtp-settings-resource) | 0/1 | (no documentation provided) |
Type system-notification-settings
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
roles (string) | 0/unbounded | (no documentation provided) |
enabled (boolean) | 1/1 | (no documentation provided) |
emailAddresses (string) | 0/1 | (no documentation provided) |
Type userAccount
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
lastName (string) | 0/1 | (no documentation provided) |
userId (string) | 0/1 | (no documentation provided) |
email (string) | 0/1 | (no documentation provided) |
firstName (string) | 0/1 | (no documentation provided) |
Type userAccountRequestResponseWrapper
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
data (userAccount) | 0/1 | (no documentation provided) |