Skip to main content

A curl-like tool for Cloudera on Cloud (CDP) API requests

Project description

cdpcurl

curl-like tool with CDP request signing. Inspired by and built from awscurl. See that repository's README for installation and usage instructions beyond what is provided here.

Building

Create a virtualenv if desired.

# For typical virtualenv
virtualenv cdpcurlenv
cdpcurlenv/bin/activate
# For pyenv
pyenv virtualenv cdpcurlenv
pyenv activate cdpcurlenv

Then, in this directory:

pip install .

Usage

Run cdpcurl --help for a complete list of options.

Before using cdpcurl, generate an access key / private key pair for your CDP user account using the CDP management console. You have two options for passing those keys to cdpcurl:

  • Pass the keys to cdpcurl using the --access-key and --private-key options
  • (Recommended) Create a profile in $HOME/.cdp/credentials containing the keys and then use the --profile option in cdpcurl calls

For example:

[myuserprofile]
cdp_access_key_id = 6744f22e-c46a-406d-ad28-987584f45351
cdp_private_key = abcdefgh...................................=

Most CDP API calls are POST requests, so be sure to specify -X POST, and provide the request content using the -d option. If the -d option value begins with "@", the remainder of the value is the path to a file containing the content; otherwise, the value is the content itself.

To form the URI, start by determining the hostname based on the service being called:

  • iam: iamapi.us-west-1.altus.cloudera.com
  • all other services: api.us-west-1.cdp.cloudera.com

The correct URI is an HTTPS URL at the chosen host, with a path indicated for your desired endpoint in the API documentation.

Examples

Get your own account information, using a profile named demo:

$ cdpcurl --profile demo -X POST -d '{}' https://iamapi.us-west-1.altus.cloudera.com/iam/getAccount

List all environments with the sandbox profile:

$ cdpcurl --profile sandbox -X POST -d '{}' https://api.us-west-1.cdp.cloudera.com/api/v1/environments2/listEnvironments

Request Signing

A CDP API call requires a request signature to be passed in the x-altus-auth header, along with a corresponding timestamp in the x-altus-date" header. cdpcurl constructs the headers automatically. However, if you would rather use a different HTTP client, such as ordinary curl, then you may directly use the cdpsign script within cdpcurl to generate these required headers. You may then parse the header values from the script output and feed them to your preferred client.

[!warning] CDP API services will reject calls with timestamps too far in the past, so generate new headers for each call.

$ cdpsign -X POST https://api.us-west-1.cdp.cloudera.com/api/v1/environments2/listEnvironments
Content-Type: application/json
x-altus-date: Fri, 28 Aug 2020 20:38:38 GMT
x-altus-auth: (very long string value)

The signature algorithm specification is available from the API documentation.

Using the requests library

The requests library can also be used like so:

import requests
from cdpcurl.requests_auth import auth_v1

r = requests.post('https://api.us-west-1.cdp.cloudera.com/api/v1/environments2/listEnvironments',
                  json={},
                  auth=auth_v1(profile='demo'))

auth_v1 will automatically sign the request.

License

Copyright 2026 Cloudera, Inc. All rights reserved.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

 https://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cdpcurl-1.1.0.tar.gz (13.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cdpcurl-1.1.0-py3-none-any.whl (20.1 kB view details)

Uploaded Python 3

File details

Details for the file cdpcurl-1.1.0.tar.gz.

File metadata

  • Download URL: cdpcurl-1.1.0.tar.gz
  • Upload date:
  • Size: 13.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for cdpcurl-1.1.0.tar.gz
Algorithm Hash digest
SHA256 f00b8cdaadd951ad1693309ded776b2945d64b8a94f0df84dc4738358e2360fa
MD5 b5e483201a72df407633fee56dd28c8c
BLAKE2b-256 d8137a3670059250119f8e8134a839018af8dcd9763ec8a7305c60a6dbb3f998

See more details on using hashes here.

Provenance

The following attestation bundles were made for cdpcurl-1.1.0.tar.gz:

Publisher: release.yml on cloudera/cdpcurl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cdpcurl-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: cdpcurl-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 20.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for cdpcurl-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 07246165b132e1ae6db08d750424edfc2c7a332d4d0fd77035211c41d4277499
MD5 ab3604d99bd14ad990a2afcd92f3c978
BLAKE2b-256 23677f48ffd5be99fb6b14358b4d1af58422a79f4e052f003dfa0bce88ffd1e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for cdpcurl-1.1.0-py3-none-any.whl:

Publisher: release.yml on cloudera/cdpcurl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page