SAP HANA · Schema

UpdateServiceInstanceRequest

Request body for updating an existing SAP HANA Cloud service instance. Only include the parameters that need to be changed.

AnalyticsCloudDatabaseEnterpriseIn-Memory

Properties

Name Type Description
name string The updated name for the service instance.
parameters object
labels object Updated labels for the service instance.
service_plan_id string The new service plan identifier if changing the instance plan.
View JSON Schema on GitHub

JSON Schema

sap-hana-updateserviceinstancerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateServiceInstanceRequest",
  "title": "UpdateServiceInstanceRequest",
  "type": "object",
  "description": "Request body for updating an existing SAP HANA Cloud service instance. Only include the parameters that need to be changed.",
  "properties": {
    "name": {
      "type": "string",
      "description": "The updated name for the service instance.",
      "example": "Example Title"
    },
    "parameters": {
      "$ref": "#/components/schemas/InstanceParameters"
    },
    "labels": {
      "type": "object",
      "description": "Updated labels for the service instance.",
      "additionalProperties": {
        "type": "array",
        "items": {
          "type": "string"
        }
      },
      "example": "example_value"
    },
    "service_plan_id": {
      "type": "string",
      "format": "uuid",
      "description": "The new service plan identifier if changing the instance plan.",
      "example": "500123"
    }
  }
}