RuntimeArtifact

API ManagementCloud IntegrationEnterprise IntegrationEvent MeshiPaaSSAPSAP BTP

Properties

Name Type Description
Id string Runtime artifact identifier
Version string Deployed version
Name string Artifact name
Type string Artifact type
Status string Deployment status
DeployedBy string User who deployed the artifact
DeployedOn string Deployment timestamp
ErrorInformation string Error details if status is ERROR
View JSON Schema on GitHub

JSON Schema

sap-integration-suite-runtimeartifact-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RuntimeArtifact",
  "title": "RuntimeArtifact",
  "type": "object",
  "properties": {
    "Id": {
      "type": "string",
      "description": "Runtime artifact identifier"
    },
    "Version": {
      "type": "string",
      "description": "Deployed version"
    },
    "Name": {
      "type": "string",
      "description": "Artifact name"
    },
    "Type": {
      "type": "string",
      "description": "Artifact type"
    },
    "Status": {
      "type": "string",
      "description": "Deployment status",
      "enum": [
        "STARTED",
        "STARTING",
        "STOPPING",
        "STOPPED",
        "ERROR"
      ]
    },
    "DeployedBy": {
      "type": "string",
      "description": "User who deployed the artifact"
    },
    "DeployedOn": {
      "type": "string",
      "description": "Deployment timestamp"
    },
    "ErrorInformation": {
      "type": "string",
      "description": "Error details if status is ERROR"
    }
  }
}