I've done some more research, and it looks like you are stuck with the beard in the letterbox as we say in Swedish.
I assume that your scenario is that you mistakenly created this temporal table in master and you want to drop it. But you can't drop a temporal table directly, you first need to disable system versioning. Unfortunately, this requires CONTROL permission, as discussed at https://learn.microsoft.com/en-us/sql/relational-databases/tables/temporal-table-security?view=sql-server-ver16#security-principles. And as we have concluded you only have ALTER and VIEW DEFINITION on the table.
As for why you only have these permissions despite you are server admin, this seems to be by design. I see the same thing on my Azure SQL Servers. For a normal table, it is not a problem, since to drop a table you only need ALTER permission.
I guess you will have to live with this table. If you absolutely want to get rid of it, you would have to open a support case, so that the support staff can delete the table from the backend.
Note that if you only have a developer-level support contract, the way you do that is by open a question here in Microsoft Q&A. But you should do this through the portal, so that the question gets labelled as a support issue. As I understand it, the support person who gets assigned to the case will then contact through private message to get the details needed to connect to your server.