Scaleway · Schema

scaleway.functions.v1beta1.UploadURL

AICloud ComputingContainersDatabaseEuropean CloudInfrastructureKubernetesServerlessStorage

Properties

Name Type Description
url string Upload URL to upload the function to.
headers object HTTP headers.
View JSON Schema on GitHub

JSON Schema

scaleway-scalewayfunctionsv1beta1uploadurl-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/scaleway.functions.v1beta1.UploadURL",
  "title": "scaleway.functions.v1beta1.UploadURL",
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "description": "Upload URL to upload the function to."
    },
    "headers": {
      "type": "object",
      "description": "HTTP headers.",
      "properties": {
        "<headerKey>": {
          "type": "array",
          "description": "HTTP headers.",
          "nullable": true,
          "items": {
            "type": "string"
          }
        }
      },
      "additionalProperties": true
    }
  },
  "x-properties-order": [
    "url",
    "headers"
  ]
}