Skip to content

Commit

Permalink
Add new JDBC parameter (Azure#43837)
Browse files Browse the repository at this point in the history
  • Loading branch information
moarychan authored Jan 20, 2025
1 parent efbf6dd commit e72ccba
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 32 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -255,22 +255,23 @@ Connection connection=DriverManager.getConnection(url,properties);

## JDBC Parameters

| Parameter Key | Description|
|----------------------------------------|---|
| azure.clientId |Client ID to use when performing service principal authentication with Azure.|
| azure.clientSecret |Client secret to use when performing service principal authentication with Azure.|
| azure.clientCertificatePath |Path of a PEM/PFX certificate file to use when performing service principal authentication with Azure.|
| azure.clientCertificatePassword |Password of the certificate file.|
| azure.username |Username to use when performing username/password authentication with Azure.|
| azure.password |Password to use when performing username/password authentication with Azure.|
| azure.managedIdentityEnabled |Whether to enable managed identity to authenticate with Azure.|
| azure.authorityHost |The well known authority hosts for the Azure Public Cloud and sovereign clouds.|
| azure.tenantId |Tenant ID for Azure resources.|
| azure.claims |Claims for Azure resources.|
| azure.scopes |Scopes for Azure resources.|
| azure.accessTokenTimeoutInSeconds |Max time to get an access token.|
| azure.tokenCredentialProviderClassName |The canonical class name of a class that implements 'TokenCredentialProvider'.|
| azure.tokenCredentialBeanName |The given bean name of a TokenCredential bean in the Spring context.|
| Parameter Key | Description |
|----------------------------------------|--------------------------------------------------------------------------------------------------------|
| azure.clientId | Client ID to use when performing service principal authentication with Azure. |
| azure.clientSecret | Client secret to use when performing service principal authentication with Azure. |
| azure.clientCertificatePath | Path of a PEM/PFX certificate file to use when performing service principal authentication with Azure. |
| azure.clientCertificatePassword | Password of the certificate file. |
| azure.username | Username to use when performing username/password authentication with Azure. |
| azure.password | Password to use when performing username/password authentication with Azure. |
| azure.managedIdentityEnabled | Whether to enable managed identity to authenticate with Azure. |
| azure.authorityHost | The well known authority hosts for the Azure Public Cloud and sovereign clouds. |
| azure.tenantId | Tenant ID for Azure resources. |
| azure.claims | Claims for Azure resources. |
| azure.scopes | Scopes for Azure resources. |
| azure.accessTokenTimeoutInSeconds | Max time to get an access token. The default value is `30` seconds. |
| azure.tokenCredentialProviderClassName | The canonical class name of a class that implements 'TokenCredentialProvider'. |
| azure.tokenCredentialBeanName | The given bean name of a TokenCredential bean in the Spring context. |
| azure.tokenCredentialCacheEnabled | Whether to enable the token credential cache. Enabled by default. |

## Troubleshooting

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -257,22 +257,23 @@ Connection connection=DriverManager.getConnection(url,properties);

## JDBC Parameters

| Parameter Key | Description|
|----------------------------------------|---|
| azure.clientId |Client ID to use when performing service principal authentication with Azure.|
| azure.clientSecret |Client secret to use when performing service principal authentication with Azure.|
| azure.clientCertificatePath |Path of a PEM/PFX certificate file to use when performing service principal authentication with Azure.|
| azure.clientCertificatePassword |Password of the certificate file.|
| azure.username |Username to use when performing username/password authentication with Azure.|
| azure.password |Password to use when performing username/password authentication with Azure.|
| azure.managedIdentityEnabled |Whether to enable managed identity to authenticate with Azure.|
| azure.authorityHost |The well known authority hosts for the Azure Public Cloud and sovereign clouds.|
| azure.tenantId |Tenant ID for Azure resources.|
| azure.claims |Claims for Azure resources.|
| azure.scopes |Scopes for Azure resources.|
| azure.accessTokenTimeoutInSeconds |Max time to get an access token.|
| azure.tokenCredentialProviderClassName |The canonical class name of a class that implements 'TokenCredentialProvider'.|
| azure.tokenCredentialBeanName |The given bean name of a TokenCredential bean in the Spring context.|
| Parameter Key | Description |
|----------------------------------------|--------------------------------------------------------------------------------------------------------|
| azure.clientId | Client ID to use when performing service principal authentication with Azure. |
| azure.clientSecret | Client secret to use when performing service principal authentication with Azure. |
| azure.clientCertificatePath | Path of a PEM/PFX certificate file to use when performing service principal authentication with Azure. |
| azure.clientCertificatePassword | Password of the certificate file. |
| azure.username | Username to use when performing username/password authentication with Azure. |
| azure.password | Password to use when performing username/password authentication with Azure. |
| azure.managedIdentityEnabled | Whether to enable managed identity to authenticate with Azure. |
| azure.authorityHost | The well known authority hosts for the Azure Public Cloud and sovereign clouds. |
| azure.tenantId | Tenant ID for Azure resources. |
| azure.claims | Claims for Azure resources. |
| azure.scopes | Scopes for Azure resources. |
| azure.accessTokenTimeoutInSeconds | Max time to get an access token. The default value is `30` seconds. |
| azure.tokenCredentialProviderClassName | The canonical class name of a class that implements 'TokenCredentialProvider'. |
| azure.tokenCredentialBeanName | The given bean name of a TokenCredential bean in the Spring context. |
| azure.tokenCredentialCacheEnabled | Whether to enable the token credential cache. Enabled by default. |

## Troubleshooting

Expand Down

0 comments on commit e72ccba

Please sign in to comment.