EnvironmentResponse

The results of an operation to update or read environment variables. If the operation succeeds, the response contains the environment variables. If it fails, the response contains details about the error.

APIs.ioEngineeringPlatform

Properties

Name Type Description
Variables object
Error object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-environmentresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EnvironmentResponse",
  "title": "EnvironmentResponse",
  "type": "object",
  "properties": {
    "Variables": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EnvironmentVariables"
        },
        {
          "description": "Environment variable key-value pairs. Omitted from CloudTrail logs."
        }
      ]
    },
    "Error": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EnvironmentError"
        },
        {
          "description": "Error messages for environment variables that couldn't be applied."
        }
      ]
    }
  },
  "description": "The results of an operation to update or read environment variables. If the operation succeeds, the response contains the environment variables. If it fails, the response contains details about the error."
}