Advertisement
fkeles

CREATE_CREDENTIAL_api-key.sql

May 17th, 2023 (edited)
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PL/SQL 0.33 KB | Source Code | 0 0
  1. BEGIN
  2.   DBMS_CLOUD.CREATE_CREDENTIAL (
  3.     credential_name  => 'CRED_USER_API_KEY',
  4.     user_ocid       => 'ocid1.user.oc1..<user-id>',
  5.     tenancy_ocid    => 'ocid1.tenancy.oc1..<tenancy-id>',
  6.     fingerprint     => '7a:bb:a0:7e:1e:c7:34:c6:57:55......',
  7.     private_key     => 'MIIEvQIBADANBgkqhkiG9H5C2gHmxeZXgJ...'
  8.   );
  9. END;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement