Skip to main content

Add Kudu App

Select

SaaS
Customer Managed

This API is used to create Kudu app data protection

Path Parameters
  • instanceid string required
Request Body
  • instanceProperties object required

    Instance Properties

  • instance object required

    Kudu Instance

  • instanceId integer
  • applicationId integer required

    Application Id

  • clientId integer required
  • distributedClusterInstanceProperties object required
  • clusterType integer

    Default value: 2

  • opType integer

    Default value: 2

    Kudu OpType

  • instance object
  • instanceId integer

    Instance Id

  • instanceName string

    Default Instance Name is Kudu

  • clusterConfig object
  • hadoopConfig object
  • hadoopApps object required

    List of Hadoop Apps available

  • appConfigs object required

    List of Apps -Kudu, Hive, HBase available for configuration

  • appConfigs object[]
  • hadoopAppType integer

    Select the App Type

  • kuduConfig object required

    Kudu specific configurations

  • user string required

    Kudu user

  • staging object required

    staging path for kudu operations

  • stagingPath string
Responses

OK


Schema
  • processinginstructioninfo object
  • attributes object[]
  • name string
  • value string
  • response object
  • warningCode integer
  • errorCode integer
  • warningMessage string
  • entity object
  • subclientId integer
  • clientId integer
  • instanceName string
  • instanceId integer
  • _type_ integer
POST /instance/:instanceid    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://localhost/commandcenter/api
Security Scheme
token
instanceid — path required
Body

{
"instanceProperties": {
"instance": {
"instanceId": 0,
"applicationId": 0,
"clientId": 0
}
},
"distributedClusterInstanceProperties": {
"clusterType": 2,
"opType": 2,
"instance": {
"instanceId": 0,
"instanceName": "string"
},
"clusterConfig": {
"hadoopConfig": {
"hadoopApps": {
"appConfigs": {
"appConfigs": [
{
"hadoopAppType": 0,
"kuduConfig": {
"user": "string",
"staging": {
"stagingPath": "string"
}
}
}
]
}
}
}
}
}
}
curl -L -X POST 'https://localhost/commandcenter/api/Instance/:instanceid' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"instanceProperties": {
"instance": {
"instanceId": 0,
"applicationId": 0,
"clientId": 0
}
},
"distributedClusterInstanceProperties": {
"clusterType": 2,
"opType": 2,
"instance": {
"instanceId": 0,
"instanceName": "string"
},
"clusterConfig": {
"hadoopConfig": {
"hadoopApps": {
"appConfigs": {
"appConfigs": [
{
"hadoopAppType": 0,
"kuduConfig": {
"user": "string",
"staging": {
"stagingPath": "string"
}
}
}
]
}
}
}
}
}
}'