r2_add_custom_domain_response

APIs.ioEngineeringPlatform

Properties

Name Type Description
domain string Domain name of the affected custom domain
enabled boolean Whether this bucket is publicly accessible at the specified custom domain
minTLS string Minimum TLS Version the custom domain will accept for incoming connections. If not set, defaults to 1.0.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-r2-add-custom-domain-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/r2_add_custom_domain_response",
  "title": "r2_add_custom_domain_response",
  "example": {
    "domain": "example-domain.com",
    "enabled": true
  },
  "properties": {
    "domain": {
      "description": "Domain name of the affected custom domain",
      "type": "string"
    },
    "enabled": {
      "description": "Whether this bucket is publicly accessible at the specified custom domain",
      "type": "boolean"
    },
    "minTLS": {
      "description": "Minimum TLS Version the custom domain will accept for incoming connections. If not set, defaults to 1.0.",
      "enum": [
        "1.0",
        "1.1",
        "1.2",
        "1.3"
      ],
      "type": "string"
    }
  },
  "required": [
    "domain",
    "enabled"
  ],
  "type": "object"
}