Scaleway · Schema

scaleway.functions.v1beta1.Domain

AICloud ComputingContainersDatabaseEuropean CloudInfrastructureKubernetesServerlessStorage

Properties

Name Type Description
id string UUID of the domain.
hostname string Hostname associated with the function.
function_id string UUID of the function the domain is associated with.
url string URL of the function.
status string State of the domain.
error_message string Error message if the domain is in "error" state.
View JSON Schema on GitHub

JSON Schema

scaleway-scalewayfunctionsv1beta1domain-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/scaleway.functions.v1beta1.Domain",
  "title": "scaleway.functions.v1beta1.Domain",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "UUID of the domain."
    },
    "hostname": {
      "type": "string",
      "description": "Hostname associated with the function."
    },
    "function_id": {
      "type": "string",
      "description": "UUID of the function the domain is associated with."
    },
    "url": {
      "type": "string",
      "description": "URL of the function."
    },
    "status": {
      "type": "string",
      "description": "State of the domain.",
      "enum": [
        "unknown",
        "ready",
        "deleting",
        "error",
        "creating",
        "pending"
      ],
      "default": "unknown"
    },
    "error_message": {
      "type": "string",
      "description": "Error message if the domain is in \"error\" state.",
      "nullable": true
    }
  },
  "x-properties-order": [
    "id",
    "hostname",
    "function_id",
    "url",
    "status",
    "error_message"
  ]
}