Cloud Enterprise Object Storage REST API

Search (SHIFT+S)




Get Prop Metadata

GET /config/object/properties/metadata/

Gets the meta data for each of the configuration properties. Metatdata includes the possible values for the property, a description of the property, whether a reboot is required when it is changed, etc.


Required Roles

Requires one of the following roles:

  • SYSTEM_ADMIN

  • SYSTEM_MONITOR


Response Body

Configuration meta data for the system

Field Description Type Notes
properties_metadata
metadata Metadata configuration properties
metadata Map

Examples

Request
GET https://192.168.0.0:4443/config/object/properties/metadata HTTP/1.1

Content-Type: application/xml
X-SDS-AUTH-TOKEN: <AUTH_TOKEN>
Response
HTTP/1.1 200 OKContent-Type: application/xml<?xml version="1.0" encoding="UTF-8" ?>	<properties_metadata>		<metadata>			<entry>				<key>user_scope</key>				<value>					<advanced>false</advanced>					<allowedValues>NAMESPACE</allowedValues>					<allowedValues>GLOBAL</allowedValues>					<controlNodeOnly>false</controlNodeOnly>					<description>Declares the scope for user name uniqueness</description>					<hidden>false</hidden>					<label>User scope</label>					<maxLen>65534</maxLen>					<minLen>0</minLen>					<rebootRequired>false</rebootRequired>					<reconfigRequired>false</reconfigRequired>					<type>string</type>					<userConfigurable>false</userConfigurable>					<userMutable>false</userMutable>					<value>GLOBAL</value>				</value>			</entry>		</metadata>	</properties_metadata>