Allianz Future Cloud Platform · JSON Structure

Platform Services Deploy Service Request Structure

Request body for triggering a service deployment

Type: object Properties: 3 Required: 2
Cloud PlatformEnterpriseFinancial ServicesInsurancePlatform EngineeringKubernetes

DeployServiceRequest is a JSON Structure definition published by Allianz Future Cloud Platform, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

version image strategy

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/allianz-future-cloud-platform/refs/heads/main/json-structure/platform-services-deploy-service-request-structure.json",
  "description": "Request body for triggering a service deployment",
  "properties": {
    "version": {
      "type": "string",
      "description": "Version tag to deploy",
      "example": "2.6.0"
    },
    "image": {
      "type": "string",
      "description": "Container image with version tag",
      "example": "allianz/policy-service:2.6.0"
    },
    "strategy": {
      "type": "string",
      "description": "Deployment strategy",
      "enum": [
        "rolling",
        "blue_green",
        "canary"
      ],
      "default": "rolling",
      "example": "rolling"
    }
  },
  "required": [
    "version",
    "image"
  ],
  "name": "DeployServiceRequest"
}