Create a new installer for the NetApp data broker instance
POST /api/data-brokers
Creates a new installer for the NetApp data broker instance.
Parameters
Name | Type | In | Required | Description |
---|---|---|---|---|
x-account-id |
string |
header |
True |
NetApp tenancy account ID |
Request Body
Name | Type | Required | Description |
---|---|---|---|
name |
string |
True |
|
groupId |
string |
False |
|
port |
number |
False |
|
certificate |
string |
False |
For Listener data broker - if the user wants his own certificate |
privateKey |
string |
False |
For Listener data broker - if the user wants his own certificate |
serverName |
string |
False |
For Listener data broker - if the user wants his own certificate |
type |
string |
True |
Example request
{
"name": "string",
"groupId": "string",
"certificate": "string",
"privateKey": "string",
"serverName": "string",
"type": "string"
}
Response
Status: 200, Default Response
Name | Type | Required | Description |
---|---|---|---|
id |
string |
True |
Data Broker ID |
groupId |
string |
True |
Data Broker group ID |
type |
string |
True |
Data Broker type |
latestVersion |
string |
False |
Data Broker latest version available |
fileLink |
string |
True |
Data Broker installer or template link |
name |
string |
True |
Data Broker name |
template |
["string", "object"] |
False |
Data Broker template - relevant for GCP/AZURE/AWS |
Example response
{
"id": "string",
"groupId": "string",
"type": "string",
"latestVersion": "string",
"fileLink": "string",
"name": "string"
}