r2_edit_custom_domain_request

APIs.ioEngineeringPlatform

Properties

Name Type Description
enabled boolean Whether to enable public bucket access at the specified custom domain
minTLS string Minimum TLS Version the custom domain will accept for incoming connections. If not set, defaults to previous value.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-r2-edit-custom-domain-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/r2_edit_custom_domain_request",
  "title": "r2_edit_custom_domain_request",
  "example": {
    "enabled": true,
    "minTLS": "1.2"
  },
  "properties": {
    "enabled": {
      "description": "Whether to enable public bucket access 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 previous value.",
      "enum": [
        "1.0",
        "1.1",
        "1.2",
        "1.3"
      ],
      "type": "string"
    }
  },
  "type": "object"
}