CDAP reference (original) (raw)
When using Cloud Data Fusion, you use both the Google Cloud console and the Cloud Data Fusion web interface. You use the Google Cloud console to create a Cloud Data Fusion instance. You then use the Cloud Data Fusion web interface to create and manage your pipelines.
Alternatively, you can use command-line tools to create and manage your Cloud Data Fusion instances and pipelines.
- The REST reference describes the API for creating and managing your Cloud Data Fusion instances on Google Cloud.
- This page describes the REST API for creating and managing pipelines and datasets. Throughout this page, there are links to the CDAP documentation site, where you can find more detailed information.
Before you begin
Before you use the REST API, download the Google Cloud CLI and set environment variables for your Google Cloud CLI access credentials and CDAP API endpoint.
Download and log in to the Google Cloud CLI
- Install and initialize the Google Cloud CLI.
- Log in to the Google Cloud CLI:
$ gcloud auth login
Set environment variables
- AUTH_TOKEN
export AUTH_TOKEN=$(gcloud auth print-access-token) - CDAP_ENDPOINT
The CDAP_ENDPOINT can be obtained using either the Google Cloud CLI or the Cloud Data Fusion REST API. Use the value of theapiEndpoint, not theserviceEndpointfield. It has the formathostname/api(example:https://my-instance-my-project-id-dot-usc1.datafusion.googleusercontent.com/api).
gcloud
In a local terminal window or inCloud Shell, run the following gcloud CLI commands to set theCDAP_ENDPOINT environment variable to apiEndpoint of your instance.
export INSTANCE_ID=your-instance-name
export CDAP_ENDPOINT=$(gcloud beta data-fusion instances describe \
--location=region-name \
--format="value(apiEndpoint)" \
${INSTANCE_ID})
API
Use the Try this API panel to submit aninstances.get request:
- Fill in the
namerequest parameter. Provide your project-id, instance region, and instance-name in the following format:
projects/project-id/locations/region/instances/instance-name - Click EXECUTE to submit the request, and then copy the
apiEndpointlisted in the HTTP response. - Run the following command after inserting the
apiEndpoint:
export CDAP_ENDPOINT=apiEndpoint
Deploy a pipeline
To deploy a Cloud Data Fusion pipeline, submit the following HTTP PUTrequest.
PUT -H "Authorization: Bearer AUTHTOKEN""{AUTH_TOKEN}" "AUTHTOKEN""{CDAP_ENDPOINT}/v3/namespaces/namespace-id/apps/pipeline-name"
| Parameter | Description |
|---|---|
| namespace-id | The namespace ID must either be the name of thenamespace when it was created or default, which is the name of the default namespace. |
| pipeline-name | Your pipeline name. |
For more information, see CDAP's Create an Application.
The body of the HTTP PUT request is a JSON object in the following format:
{ "name": "MyPipeline", "artifact": { "name": "cdap-data-pipeline", "version": "6.0.0", "scope": "system" }, "config": { . . . "connections": [ . . . ], "engine": "spark", "postActions": [ . . . ], "stages": [ . . . ], "schedule": "0 * * * *", }, "ui": { . . . } }
For more information, see the CDAP Pipeline Configuration File Format andCreating a Batch Pipeline.
Retrieve pipelines
Retrieve all pipelines
To list Cloud Data Fusion pipelines in the specified namespace, submit the following HTTP GET request.
GET -H "Authorization: Bearer AUTHTOKEN""{AUTH_TOKEN}" "AUTHTOKEN""{CDAP_ENDPOINT}/v3/namespaces/namespace-id/apps"
| Parameter | Description |
|---|---|
| namespace-id | The namespace ID must either be the name of thenamespace when it was created or default, which is the name of the default namespace. |
For more information, see Deployed Applications.
Retrieve batch pipelines
To list Cloud Data Fusion batch pipelines in the specified namespace, submit the following HTTP GET request.
GET -H "Authorization: Bearer AUTHTOKEN""{AUTH_TOKEN}" "AUTHTOKEN""{CDAP_ENDPOINT}/v3/namespaces/namespace-id/apps?artifactName=cdap-data-pipeline"
| Parameter | Description |
|---|---|
| namespace-id | The namespace ID must either be the name of thenamespace when it was created or default, which is the name of the default namespace. |
For more information, see Deployed Applications.
Retrieve real-time pipelines
To list Cloud Data Fusion real-time pipelines in the specified namespace, submit the following HTTP GET request.
GET -H "Authorization: Bearer AUTHTOKEN""{AUTH_TOKEN}" "AUTHTOKEN""{CDAP_ENDPOINT}/v3/namespaces/namespace-id/apps?artifactName=cdap-data-streams"
| Parameter | Description |
|---|---|
| namespace-id | The namespace ID must either be the name of thenamespace when it was created or default, which is the name of the default namespace. |
For more information, see Deployed Applications.
Retrieve pipeline details
To list the details of a pipeline in the specified namespace, submit the following HTTP GET request:
GET -H "Authorization: Bearer AUTHTOKEN""{AUTH_TOKEN}" "AUTHTOKEN""{CDAP_ENDPOINT}/v3/namespaces/namespace-id/apps/pipeline-name"
| Parameter | Description |
|---|---|
| namespace-id | The namespace ID must either be the name of thenamespace when it was created or default, which is the name of the default namespace. |
| pipeline-name | Your pipeline name. |
For more information, see Details of a Deployed Application.
Batch pipelines
Start a batch pipeline
To start a batch pipeline, submit the following HTTP POST request.
POST -H "Authorization: Bearer AUTHTOKEN""{AUTH_TOKEN}" "AUTHTOKEN""{CDAP_ENDPOINT}/v3/namespaces/namespace-id/apps/pipeline-name/workflows/DataPipelineWorkflow/start"
| Parameter | Description / value |
|---|---|
| namespace-id | The namespace ID must either be the name of thenamespace when it was created or default, which is the name of the default namespace. |
| pipeline-name | Your pipeline name. |
For more information, see Start a Program.
Stop a batch pipeline
To stop a batch pipeline, submit the following HTTP POST request.
POST -H "Authorization: Bearer AUTHTOKEN""{AUTH_TOKEN}" "AUTHTOKEN""{CDAP_ENDPOINT}/v3/namespaces/namespace-id/apps/pipeline-name/workflows/DataPipelineWorkflow/stop"
| Parameter | Description / value |
|---|---|
| namespace-id | The namespace ID must either be the name of thenamespace when it was created or default, which is the name of the default namespace. |
| pipeline-name | Your pipeline name. |
For more information, see Stop a program.
Schedule a batch pipeline
Note: Scheduling is available only for batch pipelines.
By default, scheduling is disabled. To enable scheduling for your pipeline, submit the following HTTP POST request.
POST -H "Authorization: Bearer AUTHTOKEN""{AUTH_TOKEN}" "AUTHTOKEN""{CDAP_ENDPOINT}/v3/namespaces/namespace-id/apps/pipeline-name/schedules/dataPipelineSchedule/enable"
| Parameter | Description / value |
|---|---|
| namespace-id | The namespace ID must either be the name of thenamespace when it was created or default, which is the name of the default namespace. |
| pipeline-name | Your pipeline name. |
For more information, see Schedule a Program.
Batch pipeline run records
To get the run records of a Cloud Data Fusion batch pipeline, submit the following HTTP GET requests.
Run records of a batch pipeline
The returned information includes the run ids of a batch pipeline.
GET -H "Authorization: Bearer AUTHTOKEN""{AUTH_TOKEN}" "AUTHTOKEN""{CDAP_ENDPOINT}/v3/namespaces/namespace-id/apps/pipeline-name/workflows/DataPipelineWorkflow/runs
Records of a batch pipeline run
GET -H "Authorization: Bearer AUTHTOKEN""{AUTH_TOKEN}" "AUTHTOKEN""{CDAP_ENDPOINT}/v3/namespaces/namespace-id/apps/pipeline-name/workflows/DataPipelineWorkflow/runs/run-id
| Parameter | Description |
|---|---|
| namespace-id | The namespace ID must either be the name of thenamespace when it was created or default, which is the name of the default namespace. |
| pipeline-name | |
| run-id | To find the run ID, seeBatch pipeline run records, which returns a list of run IDs. |
For more information, see List Schedules.
Logs for a batch pipeline
You can view the logs of a pipeline or of a specific pipeline run.
- To view the logs of a batch pipeline, submit the following HTTP
GETrequest.
GET -H "Authorization: Bearer AUTHTOKEN""{AUTH_TOKEN}" "AUTHTOKEN""{CDAP_ENDPOINT}/v3/namespaces/namespace-id/apps/pipeline-name/workflows/DataPipelineWorkflow/logs?start=start-ts&stop=stop-ts - To view logs of a specific run of a batch pipeline, submit the following HTTP
GETrequest.
GET -H "Authorization: Bearer AUTHTOKEN""{AUTH_TOKEN}" "AUTHTOKEN""{CDAP_ENDPOINT}/v3/namespaces/namespace-id/apps/pipeline-name/workflows/DataPipelineWorkflow/runs/run-id/logs?start=start-ts&stop=stop-ts"
| Parameter | Description / value |
|---|---|
| namespace-id | The namespace ID must either be the name of thenamespace when it was created or default, which is the name of the default namespace. |
| pipeline-name | Your pipeline name. |
| run-id | Relevant only if you want to view logs of a specific pipeline run. To find the run ID, seeBatch pipeline run records, which returns a list of run IDs. |
For more information, see Downloading Application Logs.
Metrics for a batch pipeline
To view specific metrics for a batch pipeline, submit the following HTTP POSTrequest.
POST -H "Authorization: Bearer AUTHTOKEN""{AUTH_TOKEN}" "AUTHTOKEN""{CDAP_ENDPOINT}/v3/metrics/query"
The body of the HTTP POST request is a JSON object in the following format:
{ "query": { "tags": { "namespace": "default", "app": "pipeline name", "workflow": "DataPipelineWorkflow", "run": "run-id" }, "metrics": [ "metric1 name", "metric2 name", ... ], "timeRange": { "aggregate": true } } }
| Query parameter | Description / value |
|---|---|
| pipeline name | Your pipeline name. |
| run-id | To find the run ID, seeBatch pipeline run records, which returns a list of run IDs. |
| metric name | Metric names follow the format: user.pipeline-stage.metric pipeline-stage is any of the stage names in the body of the HTTP PUT request that you configured when you deployed your pipeline. In the following example, BigQuery orGoogleCloudStorage are possible values forpipeline-stage.{ "stages": [ { "name": "BigQuery", ... }, { "name": "GoogleCloudStorage", ... }, ... ], ... } metrics can be any of: records.in records.out records.error process.time.total process.time.avg process.time.max process.time.min process.time.stddev |
For example, the following query gets the records.out and process.time.avgmetrics for the BigQuery stage of the batch pipeline, batch-pipeline.
{ "query": { "tags": { "namespace": "default", "app": "batch-pipeline", "workflow": "DataPipelineWorkflow", "run": "81e3d583-f68b-11e9-aba0-0242b9f29569" }, "metrics": [ "user.BigQuery.records.out", "user.BigQuery.process.time.avg" ], "timeRange": { "aggregate": true } } }
For more information, see CDAP Metrics Microservicesand Cloud Data Fusion flow control.
Real-time pipelines
Start a real-time pipeline
To start a real-time pipeline, submit the following HTTP POST request.
POST -H "Authorization: Bearer AUTHTOKEN""{AUTH_TOKEN}" "AUTHTOKEN""{CDAP_ENDPOINT}/v3/namespaces/namespace-id/apps/pipeline-name/spark/DataStreamsSparkStreaming/start"
| Parameter | Description / value |
|---|---|
| namespace-id | The namespace ID must either be the name of thenamespace when it was created or default, which is the name of the default namespace. |
| pipeline-name | Your pipeline name. |
For more information, see Starting a Program.
Stop a real-time pipeline
To stop a real-time pipeline, submit the following HTTP POST request.
POST -H "Authorization: Bearer AUTHTOKEN""{AUTH_TOKEN}" "AUTHTOKEN""{CDAP_ENDPOINT}/v3/namespaces/namespace-id/apps/pipeline-name/spark/DataStreamsSparkStreaming/stop"
| Parameter | Description / value |
|---|---|
| namespace-id | The namespace ID must either be the name of thenamespace when it was created or default, which is the name of the default namespace. |
| pipeline-name | pipeline-name |
For more information, see Stop a Program.
Real-time pipeline run records
To get the run records of a Cloud Data Fusion real-time pipeline, submit the following HTTP GET requests.
Run records of a real-time pipeline
The returned information includes the run ids of a real-time pipeline.
GET -H "Authorization: Bearer AUTHTOKEN""{AUTH_TOKEN}" "AUTHTOKEN""{CDAP_ENDPOINT}/v3/namespaces/namespace-id/apps/pipeline-name/spark/DataStreamsSparkStreaming
Records of a real-time pipeline run
GET -H "Authorization: Bearer AUTHTOKEN""{AUTH_TOKEN}" "AUTHTOKEN""{CDAP_ENDPOINT}/v3/namespaces/namespace-id/apps/pipeline-name/spark/DataStreamsSparkStreaming/run-id
| Parameter | Description |
|---|---|
| namespace-id | The namespace ID must either be the name of thenamespace when it was created or default, which is the name of the default namespace. |
| pipeline-name | Your pipeline name. |
| run-id | To find the run ID, seeReal-time pipeline run records, which returns a list of run IDs. |
For more information, see List Schedules.
Logs for a real-time pipeline
You can view the logs of a pipeline or of a specific pipeline run.
- To view the logs of a real-time pipeline, submit the following HTTP
GETrequest.
GET -H "Authorization: Bearer AUTHTOKEN""{AUTH_TOKEN}" "AUTHTOKEN""{CDAP_ENDPOINT}/v3/namespaces/namespace-id/apps/pipeline-name/spark/DataStreamsSparkStreaming/logs?start=start-ts&stop=stop-ts" - To view logs of a specific run of a real-time pipeline, submit the following HTTP
GETrequest.
GET -H "Authorization: Bearer AUTHTOKEN""{AUTH_TOKEN}" "AUTHTOKEN""{CDAP_ENDPOINT}/v3/namespaces/namespace-id/apps/pipeline-name/spark/DataStreamsSparkStreaming/runs/run-id/logs?start=start-ts&stop=stop-ts"
| Parameter | Description / value |
|---|---|
| namespace-id | The namespace ID must either be the name of thenamespace when it was created or default, which is the name of the default namespace. |
| pipeline-name | Your pipeline name. |
| run-id | Relevant only if you want to view logs of a specific pipeline run. To find the run ID, callReal-time pipeline run records, which returns a list of run IDs. |
For more information, see Downloading Application Logs.
Metrics for a real-time pipeline
To view specific metrics for a real-time pipeline, submit the following HTTPPOST request.
POST -H "Authorization: Bearer AUTHTOKEN""{AUTH_TOKEN}" "AUTHTOKEN""{CDAP_ENDPOINT}/v3/metrics/query"
The body of the HTTP POST request is a JSON object in the following format:
{ "query": { "tags": { "namespace": "default", "app": "pipeline name", "spark": "DataStreamsSparkStreaming", "run": "run-id" }, "metrics": [ "metric1 name", "metric2 name", ... ], "timeRange": { "aggregate": true } } }
| Query parameter | Description / value |
|---|---|
| pipeline name | Your pipeline name. |
| run-id | To find the run ID, call Real-time pipeline run records, which returns a list of run IDs. |
| metric name | Metric names follow the format: user.pipeline-stage.metric pipeline-stage is any of the stage names in the body of the HTTP PUT request that you configured when you deployed your pipeline. In the following example, BigQuery orGoogleCloudStorage are possible values forpipeline-stage.{ "stages": [ { "name": BigQuery, "name": GoogleCloudStorage }, ... ], ... } metrics can be any of: records.in records.out records.error process.time.total process.time.avg process.time.max process.time.min process.time.stddev |
For example, the following query gets the records.out and process.time.avgmetrics for the BigQuery stage of the real-time pipeline, rt-pipeline.
{ "query": { "tags": { "namespace": "default", "app": "rt-pipeline", "spark": "DataStreamsSparkStreaming", "run": "81e3d583-f68b-11e9-aba0-0242b9f29570" }, "metrics": [ "user.BigQuery.records.out", "user.BigQuery.process.time.avg" ], "timeRange": { "aggregate": true } } }
For more information, see Metrics HTTP RESTful APIand Cloud Data Fusion flow control.
Metadata properties
To view metadata properties for your dataset, submit the following HTTP GETrequest.
GET -H "Authorization: Bearer AUTHTOKEN""{AUTH_TOKEN}" "AUTHTOKEN""{CDAP_ENDPOINT}/v3/namespaces/default/datasets/dataset-id/metadata/properties"
| Parameter | Description / value |
|---|---|
| dataset-id | To get the dataset ID, submit an HTTP GET request thatlists all datasets: GET -H "Authorization: Bearer (gcloudauthprint−access−token)(gcloud auth print-access-token) (gcloudauthprint−access−token){CDAP_ENDPOINT}/v3/namespaces/namespace-id/data/datasets You can create a namespace. The namespace ID must either be the name of the namespace when it was created or default, which is the name of the default namespace. |
For more information, see Retrieving Properties.
Metadata tags
To view metadata tags for your dataset, submit the following HTTP GET request.
GET -H "Authorization: Bearer AUTHTOKEN""{AUTH_TOKEN}" "AUTHTOKEN""{CDAP_ENDPOINT}/v3/namespaces/default/datasets/dataset-id/metadata/tags"
| Parameter | Description / value |
|---|---|
| dataset-id | To get the dataset ID, submit an HTTP GET request thatlists all datasets: GET -H "Authorization: Bearer (gcloudauthprint−access−token)(gcloud auth print-access-token) (gcloudauthprint−access−token){CDAP_ENDPOINT}/v3/namespaces/namespace-id/data/datasets. You cancreate a namespace. The namespace ID must either be the name of the namespace when it was created or default, which is the name of the default namespace. |
For more information, see Retrieving Tags.
Lineage
Dataset lineage
To view the lineage of your dataset, submit the following HTTP GET request.
GET -H "Authorization: Bearer AUTHTOKEN""{AUTH_TOKEN}" "AUTHTOKEN""{CDAP_ENDPOINT}/v3/namespaces/namespace-id/datasets/dataset-id/lineage?start=start-ts&end=end-ts"
| Parameter | Description / value |
|---|---|
| namespace-id | The namespace ID must either be the name of thenamespace when it was created or default, which is the name of the default namespace. |
| dataset-id | To get the dataset ID, submit an HTTP GET request thatlists all datasets: GET -H "Authorization: Bearer (gcloudauthprint−access−token)(gcloud auth print-access-token) (gcloudauthprint−access−token){CDAP_ENDPOINT}/v3/namespaces/namespace-id/data/datasets. You can create a namespace. The namespace ID must either be the name of the namespace when it was created or default, which is the name of the default namespace. |
| start-ts | Starting timestamp of lineage in seconds. |
| end-ts | Ending timestamp of lineage in seconds. |
For more information, see Viewing Lineages.
Field level lineage
To view the lineage of fields in your dataset in a specified range of time, submit the following HTTP GET request.
GET -H "Authorization: Bearer AUTHTOKEN""{AUTH_TOKEN}" "AUTHTOKEN""{CDAP_ENDPOINT}/v3/namespaces/namespace-id/datasets/dataset-id/lineage/fields?start=start-ts&end=end-ts[&prefix=prefix>]"
| Parameter | Description / value |
|---|---|
| namespace-id | The namespace ID must either be the name of thenamespace when it was created or default, which is the name of the default namespace. |
| dataset-id | To get the dataset ID, submit an HTTP GET request thatlists all datasets: GET -H "Authorization: Bearer (gcloudauthprint−access−token)(gcloud auth print-access-token) (gcloudauthprint−access−token){CDAP_ENDPOINT}/v3/namespaces/namespace-id/data/datasets. |
| start-ts | Starting timestamp of lineage in seconds. |
| end-ts | Ending timestamp of lineage in seconds. |
For more information, see Field Level Lineage.
Secure storage
Use the CDAP Secure Storage HTTP RESTful API to add, retrieve, and delete secure keys.
Add a secure key
To add a secure key to secure storage, submit the following HTTP PUT request.
PUT -H "Authorization: Bearer AUTHTOKEN""{AUTH_TOKEN}" "AUTHTOKEN""{CDAP_ENDPOINT}/v3/namespaces/namespace-id/securekeys/secure-key-id"
| Parameter | Description |
|---|---|
| namespace-id | The namespace ID must either be the name of thenamespace when it was created or default, which is the name of the default namespace. |
| secure-key-id | Name of the key to add to secure storage. |
The body of the HTTP PUT request is a JSON object in the following format:
{ "description": "Example Secure Key", "data": "secure-contents", "properties": { "property-key": "property-value" } }
For more information, seeAdd a Secure Keyand the Administrator Guide: Secure Storage.
Retrieve a secure key
To retrieve a secure key from secure storage, submit the following HTTP GETrequest.
GET -H "Authorization: Bearer AUTHTOKEN""{AUTH_TOKEN}" "AUTHTOKEN""{CDAP_ENDPOINT}/v3/namespaces/namespace-id/securekeys/secure-key-id"
| Parameter | Description |
|---|---|
| namespace-id | The namespace ID must either be the name of thenamespace when it was created or default, which is the name of the default namespace. |
| secure-key-id | Name of the key to retrieve from secure storage. |
For more information, seeRetrieve a Secure Keyand the Administration Manual: Secure Storage.
Retrieve the metadata for a secure key
To retrieve the metadata for a secure key from secure storage, submit the following HTTP GETrequest.
GET -H "Authorization: Bearer AUTHTOKEN""{AUTH_TOKEN}" "AUTHTOKEN""{CDAP_ENDPOINT}/v3/namespaces/namespace-id/securekeys/secure-key-id/metadata"
| Parameter | Description |
|---|---|
| namespace-id | The namespace ID must either be the name of thenamespace when it was created or default, which is the name of the default namespace. |
| secure-key-id | Name of the key to retrieve from secure storage. |
The metadata of the secure key is returned as a JSON object— the secure key name (the secure-key-id), description, created timestamp, and the map of properties—in the response body.
Example response:
{ "name": "secure-key-id", "description": "Example Secure Key", "createdEpochMs": 1471718010326, "properties": { "property-key": "property-value" } }
For more information, seeRetrieve a Secure Key,Retrieve the Metadata for a Secure Key, and the Administration Manual: Secure Storage.
List all secure keys
To list all the keys in a namespace from secure storage, submit the following HTTP GET request.
GET -H "Authorization: Bearer AUTHTOKEN""{AUTH_TOKEN}" "AUTHTOKEN""{CDAP_ENDPOINT}/v3/namespaces/namespace-id/securekeys"
| Parameter | Description |
|---|---|
| namespace-id | The namespace ID must either be the name of thenamespace when it was created or default, which is the name of the default namespace. |
For more information, seeList all Secure Keysand the Administration Manual: Secure Storage.
Delete a secure key
To delete a secure key from secure storage, submit the following HTTP DELETE request.
DELETE -H "Authorization: Bearer AUTHTOKEN""{AUTH_TOKEN}" "AUTHTOKEN""{CDAP_ENDPOINT}/v3/namespaces/namespace-id/securekeys/secure-key-id"
| Parameter | Description |
|---|---|
| namespace-id | The namespace ID must either be the name of thenamespace when it was created or default, which is the name of the default namespace. |
| secure-key-id | Name of the key to delete from secure storage. |
For more information, seeRemove a Secure Keyand the Administration Manual: Secure Storage.
Delete a namespace
To delete a Cloud Data Fusion namespace, submit the following HTTP PATCHrequest to enable enable.unrecoverable.reset.
PATCH -H 'Content-Type: application/json' -H "Authorization: Bearer ${AUTH_TOKEN}" 'https://datafusion.googleapis.com/v1beta1/projects/project-id/locations/region/instances/instance-name?updateMask=options' -d '{ "options": { "enable.unrecoverable.reset": "true" } }'
After the enable.unrecoverable.reset property is set to true, restart the instance:
gcloud beta data-fusion instances restart --project=project-id --location=region instance-name
Delete the namespace with the following DELETE request or in the web interface.
DELETE -H "Authorization: Bearer AUTHTOKEN""{AUTH_TOKEN}" "AUTHTOKEN""{CDAP_ENDPOINT}/v3/unrecoverable/namespaces/namespace-id"
To avoid accidental deletion of the namespaces, update theenable.unrecoverable.reset property to set to false, and restartthe instance .
PATCH -H 'Content-Type: application/json' -H "Authorization: Bearer ${AUTH_TOKEN}" 'https://datafusion.googleapis.com/v1beta1/projects/project-id/locations/region/instances/instance-name?updateMask=options' -d '{ "options": { "enable.unrecoverable.reset": "false" } }'
| Parameter | Description |
|---|---|
| project-id | The project ID that hosts the Cloud Data Fusion instance. |
| region | The location of your Cloud Data Fusion instance. |
| instance-name | The Cloud Data Fusion instance name. |
| namespace-id | The name of the namespace to delete. |