action digitalocean_databases_list_options { label: "List Database Options" description: "To list all of the options available for the offered database engines, send a GET request to `/v2/databases/options`.\nThe result will be a JSON object with an `options` key." provider: digitalocean method: GET path: "/v2/databases/options" encoding: json output: { type: "object" properties: { options: { type: "object" properties: { mongodb: { type: "object" } mysql: { type: "object" } pg: { type: "object" } redis: { type: "object" } } } version_availability: { type: "object" properties: { mongodb: { type: "array" description: "An array of objects, each indicating the version end-of-life, end-of-availability for various database engines" items: { type: "object" properties: { end_of_availability: { type: "string" description: "A timestamp referring to the date when the particular version will no longer be available for creating new clusters. If null, the version does not have an end of availability timeline." } end_of_life: { type: "string" description: "A timestamp referring to the date when the particular version will no longer be supported. If null, the version does not have an end of life timeline." } version: { type: "string" description: "The engine version." } } } } mysql: { type: "array" description: "An array of objects, each indicating the version end-of-life, end-of-availability for various database engines" items: { type: "object" properties: { end_of_availability: { type: "string" description: "A timestamp referring to the date when the particular version will no longer be available for creating new clusters. If null, the version does not have an end of availability timeline." } end_of_life: { type: "string" description: "A timestamp referring to the date when the particular version will no longer be supported. If null, the version does not have an end of life timeline." } version: { type: "string" description: "The engine version." } } } } pg: { type: "array" description: "An array of objects, each indicating the version end-of-life, end-of-availability for various database engines" items: { type: "object" properties: { end_of_availability: { type: "string" description: "A timestamp referring to the date when the particular version will no longer be available for creating new clusters. If null, the version does not have an end of availability timeline." } end_of_life: { type: "string" description: "A timestamp referring to the date when the particular version will no longer be supported. If null, the version does not have an end of life timeline." } version: { type: "string" description: "The engine version." } } } } redis: { type: "array" description: "An array of objects, each indicating the version end-of-life, end-of-availability for various database engines" items: { type: "object" properties: { end_of_availability: { type: "string" description: "A timestamp referring to the date when the particular version will no longer be available for creating new clusters. If null, the version does not have an end of availability timeline." } end_of_life: { type: "string" description: "A timestamp referring to the date when the particular version will no longer be supported. If null, the version does not have an end of life timeline." } version: { type: "string" description: "The engine version." } } } } } } } } }