SAP HANA · Schema

CreateServiceInstanceRequest

Request body for creating a new SAP HANA Cloud service instance.

AnalyticsCloudDatabaseEnterpriseIn-Memory

Properties

Name Type Description
name string The name for the new service instance. Must be unique within the subaccount.
service_plan_id string The service plan identifier determining the instance type and available features.
parameters object
labels object Labels to assign to the instance for organization and filtering.
View JSON Schema on GitHub

JSON Schema

sap-hana-createserviceinstancerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateServiceInstanceRequest",
  "title": "CreateServiceInstanceRequest",
  "type": "object",
  "description": "Request body for creating a new SAP HANA Cloud service instance.",
  "required": [
    "name",
    "service_plan_id",
    "parameters"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "The name for the new service instance. Must be unique within the subaccount.",
      "example": "Example Title"
    },
    "service_plan_id": {
      "type": "string",
      "format": "uuid",
      "description": "The service plan identifier determining the instance type and available features.",
      "example": "500123"
    },
    "parameters": {
      "$ref": "#/components/schemas/InstanceParameters"
    },
    "labels": {
      "type": "object",
      "description": "Labels to assign to the instance for organization and filtering.",
      "additionalProperties": {
        "type": "array",
        "items": {
          "type": "string"
        }
      },
      "example": "example_value"
    }
  }
}