{
  "name": "UpdateTimeToLive",
  "plane": "control",
  "terraformEligible": false,
  "protocol": {
    "kind": "cloudJson",
    "target": "CloudTables.UpdateTimeToLive",
    "service": "tables"
  },
  "requestBody": "typed",
  "responseBody": "typed",
  "requestSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "additionalProperties": false,
    "definitions": {
      "TimeToLiveSpecification": {
        "additionalProperties": false,
        "properties": {
          "attributeName": {
            "type": "string"
          },
          "enabled": {
            "type": "boolean"
          }
        },
        "required": [
          "attributeName",
          "enabled"
        ],
        "type": "object"
      }
    },
    "properties": {
      "tableName": {
        "type": "string"
      },
      "timeToLiveSpecification": {
        "anyOf": [
          {
            "$ref": "#/definitions/TimeToLiveSpecification"
          },
          {
            "type": "null"
          }
        ],
        "default": null
      }
    },
    "required": [
      "tableName"
    ],
    "title": "UpdateTimeToLiveRequest",
    "type": "object"
  },
  "responseSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "title": "EmptyResponse",
    "type": "object"
  }
}
