Uptycs Config

APIs.ioEngineeringPlatform

Properties

Name Type Description
api_url string The Uptycs API URL.
client_key string The Uptycs client secret.
client_secret string The Uptycs client secret.
customer_id string The Uptycs customer ID.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-teams-devices-uptycs-config-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/teams-devices_uptycs_config_request",
  "title": "Uptycs Config",
  "properties": {
    "api_url": {
      "description": "The Uptycs API URL.",
      "example": "rnd.uptycs.io",
      "type": "string"
    },
    "client_key": {
      "description": "The Uptycs client secret.",
      "example": "example client key",
      "type": "string"
    },
    "client_secret": {
      "description": "The Uptycs client secret.",
      "example": "example client secret",
      "type": "string"
    },
    "customer_id": {
      "description": "The Uptycs customer ID.",
      "example": "example customer id",
      "type": "string"
    }
  },
  "required": [
    "api_url",
    "client_key",
    "customer_id",
    "client_secret"
  ],
  "type": "object"
}