Skip to main content

Datapackenvironments Model

Overview

The datapackenvironments table stores information about different environments where data packs are deployed. This table helps manage multiple environments, including development, testing, staging, and production, along with their associated connection details.

Fields

FieldTypeDescriptionRequired
idstringPrimary Key – Unique identifier for the environment (UUID).
namestringThe name of the environment (e.g., Development, Production).
descriptionstringShort description about the environment’s purpose, config, or access notes.
connectionCredentialsstringCredentials required to access the environment.
connectionStringstringThe actual connection string used to connect to a database, server, or API endpoint.
connectorIdstringForeign key reference to the datapackconnectors table, linking the environment to a specific connector.
created_atdateTimestamp when the environment entry was created.
modified_atdateTimestamp when the environment entry was last modified.
datapackIdstringForeign key reference to the datapackbuilds or datapacks table, linking this environment to a specific data pack.
providerstringSpecifies the provider associated with the environment (e.g., AWS, Azure, Google Cloud). Useful for categorizing or selecting environments.

Relationships

  • Belongsto Unknown
  • Belongsto Unknown

Sample JSON

{
"id": "example_value",
"name": "example_value",
"description": "example_value",
"connectionCredentials": "example_value",
"connectionString": "example_value",
"connectorId": "example_value",
"created_at": "example_value",
"modified_at": "example_value",
"datapackId": "example_value",
"provider": "example_value"
}