Hello I've been struggling to find the correct URI format to communicate with MinIO server running in a container I'm just looking for the correct format of URI because i get
ORA-20006: Unsupported object store URI - https://play.min.io:9000 ORA-06512: at "C##CLOUD$SERVICE.DBMS_CLOUD", line 1278 ORA-06512: at "C##CLOUD$SERVICE.DBMS_CLOUD", line 5316 ORA-06512: at "ADMIN.AWS_LIST_BUCKETS", line 8
NB : im using https://play.min.io:9000 to test
CREATE OR REPLACE FUNCTION aws_list_buckets(
credential_name IN VARCHAR2,
region IN CLOB
) RETURN CLOB
AS
resp dbms_cloud_types.RESP;
BEGIN
resp := dbms_cloud.send_request(
credential_name,
uri => 'https://play.min.io:9000',
method => dbms_cloud.METHOD_GET
);
RETURN dbms_cloud.get_response_text(resp);
END aws_list_buckets;