Abstract
Protected
constructorOptional
prefix: stringReadonly
backendThe backend that is used to read and write configuration data.
Protected
forestThe forest model of the configuration keys and values.
Protected
Readonly
mapperOptional
Readonly
prefixAn optional prefix that is used to filter configuration keys that are read from the configuration source.
Abstract
nameThe name of the configuration source.
Abstract
ordinalThe ordinal of the configuration source.
Retrieves the value of the specified key from the configuration source and converts it to a boolean.
The key to use to retrieve the value from the configuration source.
The value of the specified key as a boolean.
Retrieves the value of the specified key from the configuration source and converts it to a number.
The key to use to retrieve the value from the configuration source.
The value of the specified key as a number.
Retrieves the value of the specified key from the configuration source and converts it an object of the specified type. If the key is not specified, the method returns the entire configuration as an object.
The class of the object to which the value should be converted.
Optional
key: stringThe key to use to retrieve the value from the configuration source.
The value of the specified key as a boolean.
Retrieves the value of the specified key from the configuration source and converts it to an array of objects of the specified type. If the key is not specified, the method returns the entire configuration as an array of objects.
The class of the objects to which the values should be converted.
The key to use to retrieve the values from the configuration source.
Retrieves the value of the specified key from the configuration source and converts it to a string.
The key to use to retrieve the value from the configuration source.
The value of the specified key as a string.
Retrieves the value of the specified key from the configuration source and converts it to a string array.
The key to use to retrieve the value from the configuration source.
The value of the specified key as a string array.
Abstract
loadLoads the configuration data from the configuration source.
Enumerates the key-value pairs that are available in the configuration source.
A map of key-value pairs that are available in the configuration source.
Enumerates the set of property names that are available in the configuration source.
A set of property names that are available in the configuration source.
A configuration source defines the methods for reading configuration data from a configuration source. ConfigSource instances provide read-only access to configuration data.
Represents a configuration file from a file system storage backend, the contents of the shell environment, the contents of a key within a configuration map, or the contents of a key with a secret.