Skip to main content

Add content group to Azure Data Lake instance

Select

SaaS

This API adds a content group to the given Azure Data Lake instance.

Path Parameters
  • instanceId integer required

    Id of the Azure Data Lake instance

Request Body
  • name string required

    Name of the new content group

  • plan object required
  • id integer
  • name string
  • contents object required
  • path array

    Optional list of files and folders to be added as content. Defaults to /

  • exclusions array

    Optional list of files and folders to exclude

  • exceptions array

    Optional list of files and folders to be added to the exceptions list

Responses

OK


Schema
  • id integer
  • name string
POST /v4/azuredatalake/instance/:instanceid/contentgroup    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

{
"name": "string",
"plan": {
"id": 0,
"name": "string"
},
"contents": {
"path": [
null
],
"exclusions": [
null
],
"exceptions": [
null
]
}
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/V4/azuredatalake/instance/:instanceId/contentgroup' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"name": "string",
"plan": {
"id": 0,
"name": "string"
},
"contents": {
"path": [
null
],
"exclusions": [
null
],
"exceptions": [
null
]
}
}'