action linode_get_databases_my_sqlinstance_credentials { label: "Managed MySQL Database Credentials View" description: "Display the root username and password for an accessible Managed MySQL Database.\n\nThe Database must have an `active` status to perform this command.\n" provider: linode method: GET path: "/databases/mysql/instances/{instanceId}/credentials" encoding: json output: { type: "object" description: "Managed Database object for database credentials." properties: { password: { type: "string" description: "The randomly-generated root password for the Managed Database instance." } username: { type: "string" description: "The root username for the Managed Database instance." } } } }