@@ -10,13 +10,11 @@ import io.fabric8.kubernetes.client.CustomResource
10
10
import io.fabric8.kubernetes.model.annotation.Group
11
11
import io.fabric8.kubernetes.model.annotation.Kind
12
12
import io.fabric8.kubernetes.model.annotation.Version
13
- import javax.annotation.Generated
14
13
15
14
/* *
16
15
* Builder is the Schema for the builders API
17
16
*/
18
17
@JsonInclude(JsonInclude .Include .NON_NULL )
19
- @Generated(" jsonschema2pojo" )
20
18
@Group(Constants .GROUP )
21
19
@Version(Constants .API_VERSION )
22
20
@Kind(" Builder" )
@@ -29,7 +27,6 @@ class BuilderList : DefaultKubernetesResourceList<Builder>()
29
27
*/
30
28
@JsonInclude(JsonInclude .Include .NON_NULL )
31
29
@JsonPropertyOrder(" base" )
32
- @Generated(" jsonschema2pojo" )
33
30
@JsonDeserialize(using = JsonDeserializer .None ::class )
34
31
class BuilderStatus : KubernetesResource {
35
32
@get:JsonProperty(" base" )
@@ -75,7 +72,6 @@ class BuilderStatus : KubernetesResource {
75
72
*/
76
73
@JsonInclude(JsonInclude .Include .NON_NULL )
77
74
@JsonPropertyOrder(" context" , " destination" , " dockerfilePath" , " pushSecretName" , " round" )
78
- @Generated(" jsonschema2pojo" )
79
75
@JsonDeserialize(using = JsonDeserializer .None ::class )
80
76
class BuilderSpec : KubernetesResource {
81
77
/* *
@@ -175,7 +171,6 @@ class BuilderSpec : KubernetesResource {
175
171
176
172
@JsonInclude(JsonInclude .Include .NON_NULL )
177
173
@JsonPropertyOrder(" git" , " raw" , " s3" )
178
- @Generated(" jsonschema2pojo" )
179
174
class BuilderContext {
180
175
@get:JsonProperty(" git" )
181
176
@set:JsonProperty(" git" )
@@ -237,7 +232,6 @@ class BuilderContext {
237
232
238
233
@JsonInclude(JsonInclude .Include .NON_NULL )
239
234
@JsonPropertyOrder(" endpoint" , " ref" , " scheme" , " userPassword" , " username" )
240
- @Generated(" jsonschema2pojo" )
241
235
class GitContext {
242
236
/* *
243
237
* (Required)
@@ -325,7 +319,6 @@ class GitContext {
325
319
return (endpoint == = rhs.endpoint || endpoint != null && endpoint == rhs.endpoint) && (ref == = rhs.ref || ref != null && ref == rhs.ref) && (userPassword == = rhs.userPassword || userPassword != null && userPassword == rhs.userPassword) && (scheme == rhs.scheme || scheme != null && scheme == rhs.scheme) && (username == = rhs.username || username != null && username == rhs.username)
326
320
}
327
321
328
- @Generated(" jsonschema2pojo" )
329
322
enum class Scheme (private val value : String ) {
330
323
HTTP (" http" ), HTTPS (" https" );
331
324
@@ -358,7 +351,6 @@ class GitContext {
358
351
359
352
@JsonInclude(JsonInclude .Include .NON_NULL )
360
353
@JsonPropertyOrder(" accessKeyID" , " accessSecretKey" , " bucket" , " endpoint" , " fileType" , " objectKey" , " region" , " scheme" )
361
- @Generated(" jsonschema2pojo" )
362
354
class S3Context {
363
355
/* *
364
356
* (Required)
@@ -508,7 +500,6 @@ class S3Context {
508
500
return (accessKeyID == = rhs.accessKeyID || accessKeyID != null && accessKeyID == rhs.accessKeyID) && (bucket == = rhs.bucket || bucket != null && bucket == rhs.bucket) && (endpoint == = rhs.endpoint || endpoint != null && endpoint == rhs.endpoint) && (scheme == rhs.scheme || scheme != null && scheme == rhs.scheme) && (objectKey == = rhs.objectKey || objectKey != null && objectKey == rhs.objectKey) && (accessSecretKey == = rhs.accessSecretKey || accessSecretKey != null && accessSecretKey == rhs.accessSecretKey) && (region == = rhs.region || region != null && region == rhs.region) && (fileType == rhs.fileType || fileType != null && fileType == rhs.fileType)
509
501
}
510
502
511
- @Generated(" jsonschema2pojo" )
512
503
enum class FileType (private val value : String ) {
513
504
TAR (" tar" ), TAR_GZ (" tar.gz" ), ZIP (" zip" ), RAR (" rar" ), DIR (" dir" );
514
505
@@ -538,7 +529,6 @@ class S3Context {
538
529
}
539
530
}
540
531
541
- @Generated(" jsonschema2pojo" )
542
532
enum class Scheme (private val value : String ) {
543
533
HTTP (" http" ), HTTPS (" https" );
544
534
0 commit comments