Apigee · Schema

NodeConfig

Runtime node configuration for an environment.

Advanced API SecurityAgentic AIAnalyticsAPI GatewayAPI GovernanceAPI HubAPI ManagementDeveloper PortalEnterpriseGenerative AIHybridIntegrationsMicroservicesMCPModel Context ProtocolMonetization

Properties

Name Type Description
minNodeCount string Minimum number of gateway nodes.
maxNodeCount string Maximum number of gateway nodes.
currentAggregateNodeCount string Output only. Current total number of gateway nodes.
View JSON Schema on GitHub

JSON Schema

apigee-nodeconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NodeConfig",
  "title": "NodeConfig",
  "type": "object",
  "description": "Runtime node configuration for an environment.",
  "properties": {
    "minNodeCount": {
      "type": "string",
      "format": "int64",
      "description": "Minimum number of gateway nodes."
    },
    "maxNodeCount": {
      "type": "string",
      "format": "int64",
      "description": "Maximum number of gateway nodes."
    },
    "currentAggregateNodeCount": {
      "type": "string",
      "format": "int64",
      "description": "Output only. Current total number of gateway nodes.",
      "readOnly": true
    }
  }
}