Property

data class Property(val micronautProperty: String, val environmentVariable: String)

Represents a micronaut property, which has a corresponding entry in micronaut's application.yml file, which is populated by an environment variable. Just a pair of the micronaut property name, and that corresponding env var name.

For example, this application.yaml:

airbyte:
destination:
foo-bar: ${FOO_BAR}

Would be represented as Property("airbyte.destination.foo-bar", "FOO_BAR").

Constructors

Link copied to clipboard
constructor(micronautProperty: String, environmentVariable: String)

Properties

Link copied to clipboard
Link copied to clipboard