framework/entry

Entry declarations; deployment values are resolved by the adapter.

Types

pub type Admit {
  Anonymous
  Authenticated
}

Constructors

  • Anonymous
  • Authenticated
pub type Entry(subject, host) {
  Http(
    name: String,
    hosts: List(host),
    admit: Admit,
    subject: Subjects(subject),
    services: Services,
  )
}

Constructors

pub type Services {
  ReadOnly
  All
}

Constructors

  • ReadOnly
  • All
pub type Subjects(subject) {
  Subjects(List(subject))
  AnySubject
}

Constructors

  • Subjects(List(subject))
  • AnySubject
Search Document