Back to plugin list
Official
Premium
Orb
This plugin is in preview.
The CloudQuery Orb plugin pulls data from the Orb usage-based billing platform APIs and loads it into any supported CloudQuery destination. https://www.withorb.com/
Publisher
cloudquery
Latest version
v1.0.6
Type
Source
Platforms
Date Published
Price
Free while in preview
Set up process #
brew install cloudquery/tap/cloudquery
1. Download CLI and login
2. Create source and destination configs
Plugin configurationOverview #
Orb Source Plugin
The CloudQuery Orb plugin pulls configuration out of Orb API resources and loads it into any supported CloudQuery destination (e.g. PostgreSQL, BigQuery, Snowflake, and more).
Authentication #
In order for CloudQuery to sync resources from your Orb setup, you will need to use an Orb API key.
More details on each method are provided in the configuration reference section.
Example Configuration #
kind: source
spec:
name: "orb"
path: "cloudquery/orb"
registry: cloudquery
version: "v1.0.6"
destinations: ["postgresql"]
tables: ["*"]
# Learn more about the configuration options at https://cql.ink/orb_source
spec:
api_key: ${ORB_API_KEY}
# Optional:
# page_fetch_limit: 500
# max_retries: 3
# timeframe_start: 2023-01-01T00:00:00Z
# timeframe_end: 2024-01-01T00:00:00Z
Configuration Reference #
This is the spec used by the Orb source plugin:
api_key
(string
) (required)Orb API key to authenticate with (recommendation: Use environment variable instead of hardcoded the key in the config).page_fetch_limit
(int
) (optional, default:500
)The maximum number of items to fetch in a single request.max_retries
(int
) (optional, default:3
)The maximum number of times to retry a failed request.timeframe_start
(string
) (optional)A date-time string inRFC3339
format. For example,"2024-01-01T00:00:00Z"
will sync all items created on or after January 1, 2024. If not specified, the plugin will fetch items from the past year.timeframe_end
(string
) (optional)A date-time string inRFC3339
format. For example,"2024-01-01T00:00:00Z"
will sync all items created before January 1, 2024. If not specified, the plugin will fetch items up to the current time.