File tree Expand file tree Collapse file tree 2 files changed +19
-0
lines changed
objects/src/main/scala/io/k8s/api/scheduling/v1alpha1
scalacheck/src/main/scala Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change 1+ package io .k8s .api .scheduling .v1alpha1
2+
3+ import dev .hnaderi .k8s .utils ._
4+
5+ /** BasicSchedulingPolicy indicates that standard Kubernetes scheduling behavior
6+ * should be used.
7+ */
8+ final case class BasicSchedulingPolicy ()
9+ object BasicSchedulingPolicy {
10+ implicit val encoder : Encoder [BasicSchedulingPolicy ] = Encoder .emptyObj
11+ implicit val decoder : Decoder [BasicSchedulingPolicy ] =
12+ Decoder .const(BasicSchedulingPolicy ())
13+ }
Original file line number Diff line number Diff line change @@ -93,6 +93,12 @@ private[scalacheck] trait PrimitiveGenerators { self: NonPrimitiveGenerators =>
9393 : Arbitrary [io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1 ] =
9494 Arbitrary (Gen .const(io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1 ()))
9595
96+ implicit lazy val arbitrary_io_k8s_api_scheduling_v1alpha1_BasicSchedulingPolicy
97+ : Arbitrary [io.k8s.api.scheduling.v1alpha1.BasicSchedulingPolicy ] =
98+ Arbitrary (
99+ Gen .const(io.k8s.api.scheduling.v1alpha1.BasicSchedulingPolicy ())
100+ )
101+
96102 private def genJSONSchemaPropsOrArray (
97103 jsp : JSONSchemaProps
98104 ): Gen [JSONSchemaPropsOrArray ] =
You can’t perform that action at this time.
0 commit comments