{
  "name": "ListSecrets",
  "plane": "control",
  "terraformEligible": true,
  "protocol": {
    "kind": "cloudJson",
    "target": "CloudSecrets.ListSecrets",
    "service": "secrets"
  },
  "requestBody": "typed",
  "responseBody": "typed",
  "requestSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "additionalProperties": false,
    "properties": {
      "maxResults": {
        "default": null,
        "format": "uint32",
        "minimum": 0.0,
        "type": [
          "integer",
          "null"
        ]
      },
      "nextToken": {
        "default": null,
        "type": [
          "string",
          "null"
        ]
      }
    },
    "title": "ListSecretsRequest",
    "type": "object"
  },
  "responseSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "definitions": {
      "SecretListEntry": {
        "properties": {
          "arn": {
            "type": "string"
          },
          "lastChangedDate": {
            "format": "double",
            "type": "number"
          },
          "name": {
            "type": "string"
          }
        },
        "required": [
          "arn",
          "lastChangedDate",
          "name"
        ],
        "type": "object"
      }
    },
    "properties": {
      "nextToken": {
        "type": [
          "string",
          "null"
        ]
      },
      "secretList": {
        "items": {
          "$ref": "#/definitions/SecretListEntry"
        },
        "type": "array"
      }
    },
    "required": [
      "secretList"
    ],
    "title": "ListSecretsResponse",
    "type": "object"
  }
}
