launchdarkly · Schema

RelayProxyConfig

A Relay Proxy automatic configuration entry.

Properties

Name Type Description
_id string The unique identifier of this configuration.
name string The human-readable name of this configuration.
fullKey string The full key for authenticating Relay Proxy instances. Only returned at creation time.
displayKey string The last four characters of the full key.
creationDate integer Unix epoch timestamp when the configuration was created.
lastModified integer Unix epoch timestamp of the last modification.
policy array Policy statements controlling which projects and environments this Relay Proxy can access.
_links object
View JSON Schema on GitHub

JSON Schema

launchdarkly-relayproxyconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RelayProxyConfig",
  "title": "RelayProxyConfig",
  "type": "object",
  "description": "A Relay Proxy automatic configuration entry.",
  "properties": {
    "_id": {
      "type": "string",
      "description": "The unique identifier of this configuration."
    },
    "name": {
      "type": "string",
      "description": "The human-readable name of this configuration."
    },
    "fullKey": {
      "type": "string",
      "description": "The full key for authenticating Relay Proxy instances. Only returned at creation time."
    },
    "displayKey": {
      "type": "string",
      "description": "The last four characters of the full key."
    },
    "creationDate": {
      "type": "integer",
      "format": "int64",
      "description": "Unix epoch timestamp when the configuration was created."
    },
    "lastModified": {
      "type": "integer",
      "format": "int64",
      "description": "Unix epoch timestamp of the last modification."
    },
    "policy": {
      "type": "array",
      "description": "Policy statements controlling which projects and environments this Relay Proxy can access.",
      "items": {
        "$ref": "#/components/schemas/Statement"
      }
    },
    "_links": {
      "$ref": "#/components/schemas/Links"
    }
  }
}