GetParametersByPathPlainArgs

data class GetParametersByPathPlainArgs(val path: String, val recursive: Boolean? = null, val withDecryption: Boolean? = null) : ConvertibleToJava<GetParametersByPathPlainArgs>

A collection of arguments for invoking getParametersByPath.

Constructors

Link copied to clipboard
constructor(path: String, recursive: Boolean? = null, withDecryption: Boolean? = null)

Properties

Link copied to clipboard

The hierarchy for the parameter. Hierarchies start with a forward slash (/). The hierarchy is the parameter name except the last part of the parameter. The last part of the parameter name can't be in the path. A parameter name hierarchy can have a maximum of 15 levels. Note: If the parameter name (e.g., /my-app/my-param) is specified, the data source will not retrieve any value as designed, unless there are other parameters that happen to use the former path in their hierarchy (e.g., /my-app/my-param/my-actual-param).

Link copied to clipboard
val recursive: Boolean? = null

Whether to retrieve all parameters within the hirerachy. Defaults to false.

Link copied to clipboard
val withDecryption: Boolean? = null

Whether to retrieve all parameters in the hierarchy, particularly those of SecureString type, with their value decrypted. Defaults to true.

Functions

Link copied to clipboard
open override fun toJava(): GetParametersByPathPlainArgs