{
  "name": "ListOperatorAccessKeys",
  "plane": "control",
  "terraformEligible": false,
  "protocol": {
    "kind": "rest",
    "method": "GET",
    "path": "/auth/directory/access-keys",
    "query": [],
    "headers": [
      "authorization"
    ],
    "body": false
  },
  "requestBody": "explicitlyEmpty",
  "responseBody": "json",
  "requestSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "additionalProperties": false,
    "title": "ListOperatorAccessKeysRequest",
    "type": "object"
  },
  "responseSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "definitions": {
      "OperatorAccessKey": {
        "properties": {
          "accessKeyId": {
            "type": "string"
          },
          "createdAt": {
            "type": "string"
          },
          "keyId": {
            "type": "string"
          },
          "memberId": {
            "type": "string"
          },
          "role": {
            "type": "string"
          },
          "status": {
            "type": "string"
          }
        },
        "required": [
          "accessKeyId",
          "createdAt",
          "keyId",
          "memberId",
          "role",
          "status"
        ],
        "type": "object"
      }
    },
    "properties": {
      "keys": {
        "items": {
          "$ref": "#/definitions/OperatorAccessKey"
        },
        "type": "array"
      }
    },
    "required": [
      "keys"
    ],
    "title": "ListOperatorAccessKeysResponse",
    "type": "object"
  }
}
