Helper class that resolves SQL Server connection and credential parameters, validates them and generates a connection URI.
Inherits: IReferenceable, IConfigurable
Description
The SqlServerConnectionResolver class allows you to resolve SQL Server connection and credential parameters, validate these parameters, and generate a connection URI.
Important points
- It is able to process multiple connections to SQL Server cluster nodes.
Configuration parameters
connection(s):
- discovery_key: (optional) key to retrieve the connection from IDiscovery
- host: host name or IP address
- port: port number (default: 27017)
- database: database name
- uri: resource URI or connection string with all parameters in it
credential(s):
- store_key: (optional) key to retrieve the credentials from ICredentialStore
- username: username
- password: user’s password
References
- *:discovery:*:*:1.0 - (optional) IDiscovery services
- *:credential-store:*:*:1.0 - (optional) ICredentialStore stores to resolve credentials
Constructors
Creates a new instance of the connection component.
public
SqlServerConnectionResolver()
Fields
Instance methods
Configure
Configures the component by passing its configuration parameters.
public
void Configure(ConfigParams config)
- config: ConfigParams - configuration parameters to be set.
ResolveAsync
Resolves a SQL Server config from connection and credential parameters.
public
Task<string> ResolveAsync(IContext context)
- context: IContext - (optional) a context to trace execution through a call chain.
- returns: Task<string> - resolved connection config or raised error
SetReferences
Sets the references to dependent components.
public
void SetReferences(IReferences references)
- references: IReferences - references to locate the component’s dependencies.