shared_credentials
Shared credentials management for managing credentials that are stored in the shared .credentials folder in the DQOps user's home folder.
create_shared_credential
Creates (adds) a new shared credential, which creates a file in the DQOps user's home .credentials/ folder named as the credential and with the content that is provided in this call.
Source code
POST
Request body
Description | Data type | Required |
---|---|---|
Shared credential model | SharedCredentialModel |
Usage examples
delete_shared_credential
Deletes a shared credential file from the DQOps user's home .credentials/ folder.
Source code
DELETE
Parameters of this method are described below
Property name | Description | Data type | Required |
---|---|---|---|
credential_name | Full shared credential name | string |
Usage examples
download_shared_credential
Downloads a shared credential's file
Source code
GET
Parameters of this method are described below
Property name | Description | Data type | Required |
---|---|---|---|
credential_name | Shared credential file name | string |
Usage examples
get_all_shared_credentials
Returns a list of all shared credentials that are present in the DQOps user's home .credentials/ folder..
Source code
GET
Return value
Property name | Description | Data type |
---|---|---|
shared_credential_list_model | List[SharedCredentialListModel] |
Usage examples
get_shared_credential
Returns a shared credential content
Source code
GET
Return value
Property name | Description | Data type |
---|---|---|
shared_credential_model | SharedCredentialModel |
Parameters of this method are described below
Property name | Description | Data type | Required |
---|---|---|---|
credential_name | Shared credential file name | string |
Usage examples
update_shared_credential
Updates an existing shared credential, replacing the credential's file content.
Source code
PUT
Parameters of this method are described below
Property name | Description | Data type | Required |
---|---|---|---|
credential_name | Credential file name that will be updated | string |
Request body
Description | Data type | Required |
---|---|---|
Shared credential model | SharedCredentialModel |
Usage examples