Ingress
¶
An L7 ingress-point (HTTP)
data class Ingress(
val id: String,
val specification: IngressSpecification,
val owner: ResourceOwner,
val createdAt: Long,
val status: IngressStatus,
val updates: List<IngressUpdate>?,
val permissions: ResourcePermissions?,
val providerGeneratedId: String?,
)
Properties
id
: String
A unique identifier referencing the `Resource`
String
The ID is unique across a provider for a single resource type.
specification
: IngressSpecification
IngressSpecification
owner
: ResourceOwner
Information about the owner of this resource
ResourceOwner
createdAt
: Long
Information about when this resource was created
Long
status
: IngressStatus
The current status of this resource
IngressStatus
updates
: List<IngressUpdate>?
A list of updates for this `Ingress`
List<IngressUpdate>?
permissions
: ResourcePermissions?
Permissions assigned to this resource
ResourcePermissions?
A null value indicates that permissions are not supported by this resource type.
providerGeneratedId
: String?
String?