View as Markdown
Rockset icon

Rockset ACTION

Create Integration

Create a new integration with Rockset. Learn more at https://docs.rockset.com/rest/#createintegration
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Rockset account once, then configure and run Create Integration from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "rockset-create-integration",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    rockset: { authProvisionId: "apn_xxxxxxx" },
    name: "Name",
    description: "Description",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Create Integration inputs
Property Type Description
name Name string
Descriptive label for the integration.
Required
description Description string
Description for the integration.
Optional
s3 S3 object
Amazon S3 details, must have one of aws_access_key or aws_role. E.g., { "aws_role": { "aws_role_arn": "arn:aws:iam::2378964092:role/rockset-role" }, "aws_access_key": { "aws_access_key_id": "AKIAIOSFODNN7EXAMPLE", "aws_secret_access_key": "wJal...." } }
Optional
kinesis Kinesis object
Amazon Kinesis details, must have one of aws_access_key or aws_role. E.g., { "aws_role": { "aws_role_arn": "arn:aws:iam::2378964092:role/rockset-role" }, "aws_access_key": { "aws_access_key_id": "AKIAIOSFODNN7EXAMPLE", "aws_secret_access_key": "wJal...." } }
Optional
dynamodb Dynamodb object
Amazon DynamoDB details, must have one of aws_access_key or aws_role. E.g., { "aws_access_key": { "aws_access_key_id": "AKIAIOSFODNN7EXAMPLE", "aws_secret_access_key": "wJal...." }, "aws_role": { "aws_role_arn": "arn:aws:iam::2378964092:role/rockset-role" } }
Optional
redshift Redshift object
Amazon Redshift details. E.g., { "aws_access_key": { "aws_access_key_id": "AKIAIOSFODNN7EXAMPLE", "aws_secret_access_key": "wJal...." }, "username": "awsuser", "password": "pswd....", "host": "test.yuyugt.us-west-2.redshift.amazonaws.com", "port": 5439, "s3_bucket_path": "s3://redshift-unload" }
Optional
gcs Gcs object
GCS details. E.g., { "gcp_service_account": {} }
Optional
segment Segment object
Optional
kafka Kafka object
E.g., { "kafka_topic_names": [ null ], "kafka_data_format": "json", "source_status_by_topic": "topic-a:DORMANT" }
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
rockset-create-integration
Version
0.1.3
App
Rockset
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes