Skip to main content

Creates a HBase subclient

This API is used to create HBase subclient

Request Body
  • subClientProperties object

    Subclient properties

  • fsContentOperationType string

    Default value: OVERWRITE

  • subClientEntity object required
  • clientId integer
  • backupsetId integer
  • applicationId integer

    Default value: 64

  • subclientName string

    Subclient Name

  • planEntity object required
  • planId integer
  • content object[] required

    List of Databases or Tables

  • path string

    HBase tables. Default All tables

  • useLocalContent boolean

    Specific Databases or Tables or both

  • dfsSubclientProp object
  • distributedDataAccessNodes object required
  • dataAccessNodes object[]

    Data Access Nodes

  • hostName string

    Host Name

  • clientId integer
  • clientName string
  • displayName string
Responses

OK


Schema
  • processinginstructioninfo object
  • attributes object[]
  • name string
  • value string
  • response object
  • warningCode integer
  • errorCode integer
  • warningMessage string
  • entity object
  • subclientId integer
  • _type_ integer
POST /subclient    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://localhost/webconsole/api
Security Scheme
token
Body

{
"subClientProperties": {
"fsContentOperationType": "OVERWRITE",
"subClientEntity": {
"clientId": 0,
"backupsetId": 0,
"applicationId": 64,
"subclientName": "string"
},
"planEntity": {
"planId": 0
},
"content": [
{
"path": "string"
}
],
"useLocalContent": true,
"dfsSubclientProp": {
"distributedDataAccessNodes": {
"dataAccessNodes": [
{
"hostName": "string",
"clientId": 0,
"clientName": "string",
"displayName": "string"
}
]
}
}
}
}
curl -L -X POST 'https://localhost/webconsole/api/Subclient' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"subClientProperties": {
"fsContentOperationType": "OVERWRITE",
"subClientEntity": {
"clientId": 0,
"backupsetId": 0,
"applicationId": 64,
"subclientName": "string"
},
"planEntity": {
"planId": 0
},
"content": [
{
"path": "string"
}
],
"useLocalContent": true,
"dfsSubclientProp": {
"distributedDataAccessNodes": {
"dataAccessNodes": [
{
"hostName": "string",
"clientId": 0,
"clientName": "string",
"displayName": "string"
}
]
}
}
}
}'