Credentials
User credentials with an optionally encrypted password. To be encrypted, there needs to be an encryption key. Without one, the password is assumed not to be encrypted.
Notes
User credentials with an optionally encrypted password. To be encrypted, there needs to be an encryption key. Without one, the password is assumed not to be encrypted.
Usage
- YAML
- JSON
- XML
password: string
passwordKey:
size: 0
source: KEY
value: string
username: string
{
"password": "string",
"passwordKey": {
"size": 0,
"source": "KEY",
"value": "string"
},
"username": "string"
}
<credentials>
<password>string</password>
<passwordKey>
<size>0</size>
<source>KEY</source>
<value>string</value>
</passwordKey>
<username>string</username>
</credentials>
Properties
| Property | Type | Required | Default |
|---|---|---|---|
password | string | No | - |
passwordKey | EncryptionKey | No | - |
username | string | No | - |
Property Details
password
The credential password, optionally encrypted using an encryption key.
passwordKey
If your password is encrypted, provide details on the encryption key.
username
The credential user name.