action linode_get_databases_mongo_dbinstance_backup { label: "Managed MongoDB Database Backup View" description: "Display information for a single backup for an accessible Managed MongoDB Database.\n\nThe Database must not be provisioning to perform this command.\n\n**Note**: New MongoDB Databases cannot currently be created.\n" provider: linode method: GET path: "/databases/mongodb/instances/{instanceId}/backups/{backupId}" encoding: json output: { type: "object" description: "A database backup object." properties: { created: { type: "string" format: "datetime" description: "A time value given in a combined date and time format that represents when the database backup was created." } id: { type: "integer" description: "The ID of the database backup object." } label: { type: "string" description: "The database backup's label, for display purposes only.\n\nMust include only ASCII letters or numbers.\n" } type: { type: "string" description: "The type of database backup, determined by how the backup was created." enum: ["snapshot", "auto"] } } } }