Kong · Schema

Cloud Gateway Provider Account

Object containing mapping for organization and cloud provider to account ID.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen-Source

Properties

Name Type Description
id object
provider object
provider_account_id string ID of the cloud provider account.
created_at string An RFC-3339 timestamp representation of provider account creation date.
updated_at string An RFC-3339 timestamp representation of provider account update date.
View JSON Schema on GitHub

JSON Schema

kong-provideraccount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProviderAccount",
  "title": "Cloud Gateway Provider Account",
  "description": "Object containing mapping for organization and cloud provider to account ID.",
  "type": "object",
  "properties": {
    "id": {
      "$ref": "#/components/schemas/ProviderAccountId"
    },
    "provider": {
      "$ref": "#/components/schemas/ProviderName"
    },
    "provider_account_id": {
      "description": "ID of the cloud provider account.",
      "type": "string",
      "readOnly": true
    },
    "created_at": {
      "description": "An RFC-3339 timestamp representation of provider account creation date.",
      "type": "string",
      "format": "date-time",
      "example": "2022-11-04T20:10:06.927Z",
      "readOnly": true
    },
    "updated_at": {
      "description": "An RFC-3339 timestamp representation of provider account update date.",
      "type": "string",
      "format": "date-time",
      "example": "2022-11-04T20:10:06.927Z",
      "readOnly": true
    }
  },
  "required": [
    "id",
    "provider",
    "provider_account_id",
    "created_at",
    "updated_at"
  ]
}