We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6875579 commit 33632d5Copy full SHA for 33632d5
1 file changed
prismacloud/api/cwpp/_credentials.py
@@ -19,10 +19,10 @@ def credential_list_create(self, body):
19
20
def credential_list_delete(self, cred):
21
return self.execute_compute(
22
- 'DELETE', '/api/v1/credentials/%s' % urllib.parse.quote(cred)
+ 'DELETE', 'api/v1/credentials/%s' % urllib.parse.quote(cred)
23
)
24
25
def credential_list_usages_read(self, cred):
26
27
- 'GET', '/api/v1/credentials/%s/usages' % urllib.parse.quote(cred)
+ 'GET', 'api/v1/credentials/%s/usages' % urllib.parse.quote(cred)
28
0 commit comments