case class FlowSchema(metadata: Optional[ObjectMeta] = Optional.Absent, spec: Optional[FlowSchemaSpec] = Optional.Absent, status: Optional[FlowSchemaStatus] = Optional.Absent) extends Product with Serializable
FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with similar attributes and is identified by a pair of strings: the name of the FlowSchema and a "flow distinguisher".
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- FlowSchema
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new FlowSchema(metadata: Optional[ObjectMeta] = Optional.Absent, spec: Optional[FlowSchemaSpec] = Optional.Absent, status: Optional[FlowSchemaStatus] = Optional.Absent)
Value Members
-
def
getMetadata: IO[K8sFailure, ObjectMeta]
Gets metadata.
Gets metadata.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getSpec: IO[K8sFailure, FlowSchemaSpec]
Gets spec.
Gets spec.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getStatus: IO[K8sFailure, FlowSchemaStatus]
Gets status.
Gets status.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
- val metadata: Optional[ObjectMeta]
- val spec: Optional[FlowSchemaSpec]
- val status: Optional[FlowSchemaStatus]