Skip to main content

A Pulumi package for creating and managing DataRobot resources.

Project description

DataRobot Pulumi Provider for Python

The DataRobot Resource Provider lets you manage DataRobot resources with Pulumi Infrastructure as Code.

Installation

Install the package using pip:

pip install pulumi_datarobot

Configuration

Configure the provider using environment variables or Pulumi config:

# Environment variables
export DATAROBOT_API_TOKEN=your_api_token
export DATAROBOT_ENDPOINT=https://your.datarobot.instance/api/v2

# OR using Pulumi config
pulumi config set datarobot:apikey --secret your_api_token
pulumi config set datarobot:endpoint https://your.datarobot.instance/api/v2

Quick Start

import pulumi
import pulumi_datarobot as dr

# Create a DataRobot use case
use_case = dr.UseCase("my-use-case",
    name="ML Project Use Case",
    description="Created with Pulumi")

# Create a project from a dataset
project = dr.Project("my-project",
    name="Customer Churn Prediction",
    dataset_url="https://s3.amazonaws.com/datarobot-datasets/churn.csv",
    use_case_id=use_case.id)

# Create a deployment
deployment = dr.Deployment("my-deployment",
    project_id=project.id,
    model_id=project.recommended_model_id,
    environment_id="your-prediction-environment-id")

# Export important values
pulumi.export("use_case_id", use_case.id)
pulumi.export("project_id", project.id)
pulumi.export("deployment_id", deployment.id)

Examples

Complete examples are available in the examples directory.

Air-Gapped Environments

For air-gapped deployments:

1. Store state locally

pulumi login --local

2. Install Python dependencies offline

Create wheel directory and download packages:

mkdir wheels
pip wheel pulumi-datarobot -w wheels/
tar cf wheels.tar wheels/

Transfer wheels.tar to your air-gapped system, then install:

tar xf wheels.tar
pip install wheels/* -f wheels/ --no-index

3. Download DataRobot plugin manually

Download the plugin binary from the releases page:

# Replace v0.10.23 with your version, e.g., v0.10.14
pulumi plugin install resource datarobot v0.10.23 --server \
  https://github.com/datarobot-community/pulumi-datarobot/releases/v0.10.23/

4. Skip update checks

export PULUMI_SKIP_UPDATE_CHECK=true

Advanced Usage

Custom Authentication

import pulumi_datarobot as dr

# Using API token credential
api_token = dr.ApiTokenCredential("my-token",
    name="Production API Token",
    api_token="your-secure-token")

# Using basic authentication
basic_auth = dr.BasicCredential("my-basic-auth",
    name="Basic Auth Credential",
    username="your-username",
    password="your-password")

Working with Models

# Register a custom model
custom_model = dr.CustomModel("my-custom-model",
    name="Customer Segmentation Model",
    target_type="Regression",
    target_name="revenue",
    description="Custom model for customer revenue prediction")

# Create a registered model from leaderboard
registered_model = dr.RegisteredModelFromLeaderboard("my-registered-model",
    project_id=project.id,
    model_id="model-id-from-leaderboard",
    name="Best Performing Model")

Resources

Version

Package version: v0.10.23

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

pulumi_datarobot-0.10.23.tar.gz (119.3 kB view details)

Uploaded Source

File details

Details for the file pulumi_datarobot-0.10.23.tar.gz.

File metadata

  • Download URL: pulumi_datarobot-0.10.23.tar.gz
  • Upload date:
  • Size: 119.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pulumi_datarobot-0.10.23.tar.gz
Algorithm Hash digest
SHA256 916491e5d0b29fbc433c7e3eaa808321d9c3cf8ed27b81faa4fc01a687b712ef
MD5 e65a63212c463e80ae86d651e1da68fc
BLAKE2b-256 a9c90a85b5aee55ca26e6c042bc2f8a83b8fe12d18f775db4e4c6ff1e0746b39

See more details on using hashes here.

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