github.com/kyma-project/kyma-environment-broker@v0.0.1/internal/broker/testdata/update-gcp-schema.json (about)

     1  {
     2    "$schema": "http://json-schema.org/draft-04/schema#",
     3    "_controlsOrder": [
     4      "machineType",
     5      "autoScalerMin",
     6      "autoScalerMax"
     7    ],
     8    "_show_form_view": true,
     9    "properties": {
    10      "autoScalerMax": {
    11        "description": "Specifies the maximum number of virtual machines to create",
    12        "maximum": 80,
    13        "minimum": 3,
    14        "type": "integer"
    15      },
    16      "autoScalerMin": {
    17        "description": "Specifies the minimum number of virtual machines to create",
    18        "minimum": 3,
    19        "type": "integer"
    20      },
    21      "machineType": {
    22        "enum": [
    23          "n2-standard-4",
    24          "n2-standard-8",
    25          "n2-standard-16",
    26          "n2-standard-32",
    27          "n2-standard-48"
    28        ],
    29        "type": "string"
    30      }
    31    },
    32    "required": [],
    33    "type": "object"
    34  }