Purpose

The connectionType-details object defines the list of options that can be specified when creating a data source for the data store type.

Syntax

{
  connectionType-details
	{
	  "name": <connectionType-name>,
			         "category": [
			           {category-definition
			             {
			              "name": <category-name>,
			              "options": [{option-definition)]
			              }		
			        } 
	 }
}

connectionType-details Descriptions

Parameter Description Required
"name" The connectionType name. Currently, the name must be either Cloud or Hybrid. Yes
"category" An array of one or more category definition objects. A category is a group of options for a data store that related to each other. For example, a Security category may group together options such as Encryption Method or TLS/SSL Protocol Version. The Web UI displays each category of options on a separate tab on the data store page.
A category-definition object has the format:

{
   "name": <category-name>,
   "options": [
         {option-definition}
   ]
}
										
									
Yes

Related topics