SetEnvironmentInput

DatabaseTime-SeriesPostgreSQLOpen SourceCloudHypertablesContinuous AggregatesTiger Cloud

Properties

Name Type Description
environment string The target environment for the service.
View JSON Schema on GitHub

JSON Schema

timescaledb-setenvironmentinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SetEnvironmentInput",
  "title": "SetEnvironmentInput",
  "type": "object",
  "required": [
    "environment"
  ],
  "properties": {
    "environment": {
      "type": "string",
      "description": "The target environment for the service.",
      "enum": [
        "PROD",
        "DEV"
      ]
    }
  },
  "example": {
    "environment": "PROD"
  }
}