diff --git a/Makefile b/Makefile
index 6f0e7ca73d3..b4d7933c0a4 100644
--- a/Makefile
+++ b/Makefile
@@ -45,6 +45,8 @@ openapi-generate-java-classes:
cd extensions && mvn $(MAVEN_ARGS) -N clean install
cd extensions/knative && mvn $(MAVEN_ARGS) -N clean install
cd extensions/knative/model && mvn $(MAVEN_ARGS) -Pgenerate clean install
+ cd extensions/tekton && mvn $(MAVEN_ARGS) -N clean install
+ cd extensions/tekton/model && mvn $(MAVEN_ARGS) -Pgenerate clean install
cd extensions/volcano && mvn $(MAVEN_ARGS) -N clean install
cd extensions/volcano/model && mvn $(MAVEN_ARGS) -Pgenerate clean install
cd extensions/volumesnapshot && mvn $(MAVEN_ARGS) -N clean install
diff --git a/doc/MIGRATION-v7.md b/doc/MIGRATION-v7.md
index f626885635a..9781cfdee18 100644
--- a/doc/MIGRATION-v7.md
+++ b/doc/MIGRATION-v7.md
@@ -11,6 +11,7 @@
- [Removed deprecated types for network.openshift.io (OpenShift-SDN-only)](#openshift-network-removed)
- [Renamed clusterautoscaling to autoscaling](#openshift-clusterautoscaling-to-autoscaling)
- [Renamed machineconfig to machineconfiguration](#openshift-machineconfig-to-machineconfiguration)
+ - [Tekton Extension](#tekton-extension)
- [Deprecations and Removals](#deprecations-and-removals)
- [Service Catalog API (extension) removed](#service-catalog-extension)
@@ -103,6 +104,27 @@ The package has also been renamed from `io.fabric8.openshift.api.model.machineco
The OpenShiftClient DSL entry-point remains the same: `OpenShiftClient.machineConfigurations()`.
+### Tekton Extension
+
+All the model modules for the Tekton extension have been merged into a single module `io.fabric8:tekton-model`.
+
+The following packages have been moved:
+
+| Old Package | New Package |
+|--------------------------------------------------------------------------|----------------------------------------------|
+| `io.fabric8.tekton.pipeline.v1` | `io.fabric8.tekton.v1` |
+| `io.fabric8.tekton.pipeline.v1alpha1` | `io.fabric8.tekton.v1alpha1` |
+| `io.fabric8.tekton.pipeline.v1beta1` | `io.fabric8.tekton.v1beta1` |
+| `io.fabric8.tekton.v1.internal.pipeline.pkg.apis.config` | `io.fabric8.tekton.pipeline.pkg.apis.config` |
+| `io.fabric8.tekton.v1.internal.pipeline.pkg.apis.pipeline.pod` | `io.fabric8.tekton.pod` |
+| `io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.pod` | `io.fabric8.tekton.pod` |
+| `io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1beta1` | `io.fabric8.tekton.v1beta1` |
+| `io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.config` | `io.fabric8.tekton.pipeline.pkg.apis.config` |
+| `io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.pipeline.pod` | `io.fabric8.tekton.pod` |
+| `io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.resource.v1alpha1` | `io.fabric8.tekton.v1alpha1` |
+| `io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.run.v1beta1` | `io.fabric8.tekton.v1beta1` |
+| `io.fabric8.tekton.v1beta1.internal.pipeline.pkg.result` | `io.fabric8.tekton.pipeline.pkg.result` |
+
## Deprecations and Removals
### Service Catalog API (extension) removed
diff --git a/extensions/knative/model/pom.xml b/extensions/knative/model/pom.xml
index 5b50b60fad5..635eb790d6c 100644
--- a/extensions/knative/model/pom.xml
+++ b/extensions/knative/model/pom.xml
@@ -42,19 +42,6 @@
-
- io.sundr
- builder-annotations
- provided
-
-
- io.sundr
- transform-annotations
-
-
- io.sundr
- sundr-codegen-velocity-nodeps
-
io.fabric8
kubernetes-model-core
@@ -63,20 +50,11 @@
io.fabric8
kubernetes-model-batch
-
- org.junit.jupiter
- junit-jupiter-engine
- test
-
org.assertj
assertj-core
test
-
- org.projectlombok
- lombok
-
diff --git a/extensions/tekton/client/pom.xml b/extensions/tekton/client/pom.xml
index 3119a4b349d..6cde6af8ee5 100644
--- a/extensions/tekton/client/pom.xml
+++ b/extensions/tekton/client/pom.xml
@@ -52,34 +52,9 @@
-
- io.sundr
- builder-annotations
- provided
-
-
- io.sundr
- transform-annotations
-
-
- io.fabric8
- tekton-model-v1
-
-
- io.fabric8
- tekton-model-v1alpha1
-
-
- io.fabric8
- tekton-model-v1beta1
-
-
- io.fabric8
- tekton-model-triggers-v1alpha1
-
io.fabric8
- tekton-model-triggers-v1beta1
+ tekton-model
io.fabric8
diff --git a/extensions/tekton/client/src/main/java/io/fabric8/tekton/client/V1APIGroupClient.java b/extensions/tekton/client/src/main/java/io/fabric8/tekton/client/V1APIGroupClient.java
index f0d25a10b5d..1b221473daf 100644
--- a/extensions/tekton/client/src/main/java/io/fabric8/tekton/client/V1APIGroupClient.java
+++ b/extensions/tekton/client/src/main/java/io/fabric8/tekton/client/V1APIGroupClient.java
@@ -19,14 +19,14 @@
import io.fabric8.kubernetes.client.dsl.Resource;
import io.fabric8.kubernetes.client.extension.ClientAdapter;
import io.fabric8.tekton.client.dsl.V1APIGroupDSL;
-import io.fabric8.tekton.pipeline.v1.Pipeline;
-import io.fabric8.tekton.pipeline.v1.PipelineList;
-import io.fabric8.tekton.pipeline.v1.PipelineRun;
-import io.fabric8.tekton.pipeline.v1.PipelineRunList;
-import io.fabric8.tekton.pipeline.v1.Task;
-import io.fabric8.tekton.pipeline.v1.TaskList;
-import io.fabric8.tekton.pipeline.v1.TaskRun;
-import io.fabric8.tekton.pipeline.v1.TaskRunList;
+import io.fabric8.tekton.v1.Pipeline;
+import io.fabric8.tekton.v1.PipelineList;
+import io.fabric8.tekton.v1.PipelineRun;
+import io.fabric8.tekton.v1.PipelineRunList;
+import io.fabric8.tekton.v1.Task;
+import io.fabric8.tekton.v1.TaskList;
+import io.fabric8.tekton.v1.TaskRun;
+import io.fabric8.tekton.v1.TaskRunList;
public class V1APIGroupClient extends ClientAdapter implements V1APIGroupDSL {
diff --git a/extensions/tekton/client/src/main/java/io/fabric8/tekton/client/V1beta1APIGroupClient.java b/extensions/tekton/client/src/main/java/io/fabric8/tekton/client/V1beta1APIGroupClient.java
index a15e1761735..82f6c6e6dc1 100644
--- a/extensions/tekton/client/src/main/java/io/fabric8/tekton/client/V1beta1APIGroupClient.java
+++ b/extensions/tekton/client/src/main/java/io/fabric8/tekton/client/V1beta1APIGroupClient.java
@@ -20,18 +20,6 @@
import io.fabric8.kubernetes.client.dsl.Resource;
import io.fabric8.kubernetes.client.extension.ClientAdapter;
import io.fabric8.tekton.client.dsl.V1beta1APIGroupDSL;
-import io.fabric8.tekton.pipeline.v1beta1.ClusterTask;
-import io.fabric8.tekton.pipeline.v1beta1.ClusterTaskList;
-import io.fabric8.tekton.pipeline.v1beta1.CustomRun;
-import io.fabric8.tekton.pipeline.v1beta1.CustomRunList;
-import io.fabric8.tekton.pipeline.v1beta1.Pipeline;
-import io.fabric8.tekton.pipeline.v1beta1.PipelineList;
-import io.fabric8.tekton.pipeline.v1beta1.PipelineRun;
-import io.fabric8.tekton.pipeline.v1beta1.PipelineRunList;
-import io.fabric8.tekton.pipeline.v1beta1.Task;
-import io.fabric8.tekton.pipeline.v1beta1.TaskList;
-import io.fabric8.tekton.pipeline.v1beta1.TaskRun;
-import io.fabric8.tekton.pipeline.v1beta1.TaskRunList;
import io.fabric8.tekton.resolution.v1beta1.ResolutionRequest;
import io.fabric8.tekton.resolution.v1beta1.ResolutionRequestList;
import io.fabric8.tekton.triggers.v1beta1.ClusterTriggerBinding;
@@ -44,6 +32,18 @@
import io.fabric8.tekton.triggers.v1beta1.TriggerList;
import io.fabric8.tekton.triggers.v1beta1.TriggerTemplate;
import io.fabric8.tekton.triggers.v1beta1.TriggerTemplateList;
+import io.fabric8.tekton.v1beta1.ClusterTask;
+import io.fabric8.tekton.v1beta1.ClusterTaskList;
+import io.fabric8.tekton.v1beta1.CustomRun;
+import io.fabric8.tekton.v1beta1.CustomRunList;
+import io.fabric8.tekton.v1beta1.Pipeline;
+import io.fabric8.tekton.v1beta1.PipelineList;
+import io.fabric8.tekton.v1beta1.PipelineRun;
+import io.fabric8.tekton.v1beta1.PipelineRunList;
+import io.fabric8.tekton.v1beta1.Task;
+import io.fabric8.tekton.v1beta1.TaskList;
+import io.fabric8.tekton.v1beta1.TaskRun;
+import io.fabric8.tekton.v1beta1.TaskRunList;
public class V1beta1APIGroupClient extends ClientAdapter implements V1beta1APIGroupDSL {
diff --git a/extensions/tekton/client/src/main/java/io/fabric8/tekton/client/dsl/V1APIGroupDSL.java b/extensions/tekton/client/src/main/java/io/fabric8/tekton/client/dsl/V1APIGroupDSL.java
index c10bfc3f1ee..9ed09cca020 100644
--- a/extensions/tekton/client/src/main/java/io/fabric8/tekton/client/dsl/V1APIGroupDSL.java
+++ b/extensions/tekton/client/src/main/java/io/fabric8/tekton/client/dsl/V1APIGroupDSL.java
@@ -18,14 +18,14 @@
import io.fabric8.kubernetes.client.Client;
import io.fabric8.kubernetes.client.dsl.MixedOperation;
import io.fabric8.kubernetes.client.dsl.Resource;
-import io.fabric8.tekton.pipeline.v1.Pipeline;
-import io.fabric8.tekton.pipeline.v1.PipelineList;
-import io.fabric8.tekton.pipeline.v1.PipelineRun;
-import io.fabric8.tekton.pipeline.v1.PipelineRunList;
-import io.fabric8.tekton.pipeline.v1.Task;
-import io.fabric8.tekton.pipeline.v1.TaskList;
-import io.fabric8.tekton.pipeline.v1.TaskRun;
-import io.fabric8.tekton.pipeline.v1.TaskRunList;
+import io.fabric8.tekton.v1.Pipeline;
+import io.fabric8.tekton.v1.PipelineList;
+import io.fabric8.tekton.v1.PipelineRun;
+import io.fabric8.tekton.v1.PipelineRunList;
+import io.fabric8.tekton.v1.Task;
+import io.fabric8.tekton.v1.TaskList;
+import io.fabric8.tekton.v1.TaskRun;
+import io.fabric8.tekton.v1.TaskRunList;
public interface V1APIGroupDSL extends Client {
/**
diff --git a/extensions/tekton/client/src/main/java/io/fabric8/tekton/client/dsl/V1beta1APIGroupDSL.java b/extensions/tekton/client/src/main/java/io/fabric8/tekton/client/dsl/V1beta1APIGroupDSL.java
index 3334be2a678..f7134190e7d 100644
--- a/extensions/tekton/client/src/main/java/io/fabric8/tekton/client/dsl/V1beta1APIGroupDSL.java
+++ b/extensions/tekton/client/src/main/java/io/fabric8/tekton/client/dsl/V1beta1APIGroupDSL.java
@@ -19,18 +19,6 @@
import io.fabric8.kubernetes.client.dsl.MixedOperation;
import io.fabric8.kubernetes.client.dsl.NonNamespaceOperation;
import io.fabric8.kubernetes.client.dsl.Resource;
-import io.fabric8.tekton.pipeline.v1beta1.ClusterTask;
-import io.fabric8.tekton.pipeline.v1beta1.ClusterTaskList;
-import io.fabric8.tekton.pipeline.v1beta1.CustomRun;
-import io.fabric8.tekton.pipeline.v1beta1.CustomRunList;
-import io.fabric8.tekton.pipeline.v1beta1.Pipeline;
-import io.fabric8.tekton.pipeline.v1beta1.PipelineList;
-import io.fabric8.tekton.pipeline.v1beta1.PipelineRun;
-import io.fabric8.tekton.pipeline.v1beta1.PipelineRunList;
-import io.fabric8.tekton.pipeline.v1beta1.Task;
-import io.fabric8.tekton.pipeline.v1beta1.TaskList;
-import io.fabric8.tekton.pipeline.v1beta1.TaskRun;
-import io.fabric8.tekton.pipeline.v1beta1.TaskRunList;
import io.fabric8.tekton.resolution.v1beta1.ResolutionRequest;
import io.fabric8.tekton.resolution.v1beta1.ResolutionRequestList;
import io.fabric8.tekton.triggers.v1beta1.ClusterTriggerBinding;
@@ -43,6 +31,18 @@
import io.fabric8.tekton.triggers.v1beta1.TriggerList;
import io.fabric8.tekton.triggers.v1beta1.TriggerTemplate;
import io.fabric8.tekton.triggers.v1beta1.TriggerTemplateList;
+import io.fabric8.tekton.v1beta1.ClusterTask;
+import io.fabric8.tekton.v1beta1.ClusterTaskList;
+import io.fabric8.tekton.v1beta1.CustomRun;
+import io.fabric8.tekton.v1beta1.CustomRunList;
+import io.fabric8.tekton.v1beta1.Pipeline;
+import io.fabric8.tekton.v1beta1.PipelineList;
+import io.fabric8.tekton.v1beta1.PipelineRun;
+import io.fabric8.tekton.v1beta1.PipelineRunList;
+import io.fabric8.tekton.v1beta1.Task;
+import io.fabric8.tekton.v1beta1.TaskList;
+import io.fabric8.tekton.v1beta1.TaskRun;
+import io.fabric8.tekton.v1beta1.TaskRunList;
public interface V1beta1APIGroupDSL extends Client {
/**
diff --git a/extensions/tekton/examples/src/main/java/io/fabric8/tekton/api/examples/TaskCreate.java b/extensions/tekton/examples/src/main/java/io/fabric8/tekton/api/examples/TaskCreate.java
index 73f2c0225c1..f487e43b097 100644
--- a/extensions/tekton/examples/src/main/java/io/fabric8/tekton/api/examples/TaskCreate.java
+++ b/extensions/tekton/examples/src/main/java/io/fabric8/tekton/api/examples/TaskCreate.java
@@ -17,9 +17,9 @@
import io.fabric8.tekton.client.DefaultTektonClient;
import io.fabric8.tekton.client.TektonClient;
-import io.fabric8.tekton.pipeline.v1beta1.Task;
-import io.fabric8.tekton.pipeline.v1beta1.TaskBuilder;
-import io.fabric8.tekton.pipeline.v1beta1.TaskList;
+import io.fabric8.tekton.v1beta1.Task;
+import io.fabric8.tekton.v1beta1.TaskBuilder;
+import io.fabric8.tekton.v1beta1.TaskList;
public class TaskCreate {
public static void main(String[] args) {
diff --git a/extensions/tekton/examples/src/main/java/io/fabric8/tekton/api/examples/TaskRunCancel.java b/extensions/tekton/examples/src/main/java/io/fabric8/tekton/api/examples/TaskRunCancel.java
index 11cfca0a86b..5fca364ef6c 100644
--- a/extensions/tekton/examples/src/main/java/io/fabric8/tekton/api/examples/TaskRunCancel.java
+++ b/extensions/tekton/examples/src/main/java/io/fabric8/tekton/api/examples/TaskRunCancel.java
@@ -18,7 +18,7 @@
import io.fabric8.knative.pkg.apis.Condition;
import io.fabric8.tekton.client.DefaultTektonClient;
import io.fabric8.tekton.client.TektonClient;
-import io.fabric8.tekton.pipeline.v1.TaskRun;
+import io.fabric8.tekton.v1.TaskRun;
import java.util.ArrayList;
import java.util.List;
diff --git a/extensions/tekton/examples/src/main/java/io/fabric8/tekton/api/examples/TaskRunCreate.java b/extensions/tekton/examples/src/main/java/io/fabric8/tekton/api/examples/TaskRunCreate.java
index 8f47dd03f49..58ee3ad8b7d 100644
--- a/extensions/tekton/examples/src/main/java/io/fabric8/tekton/api/examples/TaskRunCreate.java
+++ b/extensions/tekton/examples/src/main/java/io/fabric8/tekton/api/examples/TaskRunCreate.java
@@ -17,12 +17,12 @@
import io.fabric8.tekton.client.DefaultTektonClient;
import io.fabric8.tekton.client.TektonClient;
-import io.fabric8.tekton.pipeline.v1.StepBuilder;
-import io.fabric8.tekton.pipeline.v1.Task;
-import io.fabric8.tekton.pipeline.v1.TaskBuilder;
-import io.fabric8.tekton.pipeline.v1.TaskRun;
-import io.fabric8.tekton.pipeline.v1.TaskRunBuilder;
-import io.fabric8.tekton.pipeline.v1.TaskRunList;
+import io.fabric8.tekton.v1.StepBuilder;
+import io.fabric8.tekton.v1.Task;
+import io.fabric8.tekton.v1.TaskBuilder;
+import io.fabric8.tekton.v1.TaskRun;
+import io.fabric8.tekton.v1.TaskRunBuilder;
+import io.fabric8.tekton.v1.TaskRunList;
import static io.fabric8.kubernetes.client.utils.Utils.generateId;
diff --git a/extensions/tekton/examples/src/main/java/io/fabric8/tekton/api/examples/v1beta1/TaskRunCreate.java b/extensions/tekton/examples/src/main/java/io/fabric8/tekton/api/examples/v1beta1/TaskRunCreate.java
index 77a6d25e5b8..b7d6e29f8b0 100644
--- a/extensions/tekton/examples/src/main/java/io/fabric8/tekton/api/examples/v1beta1/TaskRunCreate.java
+++ b/extensions/tekton/examples/src/main/java/io/fabric8/tekton/api/examples/v1beta1/TaskRunCreate.java
@@ -17,9 +17,9 @@
import io.fabric8.tekton.client.DefaultTektonClient;
import io.fabric8.tekton.client.TektonClient;
-import io.fabric8.tekton.pipeline.v1beta1.TaskRun;
-import io.fabric8.tekton.pipeline.v1beta1.TaskRunBuilder;
-import io.fabric8.tekton.pipeline.v1beta1.TaskRunList;
+import io.fabric8.tekton.v1beta1.TaskRun;
+import io.fabric8.tekton.v1beta1.TaskRunBuilder;
+import io.fabric8.tekton.v1beta1.TaskRunList;
public class TaskRunCreate {
public static void main(String[] args) {
diff --git a/extensions/tekton/generator-triggers/Makefile b/extensions/tekton/generator-triggers/Makefile
deleted file mode 100755
index 81d4641d2ac..00000000000
--- a/extensions/tekton/generator-triggers/Makefile
+++ /dev/null
@@ -1,27 +0,0 @@
-#
-# Copyright (C) 2015 Red Hat, Inc.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-SHELL := /bin/bash
-
-all: build
-
-build: gobuild
- mvn -f ../model-triggers-v1alpha1/pom.xml -Pgenerate clean install -DskipTests -o
- mvn -f ../model-triggers-v1beta1/pom.xml -Pgenerate clean install -DskipTests -o
-
-gobuild:
- go run ./cmd/generate/generate-v1alpha1.go > ../model-triggers-v1alpha1/src/main/resources/schema/tekton-schema-triggers.json
- go run ./cmd/generate/generate-v1beta1.go > ../model-triggers-v1beta1/src/main/resources/schema/tekton-schema-triggers.json
diff --git a/extensions/tekton/generator-triggers/cmd/generate/generate-v1alpha1.go b/extensions/tekton/generator-triggers/cmd/generate/generate-v1alpha1.go
deleted file mode 100644
index 3e5dbcceab7..00000000000
--- a/extensions/tekton/generator-triggers/cmd/generate/generate-v1alpha1.go
+++ /dev/null
@@ -1,85 +0,0 @@
-/**
- * Copyright (C) 2015 Red Hat, Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package main
-
-import (
- "fmt"
- "github.com/fabric8io/kubernetes-client/generator/pkg/schemagen"
- triggers "github.com/tektoncd/triggers/pkg/apis/triggers/v1alpha1"
- v1apiextensions "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
- machinery "k8s.io/apimachinery/pkg/apis/meta/v1"
- "knative.dev/pkg/apis"
- "reflect"
-)
-
-func main() {
-
- // the CRD List types for which the model should be generated
- // no other types need to be defined as they are auto discovered
- crdLists := map[reflect.Type]schemagen.CrdScope{
- reflect.TypeOf(triggers.TriggerList{}): schemagen.Namespaced,
- reflect.TypeOf(triggers.TriggerTemplateList{}): schemagen.Namespaced,
- reflect.TypeOf(triggers.TriggerBindingList{}): schemagen.Namespaced,
- reflect.TypeOf(triggers.EventListenerList{}): schemagen.Namespaced,
- reflect.TypeOf(triggers.InterceptorList{}): schemagen.Namespaced,
- reflect.TypeOf(triggers.ClusterTriggerBindingList{}): schemagen.Cluster,
- reflect.TypeOf(triggers.ClusterInterceptorList{}): schemagen.Cluster,
- }
-
- // constraints and patterns for fields
- constraints := map[reflect.Type]map[string]*schemagen.Constraint{}
-
- // types that are manually defined in the model
- providedTypes := []schemagen.ProvidedType{}
-
- // go packages that are provided and where no generation is required and their corresponding java package
- providedPackages := map[string]string{
- // external
- "k8s.io/api/core/v1": "io.fabric8.kubernetes.api.model",
- "k8s.io/apimachinery/pkg/apis/meta/v1": "io.fabric8.kubernetes.api.model",
- "github.com/tektoncd/pipeline/pkg/apis/pipeline/v1beta1": "io.fabric8.tekton.pipeline.v1beta1",
- "knative.dev/pkg/apis/duck/v1": "io.fabric8.knative.duck.v1",
- "knative.dev/pkg/apis/duck/v1alpha1": "io.fabric8.knative.duck.v1alpha1",
- "knative.dev/pkg/apis/duck/v1beta1": "io.fabric8.knative.duck.v1beta1",
- "knative.dev/pkg/apis": "io.fabric8.knative.pkg.apis",
- }
-
- // mapping of go packages of this module to the resulting java package
- // optional ApiGroup and ApiVersion for the go package (which is added to the generated java class)
- packageMapping := map[string]schemagen.PackageInformation{
- "github.com/tektoncd/triggers/pkg/apis/triggers/v1alpha1": {JavaPackage: "io.fabric8.tekton.triggers.v1alpha1", ApiGroup: "triggers.tekton.dev", ApiVersion: "v1alpha1"},
- }
-
- // converts all packages starting with to a java package using an automated scheme:
- // - replace with aka "package prefix"
- // - replace '/' with '.' for a valid java package name
- // e.g. github.com/tektoncd/pipeline/pkg/apis/pipeline/pod/Template is mapped to "io.fabric8.tekton.internal.pipeline.pkg.apis.pipeline.pod.Template"
- mappingSchema := map[string]string{}
-
- // overwriting some types
- manualTypeMap := map[reflect.Type]string{
- reflect.TypeOf(machinery.Time{}): "java.lang.String",
- reflect.TypeOf(apis.VolatileTime{}): "java.lang.String",
- reflect.TypeOf(apis.URL{}): "java.lang.String",
- reflect.TypeOf(triggers.TriggerResourceTemplate{}): "io.fabric8.kubernetes.api.model.HasMetadata",
- reflect.TypeOf(triggers.CustomResource{}): "io.fabric8.kubernetes.api.model.HasMetadata",
- reflect.TypeOf(v1apiextensions.JSON{}): "java.lang.Object",
- }
-
- json := schemagen.GenerateSchema("http://fabric8.io/tekton/triggers/TektonSchema#", crdLists, providedPackages, manualTypeMap, packageMapping, mappingSchema, providedTypes, constraints, "io.fabric8")
-
- fmt.Println(json)
-}
diff --git a/extensions/tekton/generator-triggers/cmd/generate/generate-v1beta1.go b/extensions/tekton/generator-triggers/cmd/generate/generate-v1beta1.go
deleted file mode 100644
index 139f391a920..00000000000
--- a/extensions/tekton/generator-triggers/cmd/generate/generate-v1beta1.go
+++ /dev/null
@@ -1,83 +0,0 @@
-/**
- * Copyright (C) 2015 Red Hat, Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package main
-
-import (
- "fmt"
- "github.com/fabric8io/kubernetes-client/generator/pkg/schemagen"
- triggers "github.com/tektoncd/triggers/pkg/apis/triggers/v1beta1"
- v1apiextensions "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
- machinery "k8s.io/apimachinery/pkg/apis/meta/v1"
- "knative.dev/pkg/apis"
- "reflect"
-)
-
-func main() {
-
- // the CRD List types for which the model should be generated
- // no other types need to be defined as they are auto discovered
- crdLists := map[reflect.Type]schemagen.CrdScope{
- reflect.TypeOf(triggers.TriggerList{}): schemagen.Namespaced,
- reflect.TypeOf(triggers.TriggerTemplateList{}): schemagen.Namespaced,
- reflect.TypeOf(triggers.TriggerBindingList{}): schemagen.Namespaced,
- reflect.TypeOf(triggers.EventListenerList{}): schemagen.Namespaced,
- reflect.TypeOf(triggers.ClusterTriggerBindingList{}): schemagen.Cluster,
- }
-
- // constraints and patterns for fields
- constraints := map[reflect.Type]map[string]*schemagen.Constraint{}
-
- // types that are manually defined in the model
- providedTypes := []schemagen.ProvidedType{}
-
- // go packages that are provided and where no generation is required and their corresponding java package
- providedPackages := map[string]string{
- // external
- "k8s.io/api/core/v1": "io.fabric8.kubernetes.api.model",
- "k8s.io/apimachinery/pkg/apis/meta/v1": "io.fabric8.kubernetes.api.model",
- "github.com/tektoncd/pipeline/pkg/apis/pipeline/v1beta1": "io.fabric8.tekton.pipeline.v1beta1",
- "knative.dev/pkg/apis/duck/v1": "io.fabric8.knative.duck.v1",
- "knative.dev/pkg/apis/duck/v1alpha1": "io.fabric8.knative.duck.v1alpha1",
- "knative.dev/pkg/apis/duck/v1beta1": "io.fabric8.knative.duck.v1beta1",
- "knative.dev/pkg/apis": "io.fabric8.knative.pkg.apis",
- }
-
- // mapping of go packages of this module to the resulting java package
- // optional ApiGroup and ApiVersion for the go package (which is added to the generated java class)
- packageMapping := map[string]schemagen.PackageInformation{
- "github.com/tektoncd/triggers/pkg/apis/triggers/v1beta1": {JavaPackage: "io.fabric8.tekton.triggers.v1beta1", ApiGroup: "triggers.tekton.dev", ApiVersion: "v1beta1"},
- }
-
- // converts all packages starting with to a java package using an automated scheme:
- // - replace with aka "package prefix"
- // - replace '/' with '.' for a valid java package name
- // e.g. github.com/tektoncd/pipeline/pkg/apis/pipeline/pod/Template is mapped to "io.fabric8.tekton.internal.pipeline.pkg.apis.pipeline.pod.Template"
- mappingSchema := map[string]string{}
-
- // overwriting some types
- manualTypeMap := map[reflect.Type]string{
- reflect.TypeOf(machinery.Time{}): "java.lang.String",
- reflect.TypeOf(apis.VolatileTime{}): "java.lang.String",
- reflect.TypeOf(apis.URL{}): "java.lang.String",
- reflect.TypeOf(triggers.TriggerResourceTemplate{}): "io.fabric8.kubernetes.api.model.HasMetadata",
- reflect.TypeOf(triggers.CustomResource{}): "io.fabric8.kubernetes.api.model.HasMetadata",
- reflect.TypeOf(v1apiextensions.JSON{}): "java.lang.Object",
- }
-
- json := schemagen.GenerateSchema("http://fabric8.io/tekton/triggers/TektonSchema#", crdLists, providedPackages, manualTypeMap, packageMapping, mappingSchema, providedTypes, constraints, "io.fabric8")
-
- fmt.Println(json)
-}
diff --git a/extensions/tekton/generator-triggers/go.mod b/extensions/tekton/generator-triggers/go.mod
deleted file mode 100644
index 0a8751d6c0c..00000000000
--- a/extensions/tekton/generator-triggers/go.mod
+++ /dev/null
@@ -1,87 +0,0 @@
-module github.com/fabric8io/kubernetes-client/extensions/tekton/generator-triggers-v1alpha1
-
-go 1.20
-
-require (
- github.com/fabric8io/kubernetes-client/generator v0.0.0
- github.com/tektoncd/triggers v0.24.0
- k8s.io/apiextensions-apiserver v0.25.4
- k8s.io/apimachinery v0.26.4
- knative.dev/pkg v0.0.0-20230224205330-75da922ef055
-)
-
-require (
- contrib.go.opencensus.io/exporter/ocagent v0.7.1-0.20200907061046-05415f1de66d // indirect
- contrib.go.opencensus.io/exporter/prometheus v0.4.0 // indirect
- github.com/antlr/antlr4/runtime/Go/antlr v1.4.10 // indirect
- github.com/beorn7/perks v1.0.1 // indirect
- github.com/blendle/zapdriver v1.3.1 // indirect
- github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect
- github.com/cespare/xxhash/v2 v2.2.0 // indirect
- github.com/davecgh/go-spew v1.1.1 // indirect
- github.com/emicklei/go-restful/v3 v3.9.0 // indirect
- github.com/evanphx/json-patch/v5 v5.6.0 // indirect
- github.com/go-kit/log v0.2.0 // indirect
- github.com/go-logfmt/logfmt v0.5.1 // indirect
- github.com/go-logr/logr v1.2.3 // indirect
- github.com/go-openapi/jsonpointer v0.19.6 // indirect
- github.com/go-openapi/jsonreference v0.20.1 // indirect
- github.com/go-openapi/swag v0.22.3 // indirect
- github.com/gogo/protobuf v1.3.2 // indirect
- github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
- github.com/golang/protobuf v1.5.3 // indirect
- github.com/google/cel-go v0.13.0 // indirect
- github.com/google/gnostic v0.6.9 // indirect
- github.com/google/go-cmp v0.5.9 // indirect
- github.com/google/go-containerregistry v0.14.0 // indirect
- github.com/google/gofuzz v1.2.0 // indirect
- github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3 // indirect
- github.com/hashicorp/errwrap v1.1.0 // indirect
- github.com/hashicorp/go-multierror v1.1.1 // indirect
- github.com/josharian/intern v1.0.0 // indirect
- github.com/json-iterator/go v1.1.12 // indirect
- github.com/mailru/easyjson v0.7.7 // indirect
- github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
- github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
- github.com/modern-go/reflect2 v1.0.2 // indirect
- github.com/opencontainers/go-digest v1.0.0 // indirect
- github.com/pkg/errors v0.9.1 // indirect
- github.com/prometheus/client_golang v1.13.0 // indirect
- github.com/prometheus/client_model v0.3.0 // indirect
- github.com/prometheus/common v0.37.0 // indirect
- github.com/prometheus/procfs v0.8.0 // indirect
- github.com/prometheus/statsd_exporter v0.21.0 // indirect
- github.com/stoewer/go-strcase v1.2.0 // indirect
- github.com/tektoncd/pipeline v0.47.0 // indirect
- go.opencensus.io v0.24.0 // indirect
- go.uber.org/atomic v1.10.0 // indirect
- go.uber.org/multierr v1.8.0 // indirect
- go.uber.org/zap v1.24.0 // indirect
- golang.org/x/exp v0.0.0-20230307190834-24139beb5833 // indirect
- golang.org/x/net v0.23.0 // indirect
- golang.org/x/oauth2 v0.7.0 // indirect
- golang.org/x/sync v0.1.0 // indirect
- golang.org/x/sys v0.18.0 // indirect
- golang.org/x/term v0.18.0 // indirect
- golang.org/x/text v0.14.0 // indirect
- golang.org/x/time v0.3.0 // indirect
- gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
- google.golang.org/api v0.116.0 // indirect
- google.golang.org/appengine v1.6.7 // indirect
- google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
- google.golang.org/grpc v1.56.3 // indirect
- google.golang.org/protobuf v1.33.0 // indirect
- gopkg.in/inf.v0 v0.9.1 // indirect
- gopkg.in/yaml.v2 v2.4.0 // indirect
- gopkg.in/yaml.v3 v3.0.1 // indirect
- k8s.io/api v0.25.9 // indirect
- k8s.io/client-go v0.25.9 // indirect
- k8s.io/klog/v2 v2.90.1 // indirect
- k8s.io/kube-openapi v0.0.0-20230308215209-15aac26d736a // indirect
- k8s.io/utils v0.0.0-20230209194617-a36077c30491 // indirect
- sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
- sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
- sigs.k8s.io/yaml v1.3.0 // indirect
-)
-
-replace github.com/fabric8io/kubernetes-client/generator v0.0.0 => ./../../../generator
diff --git a/extensions/tekton/generator-triggers/go.sum b/extensions/tekton/generator-triggers/go.sum
deleted file mode 100644
index 0bb64532263..00000000000
--- a/extensions/tekton/generator-triggers/go.sum
+++ /dev/null
@@ -1,698 +0,0 @@
-cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
-cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
-cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU=
-cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU=
-cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY=
-cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc=
-cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0=
-cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To=
-cloud.google.com/go v0.52.0/go.mod h1:pXajvRH/6o3+F9jDHZWQ5PbGhn+o8w9qiu/CffaVdO4=
-cloud.google.com/go v0.53.0/go.mod h1:fp/UouUEsRkN6ryDKNW/Upv/JBKnv6WDthjR6+vze6M=
-cloud.google.com/go v0.54.0/go.mod h1:1rq2OEkV3YMf6n/9ZvGWI3GWw0VoqH/1x2nd8Is/bPc=
-cloud.google.com/go v0.56.0/go.mod h1:jr7tqZxxKOVYizybht9+26Z/gUq7tiRzu+ACVAMbKVk=
-cloud.google.com/go v0.57.0/go.mod h1:oXiQ6Rzq3RAkkY7N6t3TcE6jE+CIBBbA36lwQ1JyzZs=
-cloud.google.com/go v0.62.0/go.mod h1:jmCYTdRCQuc1PHIIJ/maLInMho30T/Y0M4hTdTShOYc=
-cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHObY=
-cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o=
-cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE=
-cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc=
-cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg=
-cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc=
-cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ=
-cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE=
-cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk=
-cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I=
-cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw=
-cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA=
-cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU=
-cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw=
-cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos=
-cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk=
-cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs=
-cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0=
-contrib.go.opencensus.io/exporter/ocagent v0.7.1-0.20200907061046-05415f1de66d h1:LblfooH1lKOpp1hIhukktmSAxFkqMPFk9KR6iZ0MJNI=
-contrib.go.opencensus.io/exporter/ocagent v0.7.1-0.20200907061046-05415f1de66d/go.mod h1:IshRmMJBhDfFj5Y67nVhMYTTIze91RUeT73ipWKs/GY=
-contrib.go.opencensus.io/exporter/prometheus v0.4.0 h1:0QfIkj9z/iVZgK31D9H9ohjjIDApI2GOPScCKwxedbs=
-contrib.go.opencensus.io/exporter/prometheus v0.4.0/go.mod h1:o7cosnyfuPVK0tB8q0QmaQNhGnptITnPQB+z1+qeFB0=
-dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU=
-github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
-github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo=
-github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU=
-github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc=
-github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc=
-github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0=
-github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0=
-github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho=
-github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY=
-github.com/antlr/antlr4/runtime/Go/antlr v1.4.10 h1:yL7+Jz0jTC6yykIK/Wh74gnTJnrGr5AyrNMXuA0gves=
-github.com/antlr/antlr4/runtime/Go/antlr v1.4.10/go.mod h1:F7bn7fEU90QkQ3tnmaTx3LTKLEDqnwWODIYppRQ5hnY=
-github.com/benbjohnson/clock v1.1.0 h1:Q92kusRqC1XV2MjkWETPvjJVqKetz1OzxZB7mHJLju8=
-github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q=
-github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8=
-github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
-github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
-github.com/blendle/zapdriver v1.3.1 h1:C3dydBOWYRiOk+B8X9IVZ5IOe+7cl+tGOexN4QqHfpE=
-github.com/blendle/zapdriver v1.3.1/go.mod h1:mdXfREi6u5MArG4j9fewC+FGnXaBR+T4Ox4J2u4eHCc=
-github.com/buger/jsonparser v1.1.1/go.mod h1:6RYKKt7H4d4+iWqouImQ9R2FZql3VbhNgx27UK13J/0=
-github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
-github.com/census-instrumentation/opencensus-proto v0.4.1 h1:iKLQ0xPNFxR/2hzXZMrBo8f1j86j5WHzznCCQxV/b8g=
-github.com/census-instrumentation/opencensus-proto v0.4.1/go.mod h1:4T9NM4+4Vw91VeyqjLS6ao50K5bOcLKN6Q42XnYaRYw=
-github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc=
-github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
-github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
-github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44=
-github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
-github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI=
-github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI=
-github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU=
-github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw=
-github.com/cloudevents/sdk-go/v2 v2.14.0 h1:Nrob4FwVgi5L4tV9lhjzZcjYqFVyJzsA56CwPaPfv6s=
-github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc=
-github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk=
-github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs=
-github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
-github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
-github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
-github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
-github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE=
-github.com/emicklei/go-restful/v3 v3.9.0 h1:XwGDlfxEnQZzuopoqxwSEllNcCOM9DhhFyhFIIGKwxE=
-github.com/emicklei/go-restful/v3 v3.9.0/go.mod h1:6n3XBCmQQb25CM2LCACGz8ukIrRry+4bhvbpWn3mrbc=
-github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
-github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
-github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98=
-github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk=
-github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ=
-github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c=
-github.com/evanphx/json-patch v0.5.2/go.mod h1:ZWS5hhDbVDyob71nXKNL0+PWn6ToqBHMikGIFbs31qQ=
-github.com/evanphx/json-patch v4.12.0+incompatible h1:4onqiflcdA9EOZ4RxV643DvftH5pOlLGNtQ5lPWQu84=
-github.com/evanphx/json-patch/v5 v5.6.0 h1:b91NhWfaz02IuVxO9faSllyAtNXHMPkC5J8sJCLunww=
-github.com/evanphx/json-patch/v5 v5.6.0/go.mod h1:G79N1coSVB93tBe7j6PhzjmR3/2VvlbKOFpnXhI9Bw4=
-github.com/flowstack/go-jsonschema v0.1.1/go.mod h1:yL7fNggx1o8rm9RlgXv7hTBWxdBM0rVwpMwimd3F3N0=
-github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=
-github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU=
-github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8=
-github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8=
-github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as=
-github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as=
-github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY=
-github.com/go-kit/log v0.2.0 h1:7i2K3eKTos3Vc0enKCfnVcgHh2olr/MyfboYq7cAcFw=
-github.com/go-kit/log v0.2.0/go.mod h1:NwTd00d/i8cPZ3xOwwiv2PO5MOcx78fFErGNcVmBjv0=
-github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE=
-github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk=
-github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A=
-github.com/go-logfmt/logfmt v0.5.1 h1:otpy5pqBCBZ1ng9RQ0dPu4PN7ba75Y/aA+UpowDyNVA=
-github.com/go-logfmt/logfmt v0.5.1/go.mod h1:WYhtIu8zTZfxdn5+rREduYbwxfcBr/Vr6KEVveWlfTs=
-github.com/go-logr/logr v1.2.0/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A=
-github.com/go-logr/logr v1.2.3 h1:2DntVwHkVopvECVRSlL5PSo9eG+cAkDCuckLubN+rq0=
-github.com/go-logr/logr v1.2.3/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A=
-github.com/go-openapi/jsonpointer v0.19.6 h1:eCs3fxoIi3Wh6vtgmLTOjdhSpiqphQ+DaPn38N2ZdrE=
-github.com/go-openapi/jsonpointer v0.19.6/go.mod h1:osyAmYz/mB/C3I+WsTTSgw1ONzaLJoLCyoi6/zppojs=
-github.com/go-openapi/jsonreference v0.20.1 h1:FBLnyygC4/IZZr893oiomc9XaghoveYTrLC1F86HID8=
-github.com/go-openapi/jsonreference v0.20.1/go.mod h1:Bl1zwGIM8/wsvqjsOQLJ/SH+En5Ap4rVB5KVcIDZG2k=
-github.com/go-openapi/swag v0.22.3 h1:yMBqmnQ0gyZvEb/+KzuWZOXgllrXT4SADYbvDaXHv/g=
-github.com/go-openapi/swag v0.22.3/go.mod h1:UzaqsxGiab7freDnrUUra0MwWfN/q7tE4j+VcZ0yl14=
-github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY=
-github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ=
-github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q=
-github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q=
-github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q=
-github.com/golang/glog v1.1.0 h1:/d3pCKDPWNnvIWe0vVUpNP32qc8U3PDVxySP/y360qE=
-github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
-github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
-github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
-github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da h1:oI5xCqsCo564l8iNU+DwB5epxmsaqB+rhGL0m5jtYqE=
-github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
-github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=
-github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=
-github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y=
-github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw=
-github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw=
-github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw=
-github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4=
-github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
-github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
-github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
-github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw=
-github.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw=
-github.com/golang/protobuf v1.3.5/go.mod h1:6O5/vntMXwX2lRkT1hjjk0nAC1IDOTvTlVgjlRvqsdk=
-github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8=
-github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA=
-github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs=
-github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w=
-github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0=
-github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8=
-github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI=
-github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI=
-github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
-github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY=
-github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg=
-github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY=
-github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
-github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
-github.com/google/cel-go v0.13.0 h1:z+8OBOcmh7IeKyqwT/6IlnMvy621fYUqnTVPEdegGlU=
-github.com/google/cel-go v0.13.0/go.mod h1:K2hpQgEjDp18J76a2DKFRlPBPpgRZgi6EbnpDgIhJ8s=
-github.com/google/gnostic v0.6.9 h1:ZK/5VhkoX835RikCHpSUJV9a+S3e1zLh59YnyWeBW+0=
-github.com/google/gnostic v0.6.9/go.mod h1:Nm8234We1lq6iB9OmlgNv3nH91XLLVZHCDayfA3xq+E=
-github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M=
-github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU=
-github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU=
-github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
-github.com/google/go-cmp v0.4.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
-github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
-github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
-github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
-github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
-github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
-github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
-github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
-github.com/google/go-containerregistry v0.14.0 h1:z58vMqHxuwvAsVwvKEkmVBz2TlgBgH5k6koEXBtlYkw=
-github.com/google/go-containerregistry v0.14.0/go.mod h1:aiJ2fp/SXvkWgmYHioXnbMdlgB8eXiiYOY55gfN91Wk=
-github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
-github.com/google/gofuzz v1.2.0 h1:xRy4A+RhZaiKjJ1bPfwQ8sedCA+YS2YcCHW6ec7JMi0=
-github.com/google/gofuzz v1.2.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
-github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs=
-github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0=
-github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc=
-github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc=
-github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM=
-github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM=
-github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM=
-github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM=
-github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM=
-github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI=
-github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
-github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I=
-github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg=
-github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk=
-github.com/grpc-ecosystem/grpc-gateway v1.14.6/go.mod h1:zdiPV4Yse/1gnckTHtghG4GkDEdKCRJduHpTxT3/jcw=
-github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw=
-github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3 h1:lLT7ZLSzGLI08vc9cpd+tYmNWjdKDqyr/2L+f6U12Fk=
-github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3/go.mod h1:o//XUCC/F+yRGJoPO/VU0GSB0f8Nhgmxx0VIRUvaC0w=
-github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
-github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I=
-github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
-github.com/hashicorp/go-multierror v1.1.1 h1:H5DkEtf6CXdFp0N0Em5UCwQpXMWke8IA0+lD48awMYo=
-github.com/hashicorp/go-multierror v1.1.1/go.mod h1:iw975J/qwKPdAO1clOe2L8331t/9/fmwbPZ6JB6eMoM=
-github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
-github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
-github.com/hashicorp/golang-lru v0.5.4 h1:YDjusn29QI/Das2iO9M0BHnIbxPeyuCHsjMW+lJfyTc=
-github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc=
-github.com/imdario/mergo v0.3.13 h1:lFzP57bqS/wsqKssCGmtLAb8A0wKjLGrve2q3PPVcBk=
-github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI=
-github.com/josharian/intern v1.0.0 h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY=
-github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y=
-github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4=
-github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU=
-github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4=
-github.com/json-iterator/go v1.1.11/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4=
-github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM=
-github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo=
-github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU=
-github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk=
-github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w=
-github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM=
-github.com/kelseyhightower/envconfig v1.4.0 h1:Im6hONhd3pLkfDFsbRgu68RDNkGF1r3dvMUtDTo2cv8=
-github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8=
-github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=
-github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
-github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
-github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc=
-github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
-github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI=
-github.com/kr/pretty v0.2.1 h1:Fmg33tUaq4/8ym9TJN1x7sLJnHVwhP33CNkpYV/7rwI=
-github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI=
-github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
-github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
-github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
-github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
-github.com/mailru/easyjson v0.7.7 h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0=
-github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc=
-github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0=
-github.com/matttproud/golang_protobuf_extensions v1.0.4 h1:mmDVorXM7PCGKw94cs5zkfA9PSy5pEvNWRP0ET0TIVo=
-github.com/matttproud/golang_protobuf_extensions v1.0.4/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4=
-github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
-github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=
-github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
-github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0=
-github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0=
-github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M=
-github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk=
-github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA=
-github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U=
-github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U=
-github.com/onsi/ginkgo/v2 v2.4.0 h1:+Ig9nvqgS5OBSACXNk15PLdp0U9XPYROt9CFzVdFGIs=
-github.com/onsi/gomega v1.23.0 h1:/oxKu9c2HVap+F3PfKort2Hw5DEU+HGlW8n+tguWsys=
-github.com/opencontainers/go-digest v1.0.0 h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8Oi/yOhh5U=
-github.com/opencontainers/go-digest v1.0.0/go.mod h1:0JzlMkj0TRzQZfJkVvzbP0HBR3IKzErnv2BNG4W4MAM=
-github.com/openzipkin/zipkin-go v0.3.0 h1:XtuXmOLIXLjiU2XduuWREDT0LOKtSgos/g7i7RYyoZQ=
-github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
-github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
-github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
-github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
-github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
-github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
-github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw=
-github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo=
-github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M=
-github.com/prometheus/client_golang v1.11.0/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqroYurpAkEiz0P2BEV0=
-github.com/prometheus/client_golang v1.12.1/go.mod h1:3Z9XVyYiZYEO+YQWt3RD2R3jrbd179Rt297l4aS6nDY=
-github.com/prometheus/client_golang v1.13.0 h1:b71QUfeo5M8gq2+evJdTPfZhYMAU0uKPkyPJ7TPsloU=
-github.com/prometheus/client_golang v1.13.0/go.mod h1:vTeo+zgvILHsnnj/39Ou/1fPN5nJFOEMgftOUOmlvYQ=
-github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo=
-github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=
-github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=
-github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=
-github.com/prometheus/client_model v0.3.0 h1:UBgGFHqYdG/TPFD1B1ogZywDqEkwp3fBMvqdiQ7Xew4=
-github.com/prometheus/client_model v0.3.0/go.mod h1:LDGWKZIo7rky3hgvBe+caln+Dr3dPggB5dvjtD7w9+w=
-github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4=
-github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo=
-github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc=
-github.com/prometheus/common v0.28.0/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls=
-github.com/prometheus/common v0.32.1/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls=
-github.com/prometheus/common v0.37.0 h1:ccBbHCgIiT9uSoFY0vX8H3zsNR5eLt17/RQLUvn8pXE=
-github.com/prometheus/common v0.37.0/go.mod h1:phzohg0JFMnBEFGxTDbfu3QyL5GI8gTQJFhYO5B3mfA=
-github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk=
-github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA=
-github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU=
-github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA=
-github.com/prometheus/procfs v0.7.3/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA=
-github.com/prometheus/procfs v0.8.0 h1:ODq8ZFEaYeCaZOJlZZdJA2AbQR98dSHSM1KW/You5mo=
-github.com/prometheus/procfs v0.8.0/go.mod h1:z7EfXMXOkbkqb9IINtpCn86r/to3BnA0uaxHdg830/4=
-github.com/prometheus/statsd_exporter v0.21.0 h1:hA05Q5RFeIjgwKIYEdFd59xu5Wwaznf33yKI+pyX6T8=
-github.com/prometheus/statsd_exporter v0.21.0/go.mod h1:rbT83sZq2V+p73lHhPZfMc3MLCHmSHelCh9hSGYNLTQ=
-github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ=
-github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
-github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo=
-github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE=
-github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88=
-github.com/sirupsen/logrus v1.9.0 h1:trlNQbNUG3OdDrDil03MCb1H2o9nJ1x4/5LYw7byDE0=
-github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA=
-github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
-github.com/stoewer/go-strcase v1.2.0 h1:Z2iHWqGXH00XYgqDmNgQbIBxf3wrNq0F3feEy0ainaU=
-github.com/stoewer/go-strcase v1.2.0/go.mod h1:IBiWB2sKIp3wVVQ3Y035++gc+knqhUQag1KpM8ahLw8=
-github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
-github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
-github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
-github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo=
-github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
-github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
-github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=
-github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA=
-github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
-github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
-github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
-github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
-github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
-github.com/stretchr/testify v1.8.2 h1:+h33VjcLVPDHtOdpUCuF+7gSuG3yGIftsP1YvFihtJ8=
-github.com/tektoncd/pipeline v0.47.0 h1:zZxmp6im8/p9RaH32LgeCP6dwH/4hcsfvEQUrwGsUPA=
-github.com/tektoncd/pipeline v0.47.0/go.mod h1:7H1DeNuEJFGoExGwQTlRul2IziCPxkjXRdDdirWmoQs=
-github.com/tektoncd/triggers v0.24.0 h1:+yJpOjn88TcX0GSwYVle8Rm0Cq6W4nc1urZ9rD5lmwY=
-github.com/tektoncd/triggers v0.24.0/go.mod h1:yQcliUXLfIp0YijT30R0t/4hItCsznTpOxOlSIrKF78=
-github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU=
-github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415/go.mod h1:GwrjFmJcFw6At/Gs6z4yjiIwzuJ1/+UwLxMQDVQXShQ=
-github.com/xeipuuv/gojsonschema v1.2.0/go.mod h1:anYRn/JVcOK2ZgGU+IjEV4nwlhoK5sQluxsYJ78Id3Y=
-github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
-github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
-github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
-github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
-go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU=
-go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8=
-go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
-go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
-go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
-go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E=
-go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0=
-go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo=
-go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI=
-go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
-go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc=
-go.uber.org/atomic v1.10.0 h1:9qC72Qh0+3MqyJbAn8YU5xVq1frD8bn3JtD2oXtafVQ=
-go.uber.org/atomic v1.10.0/go.mod h1:LUxbIzbOniOlMKjJjyPfpl4v+PKK2cNJn91OQbhoJI0=
-go.uber.org/goleak v1.2.0 h1:xqgm/S+aQvhWFTtR0XK3Jvg7z8kGV8P4X14IzwN3Eqk=
-go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0=
-go.uber.org/multierr v1.8.0 h1:dg6GjLku4EH+249NNmoIciG9N/jURbDG+pFlTkhzIC8=
-go.uber.org/multierr v1.8.0/go.mod h1:7EAYxJLBy9rStEaz58O2t4Uvip6FSURkq8/ppBp95ak=
-go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q=
-go.uber.org/zap v1.24.0 h1:FiJd5l1UOLj0wCgbSE0rwwXHzEdAZS6hiiSnxJN/D60=
-go.uber.org/zap v1.24.0/go.mod h1:2kMP+WWQ8aoFoedH3T2sq6iJ2yDWpHbP0f6MQbS9Gkg=
-golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=
-golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
-golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
-golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
-golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
-golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
-golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
-golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
-golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8=
-golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek=
-golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY=
-golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4=
-golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4=
-golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4=
-golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM=
-golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU=
-golang.org/x/exp v0.0.0-20230307190834-24139beb5833 h1:SChBja7BCQewoTAU7IgvucQKMIXrEpFxNMs0spT3/5s=
-golang.org/x/exp v0.0.0-20230307190834-24139beb5833/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc=
-golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js=
-golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0=
-golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=
-golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU=
-golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=
-golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=
-golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=
-golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=
-golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=
-golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRuDixDT3tpyyb+LUpUlRWLxfhWrs=
-golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY=
-golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY=
-golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE=
-golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o=
-golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc=
-golang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY=
-golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg=
-golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg=
-golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
-golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
-golang.org/x/mod v0.9.0 h1:KENHtAZL2y3NLMYZeHY9DW8HW8V+kQyJsY/V9JlKvCs=
-golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
-golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
-golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
-golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
-golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
-golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
-golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
-golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
-golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
-golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks=
-golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
-golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
-golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
-golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
-golang.org/x/net v0.0.0-20191002035440-2ec189313ef0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
-golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
-golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
-golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
-golang.org/x/net v0.0.0-20200222125558-5a598a2470a0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
-golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
-golang.org/x/net v0.0.0-20200301022130-244492dfa37a/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
-golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=
-golang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=
-golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=
-golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=
-golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=
-golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA=
-golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA=
-golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA=
-golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
-golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
-golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM=
-golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
-golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
-golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk=
-golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk=
-golang.org/x/net v0.23.0 h1:7EYJ93RZ9vYSZAIb2x3lnuvqO5zneoD6IvWjuhfxjTs=
-golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg=
-golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
-golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
-golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
-golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
-golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
-golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
-golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc=
-golang.org/x/oauth2 v0.7.0 h1:qe6s0zUXlPX80/dITx3440hWZ7GwMwgDDyrSGTPJG/g=
-golang.org/x/oauth2 v0.7.0/go.mod h1:hPLQkd9LyjfXTiRohC/41GhcFqxisoUQ99sCUOHO9x4=
-golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
-golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
-golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
-golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
-golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
-golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
-golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
-golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
-golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
-golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
-golang.org/x/sync v0.1.0 h1:wsuoTGHzEhffawBOhz5CYhcrV4IdKZbEyZjBMuTp12o=
-golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
-golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
-golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
-golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
-golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
-golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
-golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
-golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
-golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
-golang.org/x/sys v0.0.0-20220114195835-da31bd327af9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
-golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4=
-golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
-golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
-golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
-golang.org/x/term v0.18.0 h1:FcHjZXDMxI8mM3nwhX9HlKop4C0YQvCVCdwYl2wOtE8=
-golang.org/x/term v0.18.0/go.mod h1:ILwASektA3OnRv7amZ1xhE/KTR+u50pbXfZ03+6Nx58=
-golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
-golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
-golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
-golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=
-golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
-golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
-golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
-golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
-golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ=
-golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU=
-golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
-golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
-golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
-golang.org/x/time v0.3.0 h1:rg5rLMjNzMS1RkNLzCG38eapWhnYLFYXDXj2gOlr8j4=
-golang.org/x/time v0.3.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
-golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
-golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
-golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY=
-golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=
-golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=
-golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=
-golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q=
-golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q=
-golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q=
-golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=
-golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=
-golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=
-golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
-golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
-golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
-golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
-golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
-golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
-golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
-golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
-golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
-golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
-golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
-golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
-golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
-golang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
-golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
-golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
-golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
-golang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
-golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw=
-golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw=
-golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8=
-golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
-golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
-golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
-golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
-golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
-golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA=
-golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA=
-golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA=
-golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
-golang.org/x/tools v0.7.0 h1:W4OVu8VVOaIO0yzWMNdepAulS7YfoS3Zabrm8DOXXU4=
-golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
-golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
-golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
-golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
-gomodules.xyz/jsonpatch/v2 v2.2.0 h1:4pT439QV83L+G9FkcCriY6EkpcK6r6bK+A5FBUMI7qY=
-gomodules.xyz/jsonpatch/v2 v2.2.0/go.mod h1:WXp+iVDkoLQqPudfQ9GBlwB2eZ5DKOnjQZCYdOS8GPY=
-google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE=
-google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M=
-google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg=
-google.golang.org/api v0.9.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg=
-google.golang.org/api v0.13.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI=
-google.golang.org/api v0.14.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI=
-google.golang.org/api v0.15.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI=
-google.golang.org/api v0.17.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE=
-google.golang.org/api v0.18.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE=
-google.golang.org/api v0.19.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE=
-google.golang.org/api v0.20.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE=
-google.golang.org/api v0.22.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE=
-google.golang.org/api v0.24.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE=
-google.golang.org/api v0.25.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE=
-google.golang.org/api v0.28.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE=
-google.golang.org/api v0.29.0/go.mod h1:Lcubydp8VUV7KeIHD9z2Bys/sm/vGKnG1UHuDBSrHWM=
-google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz5138Fc=
-google.golang.org/api v0.116.0 h1:09tOPVufPwfm5W4aA8EizGHJ7BcoRDsIareM2a15gO4=
-google.golang.org/api v0.116.0/go.mod h1:9cD4/t6uvd9naoEJFA+M96d0IuB6BqFuyhpw68+mRGg=
-google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM=
-google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
-google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
-google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0=
-google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc=
-google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc=
-google.golang.org/appengine v1.6.7 h1:FZR1q0exgwxzPzp/aF+VccGrSfxfPpkBqjIIEq3ru6c=
-google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc=
-google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc=
-google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=
-google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=
-google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=
-google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=
-google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc=
-google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc=
-google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8=
-google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc=
-google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc=
-google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc=
-google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc=
-google.golang.org/genproto v0.0.0-20200115191322-ca5a22157cba/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc=
-google.golang.org/genproto v0.0.0-20200122232147-0452cf42e150/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc=
-google.golang.org/genproto v0.0.0-20200204135345-fa8e72b47b90/go.mod h1:GmwEX6Z4W5gMy59cAlVYjN9JhxgbQH6Gn+gFDQe2lzA=
-google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
-google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
-google.golang.org/genproto v0.0.0-20200228133532-8c2c7df3a383/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
-google.golang.org/genproto v0.0.0-20200305110556-506484158171/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
-google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
-google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
-google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
-google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
-google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
-google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod h1:YsZOwe1myG/8QRHRsmBRE1LrgQY60beZKjly0O1fX9U=
-google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo=
-google.golang.org/genproto v0.0.0-20200527145253-8367513e4ece/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA=
-google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA=
-google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
-google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
-google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
-google.golang.org/genproto v0.0.0-20220107163113-42d7afdf6368/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc=
-google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 h1:KpwkzHKEF7B9Zxg18WzOa7djJ+Ha5DzthMyZYQfEn2A=
-google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1/go.mod h1:nKE/iIaLqn2bQwXBg8f1g2Ylh6r5MN5CmZvuzZCgsCU=
-google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c=
-google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38=
-google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM=
-google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg=
-google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY=
-google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk=
-google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk=
-google.golang.org/grpc v1.27.1/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk=
-google.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKal+60=
-google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk=
-google.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak=
-google.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak=
-google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0=
-google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc=
-google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU=
-google.golang.org/grpc v1.40.0/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34=
-google.golang.org/grpc v1.56.3 h1:8I4C0Yq1EjstUzUJzpcRVbuYA2mODtEmpWiQoN/b2nc=
-google.golang.org/grpc v1.56.3/go.mod h1:I9bI3vqKfayGqPUAwGdOSu7kt6oIJLixfffKrpXqQ9s=
-google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8=
-google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0=
-google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM=
-google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE=
-google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo=
-google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
-google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
-google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
-google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4=
-google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c=
-google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
-google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
-google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
-google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI=
-google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
-gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw=
-gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
-gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
-gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
-gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=
-gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=
-gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI=
-gopkg.in/inf.v0 v0.9.1 h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc=
-gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw=
-gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
-gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
-gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
-gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
-gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
-gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
-gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
-gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=
-gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=
-gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
-gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
-gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
-gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
-gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
-honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
-honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
-honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
-honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
-honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg=
-honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k=
-honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k=
-k8s.io/api v0.25.9 h1:XuJ2bz2F52jZmp3YjUcp/pozH8kY1BlBHdXnoOXBP3U=
-k8s.io/api v0.25.9/go.mod h1:9YRWzD0cRHzfsnf9e5OQsQ4Un6cbZ//Xv3jo44YKm2Y=
-k8s.io/apiextensions-apiserver v0.25.4 h1:7hu9pF+xikxQuQZ7/30z/qxIPZc2J1lFElPtr7f+B6U=
-k8s.io/apiextensions-apiserver v0.25.4/go.mod h1:bkSGki5YBoZWdn5pWtNIdGvDrrsRWlmnvl9a+tAw5vQ=
-k8s.io/apimachinery v0.26.4 h1:rZccKdBLg9vP6J09JD+z8Yr99Ce8gk3Lbi9TCx05Jzs=
-k8s.io/apimachinery v0.26.4/go.mod h1:ats7nN1LExKHvJ9TmwootT00Yz05MuYqPXEXaVeOy5I=
-k8s.io/client-go v0.25.9 h1:U0S3nc71NRfHXiA0utyCkPt3Mv1SWpQw0g5VfBCv5xg=
-k8s.io/client-go v0.25.9/go.mod h1:tmPyOtpbbkneXj65EYZ4sXun1BE/2F2XlRABVj9CBgc=
-k8s.io/klog/v2 v2.90.1 h1:m4bYOKall2MmOiRaR1J+We67Do7vm9KiQVlT96lnHUw=
-k8s.io/klog/v2 v2.90.1/go.mod h1:y1WjHnz7Dj687irZUWR/WLkLc5N1YHtjLdmgWjndZn0=
-k8s.io/kube-openapi v0.0.0-20230308215209-15aac26d736a h1:gmovKNur38vgoWfGtP5QOGNOA7ki4n6qNYoFAgMlNvg=
-k8s.io/kube-openapi v0.0.0-20230308215209-15aac26d736a/go.mod h1:y5VtZWM9sHHc2ZodIH/6SHzXj+TPU5USoA8lcIeKEKY=
-k8s.io/utils v0.0.0-20230209194617-a36077c30491 h1:r0BAOLElQnnFhE/ApUsg3iHdVYYPBjNSSOMowRZxxsY=
-k8s.io/utils v0.0.0-20230209194617-a36077c30491/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=
-knative.dev/eventing v0.30.1-0.20220407170245-58865afba92c h1:5QvWwe3uB7BefHGMg6hC05YVi+zr1kGK7DVMFquqJMI=
-knative.dev/networking v0.0.0-20220404212543-dde40b019aff h1:pqzWi29qb44TY+5xtc9vty4mSyUYvojXZGCp0y/91eo=
-knative.dev/pkg v0.0.0-20230224205330-75da922ef055 h1:VfKOAnbgJXJMz7n66yW7Rj6Sl2bQZng6RzvX4MMB2Jg=
-knative.dev/pkg v0.0.0-20230224205330-75da922ef055/go.mod h1:QkgVAUCziNOZmoqL/E25ig2cbVQ2teZyGNCNqaApO44=
-knative.dev/serving v0.30.1-0.20220402124840-21c05dc9d9a4 h1:iRFWsFKsA5ddhi+eKZVJdf8gPBomTfjIyRAKk9Uh7Ko=
-rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=
-rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0=
-rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=
-sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd h1:EDPBXCAspyGV4jQlpZSudPeMmr1bNJefnuqLsRAsHZo=
-sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd/go.mod h1:B8JuhiUyNFVKdsE8h686QcCxMaH6HrOAZj4vswFpcB0=
-sigs.k8s.io/structured-merge-diff/v4 v4.2.3 h1:PRbqxJClWWYMNV1dhaG4NsibJbArud9kFxnAMREiWFE=
-sigs.k8s.io/structured-merge-diff/v4 v4.2.3/go.mod h1:qjx8mGObPmV2aSZepjQjbmb2ihdVs8cGKBraizNC69E=
-sigs.k8s.io/yaml v1.3.0 h1:a2VclLzOGrwOHDiV8EfBGhvjHvP46CtW5j6POvhYGGo=
-sigs.k8s.io/yaml v1.3.0/go.mod h1:GeOyir5tyXNByN85N/dRIT9es5UQNerPYEKK56eTBm8=
diff --git a/extensions/tekton/generator/Makefile b/extensions/tekton/generator/Makefile
deleted file mode 100755
index f4e0f49ff68..00000000000
--- a/extensions/tekton/generator/Makefile
+++ /dev/null
@@ -1,29 +0,0 @@
-#
-# Copyright (C) 2015 Red Hat, Inc.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-SHELL := /bin/bash
-
-all: build
-
-build: gobuild
- mvn -f ../model-v1alpha1/pom.xml -Pgenerate clean install -DskipTests -o
- mvn -f ../model-v1beta1/pom.xml -Pgenerate clean install -DskipTests -o
- mvn -f ../model-v1/pom.xml -Pgenerate clean install -DskipTests -o
-
-gobuild:
- go run ./cmd/generate/generate-v1.go > ../model-v1/src/main/resources/schema/tekton-schema-v1.json
- go run ./cmd/generate/generate-v1alpha1.go > ../model-v1alpha1/src/main/resources/schema/tekton-schema-v1alpha1.json
- go run ./cmd/generate/generate-v1beta1.go > ../model-v1beta1/src/main/resources/schema/tekton-schema-v1beta1.json
diff --git a/extensions/tekton/generator/cmd/generate/generate-v1.go b/extensions/tekton/generator/cmd/generate/generate-v1.go
deleted file mode 100644
index 35424e9712c..00000000000
--- a/extensions/tekton/generator/cmd/generate/generate-v1.go
+++ /dev/null
@@ -1,81 +0,0 @@
-/**
- * Copyright (C) 2015 Red Hat, Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package main
-
-import (
- "fmt"
- "github.com/fabric8io/kubernetes-client/generator/pkg/schemagen"
- "github.com/tektoncd/pipeline/pkg/apis/pipeline/v1"
- machinery "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/runtime"
- "reflect"
-)
-
-func main() {
-
- // the CRD List types for which the model should be generated
- // no other types need to be defined as they are auto discovered
- crdLists := map[reflect.Type]schemagen.CrdScope{
- // v1
- reflect.TypeOf(v1.PipelineList{}): schemagen.Namespaced,
- reflect.TypeOf(v1.PipelineRunList{}): schemagen.Namespaced,
- reflect.TypeOf(v1.TaskList{}): schemagen.Namespaced,
- reflect.TypeOf(v1.TaskRunList{}): schemagen.Namespaced,
- }
-
- // constraints and patterns for fields
- constraints := map[reflect.Type]map[string]*schemagen.Constraint{
- reflect.TypeOf(v1.Step{}): {"Name": &schemagen.Constraint{MaxLength: 63, Pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$"}},
- }
-
- // types that are manually defined in the model
- providedTypes := []schemagen.ProvidedType{
- {GoType: reflect.TypeOf(v1.ParamValue{}), JavaClass: "io.fabric8.tekton.pipeline.v1.ParamValue"},
- }
-
- // go packages that are provided and where no generation is required and their corresponding java package
- providedPackages := map[string]string{
- // external
- "k8s.io/api/core/v1": "io.fabric8.kubernetes.api.model",
- "knative.dev/pkg/apis": "io.fabric8.knative.pkg.apis",
- "k8s.io/apimachinery/pkg/apis/meta/v1": "io.fabric8.kubernetes.api.model",
- }
-
- // mapping of go packages of this module to the resulting java package
- // optional ApiGroup and ApiVersion for the go package (which is added to the generated java class)
- packageMapping := map[string]schemagen.PackageInformation{
- // v1
- "github.com/tektoncd/pipeline/pkg/apis/pipeline/v1": {JavaPackage: "io.fabric8.tekton.pipeline.v1", ApiGroup: "tekton.dev", ApiVersion: "v1"},
- }
-
- // converts all packages starting with to a java package using an automated scheme:
- // - replace with aka "package prefix"
- // - replace '/' with '.' for a valid java package name
- // e.g. github.com/tektoncd/pipeline/pkg/apis/pipeline/pod/Template is mapped to "io.fabric8.tekton.internal.pipeline.pkg.apis.pipeline.pod.Template"
- mappingSchema := map[string]string{
- "github.com/tektoncd": "io.fabric8.tekton.v1.internal",
- }
-
- // overwriting some times
- manualTypeMap := map[reflect.Type]string{
- reflect.TypeOf(runtime.RawExtension{}): "java.util.Map",
- reflect.TypeOf(machinery.Time{}): "java.lang.String",
- }
-
- json := schemagen.GenerateSchema("http://fabric8.io/tekton/v1/TektonSchema#", crdLists, providedPackages, manualTypeMap, packageMapping, mappingSchema, providedTypes, constraints, "io.fabric8")
-
- fmt.Println(json)
-}
diff --git a/extensions/tekton/generator/cmd/generate/generate-v1alpha1.go b/extensions/tekton/generator/cmd/generate/generate-v1alpha1.go
deleted file mode 100644
index fda7a86c648..00000000000
--- a/extensions/tekton/generator/cmd/generate/generate-v1alpha1.go
+++ /dev/null
@@ -1,82 +0,0 @@
-/**
- * Copyright (C) 2015 Red Hat, Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package main
-
-import (
- "fmt"
- "github.com/fabric8io/kubernetes-client/generator/pkg/schemagen"
- "github.com/tektoncd/pipeline/pkg/apis/pipeline/v1alpha1"
- resolutionV1Alpha1 "github.com/tektoncd/pipeline/pkg/apis/resolution/v1alpha1"
- machinery "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/runtime"
- "reflect"
-)
-
-func main() {
-
- // the CRD List types for which the model should be generated
- // no other types need to be defined as they are auto discovered
- crdLists := map[reflect.Type]schemagen.CrdScope{
- // v1alpha1
- reflect.TypeOf(v1alpha1.VerificationPolicyList{}): schemagen.Namespaced,
- reflect.TypeOf(v1alpha1.RunList{}): schemagen.Namespaced,
-
- // resolution v1alpha1
- reflect.TypeOf(resolutionV1Alpha1.ResolutionRequestList{}): schemagen.Namespaced,
- }
-
- // constraints and patterns for fields
- constraints := map[reflect.Type]map[string]*schemagen.Constraint{}
-
- // types that are manually defined in the model
- providedTypes := []schemagen.ProvidedType{}
-
- // go packages that are provided and where no generation is required and their corresponding java package
- providedPackages := map[string]string{
- // external
- "k8s.io/api/core/v1": "io.fabric8.kubernetes.api.model",
- "knative.dev/pkg/apis": "io.fabric8.knative.pkg.apis",
- "k8s.io/apimachinery/pkg/apis/meta/v1": "io.fabric8.kubernetes.api.model",
- }
-
- // mapping of go packages of this module to the resulting java package
- // optional ApiGroup and ApiVersion for the go package (which is added to the generated java class)
- packageMapping := map[string]schemagen.PackageInformation{
- // v1alpha1
- "github.com/tektoncd/pipeline/pkg/apis/pipeline/v1alpha1": {JavaPackage: "io.fabric8.tekton.pipeline.v1alpha1", ApiGroup: "tekton.dev", ApiVersion: "v1alpha1"},
-
- // resolution v1alpha1
- "github.com/tektoncd/pipeline/pkg/apis/resolution/v1alpha1": {JavaPackage: "io.fabric8.tekton.resolution.v1alpha1", ApiGroup: "resolution.tekton.dev", ApiVersion: "v1alpha1"},
- }
-
- // converts all packages starting with to a java package using an automated scheme:
- // - replace with aka "package prefix"
- // - replace '/' with '.' for a valid java package name
- // e.g. github.com/tektoncd/pipeline/pkg/apis/pipeline/pod/Template is mapped to "io.fabric8.tekton.internal.pipeline.pkg.apis.pipeline.pod.Template"
- mappingSchema := map[string]string{
- "github.com/tektoncd": "io.fabric8.tekton.v1alpha1.internal",
- }
-
- // overwriting some times
- manualTypeMap := map[reflect.Type]string{
- reflect.TypeOf(runtime.RawExtension{}): "java.util.Map",
- reflect.TypeOf(machinery.Time{}): "java.lang.String",
- }
-
- json := schemagen.GenerateSchema("http://fabric8.io/tekton/v1alpha1/TektonSchema#", crdLists, providedPackages, manualTypeMap, packageMapping, mappingSchema, providedTypes, constraints, "io.fabric8")
-
- fmt.Println(json)
-}
diff --git a/extensions/tekton/generator/cmd/generate/generate-v1beta1.go b/extensions/tekton/generator/cmd/generate/generate-v1beta1.go
deleted file mode 100644
index 25674723a83..00000000000
--- a/extensions/tekton/generator/cmd/generate/generate-v1beta1.go
+++ /dev/null
@@ -1,89 +0,0 @@
-/**
- * Copyright (C) 2015 Red Hat, Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package main
-
-import (
- "fmt"
- "github.com/fabric8io/kubernetes-client/generator/pkg/schemagen"
- "github.com/tektoncd/pipeline/pkg/apis/pipeline/v1beta1"
- resolutionV1Beta1 "github.com/tektoncd/pipeline/pkg/apis/resolution/v1beta1"
- machinery "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/runtime"
- "reflect"
-)
-
-func main() {
-
- // the CRD List types for which the model should be generated
- // no other types need to be defined as they are auto discovered
- crdLists := map[reflect.Type]schemagen.CrdScope{
- // v1beta1
- reflect.TypeOf(v1beta1.CustomRunList{}): schemagen.Namespaced,
- reflect.TypeOf(v1beta1.PipelineList{}): schemagen.Namespaced,
- reflect.TypeOf(v1beta1.PipelineRunList{}): schemagen.Namespaced,
- reflect.TypeOf(v1beta1.TaskList{}): schemagen.Namespaced,
- reflect.TypeOf(v1beta1.TaskRunList{}): schemagen.Namespaced,
- reflect.TypeOf(v1beta1.ClusterTaskList{}): schemagen.Cluster,
-
- // resolution v1beta1
- reflect.TypeOf(resolutionV1Beta1.ResolutionRequestList{}): schemagen.Namespaced,
- }
-
- // constraints and patterns for fields
- constraints := map[reflect.Type]map[string]*schemagen.Constraint{
- reflect.TypeOf(v1beta1.Step{}): {"Name": &schemagen.Constraint{MaxLength: 63, Pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$"}},
- }
-
- // types that are manually defined in the model
- providedTypes := []schemagen.ProvidedType{
- {GoType: reflect.TypeOf(v1beta1.ParamValue{}), JavaClass: "io.fabric8.tekton.pipeline.v1beta1.ParamValue"},
- }
-
- // go packages that are provided and where no generation is required and their corresponding java package
- providedPackages := map[string]string{
- // external
- "k8s.io/api/core/v1": "io.fabric8.kubernetes.api.model",
- "knative.dev/pkg/apis": "io.fabric8.knative.pkg.apis",
- "k8s.io/apimachinery/pkg/apis/meta/v1": "io.fabric8.kubernetes.api.model",
- }
-
- // mapping of go packages of this module to the resulting java package
- // optional ApiGroup and ApiVersion for the go package (which is added to the generated java class)
- packageMapping := map[string]schemagen.PackageInformation{
- // v1beta1
- "github.com/tektoncd/pipeline/pkg/apis/pipeline/v1beta1": {JavaPackage: "io.fabric8.tekton.pipeline.v1beta1", ApiGroup: "tekton.dev", ApiVersion: "v1beta1"},
- // resolution v1beta1
- "github.com/tektoncd/pipeline/pkg/apis/resolution/v1beta1": {JavaPackage: "io.fabric8.tekton.resolution.v1beta1", ApiGroup: "resolution.tekton.dev", ApiVersion: "v1beta1"},
- }
-
- // converts all packages starting with to a java package using an automated scheme:
- // - replace with aka "package prefix"
- // - replace '/' with '.' for a valid java package name
- // e.g. github.com/tektoncd/pipeline/pkg/apis/pipeline/pod/Template is mapped to "io.fabric8.tekton.internal.pipeline.pkg.apis.pipeline.pod.Template"
- mappingSchema := map[string]string{
- "github.com/tektoncd": "io.fabric8.tekton.v1beta1.internal",
- }
-
- // overwriting some times
- manualTypeMap := map[reflect.Type]string{
- reflect.TypeOf(runtime.RawExtension{}): "java.util.Map",
- reflect.TypeOf(machinery.Time{}): "java.lang.String",
- }
-
- json := schemagen.GenerateSchema("http://fabric8.io/tekton/v1beta1/TektonSchema#", crdLists, providedPackages, manualTypeMap, packageMapping, mappingSchema, providedTypes, constraints, "io.fabric8")
-
- fmt.Println(json)
-}
diff --git a/extensions/tekton/generator/go.mod b/extensions/tekton/generator/go.mod
deleted file mode 100644
index 3d9c2a8a7f9..00000000000
--- a/extensions/tekton/generator/go.mod
+++ /dev/null
@@ -1,82 +0,0 @@
-module github.com/fabric8io/kubernetes-client/extensions/tekton/generator
-
-require (
- github.com/fabric8io/kubernetes-client/generator v0.0.0
- github.com/tektoncd/pipeline v0.47.0
- k8s.io/apimachinery v0.26.4
-)
-
-require (
- contrib.go.opencensus.io/exporter/ocagent v0.7.1-0.20200907061046-05415f1de66d // indirect
- contrib.go.opencensus.io/exporter/prometheus v0.4.0 // indirect
- github.com/beorn7/perks v1.0.1 // indirect
- github.com/blendle/zapdriver v1.3.1 // indirect
- github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect
- github.com/cespare/xxhash/v2 v2.2.0 // indirect
- github.com/davecgh/go-spew v1.1.1 // indirect
- github.com/emicklei/go-restful/v3 v3.9.0 // indirect
- github.com/evanphx/json-patch/v5 v5.6.0 // indirect
- github.com/go-kit/log v0.2.0 // indirect
- github.com/go-logfmt/logfmt v0.5.1 // indirect
- github.com/go-logr/logr v1.2.3 // indirect
- github.com/go-openapi/jsonpointer v0.19.6 // indirect
- github.com/go-openapi/jsonreference v0.20.1 // indirect
- github.com/go-openapi/swag v0.22.3 // indirect
- github.com/gogo/protobuf v1.3.2 // indirect
- github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
- github.com/golang/protobuf v1.5.3 // indirect
- github.com/google/gnostic v0.6.9 // indirect
- github.com/google/go-cmp v0.5.9 // indirect
- github.com/google/go-containerregistry v0.14.0 // indirect
- github.com/google/gofuzz v1.2.0 // indirect
- github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3 // indirect
- github.com/hashicorp/errwrap v1.1.0 // indirect
- github.com/hashicorp/go-multierror v1.1.1 // indirect
- github.com/josharian/intern v1.0.0 // indirect
- github.com/json-iterator/go v1.1.12 // indirect
- github.com/mailru/easyjson v0.7.7 // indirect
- github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
- github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
- github.com/modern-go/reflect2 v1.0.2 // indirect
- github.com/opencontainers/go-digest v1.0.0 // indirect
- github.com/pkg/errors v0.9.1 // indirect
- github.com/prometheus/client_golang v1.13.0 // indirect
- github.com/prometheus/client_model v0.3.0 // indirect
- github.com/prometheus/common v0.37.0 // indirect
- github.com/prometheus/procfs v0.8.0 // indirect
- github.com/prometheus/statsd_exporter v0.21.0 // indirect
- go.opencensus.io v0.24.0 // indirect
- go.uber.org/atomic v1.10.0 // indirect
- go.uber.org/multierr v1.8.0 // indirect
- go.uber.org/zap v1.24.0 // indirect
- golang.org/x/exp v0.0.0-20230307190834-24139beb5833 // indirect
- golang.org/x/net v0.23.0 // indirect
- golang.org/x/oauth2 v0.7.0 // indirect
- golang.org/x/sync v0.1.0 // indirect
- golang.org/x/sys v0.18.0 // indirect
- golang.org/x/term v0.18.0 // indirect
- golang.org/x/text v0.14.0 // indirect
- golang.org/x/time v0.3.0 // indirect
- gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
- google.golang.org/api v0.116.0 // indirect
- google.golang.org/appengine v1.6.7 // indirect
- google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
- google.golang.org/grpc v1.56.3 // indirect
- google.golang.org/protobuf v1.33.0 // indirect
- gopkg.in/inf.v0 v0.9.1 // indirect
- gopkg.in/yaml.v2 v2.4.0 // indirect
- gopkg.in/yaml.v3 v3.0.1 // indirect
- k8s.io/api v0.25.9 // indirect
- k8s.io/client-go v0.25.9 // indirect
- k8s.io/klog/v2 v2.90.1 // indirect
- k8s.io/kube-openapi v0.0.0-20230308215209-15aac26d736a // indirect
- k8s.io/utils v0.0.0-20230209194617-a36077c30491 // indirect
- knative.dev/pkg v0.0.0-20230221145627-8efb3485adcf // indirect
- sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
- sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
- sigs.k8s.io/yaml v1.3.0 // indirect
-)
-
-replace github.com/fabric8io/kubernetes-client/generator v0.0.0 => ./../../../generator
-
-go 1.18
diff --git a/extensions/tekton/generator/go.sum b/extensions/tekton/generator/go.sum
deleted file mode 100644
index 01a37751ee5..00000000000
--- a/extensions/tekton/generator/go.sum
+++ /dev/null
@@ -1,684 +0,0 @@
-cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
-cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
-cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU=
-cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU=
-cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY=
-cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc=
-cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0=
-cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To=
-cloud.google.com/go v0.52.0/go.mod h1:pXajvRH/6o3+F9jDHZWQ5PbGhn+o8w9qiu/CffaVdO4=
-cloud.google.com/go v0.53.0/go.mod h1:fp/UouUEsRkN6ryDKNW/Upv/JBKnv6WDthjR6+vze6M=
-cloud.google.com/go v0.54.0/go.mod h1:1rq2OEkV3YMf6n/9ZvGWI3GWw0VoqH/1x2nd8Is/bPc=
-cloud.google.com/go v0.56.0/go.mod h1:jr7tqZxxKOVYizybht9+26Z/gUq7tiRzu+ACVAMbKVk=
-cloud.google.com/go v0.57.0/go.mod h1:oXiQ6Rzq3RAkkY7N6t3TcE6jE+CIBBbA36lwQ1JyzZs=
-cloud.google.com/go v0.62.0/go.mod h1:jmCYTdRCQuc1PHIIJ/maLInMho30T/Y0M4hTdTShOYc=
-cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHObY=
-cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o=
-cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE=
-cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc=
-cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg=
-cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc=
-cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ=
-cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE=
-cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk=
-cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I=
-cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw=
-cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA=
-cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU=
-cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw=
-cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos=
-cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk=
-cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs=
-cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0=
-contrib.go.opencensus.io/exporter/ocagent v0.7.1-0.20200907061046-05415f1de66d h1:LblfooH1lKOpp1hIhukktmSAxFkqMPFk9KR6iZ0MJNI=
-contrib.go.opencensus.io/exporter/ocagent v0.7.1-0.20200907061046-05415f1de66d/go.mod h1:IshRmMJBhDfFj5Y67nVhMYTTIze91RUeT73ipWKs/GY=
-contrib.go.opencensus.io/exporter/prometheus v0.4.0 h1:0QfIkj9z/iVZgK31D9H9ohjjIDApI2GOPScCKwxedbs=
-contrib.go.opencensus.io/exporter/prometheus v0.4.0/go.mod h1:o7cosnyfuPVK0tB8q0QmaQNhGnptITnPQB+z1+qeFB0=
-dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU=
-github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
-github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo=
-github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU=
-github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc=
-github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc=
-github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0=
-github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0=
-github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho=
-github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY=
-github.com/benbjohnson/clock v1.1.0 h1:Q92kusRqC1XV2MjkWETPvjJVqKetz1OzxZB7mHJLju8=
-github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q=
-github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8=
-github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
-github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
-github.com/blendle/zapdriver v1.3.1 h1:C3dydBOWYRiOk+B8X9IVZ5IOe+7cl+tGOexN4QqHfpE=
-github.com/blendle/zapdriver v1.3.1/go.mod h1:mdXfREi6u5MArG4j9fewC+FGnXaBR+T4Ox4J2u4eHCc=
-github.com/buger/jsonparser v1.1.1/go.mod h1:6RYKKt7H4d4+iWqouImQ9R2FZql3VbhNgx27UK13J/0=
-github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
-github.com/census-instrumentation/opencensus-proto v0.4.1 h1:iKLQ0xPNFxR/2hzXZMrBo8f1j86j5WHzznCCQxV/b8g=
-github.com/census-instrumentation/opencensus-proto v0.4.1/go.mod h1:4T9NM4+4Vw91VeyqjLS6ao50K5bOcLKN6Q42XnYaRYw=
-github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc=
-github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
-github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
-github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44=
-github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
-github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI=
-github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI=
-github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU=
-github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw=
-github.com/cloudevents/sdk-go/v2 v2.14.0 h1:Nrob4FwVgi5L4tV9lhjzZcjYqFVyJzsA56CwPaPfv6s=
-github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc=
-github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk=
-github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs=
-github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
-github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
-github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
-github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
-github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE=
-github.com/emicklei/go-restful/v3 v3.9.0 h1:XwGDlfxEnQZzuopoqxwSEllNcCOM9DhhFyhFIIGKwxE=
-github.com/emicklei/go-restful/v3 v3.9.0/go.mod h1:6n3XBCmQQb25CM2LCACGz8ukIrRry+4bhvbpWn3mrbc=
-github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
-github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
-github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98=
-github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk=
-github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ=
-github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c=
-github.com/evanphx/json-patch v0.5.2/go.mod h1:ZWS5hhDbVDyob71nXKNL0+PWn6ToqBHMikGIFbs31qQ=
-github.com/evanphx/json-patch v4.12.0+incompatible h1:4onqiflcdA9EOZ4RxV643DvftH5pOlLGNtQ5lPWQu84=
-github.com/evanphx/json-patch/v5 v5.6.0 h1:b91NhWfaz02IuVxO9faSllyAtNXHMPkC5J8sJCLunww=
-github.com/evanphx/json-patch/v5 v5.6.0/go.mod h1:G79N1coSVB93tBe7j6PhzjmR3/2VvlbKOFpnXhI9Bw4=
-github.com/flowstack/go-jsonschema v0.1.1/go.mod h1:yL7fNggx1o8rm9RlgXv7hTBWxdBM0rVwpMwimd3F3N0=
-github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=
-github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU=
-github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8=
-github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8=
-github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as=
-github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as=
-github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY=
-github.com/go-kit/log v0.2.0 h1:7i2K3eKTos3Vc0enKCfnVcgHh2olr/MyfboYq7cAcFw=
-github.com/go-kit/log v0.2.0/go.mod h1:NwTd00d/i8cPZ3xOwwiv2PO5MOcx78fFErGNcVmBjv0=
-github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE=
-github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk=
-github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A=
-github.com/go-logfmt/logfmt v0.5.1 h1:otpy5pqBCBZ1ng9RQ0dPu4PN7ba75Y/aA+UpowDyNVA=
-github.com/go-logfmt/logfmt v0.5.1/go.mod h1:WYhtIu8zTZfxdn5+rREduYbwxfcBr/Vr6KEVveWlfTs=
-github.com/go-logr/logr v1.2.0/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A=
-github.com/go-logr/logr v1.2.3 h1:2DntVwHkVopvECVRSlL5PSo9eG+cAkDCuckLubN+rq0=
-github.com/go-logr/logr v1.2.3/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A=
-github.com/go-openapi/jsonpointer v0.19.6 h1:eCs3fxoIi3Wh6vtgmLTOjdhSpiqphQ+DaPn38N2ZdrE=
-github.com/go-openapi/jsonpointer v0.19.6/go.mod h1:osyAmYz/mB/C3I+WsTTSgw1ONzaLJoLCyoi6/zppojs=
-github.com/go-openapi/jsonreference v0.20.1 h1:FBLnyygC4/IZZr893oiomc9XaghoveYTrLC1F86HID8=
-github.com/go-openapi/jsonreference v0.20.1/go.mod h1:Bl1zwGIM8/wsvqjsOQLJ/SH+En5Ap4rVB5KVcIDZG2k=
-github.com/go-openapi/swag v0.22.3 h1:yMBqmnQ0gyZvEb/+KzuWZOXgllrXT4SADYbvDaXHv/g=
-github.com/go-openapi/swag v0.22.3/go.mod h1:UzaqsxGiab7freDnrUUra0MwWfN/q7tE4j+VcZ0yl14=
-github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY=
-github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ=
-github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q=
-github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q=
-github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q=
-github.com/golang/glog v1.1.0 h1:/d3pCKDPWNnvIWe0vVUpNP32qc8U3PDVxySP/y360qE=
-github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
-github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
-github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
-github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da h1:oI5xCqsCo564l8iNU+DwB5epxmsaqB+rhGL0m5jtYqE=
-github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
-github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=
-github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=
-github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y=
-github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw=
-github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw=
-github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw=
-github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4=
-github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
-github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
-github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
-github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw=
-github.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw=
-github.com/golang/protobuf v1.3.5/go.mod h1:6O5/vntMXwX2lRkT1hjjk0nAC1IDOTvTlVgjlRvqsdk=
-github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8=
-github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA=
-github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs=
-github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w=
-github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0=
-github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8=
-github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI=
-github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI=
-github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
-github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY=
-github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg=
-github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY=
-github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
-github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
-github.com/google/gnostic v0.6.9 h1:ZK/5VhkoX835RikCHpSUJV9a+S3e1zLh59YnyWeBW+0=
-github.com/google/gnostic v0.6.9/go.mod h1:Nm8234We1lq6iB9OmlgNv3nH91XLLVZHCDayfA3xq+E=
-github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M=
-github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU=
-github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU=
-github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
-github.com/google/go-cmp v0.4.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
-github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
-github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
-github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
-github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
-github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
-github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
-github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
-github.com/google/go-containerregistry v0.14.0 h1:z58vMqHxuwvAsVwvKEkmVBz2TlgBgH5k6koEXBtlYkw=
-github.com/google/go-containerregistry v0.14.0/go.mod h1:aiJ2fp/SXvkWgmYHioXnbMdlgB8eXiiYOY55gfN91Wk=
-github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
-github.com/google/gofuzz v1.2.0 h1:xRy4A+RhZaiKjJ1bPfwQ8sedCA+YS2YcCHW6ec7JMi0=
-github.com/google/gofuzz v1.2.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
-github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs=
-github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0=
-github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc=
-github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc=
-github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM=
-github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM=
-github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM=
-github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM=
-github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM=
-github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI=
-github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
-github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I=
-github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg=
-github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk=
-github.com/grpc-ecosystem/grpc-gateway v1.14.6/go.mod h1:zdiPV4Yse/1gnckTHtghG4GkDEdKCRJduHpTxT3/jcw=
-github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw=
-github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3 h1:lLT7ZLSzGLI08vc9cpd+tYmNWjdKDqyr/2L+f6U12Fk=
-github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3/go.mod h1:o//XUCC/F+yRGJoPO/VU0GSB0f8Nhgmxx0VIRUvaC0w=
-github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
-github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I=
-github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
-github.com/hashicorp/go-multierror v1.1.1 h1:H5DkEtf6CXdFp0N0Em5UCwQpXMWke8IA0+lD48awMYo=
-github.com/hashicorp/go-multierror v1.1.1/go.mod h1:iw975J/qwKPdAO1clOe2L8331t/9/fmwbPZ6JB6eMoM=
-github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
-github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
-github.com/hashicorp/golang-lru v0.5.4 h1:YDjusn29QI/Das2iO9M0BHnIbxPeyuCHsjMW+lJfyTc=
-github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc=
-github.com/imdario/mergo v0.3.13 h1:lFzP57bqS/wsqKssCGmtLAb8A0wKjLGrve2q3PPVcBk=
-github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI=
-github.com/josharian/intern v1.0.0 h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY=
-github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y=
-github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4=
-github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU=
-github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4=
-github.com/json-iterator/go v1.1.11/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4=
-github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM=
-github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo=
-github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU=
-github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk=
-github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w=
-github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM=
-github.com/kelseyhightower/envconfig v1.4.0 h1:Im6hONhd3pLkfDFsbRgu68RDNkGF1r3dvMUtDTo2cv8=
-github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8=
-github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=
-github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
-github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
-github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc=
-github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
-github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI=
-github.com/kr/pretty v0.2.1 h1:Fmg33tUaq4/8ym9TJN1x7sLJnHVwhP33CNkpYV/7rwI=
-github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI=
-github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
-github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
-github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
-github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
-github.com/mailru/easyjson v0.7.7 h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0=
-github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc=
-github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0=
-github.com/matttproud/golang_protobuf_extensions v1.0.4 h1:mmDVorXM7PCGKw94cs5zkfA9PSy5pEvNWRP0ET0TIVo=
-github.com/matttproud/golang_protobuf_extensions v1.0.4/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4=
-github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
-github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=
-github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
-github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0=
-github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0=
-github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M=
-github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk=
-github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA=
-github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U=
-github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U=
-github.com/onsi/ginkgo/v2 v2.4.0 h1:+Ig9nvqgS5OBSACXNk15PLdp0U9XPYROt9CFzVdFGIs=
-github.com/onsi/gomega v1.23.0 h1:/oxKu9c2HVap+F3PfKort2Hw5DEU+HGlW8n+tguWsys=
-github.com/opencontainers/go-digest v1.0.0 h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8Oi/yOhh5U=
-github.com/opencontainers/go-digest v1.0.0/go.mod h1:0JzlMkj0TRzQZfJkVvzbP0HBR3IKzErnv2BNG4W4MAM=
-github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
-github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
-github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
-github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
-github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
-github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
-github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw=
-github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo=
-github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M=
-github.com/prometheus/client_golang v1.11.0/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqroYurpAkEiz0P2BEV0=
-github.com/prometheus/client_golang v1.12.1/go.mod h1:3Z9XVyYiZYEO+YQWt3RD2R3jrbd179Rt297l4aS6nDY=
-github.com/prometheus/client_golang v1.13.0 h1:b71QUfeo5M8gq2+evJdTPfZhYMAU0uKPkyPJ7TPsloU=
-github.com/prometheus/client_golang v1.13.0/go.mod h1:vTeo+zgvILHsnnj/39Ou/1fPN5nJFOEMgftOUOmlvYQ=
-github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo=
-github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=
-github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=
-github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=
-github.com/prometheus/client_model v0.3.0 h1:UBgGFHqYdG/TPFD1B1ogZywDqEkwp3fBMvqdiQ7Xew4=
-github.com/prometheus/client_model v0.3.0/go.mod h1:LDGWKZIo7rky3hgvBe+caln+Dr3dPggB5dvjtD7w9+w=
-github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4=
-github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo=
-github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc=
-github.com/prometheus/common v0.28.0/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls=
-github.com/prometheus/common v0.32.1/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls=
-github.com/prometheus/common v0.37.0 h1:ccBbHCgIiT9uSoFY0vX8H3zsNR5eLt17/RQLUvn8pXE=
-github.com/prometheus/common v0.37.0/go.mod h1:phzohg0JFMnBEFGxTDbfu3QyL5GI8gTQJFhYO5B3mfA=
-github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk=
-github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA=
-github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU=
-github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA=
-github.com/prometheus/procfs v0.7.3/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA=
-github.com/prometheus/procfs v0.8.0 h1:ODq8ZFEaYeCaZOJlZZdJA2AbQR98dSHSM1KW/You5mo=
-github.com/prometheus/procfs v0.8.0/go.mod h1:z7EfXMXOkbkqb9IINtpCn86r/to3BnA0uaxHdg830/4=
-github.com/prometheus/statsd_exporter v0.21.0 h1:hA05Q5RFeIjgwKIYEdFd59xu5Wwaznf33yKI+pyX6T8=
-github.com/prometheus/statsd_exporter v0.21.0/go.mod h1:rbT83sZq2V+p73lHhPZfMc3MLCHmSHelCh9hSGYNLTQ=
-github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ=
-github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
-github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo=
-github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE=
-github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88=
-github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA=
-github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
-github.com/stoewer/go-strcase v1.2.0/go.mod h1:IBiWB2sKIp3wVVQ3Y035++gc+knqhUQag1KpM8ahLw8=
-github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
-github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
-github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
-github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo=
-github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
-github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
-github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=
-github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA=
-github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
-github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
-github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
-github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
-github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
-github.com/stretchr/testify v1.8.2 h1:+h33VjcLVPDHtOdpUCuF+7gSuG3yGIftsP1YvFihtJ8=
-github.com/tektoncd/pipeline v0.47.0 h1:zZxmp6im8/p9RaH32LgeCP6dwH/4hcsfvEQUrwGsUPA=
-github.com/tektoncd/pipeline v0.47.0/go.mod h1:7H1DeNuEJFGoExGwQTlRul2IziCPxkjXRdDdirWmoQs=
-github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU=
-github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415/go.mod h1:GwrjFmJcFw6At/Gs6z4yjiIwzuJ1/+UwLxMQDVQXShQ=
-github.com/xeipuuv/gojsonschema v1.2.0/go.mod h1:anYRn/JVcOK2ZgGU+IjEV4nwlhoK5sQluxsYJ78Id3Y=
-github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
-github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
-github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
-github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
-go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU=
-go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8=
-go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
-go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
-go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
-go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E=
-go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0=
-go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo=
-go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI=
-go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
-go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc=
-go.uber.org/atomic v1.10.0 h1:9qC72Qh0+3MqyJbAn8YU5xVq1frD8bn3JtD2oXtafVQ=
-go.uber.org/atomic v1.10.0/go.mod h1:LUxbIzbOniOlMKjJjyPfpl4v+PKK2cNJn91OQbhoJI0=
-go.uber.org/goleak v1.2.0 h1:xqgm/S+aQvhWFTtR0XK3Jvg7z8kGV8P4X14IzwN3Eqk=
-go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0=
-go.uber.org/multierr v1.8.0 h1:dg6GjLku4EH+249NNmoIciG9N/jURbDG+pFlTkhzIC8=
-go.uber.org/multierr v1.8.0/go.mod h1:7EAYxJLBy9rStEaz58O2t4Uvip6FSURkq8/ppBp95ak=
-go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q=
-go.uber.org/zap v1.24.0 h1:FiJd5l1UOLj0wCgbSE0rwwXHzEdAZS6hiiSnxJN/D60=
-go.uber.org/zap v1.24.0/go.mod h1:2kMP+WWQ8aoFoedH3T2sq6iJ2yDWpHbP0f6MQbS9Gkg=
-golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=
-golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
-golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
-golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
-golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
-golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
-golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
-golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
-golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8=
-golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek=
-golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY=
-golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4=
-golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4=
-golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4=
-golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM=
-golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU=
-golang.org/x/exp v0.0.0-20230307190834-24139beb5833 h1:SChBja7BCQewoTAU7IgvucQKMIXrEpFxNMs0spT3/5s=
-golang.org/x/exp v0.0.0-20230307190834-24139beb5833/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc=
-golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js=
-golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0=
-golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=
-golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU=
-golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=
-golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=
-golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=
-golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=
-golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=
-golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRuDixDT3tpyyb+LUpUlRWLxfhWrs=
-golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY=
-golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY=
-golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE=
-golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o=
-golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc=
-golang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY=
-golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg=
-golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg=
-golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
-golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
-golang.org/x/mod v0.9.0 h1:KENHtAZL2y3NLMYZeHY9DW8HW8V+kQyJsY/V9JlKvCs=
-golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
-golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
-golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
-golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
-golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
-golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
-golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
-golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
-golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
-golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks=
-golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
-golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
-golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
-golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
-golang.org/x/net v0.0.0-20191002035440-2ec189313ef0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
-golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
-golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
-golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
-golang.org/x/net v0.0.0-20200222125558-5a598a2470a0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
-golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
-golang.org/x/net v0.0.0-20200301022130-244492dfa37a/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
-golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=
-golang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=
-golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=
-golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=
-golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=
-golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA=
-golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA=
-golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA=
-golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
-golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
-golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM=
-golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
-golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
-golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk=
-golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk=
-golang.org/x/net v0.23.0 h1:7EYJ93RZ9vYSZAIb2x3lnuvqO5zneoD6IvWjuhfxjTs=
-golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg=
-golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
-golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
-golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
-golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
-golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
-golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
-golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc=
-golang.org/x/oauth2 v0.7.0 h1:qe6s0zUXlPX80/dITx3440hWZ7GwMwgDDyrSGTPJG/g=
-golang.org/x/oauth2 v0.7.0/go.mod h1:hPLQkd9LyjfXTiRohC/41GhcFqxisoUQ99sCUOHO9x4=
-golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
-golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
-golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
-golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
-golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
-golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
-golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
-golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
-golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
-golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
-golang.org/x/sync v0.1.0 h1:wsuoTGHzEhffawBOhz5CYhcrV4IdKZbEyZjBMuTp12o=
-golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
-golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
-golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
-golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
-golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
-golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
-golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
-golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
-golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
-golang.org/x/sys v0.0.0-20220114195835-da31bd327af9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
-golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4=
-golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
-golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
-golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
-golang.org/x/term v0.18.0 h1:FcHjZXDMxI8mM3nwhX9HlKop4C0YQvCVCdwYl2wOtE8=
-golang.org/x/term v0.18.0/go.mod h1:ILwASektA3OnRv7amZ1xhE/KTR+u50pbXfZ03+6Nx58=
-golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
-golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
-golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
-golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=
-golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
-golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
-golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
-golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
-golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ=
-golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU=
-golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
-golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
-golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
-golang.org/x/time v0.3.0 h1:rg5rLMjNzMS1RkNLzCG38eapWhnYLFYXDXj2gOlr8j4=
-golang.org/x/time v0.3.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
-golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
-golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
-golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY=
-golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=
-golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=
-golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=
-golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q=
-golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q=
-golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q=
-golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=
-golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=
-golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=
-golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
-golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
-golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
-golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
-golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
-golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
-golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
-golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
-golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
-golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
-golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
-golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
-golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
-golang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
-golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
-golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
-golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
-golang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
-golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw=
-golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw=
-golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8=
-golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
-golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
-golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
-golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
-golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
-golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA=
-golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA=
-golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA=
-golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
-golang.org/x/tools v0.7.0 h1:W4OVu8VVOaIO0yzWMNdepAulS7YfoS3Zabrm8DOXXU4=
-golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
-golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
-golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
-golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
-gomodules.xyz/jsonpatch/v2 v2.2.0 h1:4pT439QV83L+G9FkcCriY6EkpcK6r6bK+A5FBUMI7qY=
-gomodules.xyz/jsonpatch/v2 v2.2.0/go.mod h1:WXp+iVDkoLQqPudfQ9GBlwB2eZ5DKOnjQZCYdOS8GPY=
-google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE=
-google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M=
-google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg=
-google.golang.org/api v0.9.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg=
-google.golang.org/api v0.13.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI=
-google.golang.org/api v0.14.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI=
-google.golang.org/api v0.15.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI=
-google.golang.org/api v0.17.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE=
-google.golang.org/api v0.18.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE=
-google.golang.org/api v0.19.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE=
-google.golang.org/api v0.20.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE=
-google.golang.org/api v0.22.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE=
-google.golang.org/api v0.24.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE=
-google.golang.org/api v0.25.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE=
-google.golang.org/api v0.28.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE=
-google.golang.org/api v0.29.0/go.mod h1:Lcubydp8VUV7KeIHD9z2Bys/sm/vGKnG1UHuDBSrHWM=
-google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz5138Fc=
-google.golang.org/api v0.116.0 h1:09tOPVufPwfm5W4aA8EizGHJ7BcoRDsIareM2a15gO4=
-google.golang.org/api v0.116.0/go.mod h1:9cD4/t6uvd9naoEJFA+M96d0IuB6BqFuyhpw68+mRGg=
-google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM=
-google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
-google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
-google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0=
-google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc=
-google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc=
-google.golang.org/appengine v1.6.7 h1:FZR1q0exgwxzPzp/aF+VccGrSfxfPpkBqjIIEq3ru6c=
-google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc=
-google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc=
-google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=
-google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=
-google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=
-google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=
-google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc=
-google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc=
-google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8=
-google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc=
-google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc=
-google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc=
-google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc=
-google.golang.org/genproto v0.0.0-20200115191322-ca5a22157cba/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc=
-google.golang.org/genproto v0.0.0-20200122232147-0452cf42e150/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc=
-google.golang.org/genproto v0.0.0-20200204135345-fa8e72b47b90/go.mod h1:GmwEX6Z4W5gMy59cAlVYjN9JhxgbQH6Gn+gFDQe2lzA=
-google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
-google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
-google.golang.org/genproto v0.0.0-20200228133532-8c2c7df3a383/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
-google.golang.org/genproto v0.0.0-20200305110556-506484158171/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
-google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
-google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
-google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
-google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
-google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
-google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod h1:YsZOwe1myG/8QRHRsmBRE1LrgQY60beZKjly0O1fX9U=
-google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo=
-google.golang.org/genproto v0.0.0-20200527145253-8367513e4ece/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA=
-google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA=
-google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
-google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
-google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
-google.golang.org/genproto v0.0.0-20220107163113-42d7afdf6368/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc=
-google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 h1:KpwkzHKEF7B9Zxg18WzOa7djJ+Ha5DzthMyZYQfEn2A=
-google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1/go.mod h1:nKE/iIaLqn2bQwXBg8f1g2Ylh6r5MN5CmZvuzZCgsCU=
-google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c=
-google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38=
-google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM=
-google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg=
-google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY=
-google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk=
-google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk=
-google.golang.org/grpc v1.27.1/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk=
-google.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKal+60=
-google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk=
-google.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak=
-google.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak=
-google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0=
-google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc=
-google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU=
-google.golang.org/grpc v1.40.0/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34=
-google.golang.org/grpc v1.56.3 h1:8I4C0Yq1EjstUzUJzpcRVbuYA2mODtEmpWiQoN/b2nc=
-google.golang.org/grpc v1.56.3/go.mod h1:I9bI3vqKfayGqPUAwGdOSu7kt6oIJLixfffKrpXqQ9s=
-google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8=
-google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0=
-google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM=
-google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE=
-google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo=
-google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
-google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
-google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
-google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4=
-google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c=
-google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
-google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
-google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
-google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI=
-google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
-gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw=
-gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
-gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
-gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
-gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=
-gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=
-gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI=
-gopkg.in/inf.v0 v0.9.1 h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc=
-gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw=
-gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
-gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
-gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
-gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
-gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
-gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
-gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
-gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=
-gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=
-gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
-gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
-gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
-gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
-gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
-honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
-honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
-honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
-honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
-honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg=
-honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k=
-honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k=
-k8s.io/api v0.25.9 h1:XuJ2bz2F52jZmp3YjUcp/pozH8kY1BlBHdXnoOXBP3U=
-k8s.io/api v0.25.9/go.mod h1:9YRWzD0cRHzfsnf9e5OQsQ4Un6cbZ//Xv3jo44YKm2Y=
-k8s.io/apimachinery v0.26.4 h1:rZccKdBLg9vP6J09JD+z8Yr99Ce8gk3Lbi9TCx05Jzs=
-k8s.io/apimachinery v0.26.4/go.mod h1:ats7nN1LExKHvJ9TmwootT00Yz05MuYqPXEXaVeOy5I=
-k8s.io/client-go v0.25.9 h1:U0S3nc71NRfHXiA0utyCkPt3Mv1SWpQw0g5VfBCv5xg=
-k8s.io/client-go v0.25.9/go.mod h1:tmPyOtpbbkneXj65EYZ4sXun1BE/2F2XlRABVj9CBgc=
-k8s.io/klog/v2 v2.90.1 h1:m4bYOKall2MmOiRaR1J+We67Do7vm9KiQVlT96lnHUw=
-k8s.io/klog/v2 v2.90.1/go.mod h1:y1WjHnz7Dj687irZUWR/WLkLc5N1YHtjLdmgWjndZn0=
-k8s.io/kube-openapi v0.0.0-20230308215209-15aac26d736a h1:gmovKNur38vgoWfGtP5QOGNOA7ki4n6qNYoFAgMlNvg=
-k8s.io/kube-openapi v0.0.0-20230308215209-15aac26d736a/go.mod h1:y5VtZWM9sHHc2ZodIH/6SHzXj+TPU5USoA8lcIeKEKY=
-k8s.io/utils v0.0.0-20230209194617-a36077c30491 h1:r0BAOLElQnnFhE/ApUsg3iHdVYYPBjNSSOMowRZxxsY=
-k8s.io/utils v0.0.0-20230209194617-a36077c30491/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=
-knative.dev/pkg v0.0.0-20230221145627-8efb3485adcf h1:TwvZFDpkyqpK2OCAwvNGV2Zjk14FzIh8X8Ci/du3jYI=
-knative.dev/pkg v0.0.0-20230221145627-8efb3485adcf/go.mod h1:VO/fcEsq43seuONRQxZyftWHjpMabYzRHDtpSEQ/eoQ=
-rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=
-rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0=
-rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=
-sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd h1:EDPBXCAspyGV4jQlpZSudPeMmr1bNJefnuqLsRAsHZo=
-sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd/go.mod h1:B8JuhiUyNFVKdsE8h686QcCxMaH6HrOAZj4vswFpcB0=
-sigs.k8s.io/structured-merge-diff/v4 v4.2.3 h1:PRbqxJClWWYMNV1dhaG4NsibJbArud9kFxnAMREiWFE=
-sigs.k8s.io/structured-merge-diff/v4 v4.2.3/go.mod h1:qjx8mGObPmV2aSZepjQjbmb2ihdVs8cGKBraizNC69E=
-sigs.k8s.io/yaml v1.3.0 h1:a2VclLzOGrwOHDiV8EfBGhvjHvP46CtW5j6POvhYGGo=
-sigs.k8s.io/yaml v1.3.0/go.mod h1:GeOyir5tyXNByN85N/dRIT9es5UQNerPYEKK56eTBm8=
diff --git a/extensions/tekton/model-triggers-v1alpha1/pom.xml b/extensions/tekton/model-triggers-v1alpha1/pom.xml
deleted file mode 100644
index b26ce530b6d..00000000000
--- a/extensions/tekton/model-triggers-v1alpha1/pom.xml
+++ /dev/null
@@ -1,111 +0,0 @@
-
-
-
- 4.0.0
-
- io.fabric8
- tekton-extension-pom
- 7.0-SNAPSHOT
-
-
- tekton-model-triggers-v1alpha1
- bundle
- Fabric8 :: Tekton :: Model triggers :: v1alpha1
-
-
-
- io.fabric8.kubernetes.api.builder,
- !io.fabric8.tekton.*,
- *
-
-
- io.fabric8.tekton.*,
- io.fabric8.knative.internal.pkg.apis.*
-
-
-
-
-
- io.sundr
- builder-annotations
- provided
-
-
- io.sundr
- transform-annotations
-
-
- io.sundr
- sundr-codegen-velocity-nodeps
-
-
- io.fabric8
- kubernetes-model-core
-
-
- io.fabric8
- tekton-model-v1beta1
-
-
- org.junit.jupiter
- junit-jupiter-engine
- test
-
-
- org.projectlombok
- lombok
- provided
-
-
-
-
-
- generate
-
-
-
- org.jsonschema2pojo
- jsonschema2pojo-maven-plugin
-
-
- maven-antrun-plugin
-
-
- generate-sources
-
-
-
-
-
-
-
- run
-
-
-
-
-
-
-
-
-
diff --git a/extensions/tekton/model-triggers-v1alpha1/src/main/resources/schema/tekton-schema-triggers.json b/extensions/tekton/model-triggers-v1alpha1/src/main/resources/schema/tekton-schema-triggers.json
deleted file mode 100644
index d5c07440505..00000000000
--- a/extensions/tekton/model-triggers-v1alpha1/src/main/resources/schema/tekton-schema-triggers.json
+++ /dev/null
@@ -1,1277 +0,0 @@
-{
- "id": "http://fabric8.io/tekton/triggers/TektonSchema#",
- "$schema": "http://json-schema.org/draft-07/schema#",
- "definitions": {
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_BitbucketInterceptor": {
- "type": "object",
- "properties": {
- "eventTypes": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- },
- "secretRef": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_SecretRef",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.SecretRef"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.BitbucketInterceptor",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_CELInterceptor": {
- "type": "object",
- "properties": {
- "filter": {
- "type": "string"
- },
- "overlays": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_CELOverlay",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.CELOverlay"
- }
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.CELInterceptor",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_CELOverlay": {
- "type": "object",
- "properties": {
- "expression": {
- "type": "string"
- },
- "key": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.CELOverlay",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ClientConfig": {
- "type": "object",
- "properties": {
- "caBundle": {
- "type": "string",
- "javaOmitEmpty": true
- },
- "service": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ServiceReference",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.ServiceReference"
- },
- "url": {
- "existingJavaType": "java.lang.String"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.ClientConfig",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ClusterInterceptor": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "triggers.tekton.dev/v1alpha1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "ClusterInterceptor",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ClusterInterceptorSpec",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.ClusterInterceptorSpec"
- },
- "status": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ClusterInterceptorStatus",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.ClusterInterceptorStatus"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.ClusterInterceptor",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ClusterInterceptorList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "triggers.tekton.dev/v1alpha1",
- "required": true
- },
- "items": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ClusterInterceptor",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.ClusterInterceptor"
- }
- },
- "kind": {
- "type": "string",
- "default": "ClusterInterceptorList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.ClusterInterceptorList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.triggers.v1alpha1.ClusterInterceptor\u003e"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ClusterInterceptorSpec": {
- "type": "object",
- "properties": {
- "clientConfig": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ClientConfig",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.ClientConfig"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.ClusterInterceptorSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ClusterInterceptorStatus": {
- "type": "object",
- "properties": {
- "address": {
- "existingJavaType": "io.fabric8.knative.duck.v1.Addressable"
- },
- "annotations": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "conditions": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.knative.pkg.apis.Condition"
- }
- },
- "observedGeneration": {
- "type": "integer",
- "existingJavaType": "Long"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.ClusterInterceptorStatus",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ClusterTriggerBinding": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "triggers.tekton.dev/v1alpha1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "ClusterTriggerBinding",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerBindingSpec",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerBindingSpec"
- },
- "status": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerBindingStatus",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerBindingStatus"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.ClusterTriggerBinding",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ClusterTriggerBindingList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "triggers.tekton.dev/v1alpha1",
- "required": true
- },
- "items": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ClusterTriggerBinding",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.ClusterTriggerBinding"
- }
- },
- "kind": {
- "type": "string",
- "default": "ClusterTriggerBindingList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.ClusterTriggerBindingList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.triggers.v1alpha1.ClusterTriggerBinding\u003e"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListener": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "triggers.tekton.dev/v1alpha1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "EventListener",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListenerSpec",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.EventListenerSpec"
- },
- "status": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListenerStatus",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.EventListenerStatus"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.EventListener",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata",
- "io.fabric8.kubernetes.api.model.Namespaced"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListenerConfig": {
- "type": "object",
- "properties": {
- "generatedName": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.EventListenerConfig",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListenerList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "triggers.tekton.dev/v1alpha1",
- "required": true
- },
- "items": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListener",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.EventListener"
- }
- },
- "kind": {
- "type": "string",
- "default": "EventListenerList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.EventListenerList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.triggers.v1alpha1.EventListener\u003e"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListenerSpec": {
- "type": "object",
- "properties": {
- "labelSelector": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector"
- },
- "namespaceSelector": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_NamespaceSelector",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.NamespaceSelector"
- },
- "resources": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_Resources",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.Resources"
- },
- "serviceAccountName": {
- "type": "string"
- },
- "triggers": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListenerTrigger",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.EventListenerTrigger"
- }
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.EventListenerSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListenerStatus": {
- "type": "object",
- "properties": {
- "address": {
- "existingJavaType": "io.fabric8.knative.duck.v1alpha1.Addressable"
- },
- "annotations": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "conditions": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.knative.pkg.apis.Condition"
- }
- },
- "configuration": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListenerConfig",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.EventListenerConfig"
- },
- "observedGeneration": {
- "type": "integer",
- "existingJavaType": "Long"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.EventListenerStatus",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListenerTrigger": {
- "type": "object",
- "properties": {
- "bindings": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerSpecBinding",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerSpecBinding"
- }
- },
- "interceptors": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerInterceptor",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerInterceptor"
- }
- },
- "name": {
- "type": "string"
- },
- "serviceAccountName": {
- "type": "string"
- },
- "template": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerSpecTemplate",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerSpecTemplate"
- },
- "triggerRef": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.EventListenerTrigger",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_GitHubInterceptor": {
- "type": "object",
- "properties": {
- "eventTypes": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- },
- "secretRef": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_SecretRef",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.SecretRef"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.GitHubInterceptor",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_GitLabInterceptor": {
- "type": "object",
- "properties": {
- "eventTypes": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- },
- "secretRef": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_SecretRef",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.SecretRef"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.GitLabInterceptor",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_Interceptor": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "triggers.tekton.dev/v1alpha1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "Interceptor",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_InterceptorSpec",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.InterceptorSpec"
- },
- "status": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_InterceptorStatus",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.InterceptorStatus"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.Interceptor",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata",
- "io.fabric8.kubernetes.api.model.Namespaced"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_InterceptorList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "triggers.tekton.dev/v1alpha1",
- "required": true
- },
- "items": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_Interceptor",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.Interceptor"
- }
- },
- "kind": {
- "type": "string",
- "default": "InterceptorList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.InterceptorList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.triggers.v1alpha1.Interceptor\u003e"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_InterceptorParams": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "value": {
- "existingJavaType": "java.lang.Object"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.InterceptorParams",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_InterceptorRef": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string"
- },
- "kind": {
- "type": "string"
- },
- "name": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.InterceptorRef",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_InterceptorSpec": {
- "type": "object",
- "properties": {
- "clientConfig": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ClientConfig",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.ClientConfig"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.InterceptorSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_InterceptorStatus": {
- "type": "object",
- "properties": {
- "address": {
- "existingJavaType": "io.fabric8.knative.duck.v1.Addressable"
- },
- "annotations": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "conditions": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.knative.pkg.apis.Condition"
- }
- },
- "observedGeneration": {
- "type": "integer",
- "existingJavaType": "Long"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.InterceptorStatus",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_KubernetesResource": {
- "type": "object",
- "properties": {
- "replicas": {
- "type": "integer",
- "existingJavaType": "Integer"
- },
- "serviceType": {
- "type": "string"
- },
- "spec": {
- "existingJavaType": "io.fabric8.knative.duck.v1.WithPodSpec"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.KubernetesResource",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_NamespaceSelector": {
- "type": "object",
- "properties": {
- "matchNames": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.NamespaceSelector",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_Param": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "value": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.Param",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ParamSpec": {
- "type": "object",
- "properties": {
- "default": {
- "type": "string",
- "existingJavaType": "String"
- },
- "description": {
- "type": "string"
- },
- "name": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.ParamSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_Resources": {
- "type": "object",
- "properties": {
- "customResource": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata"
- },
- "kubernetesResource": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_KubernetesResource",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.KubernetesResource"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.Resources",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_SecretRef": {
- "type": "object",
- "properties": {
- "secretKey": {
- "type": "string"
- },
- "secretName": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.SecretRef",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ServiceReference": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "namespace": {
- "type": "string"
- },
- "path": {
- "type": "string"
- },
- "port": {
- "type": "integer",
- "existingJavaType": "Integer"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.ServiceReference",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_Trigger": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "triggers.tekton.dev/v1alpha1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "Trigger",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerSpec",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerSpec"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.Trigger",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata",
- "io.fabric8.kubernetes.api.model.Namespaced"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerBinding": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "triggers.tekton.dev/v1alpha1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "TriggerBinding",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerBindingSpec",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerBindingSpec"
- },
- "status": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerBindingStatus",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerBindingStatus"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerBinding",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata",
- "io.fabric8.kubernetes.api.model.Namespaced"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerBindingList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "triggers.tekton.dev/v1alpha1",
- "required": true
- },
- "items": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerBinding",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerBinding"
- }
- },
- "kind": {
- "type": "string",
- "default": "TriggerBindingList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerBindingList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.triggers.v1alpha1.TriggerBinding\u003e"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerBindingSpec": {
- "type": "object",
- "properties": {
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_Param",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.Param"
- }
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerBindingSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerBindingStatus": {
- "type": "object",
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerBindingStatus",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerInterceptor": {
- "type": "object",
- "properties": {
- "bitbucket": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_BitbucketInterceptor",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.BitbucketInterceptor"
- },
- "cel": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_CELInterceptor",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.CELInterceptor"
- },
- "github": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_GitHubInterceptor",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.GitHubInterceptor"
- },
- "gitlab": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_GitLabInterceptor",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.GitLabInterceptor"
- },
- "name": {
- "type": "string",
- "existingJavaType": "String"
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_InterceptorParams",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.InterceptorParams"
- }
- },
- "ref": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_InterceptorRef",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.InterceptorRef"
- },
- "webhook": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_WebhookInterceptor",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.WebhookInterceptor"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerInterceptor",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "triggers.tekton.dev/v1alpha1",
- "required": true
- },
- "items": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_Trigger",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.Trigger"
- }
- },
- "kind": {
- "type": "string",
- "default": "TriggerList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.triggers.v1alpha1.Trigger\u003e"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerSpec": {
- "type": "object",
- "properties": {
- "bindings": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerSpecBinding",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerSpecBinding"
- }
- },
- "interceptors": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerInterceptor",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerInterceptor"
- }
- },
- "name": {
- "type": "string"
- },
- "serviceAccountName": {
- "type": "string"
- },
- "template": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerSpecTemplate",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerSpecTemplate"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerSpecBinding": {
- "type": "object",
- "properties": {
- "apiversion": {
- "type": "string"
- },
- "kind": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "ref": {
- "type": "string"
- },
- "value": {
- "type": "string",
- "existingJavaType": "String"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerSpecBinding",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerSpecTemplate": {
- "type": "object",
- "properties": {
- "apiversion": {
- "type": "string"
- },
- "ref": {
- "type": "string",
- "existingJavaType": "String"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerTemplateSpec",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerTemplateSpec"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerSpecTemplate",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerTemplate": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "triggers.tekton.dev/v1alpha1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "TriggerTemplate",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerTemplateSpec",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerTemplateSpec"
- },
- "status": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerTemplateStatus",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerTemplateStatus"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerTemplate",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata",
- "io.fabric8.kubernetes.api.model.Namespaced"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerTemplateList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "triggers.tekton.dev/v1alpha1",
- "required": true
- },
- "items": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerTemplate",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerTemplate"
- }
- },
- "kind": {
- "type": "string",
- "default": "TriggerTemplateList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerTemplateList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.triggers.v1alpha1.TriggerTemplate\u003e"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerTemplateSpec": {
- "type": "object",
- "properties": {
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ParamSpec",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.ParamSpec"
- }
- },
- "resourcetemplates": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata"
- }
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerTemplateSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerTemplateStatus": {
- "type": "object",
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerTemplateStatus",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_WebhookInterceptor": {
- "type": "object",
- "properties": {
- "header": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Param"
- }
- },
- "objectRef": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference"
- },
- "url": {
- "existingJavaType": "java.lang.String"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1alpha1.WebhookInterceptor",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- }
- },
- "type": "object",
- "properties": {
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_BitbucketInterceptor": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_BitbucketInterceptor",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.BitbucketInterceptor"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_CELInterceptor": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_CELInterceptor",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.CELInterceptor"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_CELOverlay": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_CELOverlay",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.CELOverlay"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ClientConfig": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ClientConfig",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.ClientConfig"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ClusterInterceptor": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ClusterInterceptor",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.ClusterInterceptor"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ClusterInterceptorList": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ClusterInterceptorList",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.ClusterInterceptorList"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ClusterInterceptorSpec": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ClusterInterceptorSpec",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.ClusterInterceptorSpec"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ClusterInterceptorStatus": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ClusterInterceptorStatus",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.ClusterInterceptorStatus"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ClusterTriggerBinding": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ClusterTriggerBinding",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.ClusterTriggerBinding"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ClusterTriggerBindingList": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ClusterTriggerBindingList",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.ClusterTriggerBindingList"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListener": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListener",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.EventListener"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListenerConfig": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListenerConfig",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.EventListenerConfig"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListenerList": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListenerList",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.EventListenerList"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListenerSpec": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListenerSpec",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.EventListenerSpec"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListenerStatus": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListenerStatus",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.EventListenerStatus"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListenerTrigger": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListenerTrigger",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.EventListenerTrigger"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_GitHubInterceptor": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_GitHubInterceptor",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.GitHubInterceptor"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_GitLabInterceptor": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_GitLabInterceptor",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.GitLabInterceptor"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_Interceptor": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_Interceptor",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.Interceptor"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_InterceptorList": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_InterceptorList",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.InterceptorList"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_InterceptorParams": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_InterceptorParams",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.InterceptorParams"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_InterceptorRef": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_InterceptorRef",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.InterceptorRef"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_InterceptorSpec": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_InterceptorSpec",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.InterceptorSpec"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_InterceptorStatus": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_InterceptorStatus",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.InterceptorStatus"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_KubernetesResource": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_KubernetesResource",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.KubernetesResource"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_NamespaceSelector": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_NamespaceSelector",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.NamespaceSelector"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_Param": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_Param",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.Param"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ParamSpec": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ParamSpec",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.ParamSpec"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_Resources": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_Resources",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.Resources"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_SecretRef": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_SecretRef",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.SecretRef"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ServiceReference": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ServiceReference",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.ServiceReference"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_Trigger": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_Trigger",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.Trigger"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerBinding": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerBinding",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerBinding"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerBindingList": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerBindingList",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerBindingList"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerBindingSpec": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerBindingSpec",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerBindingSpec"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerBindingStatus": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerBindingStatus",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerBindingStatus"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerInterceptor": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerInterceptor",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerInterceptor"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerList": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerList",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerList"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerSpec": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerSpec",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerSpec"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerSpecBinding": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerSpecBinding",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerSpecBinding"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerSpecTemplate": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerSpecTemplate",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerSpecTemplate"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerTemplate": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerTemplate",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerTemplate"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerTemplateList": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerTemplateList",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerTemplateList"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerTemplateSpec": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerTemplateSpec",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerTemplateSpec"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerTemplateStatus": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerTemplateStatus",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerTemplateStatus"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_WebhookInterceptor": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_WebhookInterceptor",
- "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.WebhookInterceptor"
- }
- },
- "additionalProperties": false
-}
diff --git a/extensions/tekton/model-triggers-v1beta1/pom.xml b/extensions/tekton/model-triggers-v1beta1/pom.xml
deleted file mode 100644
index 2700753d35f..00000000000
--- a/extensions/tekton/model-triggers-v1beta1/pom.xml
+++ /dev/null
@@ -1,111 +0,0 @@
-
-
-
- 4.0.0
-
- io.fabric8
- tekton-extension-pom
- 7.0-SNAPSHOT
-
-
- tekton-model-triggers-v1beta1
- bundle
- Fabric8 :: Tekton :: Model triggers :: v1beta1
-
-
-
- io.fabric8.kubernetes.api.builder,
- !io.fabric8.tekton.*,
- *
-
-
- io.fabric8.tekton.triggers.v1beta1.*,
- io.fabric8.knative.internal.pkg.apis.*
-
-
-
-
-
- io.sundr
- builder-annotations
- provided
-
-
- io.sundr
- transform-annotations
-
-
- io.sundr
- sundr-codegen-velocity-nodeps
-
-
- io.fabric8
- kubernetes-model-core
-
-
- io.fabric8
- tekton-model-v1beta1
-
-
- org.junit.jupiter
- junit-jupiter-engine
- test
-
-
- org.projectlombok
- lombok
- provided
-
-
-
-
-
- generate
-
-
-
- org.jsonschema2pojo
- jsonschema2pojo-maven-plugin
-
-
- maven-antrun-plugin
-
-
- generate-sources
-
-
-
-
-
-
-
- run
-
-
-
-
-
-
-
-
-
diff --git a/extensions/tekton/model-triggers-v1beta1/src/main/resources/schema/tekton-schema-triggers.json b/extensions/tekton/model-triggers-v1beta1/src/main/resources/schema/tekton-schema-triggers.json
deleted file mode 100644
index 14cc36a9bd9..00000000000
--- a/extensions/tekton/model-triggers-v1beta1/src/main/resources/schema/tekton-schema-triggers.json
+++ /dev/null
@@ -1,907 +0,0 @@
-{
- "id": "http://fabric8.io/tekton/triggers/TektonSchema#",
- "$schema": "http://json-schema.org/draft-07/schema#",
- "definitions": {
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_ClusterTriggerBinding": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "triggers.tekton.dev/v1beta1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "ClusterTriggerBinding",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerBindingSpec",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.TriggerBindingSpec"
- },
- "status": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerBindingStatus",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.TriggerBindingStatus"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1beta1.ClusterTriggerBinding",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_ClusterTriggerBindingList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "triggers.tekton.dev/v1beta1",
- "required": true
- },
- "items": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_ClusterTriggerBinding",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.ClusterTriggerBinding"
- }
- },
- "kind": {
- "type": "string",
- "default": "ClusterTriggerBindingList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1beta1.ClusterTriggerBindingList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.triggers.v1beta1.ClusterTriggerBinding\u003e"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListener": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "triggers.tekton.dev/v1beta1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "EventListener",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListenerSpec",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.EventListenerSpec"
- },
- "status": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListenerStatus",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.EventListenerStatus"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1beta1.EventListener",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata",
- "io.fabric8.kubernetes.api.model.Namespaced"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListenerConfig": {
- "type": "object",
- "properties": {
- "generatedName": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1beta1.EventListenerConfig",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListenerList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "triggers.tekton.dev/v1beta1",
- "required": true
- },
- "items": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListener",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.EventListener"
- }
- },
- "kind": {
- "type": "string",
- "default": "EventListenerList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1beta1.EventListenerList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.triggers.v1beta1.EventListener\u003e"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListenerSpec": {
- "type": "object",
- "properties": {
- "cloudEventURI": {
- "type": "string"
- },
- "labelSelector": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector"
- },
- "namespaceSelector": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_NamespaceSelector",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.NamespaceSelector"
- },
- "resources": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_Resources",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.Resources"
- },
- "serviceAccountName": {
- "type": "string"
- },
- "triggerGroups": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListenerTriggerGroup",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.EventListenerTriggerGroup"
- }
- },
- "triggers": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListenerTrigger",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.EventListenerTrigger"
- }
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1beta1.EventListenerSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListenerStatus": {
- "type": "object",
- "properties": {
- "address": {
- "existingJavaType": "io.fabric8.knative.duck.v1beta1.Addressable"
- },
- "annotations": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "conditions": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.knative.pkg.apis.Condition"
- }
- },
- "configuration": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListenerConfig",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.EventListenerConfig"
- },
- "observedGeneration": {
- "type": "integer",
- "existingJavaType": "Long"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1beta1.EventListenerStatus",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListenerTrigger": {
- "type": "object",
- "properties": {
- "bindings": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerSpecBinding",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.TriggerSpecBinding"
- }
- },
- "interceptors": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerInterceptor",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.TriggerInterceptor"
- }
- },
- "name": {
- "type": "string"
- },
- "serviceAccountName": {
- "type": "string"
- },
- "template": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerSpecTemplate",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.TriggerSpecTemplate"
- },
- "triggerRef": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1beta1.EventListenerTrigger",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListenerTriggerGroup": {
- "type": "object",
- "properties": {
- "interceptors": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerInterceptor",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.TriggerInterceptor"
- }
- },
- "name": {
- "type": "string"
- },
- "triggerSelector": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListenerTriggerSelector",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.EventListenerTriggerSelector"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1beta1.EventListenerTriggerGroup",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListenerTriggerSelector": {
- "type": "object",
- "properties": {
- "labelSelector": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector"
- },
- "namespaceSelector": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_NamespaceSelector",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.NamespaceSelector"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1beta1.EventListenerTriggerSelector",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_InterceptorParams": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "value": {
- "existingJavaType": "java.lang.Object"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1beta1.InterceptorParams",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_InterceptorRef": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string"
- },
- "kind": {
- "type": "string"
- },
- "name": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1beta1.InterceptorRef",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_KubernetesResource": {
- "type": "object",
- "properties": {
- "replicas": {
- "type": "integer",
- "existingJavaType": "Integer"
- },
- "servicePort": {
- "type": "integer",
- "existingJavaType": "Integer"
- },
- "serviceType": {
- "type": "string"
- },
- "spec": {
- "existingJavaType": "io.fabric8.knative.duck.v1.WithPodSpec"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1beta1.KubernetesResource",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_NamespaceSelector": {
- "type": "object",
- "properties": {
- "matchNames": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1beta1.NamespaceSelector",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_Param": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "value": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1beta1.Param",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_ParamSpec": {
- "type": "object",
- "properties": {
- "default": {
- "type": "string",
- "existingJavaType": "String"
- },
- "description": {
- "type": "string"
- },
- "name": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1beta1.ParamSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_Resources": {
- "type": "object",
- "properties": {
- "customResource": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata"
- },
- "kubernetesResource": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_KubernetesResource",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.KubernetesResource"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1beta1.Resources",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_Trigger": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "triggers.tekton.dev/v1beta1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "Trigger",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerSpec",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.TriggerSpec"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1beta1.Trigger",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata",
- "io.fabric8.kubernetes.api.model.Namespaced"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerBinding": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "triggers.tekton.dev/v1beta1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "TriggerBinding",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerBindingSpec",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.TriggerBindingSpec"
- },
- "status": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerBindingStatus",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.TriggerBindingStatus"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1beta1.TriggerBinding",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata",
- "io.fabric8.kubernetes.api.model.Namespaced"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerBindingList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "triggers.tekton.dev/v1beta1",
- "required": true
- },
- "items": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerBinding",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.TriggerBinding"
- }
- },
- "kind": {
- "type": "string",
- "default": "TriggerBindingList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1beta1.TriggerBindingList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.triggers.v1beta1.TriggerBinding\u003e"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerBindingSpec": {
- "type": "object",
- "properties": {
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_Param",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.Param"
- }
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1beta1.TriggerBindingSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerBindingStatus": {
- "type": "object",
- "javaType": "io.fabric8.tekton.triggers.v1beta1.TriggerBindingStatus",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerInterceptor": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string",
- "existingJavaType": "String"
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_InterceptorParams",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.InterceptorParams"
- }
- },
- "ref": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_InterceptorRef",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.InterceptorRef"
- },
- "webhook": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_WebhookInterceptor",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.WebhookInterceptor"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1beta1.TriggerInterceptor",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "triggers.tekton.dev/v1beta1",
- "required": true
- },
- "items": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_Trigger",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.Trigger"
- }
- },
- "kind": {
- "type": "string",
- "default": "TriggerList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1beta1.TriggerList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.triggers.v1beta1.Trigger\u003e"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerSpec": {
- "type": "object",
- "properties": {
- "bindings": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerSpecBinding",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.TriggerSpecBinding"
- }
- },
- "interceptors": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerInterceptor",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.TriggerInterceptor"
- }
- },
- "name": {
- "type": "string"
- },
- "serviceAccountName": {
- "type": "string"
- },
- "template": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerSpecTemplate",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.TriggerSpecTemplate"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1beta1.TriggerSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerSpecBinding": {
- "type": "object",
- "properties": {
- "apiversion": {
- "type": "string"
- },
- "kind": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "ref": {
- "type": "string"
- },
- "value": {
- "type": "string",
- "existingJavaType": "String"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1beta1.TriggerSpecBinding",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerSpecTemplate": {
- "type": "object",
- "properties": {
- "apiversion": {
- "type": "string"
- },
- "ref": {
- "type": "string",
- "existingJavaType": "String"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerTemplateSpec",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.TriggerTemplateSpec"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1beta1.TriggerSpecTemplate",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerTemplate": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "triggers.tekton.dev/v1beta1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "TriggerTemplate",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerTemplateSpec",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.TriggerTemplateSpec"
- },
- "status": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerTemplateStatus",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.TriggerTemplateStatus"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1beta1.TriggerTemplate",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata",
- "io.fabric8.kubernetes.api.model.Namespaced"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerTemplateList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "triggers.tekton.dev/v1beta1",
- "required": true
- },
- "items": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerTemplate",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.TriggerTemplate"
- }
- },
- "kind": {
- "type": "string",
- "default": "TriggerTemplateList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1beta1.TriggerTemplateList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.triggers.v1beta1.TriggerTemplate\u003e"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerTemplateSpec": {
- "type": "object",
- "properties": {
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_ParamSpec",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.ParamSpec"
- }
- },
- "resourcetemplates": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata"
- }
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1beta1.TriggerTemplateSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerTemplateStatus": {
- "type": "object",
- "javaType": "io.fabric8.tekton.triggers.v1beta1.TriggerTemplateStatus",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_WebhookInterceptor": {
- "type": "object",
- "properties": {
- "header": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Param"
- }
- },
- "objectRef": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference"
- },
- "url": {
- "existingJavaType": "java.lang.String"
- }
- },
- "javaType": "io.fabric8.tekton.triggers.v1beta1.WebhookInterceptor",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- }
- },
- "type": "object",
- "properties": {
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_ClusterTriggerBinding": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_ClusterTriggerBinding",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.ClusterTriggerBinding"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_ClusterTriggerBindingList": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_ClusterTriggerBindingList",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.ClusterTriggerBindingList"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListener": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListener",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.EventListener"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListenerConfig": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListenerConfig",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.EventListenerConfig"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListenerList": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListenerList",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.EventListenerList"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListenerSpec": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListenerSpec",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.EventListenerSpec"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListenerStatus": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListenerStatus",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.EventListenerStatus"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListenerTrigger": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListenerTrigger",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.EventListenerTrigger"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListenerTriggerGroup": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListenerTriggerGroup",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.EventListenerTriggerGroup"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListenerTriggerSelector": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_EventListenerTriggerSelector",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.EventListenerTriggerSelector"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_InterceptorParams": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_InterceptorParams",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.InterceptorParams"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_InterceptorRef": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_InterceptorRef",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.InterceptorRef"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_KubernetesResource": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_KubernetesResource",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.KubernetesResource"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_NamespaceSelector": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_NamespaceSelector",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.NamespaceSelector"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_Param": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_Param",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.Param"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_ParamSpec": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_ParamSpec",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.ParamSpec"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_Resources": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_Resources",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.Resources"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_Trigger": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_Trigger",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.Trigger"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerBinding": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerBinding",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.TriggerBinding"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerBindingList": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerBindingList",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.TriggerBindingList"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerBindingSpec": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerBindingSpec",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.TriggerBindingSpec"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerBindingStatus": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerBindingStatus",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.TriggerBindingStatus"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerInterceptor": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerInterceptor",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.TriggerInterceptor"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerList": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerList",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.TriggerList"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerSpec": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerSpec",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.TriggerSpec"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerSpecBinding": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerSpecBinding",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.TriggerSpecBinding"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerSpecTemplate": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerSpecTemplate",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.TriggerSpecTemplate"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerTemplate": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerTemplate",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.TriggerTemplate"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerTemplateList": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerTemplateList",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.TriggerTemplateList"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerTemplateSpec": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerTemplateSpec",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.TriggerTemplateSpec"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerTemplateStatus": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_TriggerTemplateStatus",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.TriggerTemplateStatus"
- },
- "github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_WebhookInterceptor": {
- "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1beta1_WebhookInterceptor",
- "existingJavaType": "io.fabric8.tekton.triggers.v1beta1.WebhookInterceptor"
- }
- },
- "additionalProperties": false
-}
diff --git a/extensions/tekton/model-v1/pom.xml b/extensions/tekton/model-v1/pom.xml
deleted file mode 100644
index 84440474f8c..00000000000
--- a/extensions/tekton/model-v1/pom.xml
+++ /dev/null
@@ -1,108 +0,0 @@
-
-
-
- 4.0.0
-
- io.fabric8
- tekton-extension-pom
- 7.0-SNAPSHOT
-
-
- tekton-model-v1
- bundle
- Fabric8 :: Tekton :: Model v1
-
-
-
- io.fabric8.kubernetes.api.builder,
- !io.fabric8.tekton.*,
- *
-
-
- io.fabric8.tekton.*
-
-
-
-
-
- io.sundr
- builder-annotations
- provided
-
-
- io.sundr
- transform-annotations
-
-
- io.sundr
- sundr-codegen-velocity-nodeps
-
-
- io.fabric8
- kubernetes-model-core
-
-
- io.fabric8
- knative-model
-
-
- org.junit.jupiter
- junit-jupiter-engine
- test
-
-
- org.projectlombok
- lombok
- provided
-
-
-
-
-
- generate
-
-
-
- org.jsonschema2pojo
- jsonschema2pojo-maven-plugin
-
-
- maven-antrun-plugin
-
-
- generate-sources
-
-
-
-
-
-
-
- run
-
-
-
-
-
-
-
-
-
diff --git a/extensions/tekton/model-v1/src/generated/java/io/fabric8/tekton/pipeline/v1/PipelineRef.java b/extensions/tekton/model-v1/src/generated/java/io/fabric8/tekton/pipeline/v1/PipelineRef.java
deleted file mode 100644
index 4f6d0aa6a7f..00000000000
--- a/extensions/tekton/model-v1/src/generated/java/io/fabric8/tekton/pipeline/v1/PipelineRef.java
+++ /dev/null
@@ -1,162 +0,0 @@
-
-package io.fabric8.tekton.pipeline.v1;
-
-import java.util.ArrayList;
-import java.util.LinkedHashMap;
-import java.util.List;
-import java.util.Map;
-import javax.annotation.Generated;
-import com.fasterxml.jackson.annotation.JsonAnyGetter;
-import com.fasterxml.jackson.annotation.JsonAnySetter;
-import com.fasterxml.jackson.annotation.JsonIgnore;
-import com.fasterxml.jackson.annotation.JsonInclude;
-import com.fasterxml.jackson.annotation.JsonProperty;
-import com.fasterxml.jackson.annotation.JsonPropertyOrder;
-import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
-import io.fabric8.kubernetes.api.builder.Editable;
-import io.fabric8.kubernetes.api.model.Container;
-import io.fabric8.kubernetes.api.model.ContainerPort;
-import io.fabric8.kubernetes.api.model.EnvVar;
-import io.fabric8.kubernetes.api.model.IntOrString;
-import io.fabric8.kubernetes.api.model.KubernetesResource;
-import io.fabric8.kubernetes.api.model.LabelSelector;
-import io.fabric8.kubernetes.api.model.LocalObjectReference;
-import io.fabric8.kubernetes.api.model.ObjectMeta;
-import io.fabric8.kubernetes.api.model.ObjectReference;
-import io.fabric8.kubernetes.api.model.PersistentVolumeClaim;
-import io.fabric8.kubernetes.api.model.PodTemplateSpec;
-import io.fabric8.kubernetes.api.model.ResourceRequirements;
-import io.fabric8.kubernetes.api.model.Volume;
-import io.fabric8.kubernetes.api.model.VolumeMount;
-import io.sundr.builder.annotations.Buildable;
-import io.sundr.builder.annotations.BuildableReference;
-import lombok.EqualsAndHashCode;
-import lombok.ToString;
-import lombok.experimental.Accessors;
-
-@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
-@JsonInclude(JsonInclude.Include.NON_NULL)
-@JsonPropertyOrder({
- "apiVersion",
- "name",
- "params",
- "resolver"
-})
-@ToString
-@EqualsAndHashCode
-@Accessors(prefix = {
- "_",
- ""
-})
-@Buildable(editableEnabled = false, validationEnabled = false, generateBuilderPackage = false, lazyCollectionInitEnabled = false, builderPackage = "io.fabric8.kubernetes.api.builder", refs = {
- @BuildableReference(ObjectMeta.class),
- @BuildableReference(LabelSelector.class),
- @BuildableReference(Container.class),
- @BuildableReference(PodTemplateSpec.class),
- @BuildableReference(ResourceRequirements.class),
- @BuildableReference(IntOrString.class),
- @BuildableReference(ObjectReference.class),
- @BuildableReference(LocalObjectReference.class),
- @BuildableReference(PersistentVolumeClaim.class),
- @BuildableReference(EnvVar.class),
- @BuildableReference(ContainerPort.class),
- @BuildableReference(Volume.class),
- @BuildableReference(VolumeMount.class)
-})
-@Generated("jsonschema2pojo")
-public class PipelineRef implements Editable , KubernetesResource
-{
-
- @JsonProperty("apiVersion")
- private String apiVersion;
- @JsonProperty("name")
- private String name;
- @JsonProperty("params")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- private List params = new ArrayList<>();
- @JsonProperty("resolver")
- private String resolver;
- @JsonIgnore
- private Map additionalProperties = new LinkedHashMap();
-
- /**
- * No args constructor for use in serialization
- *
- */
- public PipelineRef() {
- }
-
- public PipelineRef(String apiVersion, String name, List params, String resolver) {
- super();
- this.apiVersion = apiVersion;
- this.name = name;
- this.params = params;
- this.resolver = resolver;
- }
-
- @JsonProperty("apiVersion")
- public String getApiVersion() {
- return apiVersion;
- }
-
- @JsonProperty("apiVersion")
- public void setApiVersion(String apiVersion) {
- this.apiVersion = apiVersion;
- }
-
- @JsonProperty("name")
- public String getName() {
- return name;
- }
-
- @JsonProperty("name")
- public void setName(String name) {
- this.name = name;
- }
-
- @JsonProperty("params")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- public List getParams() {
- return params;
- }
-
- @JsonProperty("params")
- public void setParams(List params) {
- this.params = params;
- }
-
- @JsonProperty("resolver")
- public String getResolver() {
- return resolver;
- }
-
- @JsonProperty("resolver")
- public void setResolver(String resolver) {
- this.resolver = resolver;
- }
-
- @JsonIgnore
- public PipelineRefBuilder edit() {
- return new PipelineRefBuilder(this);
- }
-
- @JsonIgnore
- public PipelineRefBuilder toBuilder() {
- return edit();
- }
-
- @JsonAnyGetter
- public Map getAdditionalProperties() {
- return this.additionalProperties;
- }
-
- @JsonAnySetter
- public void setAdditionalProperty(String name, Object value) {
- this.additionalProperties.put(name, value);
- }
-
- public void setAdditionalProperties(Map additionalProperties) {
- this.additionalProperties = additionalProperties;
- }
-
-}
diff --git a/extensions/tekton/model-v1/src/generated/java/io/fabric8/tekton/pipeline/v1/TaskRef.java b/extensions/tekton/model-v1/src/generated/java/io/fabric8/tekton/pipeline/v1/TaskRef.java
deleted file mode 100644
index 09fb034d85e..00000000000
--- a/extensions/tekton/model-v1/src/generated/java/io/fabric8/tekton/pipeline/v1/TaskRef.java
+++ /dev/null
@@ -1,176 +0,0 @@
-
-package io.fabric8.tekton.pipeline.v1;
-
-import java.util.ArrayList;
-import java.util.LinkedHashMap;
-import java.util.List;
-import java.util.Map;
-import javax.annotation.Generated;
-import com.fasterxml.jackson.annotation.JsonAnyGetter;
-import com.fasterxml.jackson.annotation.JsonAnySetter;
-import com.fasterxml.jackson.annotation.JsonIgnore;
-import com.fasterxml.jackson.annotation.JsonInclude;
-import com.fasterxml.jackson.annotation.JsonProperty;
-import com.fasterxml.jackson.annotation.JsonPropertyOrder;
-import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
-import io.fabric8.kubernetes.api.builder.Editable;
-import io.fabric8.kubernetes.api.model.Container;
-import io.fabric8.kubernetes.api.model.ContainerPort;
-import io.fabric8.kubernetes.api.model.EnvVar;
-import io.fabric8.kubernetes.api.model.IntOrString;
-import io.fabric8.kubernetes.api.model.KubernetesResource;
-import io.fabric8.kubernetes.api.model.LabelSelector;
-import io.fabric8.kubernetes.api.model.LocalObjectReference;
-import io.fabric8.kubernetes.api.model.ObjectMeta;
-import io.fabric8.kubernetes.api.model.ObjectReference;
-import io.fabric8.kubernetes.api.model.PersistentVolumeClaim;
-import io.fabric8.kubernetes.api.model.PodTemplateSpec;
-import io.fabric8.kubernetes.api.model.ResourceRequirements;
-import io.fabric8.kubernetes.api.model.Volume;
-import io.fabric8.kubernetes.api.model.VolumeMount;
-import io.sundr.builder.annotations.Buildable;
-import io.sundr.builder.annotations.BuildableReference;
-import lombok.EqualsAndHashCode;
-import lombok.ToString;
-import lombok.experimental.Accessors;
-
-@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
-@JsonInclude(JsonInclude.Include.NON_NULL)
-@JsonPropertyOrder({
- "apiVersion",
- "kind",
- "name",
- "params",
- "resolver"
-})
-@ToString
-@EqualsAndHashCode
-@Accessors(prefix = {
- "_",
- ""
-})
-@Buildable(editableEnabled = false, validationEnabled = false, generateBuilderPackage = false, lazyCollectionInitEnabled = false, builderPackage = "io.fabric8.kubernetes.api.builder", refs = {
- @BuildableReference(ObjectMeta.class),
- @BuildableReference(LabelSelector.class),
- @BuildableReference(Container.class),
- @BuildableReference(PodTemplateSpec.class),
- @BuildableReference(ResourceRequirements.class),
- @BuildableReference(IntOrString.class),
- @BuildableReference(ObjectReference.class),
- @BuildableReference(LocalObjectReference.class),
- @BuildableReference(PersistentVolumeClaim.class),
- @BuildableReference(EnvVar.class),
- @BuildableReference(ContainerPort.class),
- @BuildableReference(Volume.class),
- @BuildableReference(VolumeMount.class)
-})
-@Generated("jsonschema2pojo")
-public class TaskRef implements Editable , KubernetesResource
-{
-
- @JsonProperty("apiVersion")
- private String apiVersion;
- @JsonProperty("kind")
- private String kind;
- @JsonProperty("name")
- private String name;
- @JsonProperty("params")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- private List params = new ArrayList<>();
- @JsonProperty("resolver")
- private String resolver;
- @JsonIgnore
- private Map additionalProperties = new LinkedHashMap();
-
- /**
- * No args constructor for use in serialization
- *
- */
- public TaskRef() {
- }
-
- public TaskRef(String apiVersion, String kind, String name, List params, String resolver) {
- super();
- this.apiVersion = apiVersion;
- this.kind = kind;
- this.name = name;
- this.params = params;
- this.resolver = resolver;
- }
-
- @JsonProperty("apiVersion")
- public String getApiVersion() {
- return apiVersion;
- }
-
- @JsonProperty("apiVersion")
- public void setApiVersion(String apiVersion) {
- this.apiVersion = apiVersion;
- }
-
- @JsonProperty("kind")
- public String getKind() {
- return kind;
- }
-
- @JsonProperty("kind")
- public void setKind(String kind) {
- this.kind = kind;
- }
-
- @JsonProperty("name")
- public String getName() {
- return name;
- }
-
- @JsonProperty("name")
- public void setName(String name) {
- this.name = name;
- }
-
- @JsonProperty("params")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- public List getParams() {
- return params;
- }
-
- @JsonProperty("params")
- public void setParams(List params) {
- this.params = params;
- }
-
- @JsonProperty("resolver")
- public String getResolver() {
- return resolver;
- }
-
- @JsonProperty("resolver")
- public void setResolver(String resolver) {
- this.resolver = resolver;
- }
-
- @JsonIgnore
- public TaskRefBuilder edit() {
- return new TaskRefBuilder(this);
- }
-
- @JsonIgnore
- public TaskRefBuilder toBuilder() {
- return edit();
- }
-
- @JsonAnyGetter
- public Map getAdditionalProperties() {
- return this.additionalProperties;
- }
-
- @JsonAnySetter
- public void setAdditionalProperty(String name, Object value) {
- this.additionalProperties.put(name, value);
- }
-
- public void setAdditionalProperties(Map additionalProperties) {
- this.additionalProperties = additionalProperties;
- }
-
-}
diff --git a/extensions/tekton/model-v1/src/main/resources/schema/tekton-schema-v1.json b/extensions/tekton/model-v1/src/main/resources/schema/tekton-schema-v1.json
deleted file mode 100644
index 69b99db3fc5..00000000000
--- a/extensions/tekton/model-v1/src/main/resources/schema/tekton-schema-v1.json
+++ /dev/null
@@ -1,2065 +0,0 @@
-{
- "id": "http://fabric8.io/tekton/v1/TektonSchema#",
- "$schema": "http://json-schema.org/draft-07/schema#",
- "definitions": {
- "github_com_tektoncd_pipeline_pkg_apis_config_FeatureFlags": {
- "type": "object",
- "properties": {
- "AwaitSidecarReadiness": {
- "type": "boolean"
- },
- "DisableAffinityAssistant": {
- "type": "boolean"
- },
- "DisableCredsInit": {
- "type": "boolean"
- },
- "EnableAPIFields": {
- "type": "string"
- },
- "EnableProvenanceInStatus": {
- "type": "boolean"
- },
- "EnableTektonOCIBundles": {
- "type": "boolean"
- },
- "EnforceNonfalsifiability": {
- "type": "string"
- },
- "MaxResultSize": {
- "type": "integer"
- },
- "RequireGitSSHSecretKnownHosts": {
- "type": "boolean"
- },
- "ResultExtractionMethod": {
- "type": "string"
- },
- "RunningInEnvWithInjectedSidecars": {
- "type": "boolean"
- },
- "ScopeWhenExpressionsToTask": {
- "type": "boolean"
- },
- "SendCloudEventsForRuns": {
- "type": "boolean"
- },
- "VerificationNoMatchPolicy": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.v1.internal.pipeline.pkg.apis.config.FeatureFlags",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_pod_Template": {
- "type": "object",
- "properties": {
- "affinity": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Affinity"
- },
- "automountServiceAccountToken": {
- "type": "boolean",
- "existingJavaType": "Boolean"
- },
- "dnsConfig": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.PodDNSConfig"
- },
- "dnsPolicy": {
- "type": "string",
- "existingJavaType": "String"
- },
- "enableServiceLinks": {
- "type": "boolean",
- "existingJavaType": "Boolean"
- },
- "env": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.EnvVar"
- }
- },
- "hostAliases": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.HostAlias"
- }
- },
- "hostNetwork": {
- "type": "boolean"
- },
- "imagePullSecrets": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference"
- }
- },
- "nodeSelector": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "priorityClassName": {
- "type": "string",
- "existingJavaType": "String"
- },
- "runtimeClassName": {
- "type": "string",
- "existingJavaType": "String"
- },
- "schedulerName": {
- "type": "string"
- },
- "securityContext": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.PodSecurityContext"
- },
- "tolerations": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Toleration"
- }
- },
- "topologySpreadConstraints": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.TopologySpreadConstraint"
- }
- },
- "volumes": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Volume"
- }
- }
- },
- "javaType": "io.fabric8.tekton.v1.internal.pipeline.pkg.apis.pipeline.pod.Template",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_ChildStatusReference": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string"
- },
- "kind": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "pipelineTaskName": {
- "type": "string"
- },
- "whenExpressions": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_WhenExpression",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.WhenExpression"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.ChildStatusReference",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_EmbeddedTask": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string"
- },
- "description": {
- "type": "string"
- },
- "displayName": {
- "type": "string"
- },
- "kind": {
- "type": "string"
- },
- "metadata": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineTaskMetadata",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PipelineTaskMetadata"
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_ParamSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.ParamSpec"
- }
- },
- "results": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskResult",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TaskResult"
- }
- },
- "sidecars": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Sidecar",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.Sidecar"
- }
- },
- "spec": {
- "existingJavaType": "java.util.Map\u003cString, Object\u003e"
- },
- "stepTemplate": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_StepTemplate",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.StepTemplate"
- },
- "steps": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Step",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.Step"
- }
- },
- "volumes": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Volume"
- }
- },
- "workspaces": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_WorkspaceDeclaration",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.WorkspaceDeclaration"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.EmbeddedTask",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_IncludeParams": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Param",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.Param"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.IncludeParams",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Matrix": {
- "type": "object",
- "properties": {
- "include": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_IncludeParams",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.IncludeParams"
- }
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Param",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.Param"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.Matrix",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Param": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "value": {
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.ParamValue"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.Param",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_ParamSpec": {
- "type": "object",
- "properties": {
- "default": {
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.ParamValue"
- },
- "description": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "properties": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,io.fabric8.tekton.pipeline.v1.PropertySpec\u003e"
- },
- "type": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.ParamSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Pipeline": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "Pipeline",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PipelineSpec"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.Pipeline",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata",
- "io.fabric8.kubernetes.api.model.Namespaced"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1",
- "required": true
- },
- "items": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Pipeline",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.Pipeline"
- }
- },
- "kind": {
- "type": "string",
- "default": "PipelineList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.PipelineList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.pipeline.v1.Pipeline\u003e"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineRef": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Param",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.Param"
- }
- },
- "resolver": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.PipelineRef",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineResult": {
- "type": "object",
- "properties": {
- "description": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "type": {
- "type": "string"
- },
- "value": {
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.ParamValue"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.PipelineResult",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineRun": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "PipelineRun",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineRunSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PipelineRunSpec"
- },
- "status": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineRunStatus",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PipelineRunStatus"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.PipelineRun",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata",
- "io.fabric8.kubernetes.api.model.Namespaced"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineRunList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1",
- "required": true
- },
- "items": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineRun",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PipelineRun"
- }
- },
- "kind": {
- "type": "string",
- "default": "PipelineRunList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.PipelineRunList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.pipeline.v1.PipelineRun\u003e"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineRunResult": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "value": {
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.ParamValue"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.PipelineRunResult",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineRunSpec": {
- "type": "object",
- "properties": {
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Param",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.Param"
- }
- },
- "pipelineRef": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineRef",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PipelineRef"
- },
- "pipelineSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PipelineSpec"
- },
- "status": {
- "type": "string"
- },
- "taskRunSpecs": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineTaskRunSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PipelineTaskRunSpec"
- }
- },
- "taskRunTemplate": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineTaskRunTemplate",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PipelineTaskRunTemplate"
- },
- "timeouts": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TimeoutFields",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TimeoutFields"
- },
- "workspaces": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_WorkspaceBinding",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.WorkspaceBinding"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.PipelineRunSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineRunStatus": {
- "type": "object",
- "properties": {
- "annotations": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "childReferences": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_ChildStatusReference",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.ChildStatusReference"
- }
- },
- "completionTime": {
- "existingJavaType": "java.lang.String"
- },
- "conditions": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.knative.pkg.apis.Condition"
- }
- },
- "finallyStartTime": {
- "existingJavaType": "java.lang.String"
- },
- "observedGeneration": {
- "type": "integer",
- "existingJavaType": "Long"
- },
- "pipelineSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PipelineSpec"
- },
- "provenance": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Provenance",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.Provenance"
- },
- "results": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineRunResult",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PipelineRunResult"
- }
- },
- "skippedTasks": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_SkippedTask",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.SkippedTask"
- }
- },
- "spanContext": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "startTime": {
- "existingJavaType": "java.lang.String"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.PipelineRunStatus",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineSpec": {
- "type": "object",
- "properties": {
- "description": {
- "type": "string"
- },
- "displayName": {
- "type": "string"
- },
- "finally": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineTask",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PipelineTask"
- }
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_ParamSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.ParamSpec"
- }
- },
- "results": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineResult",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PipelineResult"
- }
- },
- "tasks": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineTask",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PipelineTask"
- }
- },
- "workspaces": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineWorkspaceDeclaration",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PipelineWorkspaceDeclaration"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.PipelineSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineTask": {
- "type": "object",
- "properties": {
- "description": {
- "type": "string"
- },
- "displayName": {
- "type": "string"
- },
- "matrix": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Matrix",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.Matrix"
- },
- "name": {
- "type": "string"
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Param",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.Param"
- }
- },
- "retries": {
- "type": "integer"
- },
- "runAfter": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- },
- "taskRef": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRef",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TaskRef"
- },
- "taskSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_EmbeddedTask",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.EmbeddedTask"
- },
- "timeout": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Duration"
- },
- "when": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_WhenExpression",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.WhenExpression"
- }
- },
- "workspaces": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_WorkspacePipelineTaskBinding",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.WorkspacePipelineTaskBinding"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.PipelineTask",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineTaskMetadata": {
- "type": "object",
- "properties": {
- "annotations": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "labels": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.PipelineTaskMetadata",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineTaskRunSpec": {
- "type": "object",
- "properties": {
- "computeResources": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements"
- },
- "metadata": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineTaskMetadata",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PipelineTaskMetadata"
- },
- "pipelineTaskName": {
- "type": "string"
- },
- "podTemplate": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_pod_Template",
- "existingJavaType": "io.fabric8.tekton.v1.internal.pipeline.pkg.apis.pipeline.pod.Template"
- },
- "serviceAccountName": {
- "type": "string"
- },
- "sidecarSpecs": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRunSidecarSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TaskRunSidecarSpec"
- }
- },
- "stepSpecs": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRunStepSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TaskRunStepSpec"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.PipelineTaskRunSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineTaskRunTemplate": {
- "type": "object",
- "properties": {
- "podTemplate": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_pod_Template",
- "existingJavaType": "io.fabric8.tekton.v1.internal.pipeline.pkg.apis.pipeline.pod.Template"
- },
- "serviceAccountName": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.PipelineTaskRunTemplate",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineWorkspaceDeclaration": {
- "type": "object",
- "properties": {
- "description": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "optional": {
- "type": "boolean"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.PipelineWorkspaceDeclaration",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PropertySpec": {
- "type": "object",
- "properties": {
- "type": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.PropertySpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Provenance": {
- "type": "object",
- "properties": {
- "featureFlags": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_config_FeatureFlags",
- "existingJavaType": "io.fabric8.tekton.v1.internal.pipeline.pkg.apis.config.FeatureFlags"
- },
- "refSource": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_RefSource",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.RefSource"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.Provenance",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_RefSource": {
- "type": "object",
- "properties": {
- "digest": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "entryPoint": {
- "type": "string"
- },
- "uri": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.RefSource",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Sidecar": {
- "type": "object",
- "properties": {
- "args": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- },
- "command": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- },
- "computeResources": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements"
- },
- "env": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.EnvVar"
- }
- },
- "envFrom": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.EnvFromSource"
- }
- },
- "image": {
- "type": "string"
- },
- "imagePullPolicy": {
- "type": "string"
- },
- "lifecycle": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Lifecycle"
- },
- "livenessProbe": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Probe"
- },
- "name": {
- "type": "string"
- },
- "ports": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerPort"
- }
- },
- "readinessProbe": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Probe"
- },
- "script": {
- "type": "string"
- },
- "securityContext": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.SecurityContext"
- },
- "startupProbe": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Probe"
- },
- "stdin": {
- "type": "boolean"
- },
- "stdinOnce": {
- "type": "boolean"
- },
- "terminationMessagePath": {
- "type": "string"
- },
- "terminationMessagePolicy": {
- "type": "string"
- },
- "tty": {
- "type": "boolean"
- },
- "volumeDevices": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeDevice"
- }
- },
- "volumeMounts": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeMount"
- }
- },
- "workingDir": {
- "type": "string"
- },
- "workspaces": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_WorkspaceUsage",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.WorkspaceUsage"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.Sidecar",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_SidecarState": {
- "type": "object",
- "properties": {
- "container": {
- "type": "string"
- },
- "imageID": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "running": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerStateRunning"
- },
- "terminated": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerStateTerminated"
- },
- "waiting": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerStateWaiting"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.SidecarState",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_SkippedTask": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "reason": {
- "type": "string"
- },
- "whenExpressions": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_WhenExpression",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.WhenExpression"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.SkippedTask",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Step": {
- "type": "object",
- "properties": {
- "args": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- },
- "command": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- },
- "computeResources": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements"
- },
- "env": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.EnvVar"
- }
- },
- "envFrom": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.EnvFromSource"
- }
- },
- "image": {
- "type": "string"
- },
- "imagePullPolicy": {
- "type": "string"
- },
- "name": {
- "type": "string",
- "maxLength": 63,
- "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$"
- },
- "onError": {
- "type": "string"
- },
- "script": {
- "type": "string"
- },
- "securityContext": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.SecurityContext"
- },
- "stderrConfig": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_StepOutputConfig",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.StepOutputConfig"
- },
- "stdoutConfig": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_StepOutputConfig",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.StepOutputConfig"
- },
- "timeout": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Duration"
- },
- "volumeDevices": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeDevice"
- }
- },
- "volumeMounts": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeMount"
- }
- },
- "workingDir": {
- "type": "string"
- },
- "workspaces": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_WorkspaceUsage",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.WorkspaceUsage"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.Step",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_StepOutputConfig": {
- "type": "object",
- "properties": {
- "path": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.StepOutputConfig",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_StepState": {
- "type": "object",
- "properties": {
- "container": {
- "type": "string"
- },
- "imageID": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "running": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerStateRunning"
- },
- "terminated": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerStateTerminated"
- },
- "waiting": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerStateWaiting"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.StepState",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_StepTemplate": {
- "type": "object",
- "properties": {
- "args": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- },
- "command": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- },
- "computeResources": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements"
- },
- "env": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.EnvVar"
- }
- },
- "envFrom": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.EnvFromSource"
- }
- },
- "image": {
- "type": "string"
- },
- "imagePullPolicy": {
- "type": "string"
- },
- "securityContext": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.SecurityContext"
- },
- "volumeDevices": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeDevice"
- }
- },
- "volumeMounts": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeMount"
- }
- },
- "workingDir": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.StepTemplate",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Task": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "Task",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TaskSpec"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.Task",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata",
- "io.fabric8.kubernetes.api.model.Namespaced"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1",
- "required": true
- },
- "items": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Task",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.Task"
- }
- },
- "kind": {
- "type": "string",
- "default": "TaskList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.TaskList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.pipeline.v1.Task\u003e"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRef": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string"
- },
- "kind": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Param",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.Param"
- }
- },
- "resolver": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.TaskRef",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskResult": {
- "type": "object",
- "properties": {
- "description": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "properties": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,io.fabric8.tekton.pipeline.v1.PropertySpec\u003e"
- },
- "type": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.TaskResult",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRun": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "TaskRun",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRunSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TaskRunSpec"
- },
- "status": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRunStatus",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TaskRunStatus"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.TaskRun",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata",
- "io.fabric8.kubernetes.api.model.Namespaced"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRunDebug": {
- "type": "object",
- "properties": {
- "breakpoint": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.TaskRunDebug",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRunList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1",
- "required": true
- },
- "items": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRun",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TaskRun"
- }
- },
- "kind": {
- "type": "string",
- "default": "TaskRunList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.TaskRunList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.pipeline.v1.TaskRun\u003e"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRunResult": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "type": {
- "type": "string"
- },
- "value": {
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.ParamValue"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.TaskRunResult",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRunSidecarSpec": {
- "type": "object",
- "properties": {
- "computeResources": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements"
- },
- "name": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.TaskRunSidecarSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRunSpec": {
- "type": "object",
- "properties": {
- "computeResources": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements"
- },
- "debug": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRunDebug",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TaskRunDebug"
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Param",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.Param"
- }
- },
- "podTemplate": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_pod_Template",
- "existingJavaType": "io.fabric8.tekton.v1.internal.pipeline.pkg.apis.pipeline.pod.Template"
- },
- "retries": {
- "type": "integer"
- },
- "serviceAccountName": {
- "type": "string"
- },
- "sidecarSpecs": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRunSidecarSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TaskRunSidecarSpec"
- }
- },
- "status": {
- "type": "string"
- },
- "statusMessage": {
- "type": "string"
- },
- "stepSpecs": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRunStepSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TaskRunStepSpec"
- }
- },
- "taskRef": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRef",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TaskRef"
- },
- "taskSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TaskSpec"
- },
- "timeout": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Duration"
- },
- "workspaces": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_WorkspaceBinding",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.WorkspaceBinding"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.TaskRunSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRunStatus": {
- "type": "object",
- "properties": {
- "annotations": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "completionTime": {
- "existingJavaType": "java.lang.String"
- },
- "conditions": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.knative.pkg.apis.Condition"
- }
- },
- "observedGeneration": {
- "type": "integer",
- "existingJavaType": "Long"
- },
- "podName": {
- "type": "string"
- },
- "provenance": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Provenance",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.Provenance"
- },
- "results": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRunResult",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TaskRunResult"
- }
- },
- "retriesStatus": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRunStatus",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TaskRunStatus"
- }
- },
- "sidecars": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_SidecarState",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.SidecarState"
- }
- },
- "spanContext": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "startTime": {
- "existingJavaType": "java.lang.String"
- },
- "steps": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_StepState",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.StepState"
- }
- },
- "taskSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TaskSpec"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.TaskRunStatus",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRunStepSpec": {
- "type": "object",
- "properties": {
- "computeResources": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements"
- },
- "name": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.TaskRunStepSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskSpec": {
- "type": "object",
- "properties": {
- "description": {
- "type": "string"
- },
- "displayName": {
- "type": "string"
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_ParamSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.ParamSpec"
- }
- },
- "results": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskResult",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TaskResult"
- }
- },
- "sidecars": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Sidecar",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.Sidecar"
- }
- },
- "stepTemplate": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_StepTemplate",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.StepTemplate"
- },
- "steps": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Step",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.Step"
- }
- },
- "volumes": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Volume"
- }
- },
- "workspaces": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_WorkspaceDeclaration",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.WorkspaceDeclaration"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.TaskSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TimeoutFields": {
- "type": "object",
- "properties": {
- "finally": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Duration"
- },
- "pipeline": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Duration"
- },
- "tasks": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Duration"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.TimeoutFields",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_WhenExpression": {
- "type": "object",
- "properties": {
- "input": {
- "type": "string"
- },
- "operator": {
- "type": "string"
- },
- "values": {
- "type": "array",
- "items": {
- "type": "string"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.WhenExpression",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_WorkspaceBinding": {
- "type": "object",
- "properties": {
- "configMap": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMapVolumeSource"
- },
- "csi": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.CSIVolumeSource"
- },
- "emptyDir": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.EmptyDirVolumeSource"
- },
- "name": {
- "type": "string"
- },
- "persistentVolumeClaim": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.PersistentVolumeClaimVolumeSource"
- },
- "projected": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ProjectedVolumeSource"
- },
- "secret": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.SecretVolumeSource"
- },
- "subPath": {
- "type": "string"
- },
- "volumeClaimTemplate": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.PersistentVolumeClaim"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.WorkspaceBinding",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_WorkspaceDeclaration": {
- "type": "object",
- "properties": {
- "description": {
- "type": "string"
- },
- "mountPath": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "optional": {
- "type": "boolean"
- },
- "readOnly": {
- "type": "boolean"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.WorkspaceDeclaration",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_WorkspacePipelineTaskBinding": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "subPath": {
- "type": "string"
- },
- "workspace": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.WorkspacePipelineTaskBinding",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_WorkspaceUsage": {
- "type": "object",
- "properties": {
- "mountPath": {
- "type": "string"
- },
- "name": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1.WorkspaceUsage",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- }
- },
- "type": "object",
- "properties": {
- "github_com_tektoncd_pipeline_pkg_apis_config_FeatureFlags": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_config_FeatureFlags",
- "existingJavaType": "io.fabric8.tekton.v1.internal.pipeline.pkg.apis.config.FeatureFlags"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_pod_Template": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_pod_Template",
- "existingJavaType": "io.fabric8.tekton.v1.internal.pipeline.pkg.apis.pipeline.pod.Template"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_ChildStatusReference": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_ChildStatusReference",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.ChildStatusReference"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_EmbeddedTask": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_EmbeddedTask",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.EmbeddedTask"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_IncludeParams": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_IncludeParams",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.IncludeParams"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Matrix": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Matrix",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.Matrix"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Param": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Param",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.Param"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_ParamSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_ParamSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.ParamSpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Pipeline": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Pipeline",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.Pipeline"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineList": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineList",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PipelineList"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineRef": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineRef",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PipelineRef"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineResult": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineResult",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PipelineResult"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineRun": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineRun",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PipelineRun"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineRunList": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineRunList",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PipelineRunList"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineRunResult": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineRunResult",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PipelineRunResult"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineRunSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineRunSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PipelineRunSpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineRunStatus": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineRunStatus",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PipelineRunStatus"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PipelineSpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineTask": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineTask",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PipelineTask"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineTaskMetadata": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineTaskMetadata",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PipelineTaskMetadata"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineTaskRunSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineTaskRunSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PipelineTaskRunSpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineTaskRunTemplate": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineTaskRunTemplate",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PipelineTaskRunTemplate"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineWorkspaceDeclaration": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PipelineWorkspaceDeclaration",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PipelineWorkspaceDeclaration"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PropertySpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_PropertySpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.PropertySpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Provenance": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Provenance",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.Provenance"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_RefSource": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_RefSource",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.RefSource"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Sidecar": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Sidecar",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.Sidecar"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_SidecarState": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_SidecarState",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.SidecarState"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_SkippedTask": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_SkippedTask",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.SkippedTask"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Step": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Step",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.Step"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_StepOutputConfig": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_StepOutputConfig",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.StepOutputConfig"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_StepState": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_StepState",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.StepState"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_StepTemplate": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_StepTemplate",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.StepTemplate"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Task": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_Task",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.Task"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskList": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskList",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TaskList"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRef": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRef",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TaskRef"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskResult": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskResult",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TaskResult"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRun": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRun",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TaskRun"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRunDebug": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRunDebug",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TaskRunDebug"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRunList": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRunList",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TaskRunList"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRunResult": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRunResult",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TaskRunResult"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRunSidecarSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRunSidecarSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TaskRunSidecarSpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRunSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRunSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TaskRunSpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRunStatus": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRunStatus",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TaskRunStatus"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRunStepSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskRunStepSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TaskRunStepSpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TaskSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TaskSpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TimeoutFields": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_TimeoutFields",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.TimeoutFields"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_WhenExpression": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_WhenExpression",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.WhenExpression"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_WorkspaceBinding": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_WorkspaceBinding",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.WorkspaceBinding"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_WorkspaceDeclaration": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_WorkspaceDeclaration",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.WorkspaceDeclaration"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_WorkspacePipelineTaskBinding": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_WorkspacePipelineTaskBinding",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.WorkspacePipelineTaskBinding"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_WorkspaceUsage": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1_WorkspaceUsage",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1.WorkspaceUsage"
- }
- },
- "additionalProperties": false
-}
diff --git a/extensions/tekton/model-v1/src/resources/schema/tekton-schema-v1beta1.json b/extensions/tekton/model-v1/src/resources/schema/tekton-schema-v1beta1.json
deleted file mode 100644
index 495cecfca79..00000000000
--- a/extensions/tekton/model-v1/src/resources/schema/tekton-schema-v1beta1.json
+++ /dev/null
@@ -1,2583 +0,0 @@
-{
- "id": "http://fabric8.io/tekton/v1beta1/TektonSchema#",
- "$schema": "http://json-schema.org/draft-07/schema#",
- "definitions": {
- "github_com_tektoncd_pipeline_pkg_apis_config_FeatureFlags": {
- "type": "object",
- "properties": {
- "AwaitSidecarReadiness": {
- "type": "boolean"
- },
- "CustomTaskVersion": {
- "type": "string"
- },
- "DisableAffinityAssistant": {
- "type": "boolean"
- },
- "DisableCredsInit": {
- "type": "boolean"
- },
- "EnableAPIFields": {
- "type": "string"
- },
- "EnableProvenanceInStatus": {
- "type": "boolean"
- },
- "EnableTektonOCIBundles": {
- "type": "boolean"
- },
- "EnforceNonfalsifiability": {
- "type": "string"
- },
- "MaxResultSize": {
- "type": "integer"
- },
- "RequireGitSSHSecretKnownHosts": {
- "type": "boolean"
- },
- "ResourceVerificationMode": {
- "type": "string"
- },
- "ResultExtractionMethod": {
- "type": "string"
- },
- "RunningInEnvWithInjectedSidecars": {
- "type": "boolean"
- },
- "ScopeWhenExpressionsToTask": {
- "type": "boolean"
- },
- "SendCloudEventsForRuns": {
- "type": "boolean"
- }
- },
- "javaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.config.FeatureFlags",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_pod_Template": {
- "type": "object",
- "properties": {
- "affinity": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Affinity"
- },
- "automountServiceAccountToken": {
- "type": "boolean",
- "existingJavaType": "Boolean"
- },
- "dnsConfig": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.PodDNSConfig"
- },
- "dnsPolicy": {
- "type": "string",
- "existingJavaType": "String"
- },
- "enableServiceLinks": {
- "type": "boolean",
- "existingJavaType": "Boolean"
- },
- "env": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.EnvVar"
- }
- },
- "hostAliases": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.HostAlias"
- }
- },
- "hostNetwork": {
- "type": "boolean"
- },
- "imagePullSecrets": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference"
- }
- },
- "nodeSelector": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "priorityClassName": {
- "type": "string",
- "existingJavaType": "String"
- },
- "runtimeClassName": {
- "type": "string",
- "existingJavaType": "String"
- },
- "schedulerName": {
- "type": "string"
- },
- "securityContext": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.PodSecurityContext"
- },
- "tolerations": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Toleration"
- }
- },
- "topologySpreadConstraints": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.TopologySpreadConstraint"
- }
- },
- "volumes": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Volume"
- }
- }
- },
- "javaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.pipeline.pod.Template",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ChildStatusReference": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string"
- },
- "kind": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "pipelineTaskName": {
- "type": "string"
- },
- "whenExpressions": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WhenExpression",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WhenExpression"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.ChildStatusReference",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CloudEventDelivery": {
- "type": "object",
- "properties": {
- "status": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CloudEventDeliveryState",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.CloudEventDeliveryState"
- },
- "target": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.CloudEventDelivery",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CloudEventDeliveryState": {
- "type": "object",
- "properties": {
- "condition": {
- "type": "string"
- },
- "message": {
- "type": "string"
- },
- "retryCount": {
- "type": "integer"
- },
- "sentAt": {
- "existingJavaType": "java.lang.String"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.CloudEventDeliveryState",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ClusterTask": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1beta1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "ClusterTask",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskSpec"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.ClusterTask",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ClusterTaskList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1beta1",
- "required": true
- },
- "items": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ClusterTask",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ClusterTask"
- }
- },
- "kind": {
- "type": "string",
- "default": "ClusterTaskList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.ClusterTaskList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.pipeline.v1beta1.ClusterTask\u003e"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ConfigSource": {
- "type": "object",
- "properties": {
- "digest": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "entryPoint": {
- "type": "string"
- },
- "uri": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.ConfigSource",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CustomRun": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1beta1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "CustomRun",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CustomRunSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.CustomRunSpec"
- },
- "status": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_run_v1beta1_CustomRunStatus",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.run.v1beta1.CustomRunStatus"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.CustomRun",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata",
- "io.fabric8.kubernetes.api.model.Namespaced"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CustomRunList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1beta1",
- "required": true
- },
- "items": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CustomRun",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.CustomRun"
- }
- },
- "kind": {
- "type": "string",
- "default": "CustomRunList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.CustomRunList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.pipeline.v1beta1.CustomRun\u003e"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CustomRunSpec": {
- "type": "object",
- "properties": {
- "customRef": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRef",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRef"
- },
- "customSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_EmbeddedCustomRunSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.EmbeddedCustomRunSpec"
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Param"
- }
- },
- "retries": {
- "type": "integer"
- },
- "serviceAccountName": {
- "type": "string"
- },
- "status": {
- "type": "string"
- },
- "statusMessage": {
- "type": "string"
- },
- "timeout": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Duration"
- },
- "workspaces": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceBinding",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspaceBinding"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.CustomRunSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_EmbeddedCustomRunSpec": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string"
- },
- "kind": {
- "type": "string"
- },
- "metadata": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskMetadata",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTaskMetadata"
- },
- "spec": {
- "existingJavaType": "java.util.Map\u003cString, Object\u003e"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.EmbeddedCustomRunSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_EmbeddedTask": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string"
- },
- "description": {
- "type": "string"
- },
- "kind": {
- "type": "string"
- },
- "metadata": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskMetadata",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTaskMetadata"
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ParamSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ParamSpec"
- }
- },
- "results": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResult",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskResult"
- }
- },
- "sidecars": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Sidecar",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Sidecar"
- }
- },
- "spec": {
- "existingJavaType": "java.util.Map\u003cString, Object\u003e"
- },
- "stepTemplate": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_StepTemplate",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.StepTemplate"
- },
- "steps": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Step",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Step"
- }
- },
- "volumes": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Volume"
- }
- },
- "workspaces": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceDeclaration",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspaceDeclaration"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.EmbeddedTask",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Matrix": {
- "type": "object",
- "properties": {
- "include": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_MatrixInclude",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.MatrixInclude"
- }
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Param"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.Matrix",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_MatrixInclude": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Param"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.MatrixInclude",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "value": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ParamValue",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ParamValue"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.Param",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ParamSpec": {
- "type": "object",
- "properties": {
- "default": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ParamValue",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ParamValue"
- },
- "description": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "properties": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,io.fabric8.tekton.pipeline.v1beta1.PropertySpec\u003e"
- },
- "type": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.ParamSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ParamValue": {
- "type": "object",
- "properties": {
- "arrayVal": {
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "objectVal": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "stringVal": {
- "type": "string"
- },
- "type": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.ParamValue",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Pipeline": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1beta1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "Pipeline",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineSpec"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.Pipeline",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata",
- "io.fabric8.kubernetes.api.model.Namespaced"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1beta1",
- "required": true
- },
- "items": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Pipeline",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Pipeline"
- }
- },
- "kind": {
- "type": "string",
- "default": "PipelineList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.pipeline.v1beta1.Pipeline\u003e"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRef": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string"
- },
- "bundle": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Param"
- }
- },
- "resolver": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRef",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineResourceResult": {
- "type": "object",
- "properties": {
- "key": {
- "type": "string"
- },
- "resourceName": {
- "type": "string"
- },
- "type": {
- "type": "integer"
- },
- "value": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineResourceResult",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineResult": {
- "type": "object",
- "properties": {
- "description": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "type": {
- "type": "string"
- },
- "value": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ParamValue",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ParamValue"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineResult",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRun": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1beta1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "PipelineRun",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunSpec"
- },
- "status": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunStatus",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunStatus"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRun",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata",
- "io.fabric8.kubernetes.api.model.Namespaced"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1beta1",
- "required": true
- },
- "items": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRun",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRun"
- }
- },
- "kind": {
- "type": "string",
- "default": "PipelineRunList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.pipeline.v1beta1.PipelineRun\u003e"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunResult": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "value": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ParamValue",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ParamValue"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunResult",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunRunStatus": {
- "type": "object",
- "properties": {
- "pipelineTaskName": {
- "type": "string"
- },
- "status": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_run_v1beta1_CustomRunStatus",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.run.v1beta1.CustomRunStatus"
- },
- "whenExpressions": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WhenExpression",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WhenExpression"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunRunStatus",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunSpec": {
- "type": "object",
- "properties": {
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Param"
- }
- },
- "pipelineRef": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRef",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRef"
- },
- "pipelineSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineSpec"
- },
- "podTemplate": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_pod_Template",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.pipeline.pod.Template"
- },
- "serviceAccountName": {
- "type": "string"
- },
- "status": {
- "type": "string"
- },
- "taskRunSpecs": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskRunSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTaskRunSpec"
- }
- },
- "timeout": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Duration"
- },
- "timeouts": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TimeoutFields",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TimeoutFields"
- },
- "workspaces": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceBinding",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspaceBinding"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunStatus": {
- "type": "object",
- "properties": {
- "annotations": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "childReferences": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ChildStatusReference",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ChildStatusReference"
- }
- },
- "completionTime": {
- "existingJavaType": "java.lang.String"
- },
- "conditions": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.knative.internal.pkg.apis.Condition"
- }
- },
- "finallyStartTime": {
- "existingJavaType": "java.lang.String"
- },
- "observedGeneration": {
- "type": "integer",
- "existingJavaType": "Long"
- },
- "pipelineResults": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunResult",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunResult"
- }
- },
- "pipelineSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineSpec"
- },
- "provenance": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Provenance",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Provenance"
- },
- "runs": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,io.fabric8.tekton.pipeline.v1beta1.PipelineRunRunStatus\u003e"
- },
- "skippedTasks": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_SkippedTask",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.SkippedTask"
- }
- },
- "spanContext": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "startTime": {
- "existingJavaType": "java.lang.String"
- },
- "taskRuns": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,io.fabric8.tekton.pipeline.v1beta1.PipelineRunTaskRunStatus\u003e"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunStatus",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunTaskRunStatus": {
- "type": "object",
- "properties": {
- "pipelineTaskName": {
- "type": "string"
- },
- "status": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunStatus",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunStatus"
- },
- "whenExpressions": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WhenExpression",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WhenExpression"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunTaskRunStatus",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineSpec": {
- "type": "object",
- "properties": {
- "description": {
- "type": "string"
- },
- "finally": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTask",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTask"
- }
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ParamSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ParamSpec"
- }
- },
- "results": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineResult",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineResult"
- }
- },
- "tasks": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTask",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTask"
- }
- },
- "workspaces": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineWorkspaceDeclaration",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineWorkspaceDeclaration"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTask": {
- "type": "object",
- "properties": {
- "matrix": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Matrix",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Matrix"
- },
- "name": {
- "type": "string"
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Param"
- }
- },
- "retries": {
- "type": "integer"
- },
- "runAfter": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- },
- "taskRef": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRef",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRef"
- },
- "taskSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_EmbeddedTask",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.EmbeddedTask"
- },
- "timeout": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Duration"
- },
- "when": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WhenExpression",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WhenExpression"
- }
- },
- "workspaces": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspacePipelineTaskBinding",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspacePipelineTaskBinding"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTask",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskMetadata": {
- "type": "object",
- "properties": {
- "annotations": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "labels": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTaskMetadata",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskRunSpec": {
- "type": "object",
- "properties": {
- "computeResources": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements"
- },
- "metadata": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskMetadata",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTaskMetadata"
- },
- "pipelineTaskName": {
- "type": "string"
- },
- "sidecarOverrides": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunSidecarOverride",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunSidecarOverride"
- }
- },
- "stepOverrides": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunStepOverride",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunStepOverride"
- }
- },
- "taskPodTemplate": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_pod_Template",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.pipeline.pod.Template"
- },
- "taskServiceAccountName": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTaskRunSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineWorkspaceDeclaration": {
- "type": "object",
- "properties": {
- "description": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "optional": {
- "type": "boolean"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineWorkspaceDeclaration",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PropertySpec": {
- "type": "object",
- "properties": {
- "type": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PropertySpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Provenance": {
- "type": "object",
- "properties": {
- "configSource": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ConfigSource",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ConfigSource"
- },
- "featureFlags": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_config_FeatureFlags",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.config.FeatureFlags"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.Provenance",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Sidecar": {
- "type": "object",
- "properties": {
- "args": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- },
- "command": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- },
- "env": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.EnvVar"
- }
- },
- "envFrom": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.EnvFromSource"
- }
- },
- "image": {
- "type": "string"
- },
- "imagePullPolicy": {
- "type": "string"
- },
- "lifecycle": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Lifecycle"
- },
- "livenessProbe": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Probe"
- },
- "name": {
- "type": "string"
- },
- "ports": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerPort"
- }
- },
- "readinessProbe": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Probe"
- },
- "resources": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements"
- },
- "script": {
- "type": "string"
- },
- "securityContext": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.SecurityContext"
- },
- "startupProbe": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Probe"
- },
- "stdin": {
- "type": "boolean"
- },
- "stdinOnce": {
- "type": "boolean"
- },
- "terminationMessagePath": {
- "type": "string"
- },
- "terminationMessagePolicy": {
- "type": "string"
- },
- "tty": {
- "type": "boolean"
- },
- "volumeDevices": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeDevice"
- }
- },
- "volumeMounts": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeMount"
- }
- },
- "workingDir": {
- "type": "string"
- },
- "workspaces": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceUsage",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspaceUsage"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.Sidecar",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_SidecarState": {
- "type": "object",
- "properties": {
- "container": {
- "type": "string"
- },
- "imageID": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "running": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerStateRunning"
- },
- "terminated": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerStateTerminated"
- },
- "waiting": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerStateWaiting"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.SidecarState",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_SkippedTask": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "reason": {
- "type": "string"
- },
- "whenExpressions": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WhenExpression",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WhenExpression"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.SkippedTask",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Step": {
- "type": "object",
- "properties": {
- "args": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- },
- "command": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- },
- "env": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.EnvVar"
- }
- },
- "envFrom": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.EnvFromSource"
- }
- },
- "image": {
- "type": "string"
- },
- "imagePullPolicy": {
- "type": "string"
- },
- "lifecycle": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Lifecycle"
- },
- "livenessProbe": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Probe"
- },
- "name": {
- "type": "string",
- "maxLength": 63,
- "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$"
- },
- "onError": {
- "type": "string"
- },
- "ports": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerPort"
- }
- },
- "readinessProbe": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Probe"
- },
- "resources": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements"
- },
- "script": {
- "type": "string"
- },
- "securityContext": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.SecurityContext"
- },
- "startupProbe": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Probe"
- },
- "stderrConfig": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_StepOutputConfig",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.StepOutputConfig"
- },
- "stdin": {
- "type": "boolean"
- },
- "stdinOnce": {
- "type": "boolean"
- },
- "stdoutConfig": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_StepOutputConfig",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.StepOutputConfig"
- },
- "terminationMessagePath": {
- "type": "string"
- },
- "terminationMessagePolicy": {
- "type": "string"
- },
- "timeout": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Duration"
- },
- "tty": {
- "type": "boolean"
- },
- "volumeDevices": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeDevice"
- }
- },
- "volumeMounts": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeMount"
- }
- },
- "workingDir": {
- "type": "string"
- },
- "workspaces": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceUsage",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspaceUsage"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.Step",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_StepOutputConfig": {
- "type": "object",
- "properties": {
- "path": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.StepOutputConfig",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_StepState": {
- "type": "object",
- "properties": {
- "container": {
- "type": "string"
- },
- "imageID": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "running": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerStateRunning"
- },
- "terminated": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerStateTerminated"
- },
- "waiting": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerStateWaiting"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.StepState",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_StepTemplate": {
- "type": "object",
- "properties": {
- "args": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- },
- "command": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- },
- "env": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.EnvVar"
- }
- },
- "envFrom": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.EnvFromSource"
- }
- },
- "image": {
- "type": "string"
- },
- "imagePullPolicy": {
- "type": "string"
- },
- "lifecycle": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Lifecycle"
- },
- "livenessProbe": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Probe"
- },
- "name": {
- "type": "string"
- },
- "ports": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerPort"
- }
- },
- "readinessProbe": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Probe"
- },
- "resources": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements"
- },
- "securityContext": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.SecurityContext"
- },
- "startupProbe": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Probe"
- },
- "stdin": {
- "type": "boolean"
- },
- "stdinOnce": {
- "type": "boolean"
- },
- "terminationMessagePath": {
- "type": "string"
- },
- "terminationMessagePolicy": {
- "type": "string"
- },
- "tty": {
- "type": "boolean"
- },
- "volumeDevices": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeDevice"
- }
- },
- "volumeMounts": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeMount"
- }
- },
- "workingDir": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.StepTemplate",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Task": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1beta1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "Task",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskSpec"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.Task",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata",
- "io.fabric8.kubernetes.api.model.Namespaced"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1beta1",
- "required": true
- },
- "items": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Task",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Task"
- }
- },
- "kind": {
- "type": "string",
- "default": "TaskList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.pipeline.v1beta1.Task\u003e"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRef": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string"
- },
- "bundle": {
- "type": "string"
- },
- "kind": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Param"
- }
- },
- "resolver": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRef",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResult": {
- "type": "object",
- "properties": {
- "description": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "properties": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,io.fabric8.tekton.pipeline.v1beta1.PropertySpec\u003e"
- },
- "type": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskResult",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRun": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1beta1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "TaskRun",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunSpec"
- },
- "status": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunStatus",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunStatus"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRun",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata",
- "io.fabric8.kubernetes.api.model.Namespaced"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunDebug": {
- "type": "object",
- "properties": {
- "breakpoint": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunDebug",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1beta1",
- "required": true
- },
- "items": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRun",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRun"
- }
- },
- "kind": {
- "type": "string",
- "default": "TaskRunList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.pipeline.v1beta1.TaskRun\u003e"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunResult": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "type": {
- "type": "string"
- },
- "value": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ParamValue",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ParamValue"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunResult",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunSidecarOverride": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "resources": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunSidecarOverride",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunSpec": {
- "type": "object",
- "properties": {
- "computeResources": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements"
- },
- "debug": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunDebug",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunDebug"
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Param"
- }
- },
- "podTemplate": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_pod_Template",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.pipeline.pod.Template"
- },
- "retries": {
- "type": "integer"
- },
- "serviceAccountName": {
- "type": "string"
- },
- "sidecarOverrides": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunSidecarOverride",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunSidecarOverride"
- }
- },
- "status": {
- "type": "string"
- },
- "statusMessage": {
- "type": "string"
- },
- "stepOverrides": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunStepOverride",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunStepOverride"
- }
- },
- "taskRef": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRef",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRef"
- },
- "taskSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskSpec"
- },
- "timeout": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Duration"
- },
- "workspaces": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceBinding",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspaceBinding"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunStatus": {
- "type": "object",
- "properties": {
- "annotations": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "cloudEvents": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CloudEventDelivery",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.CloudEventDelivery"
- }
- },
- "completionTime": {
- "existingJavaType": "java.lang.String"
- },
- "conditions": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.knative.internal.pkg.apis.Condition"
- }
- },
- "observedGeneration": {
- "type": "integer",
- "existingJavaType": "Long"
- },
- "podName": {
- "type": "string"
- },
- "provenance": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Provenance",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Provenance"
- },
- "resourcesResult": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineResourceResult",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineResourceResult"
- }
- },
- "retriesStatus": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunStatus",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunStatus"
- }
- },
- "sidecars": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_SidecarState",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.SidecarState"
- }
- },
- "spanContext": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "startTime": {
- "existingJavaType": "java.lang.String"
- },
- "steps": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_StepState",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.StepState"
- }
- },
- "taskResults": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunResult",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunResult"
- }
- },
- "taskSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskSpec"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunStatus",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunStepOverride": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "resources": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunStepOverride",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskSpec": {
- "type": "object",
- "properties": {
- "description": {
- "type": "string"
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ParamSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ParamSpec"
- }
- },
- "results": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResult",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskResult"
- }
- },
- "sidecars": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Sidecar",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Sidecar"
- }
- },
- "stepTemplate": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_StepTemplate",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.StepTemplate"
- },
- "steps": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Step",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Step"
- }
- },
- "volumes": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Volume"
- }
- },
- "workspaces": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceDeclaration",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspaceDeclaration"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TimeoutFields": {
- "type": "object",
- "properties": {
- "finally": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Duration"
- },
- "pipeline": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Duration"
- },
- "tasks": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Duration"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.TimeoutFields",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WhenExpression": {
- "type": "object",
- "properties": {
- "input": {
- "type": "string"
- },
- "operator": {
- "type": "string"
- },
- "values": {
- "type": "array",
- "items": {
- "type": "string"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.WhenExpression",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceBinding": {
- "type": "object",
- "properties": {
- "configMap": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMapVolumeSource"
- },
- "csi": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.CSIVolumeSource"
- },
- "emptyDir": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.EmptyDirVolumeSource"
- },
- "name": {
- "type": "string"
- },
- "persistentVolumeClaim": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.PersistentVolumeClaimVolumeSource"
- },
- "projected": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ProjectedVolumeSource"
- },
- "secret": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.SecretVolumeSource"
- },
- "subPath": {
- "type": "string"
- },
- "volumeClaimTemplate": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.PersistentVolumeClaim"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspaceBinding",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceDeclaration": {
- "type": "object",
- "properties": {
- "description": {
- "type": "string"
- },
- "mountPath": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "optional": {
- "type": "boolean"
- },
- "readOnly": {
- "type": "boolean"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspaceDeclaration",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspacePipelineTaskBinding": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "subPath": {
- "type": "string"
- },
- "workspace": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspacePipelineTaskBinding",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceUsage": {
- "type": "object",
- "properties": {
- "mountPath": {
- "type": "string"
- },
- "name": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspaceUsage",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_run_v1beta1_CustomRunResult": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "value": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.run.v1beta1.CustomRunResult",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_run_v1beta1_CustomRunStatus": {
- "type": "object",
- "properties": {
- "annotations": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "completionTime": {
- "existingJavaType": "java.lang.String"
- },
- "conditions": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.knative.internal.pkg.apis.Condition"
- }
- },
- "extraFields": {
- "existingJavaType": "java.util.Map\u003cString, Object\u003e"
- },
- "observedGeneration": {
- "type": "integer",
- "existingJavaType": "Long"
- },
- "results": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_run_v1beta1_CustomRunResult",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.run.v1beta1.CustomRunResult"
- }
- },
- "retriesStatus": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_run_v1beta1_CustomRunStatus",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.run.v1beta1.CustomRunStatus"
- }
- },
- "startTime": {
- "existingJavaType": "java.lang.String"
- }
- },
- "javaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.run.v1beta1.CustomRunStatus",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- }
- },
- "type": "object",
- "properties": {
- "github_com_tektoncd_pipeline_pkg_apis_config_FeatureFlags": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_config_FeatureFlags",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.config.FeatureFlags"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_pod_Template": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_pod_Template",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.pipeline.pod.Template"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ChildStatusReference": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ChildStatusReference",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ChildStatusReference"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CloudEventDelivery": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CloudEventDelivery",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.CloudEventDelivery"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CloudEventDeliveryState": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CloudEventDeliveryState",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.CloudEventDeliveryState"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ClusterTask": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ClusterTask",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ClusterTask"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ClusterTaskList": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ClusterTaskList",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ClusterTaskList"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ConfigSource": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ConfigSource",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ConfigSource"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CustomRun": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CustomRun",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.CustomRun"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CustomRunList": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CustomRunList",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.CustomRunList"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CustomRunSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CustomRunSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.CustomRunSpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_EmbeddedCustomRunSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_EmbeddedCustomRunSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.EmbeddedCustomRunSpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_EmbeddedTask": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_EmbeddedTask",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.EmbeddedTask"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Matrix": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Matrix",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Matrix"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_MatrixInclude": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_MatrixInclude",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.MatrixInclude"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Param"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ParamSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ParamSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ParamSpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ParamValue": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ParamValue",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ParamValue"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Pipeline": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Pipeline",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Pipeline"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineList": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineList",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineList"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRef": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRef",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRef"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineResourceResult": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineResourceResult",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineResourceResult"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineResult": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineResult",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineResult"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRun": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRun",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRun"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunList": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunList",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunList"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunResult": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunResult",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunResult"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunRunStatus": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunRunStatus",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunRunStatus"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunSpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunStatus": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunStatus",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunStatus"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunTaskRunStatus": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunTaskRunStatus",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunTaskRunStatus"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineSpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTask": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTask",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTask"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskMetadata": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskMetadata",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTaskMetadata"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskRunSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskRunSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTaskRunSpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineWorkspaceDeclaration": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineWorkspaceDeclaration",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineWorkspaceDeclaration"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PropertySpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PropertySpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PropertySpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Provenance": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Provenance",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Provenance"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Sidecar": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Sidecar",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Sidecar"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_SidecarState": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_SidecarState",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.SidecarState"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_SkippedTask": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_SkippedTask",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.SkippedTask"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Step": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Step",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Step"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_StepOutputConfig": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_StepOutputConfig",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.StepOutputConfig"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_StepState": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_StepState",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.StepState"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_StepTemplate": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_StepTemplate",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.StepTemplate"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Task": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Task",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Task"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskList": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskList",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskList"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRef": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRef",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRef"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResult": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResult",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskResult"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRun": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRun",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRun"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunDebug": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunDebug",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunDebug"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunList": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunList",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunList"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunResult": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunResult",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunResult"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunSidecarOverride": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunSidecarOverride",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunSidecarOverride"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunSpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunStatus": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunStatus",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunStatus"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunStepOverride": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunStepOverride",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunStepOverride"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskSpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TimeoutFields": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TimeoutFields",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TimeoutFields"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WhenExpression": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WhenExpression",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WhenExpression"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceBinding": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceBinding",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspaceBinding"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceDeclaration": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceDeclaration",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspaceDeclaration"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspacePipelineTaskBinding": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspacePipelineTaskBinding",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspacePipelineTaskBinding"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceUsage": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceUsage",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspaceUsage"
- },
- "github_com_tektoncd_pipeline_pkg_apis_run_v1beta1_CustomRunResult": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_run_v1beta1_CustomRunResult",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.run.v1beta1.CustomRunResult"
- },
- "github_com_tektoncd_pipeline_pkg_apis_run_v1beta1_CustomRunStatus": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_run_v1beta1_CustomRunStatus",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.run.v1beta1.CustomRunStatus"
- }
- },
- "additionalProperties": false
-}
diff --git a/extensions/tekton/model-v1alpha1/pom.xml b/extensions/tekton/model-v1alpha1/pom.xml
deleted file mode 100644
index 1529cb867cc..00000000000
--- a/extensions/tekton/model-v1alpha1/pom.xml
+++ /dev/null
@@ -1,108 +0,0 @@
-
-
-
- 4.0.0
-
- io.fabric8
- tekton-extension-pom
- 7.0-SNAPSHOT
-
-
- tekton-model-v1alpha1
- bundle
- Fabric8 :: Tekton :: Model v1alpha1
-
-
-
- io.fabric8.kubernetes.api.builder,
- !io.fabric8.tekton.*,
- *
-
-
- io.fabric8.tekton.*
-
-
-
-
-
- io.sundr
- builder-annotations
- provided
-
-
- io.sundr
- transform-annotations
-
-
- io.sundr
- sundr-codegen-velocity-nodeps
-
-
- io.fabric8
- kubernetes-model-core
-
-
- io.fabric8
- knative-model
-
-
- org.junit.jupiter
- junit-jupiter-engine
- test
-
-
- org.projectlombok
- lombok
- provided
-
-
-
-
-
- generate
-
-
-
- org.jsonschema2pojo
- jsonschema2pojo-maven-plugin
-
-
- maven-antrun-plugin
-
-
- generate-sources
-
-
-
-
-
-
-
- run
-
-
-
-
-
-
-
-
-
diff --git a/extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/v1alpha1/internal/pipeline/pkg/apis/pipeline/pod/Template.java b/extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/v1alpha1/internal/pipeline/pkg/apis/pipeline/pod/Template.java
deleted file mode 100644
index e6fe53180a2..00000000000
--- a/extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/v1alpha1/internal/pipeline/pkg/apis/pipeline/pod/Template.java
+++ /dev/null
@@ -1,359 +0,0 @@
-
-package io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.pod;
-
-import java.util.ArrayList;
-import java.util.LinkedHashMap;
-import java.util.List;
-import java.util.Map;
-import javax.annotation.Generated;
-import com.fasterxml.jackson.annotation.JsonAnyGetter;
-import com.fasterxml.jackson.annotation.JsonAnySetter;
-import com.fasterxml.jackson.annotation.JsonIgnore;
-import com.fasterxml.jackson.annotation.JsonInclude;
-import com.fasterxml.jackson.annotation.JsonProperty;
-import com.fasterxml.jackson.annotation.JsonPropertyOrder;
-import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
-import io.fabric8.kubernetes.api.builder.Editable;
-import io.fabric8.kubernetes.api.model.Affinity;
-import io.fabric8.kubernetes.api.model.Container;
-import io.fabric8.kubernetes.api.model.ContainerPort;
-import io.fabric8.kubernetes.api.model.HostAlias;
-import io.fabric8.kubernetes.api.model.IntOrString;
-import io.fabric8.kubernetes.api.model.KubernetesResource;
-import io.fabric8.kubernetes.api.model.LabelSelector;
-import io.fabric8.kubernetes.api.model.ObjectMeta;
-import io.fabric8.kubernetes.api.model.ObjectReference;
-import io.fabric8.kubernetes.api.model.PersistentVolumeClaim;
-import io.fabric8.kubernetes.api.model.PodDNSConfig;
-import io.fabric8.kubernetes.api.model.PodSecurityContext;
-import io.fabric8.kubernetes.api.model.PodTemplateSpec;
-import io.fabric8.kubernetes.api.model.ResourceRequirements;
-import io.fabric8.kubernetes.api.model.Toleration;
-import io.fabric8.kubernetes.api.model.TopologySpreadConstraint;
-import io.fabric8.kubernetes.api.model.VolumeMount;
-import io.sundr.builder.annotations.Buildable;
-import io.sundr.builder.annotations.BuildableReference;
-import lombok.EqualsAndHashCode;
-import lombok.ToString;
-import lombok.experimental.Accessors;
-
-@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
-@JsonInclude(JsonInclude.Include.NON_NULL)
-@JsonPropertyOrder({
- "affinity",
- "automountServiceAccountToken",
- "dnsConfig",
- "dnsPolicy",
- "enableServiceLinks",
- "env",
- "hostAliases",
- "hostNetwork",
- "imagePullSecrets",
- "nodeSelector",
- "priorityClassName",
- "runtimeClassName",
- "schedulerName",
- "securityContext",
- "tolerations",
- "topologySpreadConstraints",
- "volumes"
-})
-@ToString
-@EqualsAndHashCode
-@Accessors(prefix = {
- "_",
- ""
-})
-@Buildable(editableEnabled = false, validationEnabled = false, generateBuilderPackage = false, lazyCollectionInitEnabled = false, builderPackage = "io.fabric8.kubernetes.api.builder", refs = {
- @BuildableReference(ObjectMeta.class),
- @BuildableReference(LabelSelector.class),
- @BuildableReference(Container.class),
- @BuildableReference(PodTemplateSpec.class),
- @BuildableReference(ResourceRequirements.class),
- @BuildableReference(IntOrString.class),
- @BuildableReference(ObjectReference.class),
- @BuildableReference(io.fabric8.kubernetes.api.model.LocalObjectReference.class),
- @BuildableReference(PersistentVolumeClaim.class),
- @BuildableReference(io.fabric8.kubernetes.api.model.EnvVar.class),
- @BuildableReference(ContainerPort.class),
- @BuildableReference(io.fabric8.kubernetes.api.model.Volume.class),
- @BuildableReference(VolumeMount.class)
-})
-@Generated("jsonschema2pojo")
-public class Template implements Editable , KubernetesResource
-{
-
- @JsonProperty("affinity")
- private Affinity affinity;
- @JsonProperty("automountServiceAccountToken")
- private Boolean automountServiceAccountToken;
- @JsonProperty("dnsConfig")
- private PodDNSConfig dnsConfig;
- @JsonProperty("dnsPolicy")
- private String dnsPolicy;
- @JsonProperty("enableServiceLinks")
- private Boolean enableServiceLinks;
- @JsonProperty("env")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- private List env = new ArrayList<>();
- @JsonProperty("hostAliases")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- private List hostAliases = new ArrayList<>();
- @JsonProperty("hostNetwork")
- private java.lang.Boolean hostNetwork;
- @JsonProperty("imagePullSecrets")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- private List imagePullSecrets = new ArrayList<>();
- @JsonProperty("nodeSelector")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- private Map nodeSelector = new LinkedHashMap<>();
- @JsonProperty("priorityClassName")
- private String priorityClassName;
- @JsonProperty("runtimeClassName")
- private String runtimeClassName;
- @JsonProperty("schedulerName")
- private java.lang.String schedulerName;
- @JsonProperty("securityContext")
- private PodSecurityContext securityContext;
- @JsonProperty("tolerations")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- private List tolerations = new ArrayList<>();
- @JsonProperty("topologySpreadConstraints")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- private List topologySpreadConstraints = new ArrayList<>();
- @JsonProperty("volumes")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- private List volumes = new ArrayList<>();
- @JsonIgnore
- private Map additionalProperties = new LinkedHashMap();
-
- /**
- * No args constructor for use in serialization
- *
- */
- public Template() {
- }
-
- public Template(Affinity affinity, Boolean automountServiceAccountToken, PodDNSConfig dnsConfig, String dnsPolicy, Boolean enableServiceLinks, List env, List hostAliases, java.lang.Boolean hostNetwork, List imagePullSecrets, Map nodeSelector, String priorityClassName, String runtimeClassName, java.lang.String schedulerName, PodSecurityContext securityContext, List tolerations, List topologySpreadConstraints, List volumes) {
- super();
- this.affinity = affinity;
- this.automountServiceAccountToken = automountServiceAccountToken;
- this.dnsConfig = dnsConfig;
- this.dnsPolicy = dnsPolicy;
- this.enableServiceLinks = enableServiceLinks;
- this.env = env;
- this.hostAliases = hostAliases;
- this.hostNetwork = hostNetwork;
- this.imagePullSecrets = imagePullSecrets;
- this.nodeSelector = nodeSelector;
- this.priorityClassName = priorityClassName;
- this.runtimeClassName = runtimeClassName;
- this.schedulerName = schedulerName;
- this.securityContext = securityContext;
- this.tolerations = tolerations;
- this.topologySpreadConstraints = topologySpreadConstraints;
- this.volumes = volumes;
- }
-
- @JsonProperty("affinity")
- public Affinity getAffinity() {
- return affinity;
- }
-
- @JsonProperty("affinity")
- public void setAffinity(Affinity affinity) {
- this.affinity = affinity;
- }
-
- @JsonProperty("automountServiceAccountToken")
- public Boolean getAutomountServiceAccountToken() {
- return automountServiceAccountToken;
- }
-
- @JsonProperty("automountServiceAccountToken")
- public void setAutomountServiceAccountToken(Boolean automountServiceAccountToken) {
- this.automountServiceAccountToken = automountServiceAccountToken;
- }
-
- @JsonProperty("dnsConfig")
- public PodDNSConfig getDnsConfig() {
- return dnsConfig;
- }
-
- @JsonProperty("dnsConfig")
- public void setDnsConfig(PodDNSConfig dnsConfig) {
- this.dnsConfig = dnsConfig;
- }
-
- @JsonProperty("dnsPolicy")
- public String getDnsPolicy() {
- return dnsPolicy;
- }
-
- @JsonProperty("dnsPolicy")
- public void setDnsPolicy(String dnsPolicy) {
- this.dnsPolicy = dnsPolicy;
- }
-
- @JsonProperty("enableServiceLinks")
- public Boolean getEnableServiceLinks() {
- return enableServiceLinks;
- }
-
- @JsonProperty("enableServiceLinks")
- public void setEnableServiceLinks(Boolean enableServiceLinks) {
- this.enableServiceLinks = enableServiceLinks;
- }
-
- @JsonProperty("env")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- public List getEnv() {
- return env;
- }
-
- @JsonProperty("env")
- public void setEnv(List env) {
- this.env = env;
- }
-
- @JsonProperty("hostAliases")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- public List getHostAliases() {
- return hostAliases;
- }
-
- @JsonProperty("hostAliases")
- public void setHostAliases(List hostAliases) {
- this.hostAliases = hostAliases;
- }
-
- @JsonProperty("hostNetwork")
- public java.lang.Boolean getHostNetwork() {
- return hostNetwork;
- }
-
- @JsonProperty("hostNetwork")
- public void setHostNetwork(java.lang.Boolean hostNetwork) {
- this.hostNetwork = hostNetwork;
- }
-
- @JsonProperty("imagePullSecrets")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- public List getImagePullSecrets() {
- return imagePullSecrets;
- }
-
- @JsonProperty("imagePullSecrets")
- public void setImagePullSecrets(List imagePullSecrets) {
- this.imagePullSecrets = imagePullSecrets;
- }
-
- @JsonProperty("nodeSelector")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- public Map getNodeSelector() {
- return nodeSelector;
- }
-
- @JsonProperty("nodeSelector")
- public void setNodeSelector(Map nodeSelector) {
- this.nodeSelector = nodeSelector;
- }
-
- @JsonProperty("priorityClassName")
- public String getPriorityClassName() {
- return priorityClassName;
- }
-
- @JsonProperty("priorityClassName")
- public void setPriorityClassName(String priorityClassName) {
- this.priorityClassName = priorityClassName;
- }
-
- @JsonProperty("runtimeClassName")
- public String getRuntimeClassName() {
- return runtimeClassName;
- }
-
- @JsonProperty("runtimeClassName")
- public void setRuntimeClassName(String runtimeClassName) {
- this.runtimeClassName = runtimeClassName;
- }
-
- @JsonProperty("schedulerName")
- public java.lang.String getSchedulerName() {
- return schedulerName;
- }
-
- @JsonProperty("schedulerName")
- public void setSchedulerName(java.lang.String schedulerName) {
- this.schedulerName = schedulerName;
- }
-
- @JsonProperty("securityContext")
- public PodSecurityContext getSecurityContext() {
- return securityContext;
- }
-
- @JsonProperty("securityContext")
- public void setSecurityContext(PodSecurityContext securityContext) {
- this.securityContext = securityContext;
- }
-
- @JsonProperty("tolerations")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- public List getTolerations() {
- return tolerations;
- }
-
- @JsonProperty("tolerations")
- public void setTolerations(List tolerations) {
- this.tolerations = tolerations;
- }
-
- @JsonProperty("topologySpreadConstraints")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- public List getTopologySpreadConstraints() {
- return topologySpreadConstraints;
- }
-
- @JsonProperty("topologySpreadConstraints")
- public void setTopologySpreadConstraints(List topologySpreadConstraints) {
- this.topologySpreadConstraints = topologySpreadConstraints;
- }
-
- @JsonProperty("volumes")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- public List getVolumes() {
- return volumes;
- }
-
- @JsonProperty("volumes")
- public void setVolumes(List volumes) {
- this.volumes = volumes;
- }
-
- @JsonIgnore
- public TemplateBuilder edit() {
- return new TemplateBuilder(this);
- }
-
- @JsonIgnore
- public TemplateBuilder toBuilder() {
- return edit();
- }
-
- @JsonAnyGetter
- public Map getAdditionalProperties() {
- return this.additionalProperties;
- }
-
- @JsonAnySetter
- public void setAdditionalProperty(java.lang.String name, Object value) {
- this.additionalProperties.put(name, value);
- }
-
- public void setAdditionalProperties(Map additionalProperties) {
- this.additionalProperties = additionalProperties;
- }
-
-}
diff --git a/extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/v1alpha1/internal/pipeline/pkg/apis/pipeline/v1beta1/Param.java b/extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/v1alpha1/internal/pipeline/pkg/apis/pipeline/v1beta1/Param.java
deleted file mode 100644
index ddcc2a1f3ba..00000000000
--- a/extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/v1alpha1/internal/pipeline/pkg/apis/pipeline/v1beta1/Param.java
+++ /dev/null
@@ -1,130 +0,0 @@
-
-package io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1beta1;
-
-import java.util.LinkedHashMap;
-import java.util.Map;
-import javax.annotation.Generated;
-import com.fasterxml.jackson.annotation.JsonAnyGetter;
-import com.fasterxml.jackson.annotation.JsonAnySetter;
-import com.fasterxml.jackson.annotation.JsonIgnore;
-import com.fasterxml.jackson.annotation.JsonInclude;
-import com.fasterxml.jackson.annotation.JsonProperty;
-import com.fasterxml.jackson.annotation.JsonPropertyOrder;
-import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
-import io.fabric8.kubernetes.api.builder.Editable;
-import io.fabric8.kubernetes.api.model.Container;
-import io.fabric8.kubernetes.api.model.ContainerPort;
-import io.fabric8.kubernetes.api.model.EnvVar;
-import io.fabric8.kubernetes.api.model.IntOrString;
-import io.fabric8.kubernetes.api.model.KubernetesResource;
-import io.fabric8.kubernetes.api.model.LabelSelector;
-import io.fabric8.kubernetes.api.model.LocalObjectReference;
-import io.fabric8.kubernetes.api.model.ObjectMeta;
-import io.fabric8.kubernetes.api.model.ObjectReference;
-import io.fabric8.kubernetes.api.model.PersistentVolumeClaim;
-import io.fabric8.kubernetes.api.model.PodTemplateSpec;
-import io.fabric8.kubernetes.api.model.ResourceRequirements;
-import io.fabric8.kubernetes.api.model.Volume;
-import io.fabric8.kubernetes.api.model.VolumeMount;
-import io.sundr.builder.annotations.Buildable;
-import io.sundr.builder.annotations.BuildableReference;
-import lombok.EqualsAndHashCode;
-import lombok.ToString;
-import lombok.experimental.Accessors;
-
-@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
-@JsonInclude(JsonInclude.Include.NON_NULL)
-@JsonPropertyOrder({
- "name",
- "value"
-})
-@ToString
-@EqualsAndHashCode
-@Accessors(prefix = {
- "_",
- ""
-})
-@Buildable(editableEnabled = false, validationEnabled = false, generateBuilderPackage = false, lazyCollectionInitEnabled = false, builderPackage = "io.fabric8.kubernetes.api.builder", refs = {
- @BuildableReference(ObjectMeta.class),
- @BuildableReference(LabelSelector.class),
- @BuildableReference(Container.class),
- @BuildableReference(PodTemplateSpec.class),
- @BuildableReference(ResourceRequirements.class),
- @BuildableReference(IntOrString.class),
- @BuildableReference(ObjectReference.class),
- @BuildableReference(LocalObjectReference.class),
- @BuildableReference(PersistentVolumeClaim.class),
- @BuildableReference(EnvVar.class),
- @BuildableReference(ContainerPort.class),
- @BuildableReference(Volume.class),
- @BuildableReference(VolumeMount.class)
-})
-@Generated("jsonschema2pojo")
-public class Param implements Editable , KubernetesResource
-{
-
- @JsonProperty("name")
- private String name;
- @JsonProperty("value")
- private ParamValue value;
- @JsonIgnore
- private Map additionalProperties = new LinkedHashMap();
-
- /**
- * No args constructor for use in serialization
- *
- */
- public Param() {
- }
-
- public Param(String name, ParamValue value) {
- super();
- this.name = name;
- this.value = value;
- }
-
- @JsonProperty("name")
- public String getName() {
- return name;
- }
-
- @JsonProperty("name")
- public void setName(String name) {
- this.name = name;
- }
-
- @JsonProperty("value")
- public ParamValue getValue() {
- return value;
- }
-
- @JsonProperty("value")
- public void setValue(ParamValue value) {
- this.value = value;
- }
-
- @JsonIgnore
- public ParamBuilder edit() {
- return new ParamBuilder(this);
- }
-
- @JsonIgnore
- public ParamBuilder toBuilder() {
- return edit();
- }
-
- @JsonAnyGetter
- public Map getAdditionalProperties() {
- return this.additionalProperties;
- }
-
- @JsonAnySetter
- public void setAdditionalProperty(String name, Object value) {
- this.additionalProperties.put(name, value);
- }
-
- public void setAdditionalProperties(Map additionalProperties) {
- this.additionalProperties = additionalProperties;
- }
-
-}
diff --git a/extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/v1alpha1/internal/pipeline/pkg/apis/pipeline/v1beta1/ParamValue.java b/extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/v1alpha1/internal/pipeline/pkg/apis/pipeline/v1beta1/ParamValue.java
deleted file mode 100644
index 514dbf43ce6..00000000000
--- a/extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/v1alpha1/internal/pipeline/pkg/apis/pipeline/v1beta1/ParamValue.java
+++ /dev/null
@@ -1,164 +0,0 @@
-
-package io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1beta1;
-
-import java.util.ArrayList;
-import java.util.LinkedHashMap;
-import java.util.List;
-import java.util.Map;
-import javax.annotation.Generated;
-import com.fasterxml.jackson.annotation.JsonAnyGetter;
-import com.fasterxml.jackson.annotation.JsonAnySetter;
-import com.fasterxml.jackson.annotation.JsonIgnore;
-import com.fasterxml.jackson.annotation.JsonInclude;
-import com.fasterxml.jackson.annotation.JsonProperty;
-import com.fasterxml.jackson.annotation.JsonPropertyOrder;
-import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
-import io.fabric8.kubernetes.api.builder.Editable;
-import io.fabric8.kubernetes.api.model.Container;
-import io.fabric8.kubernetes.api.model.ContainerPort;
-import io.fabric8.kubernetes.api.model.EnvVar;
-import io.fabric8.kubernetes.api.model.IntOrString;
-import io.fabric8.kubernetes.api.model.KubernetesResource;
-import io.fabric8.kubernetes.api.model.LabelSelector;
-import io.fabric8.kubernetes.api.model.LocalObjectReference;
-import io.fabric8.kubernetes.api.model.ObjectMeta;
-import io.fabric8.kubernetes.api.model.ObjectReference;
-import io.fabric8.kubernetes.api.model.PersistentVolumeClaim;
-import io.fabric8.kubernetes.api.model.PodTemplateSpec;
-import io.fabric8.kubernetes.api.model.ResourceRequirements;
-import io.fabric8.kubernetes.api.model.Volume;
-import io.fabric8.kubernetes.api.model.VolumeMount;
-import io.sundr.builder.annotations.Buildable;
-import io.sundr.builder.annotations.BuildableReference;
-import lombok.EqualsAndHashCode;
-import lombok.ToString;
-import lombok.experimental.Accessors;
-
-@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
-@JsonInclude(JsonInclude.Include.NON_NULL)
-@JsonPropertyOrder({
- "ArrayVal",
- "ObjectVal",
- "StringVal",
- "Type"
-})
-@ToString
-@EqualsAndHashCode
-@Accessors(prefix = {
- "_",
- ""
-})
-@Buildable(editableEnabled = false, validationEnabled = false, generateBuilderPackage = false, lazyCollectionInitEnabled = false, builderPackage = "io.fabric8.kubernetes.api.builder", refs = {
- @BuildableReference(ObjectMeta.class),
- @BuildableReference(LabelSelector.class),
- @BuildableReference(Container.class),
- @BuildableReference(PodTemplateSpec.class),
- @BuildableReference(ResourceRequirements.class),
- @BuildableReference(IntOrString.class),
- @BuildableReference(ObjectReference.class),
- @BuildableReference(LocalObjectReference.class),
- @BuildableReference(PersistentVolumeClaim.class),
- @BuildableReference(EnvVar.class),
- @BuildableReference(ContainerPort.class),
- @BuildableReference(Volume.class),
- @BuildableReference(VolumeMount.class)
-})
-@Generated("jsonschema2pojo")
-public class ParamValue implements Editable , KubernetesResource
-{
-
- @JsonProperty("ArrayVal")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- private List arrayVal = new ArrayList<>();
- @JsonProperty("ObjectVal")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- private Map objectVal = new LinkedHashMap<>();
- @JsonProperty("StringVal")
- private java.lang.String stringVal;
- @JsonProperty("Type")
- private java.lang.String type;
- @JsonIgnore
- private Map additionalProperties = new LinkedHashMap();
-
- /**
- * No args constructor for use in serialization
- *
- */
- public ParamValue() {
- }
-
- public ParamValue(List arrayVal, Map objectVal, java.lang.String stringVal, java.lang.String type) {
- super();
- this.arrayVal = arrayVal;
- this.objectVal = objectVal;
- this.stringVal = stringVal;
- this.type = type;
- }
-
- @JsonProperty("ArrayVal")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- public List getArrayVal() {
- return arrayVal;
- }
-
- @JsonProperty("ArrayVal")
- public void setArrayVal(List arrayVal) {
- this.arrayVal = arrayVal;
- }
-
- @JsonProperty("ObjectVal")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- public Map getObjectVal() {
- return objectVal;
- }
-
- @JsonProperty("ObjectVal")
- public void setObjectVal(Map objectVal) {
- this.objectVal = objectVal;
- }
-
- @JsonProperty("StringVal")
- public java.lang.String getStringVal() {
- return stringVal;
- }
-
- @JsonProperty("StringVal")
- public void setStringVal(java.lang.String stringVal) {
- this.stringVal = stringVal;
- }
-
- @JsonProperty("Type")
- public java.lang.String getType() {
- return type;
- }
-
- @JsonProperty("Type")
- public void setType(java.lang.String type) {
- this.type = type;
- }
-
- @JsonIgnore
- public ParamValueBuilder edit() {
- return new ParamValueBuilder(this);
- }
-
- @JsonIgnore
- public ParamValueBuilder toBuilder() {
- return edit();
- }
-
- @JsonAnyGetter
- public Map getAdditionalProperties() {
- return this.additionalProperties;
- }
-
- @JsonAnySetter
- public void setAdditionalProperty(java.lang.String name, Object value) {
- this.additionalProperties.put(name, value);
- }
-
- public void setAdditionalProperties(Map additionalProperties) {
- this.additionalProperties = additionalProperties;
- }
-
-}
diff --git a/extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/v1alpha1/internal/pipeline/pkg/apis/pipeline/v1beta1/PipelineTaskMetadata.java b/extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/v1alpha1/internal/pipeline/pkg/apis/pipeline/v1beta1/PipelineTaskMetadata.java
deleted file mode 100644
index 498008f3322..00000000000
--- a/extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/v1alpha1/internal/pipeline/pkg/apis/pipeline/v1beta1/PipelineTaskMetadata.java
+++ /dev/null
@@ -1,134 +0,0 @@
-
-package io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1beta1;
-
-import java.util.LinkedHashMap;
-import java.util.Map;
-import javax.annotation.Generated;
-import com.fasterxml.jackson.annotation.JsonAnyGetter;
-import com.fasterxml.jackson.annotation.JsonAnySetter;
-import com.fasterxml.jackson.annotation.JsonIgnore;
-import com.fasterxml.jackson.annotation.JsonInclude;
-import com.fasterxml.jackson.annotation.JsonProperty;
-import com.fasterxml.jackson.annotation.JsonPropertyOrder;
-import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
-import io.fabric8.kubernetes.api.builder.Editable;
-import io.fabric8.kubernetes.api.model.Container;
-import io.fabric8.kubernetes.api.model.ContainerPort;
-import io.fabric8.kubernetes.api.model.EnvVar;
-import io.fabric8.kubernetes.api.model.IntOrString;
-import io.fabric8.kubernetes.api.model.KubernetesResource;
-import io.fabric8.kubernetes.api.model.LabelSelector;
-import io.fabric8.kubernetes.api.model.LocalObjectReference;
-import io.fabric8.kubernetes.api.model.ObjectMeta;
-import io.fabric8.kubernetes.api.model.ObjectReference;
-import io.fabric8.kubernetes.api.model.PersistentVolumeClaim;
-import io.fabric8.kubernetes.api.model.PodTemplateSpec;
-import io.fabric8.kubernetes.api.model.ResourceRequirements;
-import io.fabric8.kubernetes.api.model.Volume;
-import io.fabric8.kubernetes.api.model.VolumeMount;
-import io.sundr.builder.annotations.Buildable;
-import io.sundr.builder.annotations.BuildableReference;
-import lombok.EqualsAndHashCode;
-import lombok.ToString;
-import lombok.experimental.Accessors;
-
-@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
-@JsonInclude(JsonInclude.Include.NON_NULL)
-@JsonPropertyOrder({
- "annotations",
- "labels"
-})
-@ToString
-@EqualsAndHashCode
-@Accessors(prefix = {
- "_",
- ""
-})
-@Buildable(editableEnabled = false, validationEnabled = false, generateBuilderPackage = false, lazyCollectionInitEnabled = false, builderPackage = "io.fabric8.kubernetes.api.builder", refs = {
- @BuildableReference(ObjectMeta.class),
- @BuildableReference(LabelSelector.class),
- @BuildableReference(Container.class),
- @BuildableReference(PodTemplateSpec.class),
- @BuildableReference(ResourceRequirements.class),
- @BuildableReference(IntOrString.class),
- @BuildableReference(ObjectReference.class),
- @BuildableReference(LocalObjectReference.class),
- @BuildableReference(PersistentVolumeClaim.class),
- @BuildableReference(EnvVar.class),
- @BuildableReference(ContainerPort.class),
- @BuildableReference(Volume.class),
- @BuildableReference(VolumeMount.class)
-})
-@Generated("jsonschema2pojo")
-public class PipelineTaskMetadata implements Editable , KubernetesResource
-{
-
- @JsonProperty("annotations")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- private Map annotations = new LinkedHashMap<>();
- @JsonProperty("labels")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- private Map labels = new LinkedHashMap<>();
- @JsonIgnore
- private Map additionalProperties = new LinkedHashMap();
-
- /**
- * No args constructor for use in serialization
- *
- */
- public PipelineTaskMetadata() {
- }
-
- public PipelineTaskMetadata(Map annotations, Map labels) {
- super();
- this.annotations = annotations;
- this.labels = labels;
- }
-
- @JsonProperty("annotations")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- public Map getAnnotations() {
- return annotations;
- }
-
- @JsonProperty("annotations")
- public void setAnnotations(Map annotations) {
- this.annotations = annotations;
- }
-
- @JsonProperty("labels")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- public Map getLabels() {
- return labels;
- }
-
- @JsonProperty("labels")
- public void setLabels(Map labels) {
- this.labels = labels;
- }
-
- @JsonIgnore
- public PipelineTaskMetadataBuilder edit() {
- return new PipelineTaskMetadataBuilder(this);
- }
-
- @JsonIgnore
- public PipelineTaskMetadataBuilder toBuilder() {
- return edit();
- }
-
- @JsonAnyGetter
- public Map getAdditionalProperties() {
- return this.additionalProperties;
- }
-
- @JsonAnySetter
- public void setAdditionalProperty(java.lang.String name, Object value) {
- this.additionalProperties.put(name, value);
- }
-
- public void setAdditionalProperties(Map additionalProperties) {
- this.additionalProperties = additionalProperties;
- }
-
-}
diff --git a/extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/v1alpha1/internal/pipeline/pkg/apis/pipeline/v1beta1/RefSource.java b/extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/v1alpha1/internal/pipeline/pkg/apis/pipeline/v1beta1/RefSource.java
deleted file mode 100644
index 8873785f558..00000000000
--- a/extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/v1alpha1/internal/pipeline/pkg/apis/pipeline/v1beta1/RefSource.java
+++ /dev/null
@@ -1,146 +0,0 @@
-
-package io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1beta1;
-
-import java.util.LinkedHashMap;
-import java.util.Map;
-import javax.annotation.Generated;
-import com.fasterxml.jackson.annotation.JsonAnyGetter;
-import com.fasterxml.jackson.annotation.JsonAnySetter;
-import com.fasterxml.jackson.annotation.JsonIgnore;
-import com.fasterxml.jackson.annotation.JsonInclude;
-import com.fasterxml.jackson.annotation.JsonProperty;
-import com.fasterxml.jackson.annotation.JsonPropertyOrder;
-import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
-import io.fabric8.kubernetes.api.builder.Editable;
-import io.fabric8.kubernetes.api.model.Container;
-import io.fabric8.kubernetes.api.model.ContainerPort;
-import io.fabric8.kubernetes.api.model.EnvVar;
-import io.fabric8.kubernetes.api.model.IntOrString;
-import io.fabric8.kubernetes.api.model.KubernetesResource;
-import io.fabric8.kubernetes.api.model.LabelSelector;
-import io.fabric8.kubernetes.api.model.LocalObjectReference;
-import io.fabric8.kubernetes.api.model.ObjectMeta;
-import io.fabric8.kubernetes.api.model.ObjectReference;
-import io.fabric8.kubernetes.api.model.PersistentVolumeClaim;
-import io.fabric8.kubernetes.api.model.PodTemplateSpec;
-import io.fabric8.kubernetes.api.model.ResourceRequirements;
-import io.fabric8.kubernetes.api.model.Volume;
-import io.fabric8.kubernetes.api.model.VolumeMount;
-import io.sundr.builder.annotations.Buildable;
-import io.sundr.builder.annotations.BuildableReference;
-import lombok.EqualsAndHashCode;
-import lombok.ToString;
-import lombok.experimental.Accessors;
-
-@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
-@JsonInclude(JsonInclude.Include.NON_NULL)
-@JsonPropertyOrder({
- "digest",
- "entryPoint",
- "uri"
-})
-@ToString
-@EqualsAndHashCode
-@Accessors(prefix = {
- "_",
- ""
-})
-@Buildable(editableEnabled = false, validationEnabled = false, generateBuilderPackage = false, lazyCollectionInitEnabled = false, builderPackage = "io.fabric8.kubernetes.api.builder", refs = {
- @BuildableReference(ObjectMeta.class),
- @BuildableReference(LabelSelector.class),
- @BuildableReference(Container.class),
- @BuildableReference(PodTemplateSpec.class),
- @BuildableReference(ResourceRequirements.class),
- @BuildableReference(IntOrString.class),
- @BuildableReference(ObjectReference.class),
- @BuildableReference(LocalObjectReference.class),
- @BuildableReference(PersistentVolumeClaim.class),
- @BuildableReference(EnvVar.class),
- @BuildableReference(ContainerPort.class),
- @BuildableReference(Volume.class),
- @BuildableReference(VolumeMount.class)
-})
-@Generated("jsonschema2pojo")
-public class RefSource implements Editable , KubernetesResource
-{
-
- @JsonProperty("digest")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- private Map digest = new LinkedHashMap<>();
- @JsonProperty("entryPoint")
- private java.lang.String entryPoint;
- @JsonProperty("uri")
- private java.lang.String uri;
- @JsonIgnore
- private Map additionalProperties = new LinkedHashMap();
-
- /**
- * No args constructor for use in serialization
- *
- */
- public RefSource() {
- }
-
- public RefSource(Map digest, java.lang.String entryPoint, java.lang.String uri) {
- super();
- this.digest = digest;
- this.entryPoint = entryPoint;
- this.uri = uri;
- }
-
- @JsonProperty("digest")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- public Map getDigest() {
- return digest;
- }
-
- @JsonProperty("digest")
- public void setDigest(Map digest) {
- this.digest = digest;
- }
-
- @JsonProperty("entryPoint")
- public java.lang.String getEntryPoint() {
- return entryPoint;
- }
-
- @JsonProperty("entryPoint")
- public void setEntryPoint(java.lang.String entryPoint) {
- this.entryPoint = entryPoint;
- }
-
- @JsonProperty("uri")
- public java.lang.String getUri() {
- return uri;
- }
-
- @JsonProperty("uri")
- public void setUri(java.lang.String uri) {
- this.uri = uri;
- }
-
- @JsonIgnore
- public RefSourceBuilder edit() {
- return new RefSourceBuilder(this);
- }
-
- @JsonIgnore
- public RefSourceBuilder toBuilder() {
- return edit();
- }
-
- @JsonAnyGetter
- public Map getAdditionalProperties() {
- return this.additionalProperties;
- }
-
- @JsonAnySetter
- public void setAdditionalProperty(java.lang.String name, Object value) {
- this.additionalProperties.put(name, value);
- }
-
- public void setAdditionalProperties(Map additionalProperties) {
- this.additionalProperties = additionalProperties;
- }
-
-}
diff --git a/extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/v1alpha1/internal/pipeline/pkg/apis/pipeline/v1beta1/TaskRef.java b/extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/v1alpha1/internal/pipeline/pkg/apis/pipeline/v1beta1/TaskRef.java
deleted file mode 100644
index d94a322ba8b..00000000000
--- a/extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/v1alpha1/internal/pipeline/pkg/apis/pipeline/v1beta1/TaskRef.java
+++ /dev/null
@@ -1,190 +0,0 @@
-
-package io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1beta1;
-
-import java.util.ArrayList;
-import java.util.LinkedHashMap;
-import java.util.List;
-import java.util.Map;
-import javax.annotation.Generated;
-import com.fasterxml.jackson.annotation.JsonAnyGetter;
-import com.fasterxml.jackson.annotation.JsonAnySetter;
-import com.fasterxml.jackson.annotation.JsonIgnore;
-import com.fasterxml.jackson.annotation.JsonInclude;
-import com.fasterxml.jackson.annotation.JsonProperty;
-import com.fasterxml.jackson.annotation.JsonPropertyOrder;
-import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
-import io.fabric8.kubernetes.api.builder.Editable;
-import io.fabric8.kubernetes.api.model.Container;
-import io.fabric8.kubernetes.api.model.ContainerPort;
-import io.fabric8.kubernetes.api.model.EnvVar;
-import io.fabric8.kubernetes.api.model.IntOrString;
-import io.fabric8.kubernetes.api.model.KubernetesResource;
-import io.fabric8.kubernetes.api.model.LabelSelector;
-import io.fabric8.kubernetes.api.model.LocalObjectReference;
-import io.fabric8.kubernetes.api.model.ObjectMeta;
-import io.fabric8.kubernetes.api.model.ObjectReference;
-import io.fabric8.kubernetes.api.model.PersistentVolumeClaim;
-import io.fabric8.kubernetes.api.model.PodTemplateSpec;
-import io.fabric8.kubernetes.api.model.ResourceRequirements;
-import io.fabric8.kubernetes.api.model.Volume;
-import io.fabric8.kubernetes.api.model.VolumeMount;
-import io.sundr.builder.annotations.Buildable;
-import io.sundr.builder.annotations.BuildableReference;
-import lombok.EqualsAndHashCode;
-import lombok.ToString;
-import lombok.experimental.Accessors;
-
-@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
-@JsonInclude(JsonInclude.Include.NON_NULL)
-@JsonPropertyOrder({
- "apiVersion",
- "kind",
- "bundle",
- "name",
- "params",
- "resolver"
-})
-@ToString
-@EqualsAndHashCode
-@Accessors(prefix = {
- "_",
- ""
-})
-@Buildable(editableEnabled = false, validationEnabled = false, generateBuilderPackage = false, lazyCollectionInitEnabled = false, builderPackage = "io.fabric8.kubernetes.api.builder", refs = {
- @BuildableReference(ObjectMeta.class),
- @BuildableReference(LabelSelector.class),
- @BuildableReference(Container.class),
- @BuildableReference(PodTemplateSpec.class),
- @BuildableReference(ResourceRequirements.class),
- @BuildableReference(IntOrString.class),
- @BuildableReference(ObjectReference.class),
- @BuildableReference(LocalObjectReference.class),
- @BuildableReference(PersistentVolumeClaim.class),
- @BuildableReference(EnvVar.class),
- @BuildableReference(ContainerPort.class),
- @BuildableReference(Volume.class),
- @BuildableReference(VolumeMount.class)
-})
-@Generated("jsonschema2pojo")
-public class TaskRef implements Editable , KubernetesResource
-{
-
- @JsonProperty("apiVersion")
- private String apiVersion;
- @JsonProperty("bundle")
- private String bundle;
- @JsonProperty("kind")
- private String kind;
- @JsonProperty("name")
- private String name;
- @JsonProperty("params")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- private List params = new ArrayList<>();
- @JsonProperty("resolver")
- private String resolver;
- @JsonIgnore
- private Map additionalProperties = new LinkedHashMap();
-
- /**
- * No args constructor for use in serialization
- *
- */
- public TaskRef() {
- }
-
- public TaskRef(String apiVersion, String bundle, String kind, String name, List params, String resolver) {
- super();
- this.apiVersion = apiVersion;
- this.bundle = bundle;
- this.kind = kind;
- this.name = name;
- this.params = params;
- this.resolver = resolver;
- }
-
- @JsonProperty("apiVersion")
- public String getApiVersion() {
- return apiVersion;
- }
-
- @JsonProperty("apiVersion")
- public void setApiVersion(String apiVersion) {
- this.apiVersion = apiVersion;
- }
-
- @JsonProperty("bundle")
- public String getBundle() {
- return bundle;
- }
-
- @JsonProperty("bundle")
- public void setBundle(String bundle) {
- this.bundle = bundle;
- }
-
- @JsonProperty("kind")
- public String getKind() {
- return kind;
- }
-
- @JsonProperty("kind")
- public void setKind(String kind) {
- this.kind = kind;
- }
-
- @JsonProperty("name")
- public String getName() {
- return name;
- }
-
- @JsonProperty("name")
- public void setName(String name) {
- this.name = name;
- }
-
- @JsonProperty("params")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- public List getParams() {
- return params;
- }
-
- @JsonProperty("params")
- public void setParams(List params) {
- this.params = params;
- }
-
- @JsonProperty("resolver")
- public String getResolver() {
- return resolver;
- }
-
- @JsonProperty("resolver")
- public void setResolver(String resolver) {
- this.resolver = resolver;
- }
-
- @JsonIgnore
- public TaskRefBuilder edit() {
- return new TaskRefBuilder(this);
- }
-
- @JsonIgnore
- public TaskRefBuilder toBuilder() {
- return edit();
- }
-
- @JsonAnyGetter
- public Map getAdditionalProperties() {
- return this.additionalProperties;
- }
-
- @JsonAnySetter
- public void setAdditionalProperty(String name, Object value) {
- this.additionalProperties.put(name, value);
- }
-
- public void setAdditionalProperties(Map additionalProperties) {
- this.additionalProperties = additionalProperties;
- }
-
-}
diff --git a/extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/v1alpha1/internal/pipeline/pkg/apis/pipeline/v1beta1/WorkspaceBinding.java b/extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/v1alpha1/internal/pipeline/pkg/apis/pipeline/v1beta1/WorkspaceBinding.java
deleted file mode 100644
index 83ac8ba9ad7..00000000000
--- a/extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/v1alpha1/internal/pipeline/pkg/apis/pipeline/v1beta1/WorkspaceBinding.java
+++ /dev/null
@@ -1,233 +0,0 @@
-
-package io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1beta1;
-
-import java.util.LinkedHashMap;
-import java.util.Map;
-import javax.annotation.Generated;
-import com.fasterxml.jackson.annotation.JsonAnyGetter;
-import com.fasterxml.jackson.annotation.JsonAnySetter;
-import com.fasterxml.jackson.annotation.JsonIgnore;
-import com.fasterxml.jackson.annotation.JsonInclude;
-import com.fasterxml.jackson.annotation.JsonProperty;
-import com.fasterxml.jackson.annotation.JsonPropertyOrder;
-import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
-import io.fabric8.kubernetes.api.builder.Editable;
-import io.fabric8.kubernetes.api.model.CSIVolumeSource;
-import io.fabric8.kubernetes.api.model.ConfigMapVolumeSource;
-import io.fabric8.kubernetes.api.model.Container;
-import io.fabric8.kubernetes.api.model.ContainerPort;
-import io.fabric8.kubernetes.api.model.EmptyDirVolumeSource;
-import io.fabric8.kubernetes.api.model.EnvVar;
-import io.fabric8.kubernetes.api.model.IntOrString;
-import io.fabric8.kubernetes.api.model.KubernetesResource;
-import io.fabric8.kubernetes.api.model.LabelSelector;
-import io.fabric8.kubernetes.api.model.LocalObjectReference;
-import io.fabric8.kubernetes.api.model.ObjectMeta;
-import io.fabric8.kubernetes.api.model.ObjectReference;
-import io.fabric8.kubernetes.api.model.PersistentVolumeClaimVolumeSource;
-import io.fabric8.kubernetes.api.model.PodTemplateSpec;
-import io.fabric8.kubernetes.api.model.ProjectedVolumeSource;
-import io.fabric8.kubernetes.api.model.ResourceRequirements;
-import io.fabric8.kubernetes.api.model.SecretVolumeSource;
-import io.fabric8.kubernetes.api.model.Volume;
-import io.fabric8.kubernetes.api.model.VolumeMount;
-import io.sundr.builder.annotations.Buildable;
-import io.sundr.builder.annotations.BuildableReference;
-import lombok.EqualsAndHashCode;
-import lombok.ToString;
-import lombok.experimental.Accessors;
-
-@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
-@JsonInclude(JsonInclude.Include.NON_NULL)
-@JsonPropertyOrder({
- "configMap",
- "csi",
- "emptyDir",
- "name",
- "persistentVolumeClaim",
- "projected",
- "secret",
- "subPath",
- "volumeClaimTemplate"
-})
-@ToString
-@EqualsAndHashCode
-@Accessors(prefix = {
- "_",
- ""
-})
-@Buildable(editableEnabled = false, validationEnabled = false, generateBuilderPackage = false, lazyCollectionInitEnabled = false, builderPackage = "io.fabric8.kubernetes.api.builder", refs = {
- @BuildableReference(ObjectMeta.class),
- @BuildableReference(LabelSelector.class),
- @BuildableReference(Container.class),
- @BuildableReference(PodTemplateSpec.class),
- @BuildableReference(ResourceRequirements.class),
- @BuildableReference(IntOrString.class),
- @BuildableReference(ObjectReference.class),
- @BuildableReference(LocalObjectReference.class),
- @BuildableReference(io.fabric8.kubernetes.api.model.PersistentVolumeClaim.class),
- @BuildableReference(EnvVar.class),
- @BuildableReference(ContainerPort.class),
- @BuildableReference(Volume.class),
- @BuildableReference(VolumeMount.class)
-})
-@Generated("jsonschema2pojo")
-public class WorkspaceBinding implements Editable , KubernetesResource
-{
-
- @JsonProperty("configMap")
- private ConfigMapVolumeSource configMap;
- @JsonProperty("csi")
- private CSIVolumeSource csi;
- @JsonProperty("emptyDir")
- private EmptyDirVolumeSource emptyDir;
- @JsonProperty("name")
- private String name;
- @JsonProperty("persistentVolumeClaim")
- private PersistentVolumeClaimVolumeSource persistentVolumeClaim;
- @JsonProperty("projected")
- private ProjectedVolumeSource projected;
- @JsonProperty("secret")
- private SecretVolumeSource secret;
- @JsonProperty("subPath")
- private String subPath;
- @JsonProperty("volumeClaimTemplate")
- private io.fabric8.kubernetes.api.model.PersistentVolumeClaim volumeClaimTemplate;
- @JsonIgnore
- private Map additionalProperties = new LinkedHashMap();
-
- /**
- * No args constructor for use in serialization
- *
- */
- public WorkspaceBinding() {
- }
-
- public WorkspaceBinding(ConfigMapVolumeSource configMap, CSIVolumeSource csi, EmptyDirVolumeSource emptyDir, String name, PersistentVolumeClaimVolumeSource persistentVolumeClaim, ProjectedVolumeSource projected, SecretVolumeSource secret, String subPath, io.fabric8.kubernetes.api.model.PersistentVolumeClaim volumeClaimTemplate) {
- super();
- this.configMap = configMap;
- this.csi = csi;
- this.emptyDir = emptyDir;
- this.name = name;
- this.persistentVolumeClaim = persistentVolumeClaim;
- this.projected = projected;
- this.secret = secret;
- this.subPath = subPath;
- this.volumeClaimTemplate = volumeClaimTemplate;
- }
-
- @JsonProperty("configMap")
- public ConfigMapVolumeSource getConfigMap() {
- return configMap;
- }
-
- @JsonProperty("configMap")
- public void setConfigMap(ConfigMapVolumeSource configMap) {
- this.configMap = configMap;
- }
-
- @JsonProperty("csi")
- public CSIVolumeSource getCsi() {
- return csi;
- }
-
- @JsonProperty("csi")
- public void setCsi(CSIVolumeSource csi) {
- this.csi = csi;
- }
-
- @JsonProperty("emptyDir")
- public EmptyDirVolumeSource getEmptyDir() {
- return emptyDir;
- }
-
- @JsonProperty("emptyDir")
- public void setEmptyDir(EmptyDirVolumeSource emptyDir) {
- this.emptyDir = emptyDir;
- }
-
- @JsonProperty("name")
- public String getName() {
- return name;
- }
-
- @JsonProperty("name")
- public void setName(String name) {
- this.name = name;
- }
-
- @JsonProperty("persistentVolumeClaim")
- public PersistentVolumeClaimVolumeSource getPersistentVolumeClaim() {
- return persistentVolumeClaim;
- }
-
- @JsonProperty("persistentVolumeClaim")
- public void setPersistentVolumeClaim(PersistentVolumeClaimVolumeSource persistentVolumeClaim) {
- this.persistentVolumeClaim = persistentVolumeClaim;
- }
-
- @JsonProperty("projected")
- public ProjectedVolumeSource getProjected() {
- return projected;
- }
-
- @JsonProperty("projected")
- public void setProjected(ProjectedVolumeSource projected) {
- this.projected = projected;
- }
-
- @JsonProperty("secret")
- public SecretVolumeSource getSecret() {
- return secret;
- }
-
- @JsonProperty("secret")
- public void setSecret(SecretVolumeSource secret) {
- this.secret = secret;
- }
-
- @JsonProperty("subPath")
- public String getSubPath() {
- return subPath;
- }
-
- @JsonProperty("subPath")
- public void setSubPath(String subPath) {
- this.subPath = subPath;
- }
-
- @JsonProperty("volumeClaimTemplate")
- public io.fabric8.kubernetes.api.model.PersistentVolumeClaim getVolumeClaimTemplate() {
- return volumeClaimTemplate;
- }
-
- @JsonProperty("volumeClaimTemplate")
- public void setVolumeClaimTemplate(io.fabric8.kubernetes.api.model.PersistentVolumeClaim volumeClaimTemplate) {
- this.volumeClaimTemplate = volumeClaimTemplate;
- }
-
- @JsonIgnore
- public WorkspaceBindingBuilder edit() {
- return new WorkspaceBindingBuilder(this);
- }
-
- @JsonIgnore
- public WorkspaceBindingBuilder toBuilder() {
- return edit();
- }
-
- @JsonAnyGetter
- public Map getAdditionalProperties() {
- return this.additionalProperties;
- }
-
- @JsonAnySetter
- public void setAdditionalProperty(String name, Object value) {
- this.additionalProperties.put(name, value);
- }
-
- public void setAdditionalProperties(Map additionalProperties) {
- this.additionalProperties = additionalProperties;
- }
-
-}
diff --git a/extensions/tekton/model-v1alpha1/src/main/java/io/fabric8/tekton/pipeline/v1alpha1/ArrayOrString.java b/extensions/tekton/model-v1alpha1/src/main/java/io/fabric8/tekton/pipeline/v1alpha1/ArrayOrString.java
deleted file mode 100644
index bac31d35008..00000000000
--- a/extensions/tekton/model-v1alpha1/src/main/java/io/fabric8/tekton/pipeline/v1alpha1/ArrayOrString.java
+++ /dev/null
@@ -1,201 +0,0 @@
-/*
- * Copyright (C) 2015 Red Hat, Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package io.fabric8.tekton.pipeline.v1alpha1;
-
-import com.fasterxml.jackson.annotation.JsonAnyGetter;
-import com.fasterxml.jackson.annotation.JsonAnySetter;
-import com.fasterxml.jackson.annotation.JsonIgnore;
-import com.fasterxml.jackson.annotation.JsonInclude;
-import com.fasterxml.jackson.annotation.JsonProperty;
-import com.fasterxml.jackson.annotation.JsonPropertyOrder;
-import com.fasterxml.jackson.core.JsonGenerator;
-import com.fasterxml.jackson.core.JsonParser;
-import com.fasterxml.jackson.core.ObjectCodec;
-import com.fasterxml.jackson.databind.DeserializationContext;
-import com.fasterxml.jackson.databind.JsonDeserializer;
-import com.fasterxml.jackson.databind.JsonNode;
-import com.fasterxml.jackson.databind.JsonSerializer;
-import com.fasterxml.jackson.databind.SerializerProvider;
-import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
-import com.fasterxml.jackson.databind.annotation.JsonSerialize;
-import io.fabric8.kubernetes.api.model.KubernetesResource;
-import io.sundr.builder.annotations.Buildable;
-import lombok.EqualsAndHashCode;
-import lombok.Setter;
-import lombok.ToString;
-import lombok.experimental.Accessors;
-
-import java.io.IOException;
-import java.util.ArrayList;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
-import java.util.Objects;
-
-@JsonInclude(JsonInclude.Include.NON_NULL)
-@JsonPropertyOrder({
- "arrayVal",
- "stringVal",
- "type"
-})
-@JsonDeserialize(using = ArrayOrString.Deserializer.class)
-@JsonSerialize(using = ArrayOrString.Serializer.class)
-@ToString
-@EqualsAndHashCode
-@Setter
-@Accessors(prefix = {
- "_",
- ""
-})
-@Buildable(editableEnabled = false, validationEnabled = false, generateBuilderPackage = false, builderPackage = "io.fabric8.kubernetes.api.builder")
-public class ArrayOrString implements KubernetesResource {
-
- private static final String TYPE_STRING = "string";
- private static final String TYPE_ARRAY = "array";
-
- @JsonProperty("arrayVal")
- private List arrayVal = new ArrayList<>();
-
- @JsonProperty("stringVal")
- private String stringVal;
-
- @JsonProperty("type")
- private String type;
-
- @JsonIgnore
- private Map additionalProperties = new HashMap<>();
-
- /**
- * No args constructor for use in serialization
- */
- public ArrayOrString() {
- }
-
- //Builders are generated for the first non-empty constructor found.
- public ArrayOrString(List arrayVal, String stringVal, String type, Map additionalProperties) {
- this.arrayVal = arrayVal;
- this.stringVal = stringVal;
- this.type = type;
- this.additionalProperties = additionalProperties;
- }
-
- public ArrayOrString(String stringVal) {
- this(null, stringVal, TYPE_STRING, new HashMap<>());
- }
-
- public ArrayOrString(List arrayVal) {
- this(arrayVal, null, TYPE_ARRAY, new HashMap<>());
- }
-
- @JsonProperty("arrayVal")
- public List getArrayVal() {
- return arrayVal;
- }
-
- @JsonProperty("arrayVal")
- public void setArrayVal(List arrayVal) {
- this.arrayVal = arrayVal;
- }
-
- @JsonProperty("stringVal")
- public String getStringVal() {
- return stringVal;
- }
-
- @JsonProperty("stringVal")
- public void setStringVal(String stringVal) {
- this.stringVal = stringVal;
- }
-
- @JsonProperty("type")
- public String getType() {
- return type;
- }
-
- @JsonProperty("type")
- public void setType(String type) {
- this.type = type;
- }
-
- @JsonAnyGetter
- public Map getAdditionalProperties() {
- return this.additionalProperties;
- }
-
- @JsonAnySetter
- public void setAdditionalProperty(String name, Object value) {
- this.additionalProperties.put(name, value);
- }
-
- public static class Serializer extends JsonSerializer {
-
- @Override
- public void serialize(ArrayOrString value, JsonGenerator jgen, SerializerProvider provider) throws IOException {
- if (value != null) {
- if (value.getType() == null) {
- String stringVal = value.getStringVal();
- if (stringVal != null) {
- jgen.writeString(stringVal);
- } else {
- List arrayVal = value.getArrayVal();
- if (arrayVal != null) {
- writeArray(value, jgen);
- } else {
- jgen.writeNull();
- }
- }
- } else if (Objects.equals(value.getType(), TYPE_STRING)) {
- jgen.writeString(value.stringVal);
- } else if (Objects.equals(value.getType(), TYPE_ARRAY)) {
- writeArray(value, jgen);
- } else {
- jgen.writeNull();
- }
- } else {
- jgen.writeNull();
- }
- }
-
- private void writeArray(ArrayOrString value, JsonGenerator jgen) throws IOException {
- jgen.writeStartArray(value.getArrayVal().size());
- for (String n : value.getArrayVal()) {
- jgen.writeString(n);
- }
- jgen.writeEndArray();
- }
-
- }
-
- public static class Deserializer extends JsonDeserializer {
-
- @Override
- public ArrayOrString deserialize(JsonParser jsonParser, DeserializationContext ctxt) throws IOException {
- ObjectCodec oc = jsonParser.getCodec();
- JsonNode node = oc.readTree(jsonParser);
- ArrayOrString arrayOrString;
- if (node.isArray()) {
- List elements = new ArrayList<>();
- node.elements().forEachRemaining(n -> elements.add(n.asText()));
- arrayOrString = new ArrayOrString(elements);
- } else {
- arrayOrString = new ArrayOrString(node.asText());
- }
- return arrayOrString;
- }
-
- }
-
-}
diff --git a/extensions/tekton/model-v1alpha1/src/main/resources/schema/tekton-schema-v1alpha1.json b/extensions/tekton/model-v1alpha1/src/main/resources/schema/tekton-schema-v1alpha1.json
deleted file mode 100644
index 6627e1a25a1..00000000000
--- a/extensions/tekton/model-v1alpha1/src/main/resources/schema/tekton-schema-v1alpha1.json
+++ /dev/null
@@ -1,773 +0,0 @@
-{
- "id": "http://fabric8.io/tekton/v1alpha1/TektonSchema#",
- "$schema": "http://json-schema.org/draft-07/schema#",
- "definitions": {
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_pod_Template": {
- "type": "object",
- "properties": {
- "affinity": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Affinity"
- },
- "automountServiceAccountToken": {
- "type": "boolean",
- "existingJavaType": "Boolean"
- },
- "dnsConfig": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.PodDNSConfig"
- },
- "dnsPolicy": {
- "type": "string",
- "existingJavaType": "String"
- },
- "enableServiceLinks": {
- "type": "boolean",
- "existingJavaType": "Boolean"
- },
- "env": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.EnvVar"
- }
- },
- "hostAliases": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.HostAlias"
- }
- },
- "hostNetwork": {
- "type": "boolean"
- },
- "imagePullSecrets": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference"
- }
- },
- "nodeSelector": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "priorityClassName": {
- "type": "string",
- "existingJavaType": "String"
- },
- "runtimeClassName": {
- "type": "string",
- "existingJavaType": "String"
- },
- "schedulerName": {
- "type": "string"
- },
- "securityContext": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.PodSecurityContext"
- },
- "tolerations": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Toleration"
- }
- },
- "topologySpreadConstraints": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.TopologySpreadConstraint"
- }
- },
- "volumes": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Volume"
- }
- }
- },
- "javaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.pod.Template",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_Authority": {
- "type": "object",
- "properties": {
- "key": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_KeyRef",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1alpha1.KeyRef"
- },
- "name": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1alpha1.Authority",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_EmbeddedRunSpec": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string"
- },
- "kind": {
- "type": "string"
- },
- "metadata": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskMetadata",
- "existingJavaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1beta1.PipelineTaskMetadata"
- },
- "spec": {
- "existingJavaType": "java.util.Map\u003cString, Object\u003e"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1alpha1.EmbeddedRunSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_KeyRef": {
- "type": "object",
- "properties": {
- "data": {
- "type": "string"
- },
- "hashAlgorithm": {
- "type": "string"
- },
- "kms": {
- "type": "string"
- },
- "secretRef": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1alpha1.KeyRef",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_ResourcePattern": {
- "type": "object",
- "properties": {
- "pattern": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1alpha1.ResourcePattern",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_Run": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1alpha1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "Run",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_RunSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1alpha1.RunSpec"
- },
- "status": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_run_v1alpha1_RunStatus",
- "existingJavaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.run.v1alpha1.RunStatus"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1alpha1.Run",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata",
- "io.fabric8.kubernetes.api.model.Namespaced"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_RunList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1alpha1",
- "required": true
- },
- "items": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_Run",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1alpha1.Run"
- }
- },
- "kind": {
- "type": "string",
- "default": "RunList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1alpha1.RunList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.pipeline.v1alpha1.Run\u003e"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_RunSpec": {
- "type": "object",
- "properties": {
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param",
- "existingJavaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1beta1.Param"
- }
- },
- "podTemplate": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_pod_Template",
- "existingJavaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.pod.Template"
- },
- "ref": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRef",
- "existingJavaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1beta1.TaskRef"
- },
- "retries": {
- "type": "integer"
- },
- "serviceAccountName": {
- "type": "string"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_EmbeddedRunSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1alpha1.EmbeddedRunSpec"
- },
- "status": {
- "type": "string"
- },
- "statusMessage": {
- "type": "string"
- },
- "timeout": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Duration"
- },
- "workspaces": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceBinding",
- "existingJavaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1beta1.WorkspaceBinding"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1alpha1.RunSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_VerificationPolicy": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1alpha1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "VerificationPolicy",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_VerificationPolicySpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1alpha1.VerificationPolicySpec"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1alpha1.VerificationPolicy",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata",
- "io.fabric8.kubernetes.api.model.Namespaced"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_VerificationPolicyList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1alpha1",
- "required": true
- },
- "items": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_VerificationPolicy",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1alpha1.VerificationPolicy"
- }
- },
- "kind": {
- "type": "string",
- "default": "VerificationPolicyList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1alpha1.VerificationPolicyList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.pipeline.v1alpha1.VerificationPolicy\u003e"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_VerificationPolicySpec": {
- "type": "object",
- "properties": {
- "authorities": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_Authority",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1alpha1.Authority"
- }
- },
- "mode": {
- "type": "string"
- },
- "resources": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_ResourcePattern",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1alpha1.ResourcePattern"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1alpha1.VerificationPolicySpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "value": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ParamValue",
- "existingJavaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1beta1.ParamValue"
- }
- },
- "javaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1beta1.Param",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ParamValue": {
- "type": "object",
- "properties": {
- "ArrayVal": {
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "ObjectVal": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "StringVal": {
- "type": "string"
- },
- "Type": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1beta1.ParamValue",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskMetadata": {
- "type": "object",
- "properties": {
- "annotations": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "labels": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- }
- },
- "javaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1beta1.PipelineTaskMetadata",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_RefSource": {
- "type": "object",
- "properties": {
- "digest": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "entryPoint": {
- "type": "string"
- },
- "uri": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1beta1.RefSource",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRef": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string"
- },
- "bundle": {
- "type": "string"
- },
- "kind": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param",
- "existingJavaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1beta1.Param"
- }
- },
- "resolver": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1beta1.TaskRef",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceBinding": {
- "type": "object",
- "properties": {
- "configMap": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMapVolumeSource"
- },
- "csi": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.CSIVolumeSource"
- },
- "emptyDir": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.EmptyDirVolumeSource"
- },
- "name": {
- "type": "string"
- },
- "persistentVolumeClaim": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.PersistentVolumeClaimVolumeSource"
- },
- "projected": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ProjectedVolumeSource"
- },
- "secret": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.SecretVolumeSource"
- },
- "subPath": {
- "type": "string"
- },
- "volumeClaimTemplate": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.PersistentVolumeClaim"
- }
- },
- "javaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1beta1.WorkspaceBinding",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_resolution_v1alpha1_ResolutionRequest": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "resolution.tekton.dev/v1alpha1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "ResolutionRequest",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_resolution_v1alpha1_ResolutionRequestSpec",
- "existingJavaType": "io.fabric8.tekton.resolution.v1alpha1.ResolutionRequestSpec"
- },
- "status": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_resolution_v1alpha1_ResolutionRequestStatus",
- "existingJavaType": "io.fabric8.tekton.resolution.v1alpha1.ResolutionRequestStatus"
- }
- },
- "javaType": "io.fabric8.tekton.resolution.v1alpha1.ResolutionRequest",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata",
- "io.fabric8.kubernetes.api.model.Namespaced"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_resolution_v1alpha1_ResolutionRequestList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "resolution.tekton.dev/v1alpha1",
- "required": true
- },
- "items": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_resolution_v1alpha1_ResolutionRequest",
- "existingJavaType": "io.fabric8.tekton.resolution.v1alpha1.ResolutionRequest"
- }
- },
- "kind": {
- "type": "string",
- "default": "ResolutionRequestList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.resolution.v1alpha1.ResolutionRequestList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.resolution.v1alpha1.ResolutionRequest\u003e"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_resolution_v1alpha1_ResolutionRequestSpec": {
- "type": "object",
- "properties": {
- "params": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- }
- },
- "javaType": "io.fabric8.tekton.resolution.v1alpha1.ResolutionRequestSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_resolution_v1alpha1_ResolutionRequestStatus": {
- "type": "object",
- "properties": {
- "annotations": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "conditions": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.knative.pkg.apis.Condition"
- }
- },
- "data": {
- "type": "string"
- },
- "observedGeneration": {
- "type": "integer",
- "existingJavaType": "Long"
- },
- "refSource": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_RefSource",
- "existingJavaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1beta1.RefSource"
- }
- },
- "javaType": "io.fabric8.tekton.resolution.v1alpha1.ResolutionRequestStatus",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_run_v1alpha1_RunResult": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "value": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.run.v1alpha1.RunResult",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_run_v1alpha1_RunStatus": {
- "type": "object",
- "properties": {
- "annotations": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "completionTime": {
- "existingJavaType": "java.lang.String"
- },
- "conditions": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.knative.pkg.apis.Condition"
- }
- },
- "extraFields": {
- "existingJavaType": "java.util.Map\u003cString, Object\u003e"
- },
- "observedGeneration": {
- "type": "integer",
- "existingJavaType": "Long"
- },
- "results": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_run_v1alpha1_RunResult",
- "existingJavaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.run.v1alpha1.RunResult"
- }
- },
- "retriesStatus": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_run_v1alpha1_RunStatus",
- "existingJavaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.run.v1alpha1.RunStatus"
- }
- },
- "startTime": {
- "existingJavaType": "java.lang.String"
- }
- },
- "javaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.run.v1alpha1.RunStatus",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- }
- },
- "type": "object",
- "properties": {
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_pod_Template": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_pod_Template",
- "existingJavaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.pod.Template"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_Authority": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_Authority",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1alpha1.Authority"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_EmbeddedRunSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_EmbeddedRunSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1alpha1.EmbeddedRunSpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_KeyRef": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_KeyRef",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1alpha1.KeyRef"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_ResourcePattern": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_ResourcePattern",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1alpha1.ResourcePattern"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_Run": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_Run",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1alpha1.Run"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_RunList": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_RunList",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1alpha1.RunList"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_RunSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_RunSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1alpha1.RunSpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_VerificationPolicy": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_VerificationPolicy",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1alpha1.VerificationPolicy"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_VerificationPolicyList": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_VerificationPolicyList",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1alpha1.VerificationPolicyList"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_VerificationPolicySpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_VerificationPolicySpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1alpha1.VerificationPolicySpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param",
- "existingJavaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1beta1.Param"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ParamValue": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ParamValue",
- "existingJavaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1beta1.ParamValue"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskMetadata": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskMetadata",
- "existingJavaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1beta1.PipelineTaskMetadata"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_RefSource": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_RefSource",
- "existingJavaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1beta1.RefSource"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRef": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRef",
- "existingJavaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1beta1.TaskRef"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceBinding": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceBinding",
- "existingJavaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1beta1.WorkspaceBinding"
- },
- "github_com_tektoncd_pipeline_pkg_apis_resolution_v1alpha1_ResolutionRequest": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_resolution_v1alpha1_ResolutionRequest",
- "existingJavaType": "io.fabric8.tekton.resolution.v1alpha1.ResolutionRequest"
- },
- "github_com_tektoncd_pipeline_pkg_apis_resolution_v1alpha1_ResolutionRequestList": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_resolution_v1alpha1_ResolutionRequestList",
- "existingJavaType": "io.fabric8.tekton.resolution.v1alpha1.ResolutionRequestList"
- },
- "github_com_tektoncd_pipeline_pkg_apis_resolution_v1alpha1_ResolutionRequestSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_resolution_v1alpha1_ResolutionRequestSpec",
- "existingJavaType": "io.fabric8.tekton.resolution.v1alpha1.ResolutionRequestSpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_resolution_v1alpha1_ResolutionRequestStatus": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_resolution_v1alpha1_ResolutionRequestStatus",
- "existingJavaType": "io.fabric8.tekton.resolution.v1alpha1.ResolutionRequestStatus"
- },
- "github_com_tektoncd_pipeline_pkg_apis_run_v1alpha1_RunResult": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_run_v1alpha1_RunResult",
- "existingJavaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.run.v1alpha1.RunResult"
- },
- "github_com_tektoncd_pipeline_pkg_apis_run_v1alpha1_RunStatus": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_run_v1alpha1_RunStatus",
- "existingJavaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.run.v1alpha1.RunStatus"
- }
- },
- "additionalProperties": false
-}
diff --git a/extensions/tekton/model-v1beta1/src/generated/java/io/fabric8/tekton/v1beta1/internal/pipeline/pkg/apis/config/FeatureFlags.java b/extensions/tekton/model-v1beta1/src/generated/java/io/fabric8/tekton/v1beta1/internal/pipeline/pkg/apis/config/FeatureFlags.java
deleted file mode 100644
index 2a9a27f9b39..00000000000
--- a/extensions/tekton/model-v1beta1/src/generated/java/io/fabric8/tekton/v1beta1/internal/pipeline/pkg/apis/config/FeatureFlags.java
+++ /dev/null
@@ -1,298 +0,0 @@
-
-package io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.config;
-
-import java.util.LinkedHashMap;
-import java.util.Map;
-import javax.annotation.Generated;
-import com.fasterxml.jackson.annotation.JsonAnyGetter;
-import com.fasterxml.jackson.annotation.JsonAnySetter;
-import com.fasterxml.jackson.annotation.JsonIgnore;
-import com.fasterxml.jackson.annotation.JsonInclude;
-import com.fasterxml.jackson.annotation.JsonProperty;
-import com.fasterxml.jackson.annotation.JsonPropertyOrder;
-import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
-import io.fabric8.kubernetes.api.builder.Editable;
-import io.fabric8.kubernetes.api.model.Container;
-import io.fabric8.kubernetes.api.model.ContainerPort;
-import io.fabric8.kubernetes.api.model.EnvVar;
-import io.fabric8.kubernetes.api.model.IntOrString;
-import io.fabric8.kubernetes.api.model.KubernetesResource;
-import io.fabric8.kubernetes.api.model.LabelSelector;
-import io.fabric8.kubernetes.api.model.LocalObjectReference;
-import io.fabric8.kubernetes.api.model.ObjectMeta;
-import io.fabric8.kubernetes.api.model.ObjectReference;
-import io.fabric8.kubernetes.api.model.PersistentVolumeClaim;
-import io.fabric8.kubernetes.api.model.PodTemplateSpec;
-import io.fabric8.kubernetes.api.model.ResourceRequirements;
-import io.fabric8.kubernetes.api.model.Volume;
-import io.fabric8.kubernetes.api.model.VolumeMount;
-import io.sundr.builder.annotations.Buildable;
-import io.sundr.builder.annotations.BuildableReference;
-import lombok.EqualsAndHashCode;
-import lombok.ToString;
-import lombok.experimental.Accessors;
-
-@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
-@JsonInclude(JsonInclude.Include.NON_NULL)
-@JsonPropertyOrder({
- "AwaitSidecarReadiness",
- "DisableAffinityAssistant",
- "DisableCredsInit",
- "EnableAPIFields",
- "EnableProvenanceInStatus",
- "EnableTektonOCIBundles",
- "EnforceNonfalsifiability",
- "MaxResultSize",
- "RequireGitSSHSecretKnownHosts",
- "ResultExtractionMethod",
- "RunningInEnvWithInjectedSidecars",
- "ScopeWhenExpressionsToTask",
- "SendCloudEventsForRuns",
- "VerificationNoMatchPolicy"
-})
-@ToString
-@EqualsAndHashCode
-@Accessors(prefix = {
- "_",
- ""
-})
-@Buildable(editableEnabled = false, validationEnabled = false, generateBuilderPackage = false, lazyCollectionInitEnabled = false, builderPackage = "io.fabric8.kubernetes.api.builder", refs = {
- @BuildableReference(ObjectMeta.class),
- @BuildableReference(LabelSelector.class),
- @BuildableReference(Container.class),
- @BuildableReference(PodTemplateSpec.class),
- @BuildableReference(ResourceRequirements.class),
- @BuildableReference(IntOrString.class),
- @BuildableReference(ObjectReference.class),
- @BuildableReference(LocalObjectReference.class),
- @BuildableReference(PersistentVolumeClaim.class),
- @BuildableReference(EnvVar.class),
- @BuildableReference(ContainerPort.class),
- @BuildableReference(Volume.class),
- @BuildableReference(VolumeMount.class)
-})
-@Generated("jsonschema2pojo")
-public class FeatureFlags implements Editable , KubernetesResource
-{
-
- @JsonProperty("AwaitSidecarReadiness")
- private Boolean awaitSidecarReadiness;
- @JsonProperty("DisableAffinityAssistant")
- private Boolean disableAffinityAssistant;
- @JsonProperty("DisableCredsInit")
- private Boolean disableCredsInit;
- @JsonProperty("EnableAPIFields")
- private String enableAPIFields;
- @JsonProperty("EnableProvenanceInStatus")
- private Boolean enableProvenanceInStatus;
- @JsonProperty("EnableTektonOCIBundles")
- private Boolean enableTektonOCIBundles;
- @JsonProperty("EnforceNonfalsifiability")
- private String enforceNonfalsifiability;
- @JsonProperty("MaxResultSize")
- private Integer maxResultSize;
- @JsonProperty("RequireGitSSHSecretKnownHosts")
- private Boolean requireGitSSHSecretKnownHosts;
- @JsonProperty("ResultExtractionMethod")
- private String resultExtractionMethod;
- @JsonProperty("RunningInEnvWithInjectedSidecars")
- private Boolean runningInEnvWithInjectedSidecars;
- @JsonProperty("ScopeWhenExpressionsToTask")
- private Boolean scopeWhenExpressionsToTask;
- @JsonProperty("SendCloudEventsForRuns")
- private Boolean sendCloudEventsForRuns;
- @JsonProperty("VerificationNoMatchPolicy")
- private String verificationNoMatchPolicy;
- @JsonIgnore
- private Map additionalProperties = new LinkedHashMap();
-
- /**
- * No args constructor for use in serialization
- *
- */
- public FeatureFlags() {
- }
-
- public FeatureFlags(Boolean awaitSidecarReadiness, Boolean disableAffinityAssistant, Boolean disableCredsInit, String enableAPIFields, Boolean enableProvenanceInStatus, Boolean enableTektonOCIBundles, String enforceNonfalsifiability, Integer maxResultSize, Boolean requireGitSSHSecretKnownHosts, String resultExtractionMethod, Boolean runningInEnvWithInjectedSidecars, Boolean scopeWhenExpressionsToTask, Boolean sendCloudEventsForRuns, String verificationNoMatchPolicy) {
- super();
- this.awaitSidecarReadiness = awaitSidecarReadiness;
- this.disableAffinityAssistant = disableAffinityAssistant;
- this.disableCredsInit = disableCredsInit;
- this.enableAPIFields = enableAPIFields;
- this.enableProvenanceInStatus = enableProvenanceInStatus;
- this.enableTektonOCIBundles = enableTektonOCIBundles;
- this.enforceNonfalsifiability = enforceNonfalsifiability;
- this.maxResultSize = maxResultSize;
- this.requireGitSSHSecretKnownHosts = requireGitSSHSecretKnownHosts;
- this.resultExtractionMethod = resultExtractionMethod;
- this.runningInEnvWithInjectedSidecars = runningInEnvWithInjectedSidecars;
- this.scopeWhenExpressionsToTask = scopeWhenExpressionsToTask;
- this.sendCloudEventsForRuns = sendCloudEventsForRuns;
- this.verificationNoMatchPolicy = verificationNoMatchPolicy;
- }
-
- @JsonProperty("AwaitSidecarReadiness")
- public Boolean getAwaitSidecarReadiness() {
- return awaitSidecarReadiness;
- }
-
- @JsonProperty("AwaitSidecarReadiness")
- public void setAwaitSidecarReadiness(Boolean awaitSidecarReadiness) {
- this.awaitSidecarReadiness = awaitSidecarReadiness;
- }
-
- @JsonProperty("DisableAffinityAssistant")
- public Boolean getDisableAffinityAssistant() {
- return disableAffinityAssistant;
- }
-
- @JsonProperty("DisableAffinityAssistant")
- public void setDisableAffinityAssistant(Boolean disableAffinityAssistant) {
- this.disableAffinityAssistant = disableAffinityAssistant;
- }
-
- @JsonProperty("DisableCredsInit")
- public Boolean getDisableCredsInit() {
- return disableCredsInit;
- }
-
- @JsonProperty("DisableCredsInit")
- public void setDisableCredsInit(Boolean disableCredsInit) {
- this.disableCredsInit = disableCredsInit;
- }
-
- @JsonProperty("EnableAPIFields")
- public String getEnableAPIFields() {
- return enableAPIFields;
- }
-
- @JsonProperty("EnableAPIFields")
- public void setEnableAPIFields(String enableAPIFields) {
- this.enableAPIFields = enableAPIFields;
- }
-
- @JsonProperty("EnableProvenanceInStatus")
- public Boolean getEnableProvenanceInStatus() {
- return enableProvenanceInStatus;
- }
-
- @JsonProperty("EnableProvenanceInStatus")
- public void setEnableProvenanceInStatus(Boolean enableProvenanceInStatus) {
- this.enableProvenanceInStatus = enableProvenanceInStatus;
- }
-
- @JsonProperty("EnableTektonOCIBundles")
- public Boolean getEnableTektonOCIBundles() {
- return enableTektonOCIBundles;
- }
-
- @JsonProperty("EnableTektonOCIBundles")
- public void setEnableTektonOCIBundles(Boolean enableTektonOCIBundles) {
- this.enableTektonOCIBundles = enableTektonOCIBundles;
- }
-
- @JsonProperty("EnforceNonfalsifiability")
- public String getEnforceNonfalsifiability() {
- return enforceNonfalsifiability;
- }
-
- @JsonProperty("EnforceNonfalsifiability")
- public void setEnforceNonfalsifiability(String enforceNonfalsifiability) {
- this.enforceNonfalsifiability = enforceNonfalsifiability;
- }
-
- @JsonProperty("MaxResultSize")
- public Integer getMaxResultSize() {
- return maxResultSize;
- }
-
- @JsonProperty("MaxResultSize")
- public void setMaxResultSize(Integer maxResultSize) {
- this.maxResultSize = maxResultSize;
- }
-
- @JsonProperty("RequireGitSSHSecretKnownHosts")
- public Boolean getRequireGitSSHSecretKnownHosts() {
- return requireGitSSHSecretKnownHosts;
- }
-
- @JsonProperty("RequireGitSSHSecretKnownHosts")
- public void setRequireGitSSHSecretKnownHosts(Boolean requireGitSSHSecretKnownHosts) {
- this.requireGitSSHSecretKnownHosts = requireGitSSHSecretKnownHosts;
- }
-
- @JsonProperty("ResultExtractionMethod")
- public String getResultExtractionMethod() {
- return resultExtractionMethod;
- }
-
- @JsonProperty("ResultExtractionMethod")
- public void setResultExtractionMethod(String resultExtractionMethod) {
- this.resultExtractionMethod = resultExtractionMethod;
- }
-
- @JsonProperty("RunningInEnvWithInjectedSidecars")
- public Boolean getRunningInEnvWithInjectedSidecars() {
- return runningInEnvWithInjectedSidecars;
- }
-
- @JsonProperty("RunningInEnvWithInjectedSidecars")
- public void setRunningInEnvWithInjectedSidecars(Boolean runningInEnvWithInjectedSidecars) {
- this.runningInEnvWithInjectedSidecars = runningInEnvWithInjectedSidecars;
- }
-
- @JsonProperty("ScopeWhenExpressionsToTask")
- public Boolean getScopeWhenExpressionsToTask() {
- return scopeWhenExpressionsToTask;
- }
-
- @JsonProperty("ScopeWhenExpressionsToTask")
- public void setScopeWhenExpressionsToTask(Boolean scopeWhenExpressionsToTask) {
- this.scopeWhenExpressionsToTask = scopeWhenExpressionsToTask;
- }
-
- @JsonProperty("SendCloudEventsForRuns")
- public Boolean getSendCloudEventsForRuns() {
- return sendCloudEventsForRuns;
- }
-
- @JsonProperty("SendCloudEventsForRuns")
- public void setSendCloudEventsForRuns(Boolean sendCloudEventsForRuns) {
- this.sendCloudEventsForRuns = sendCloudEventsForRuns;
- }
-
- @JsonProperty("VerificationNoMatchPolicy")
- public String getVerificationNoMatchPolicy() {
- return verificationNoMatchPolicy;
- }
-
- @JsonProperty("VerificationNoMatchPolicy")
- public void setVerificationNoMatchPolicy(String verificationNoMatchPolicy) {
- this.verificationNoMatchPolicy = verificationNoMatchPolicy;
- }
-
- @JsonIgnore
- public FeatureFlagsBuilder edit() {
- return new FeatureFlagsBuilder(this);
- }
-
- @JsonIgnore
- public FeatureFlagsBuilder toBuilder() {
- return edit();
- }
-
- @JsonAnyGetter
- public Map getAdditionalProperties() {
- return this.additionalProperties;
- }
-
- @JsonAnySetter
- public void setAdditionalProperty(String name, Object value) {
- this.additionalProperties.put(name, value);
- }
-
- public void setAdditionalProperties(Map additionalProperties) {
- this.additionalProperties = additionalProperties;
- }
-
-}
diff --git a/extensions/tekton/model-v1beta1/src/generated/java/io/fabric8/tekton/v1beta1/internal/pipeline/pkg/apis/pipeline/pod/Template.java b/extensions/tekton/model-v1beta1/src/generated/java/io/fabric8/tekton/v1beta1/internal/pipeline/pkg/apis/pipeline/pod/Template.java
deleted file mode 100644
index 1ece0fcf6a8..00000000000
--- a/extensions/tekton/model-v1beta1/src/generated/java/io/fabric8/tekton/v1beta1/internal/pipeline/pkg/apis/pipeline/pod/Template.java
+++ /dev/null
@@ -1,359 +0,0 @@
-
-package io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.pipeline.pod;
-
-import java.util.ArrayList;
-import java.util.LinkedHashMap;
-import java.util.List;
-import java.util.Map;
-import javax.annotation.Generated;
-import com.fasterxml.jackson.annotation.JsonAnyGetter;
-import com.fasterxml.jackson.annotation.JsonAnySetter;
-import com.fasterxml.jackson.annotation.JsonIgnore;
-import com.fasterxml.jackson.annotation.JsonInclude;
-import com.fasterxml.jackson.annotation.JsonProperty;
-import com.fasterxml.jackson.annotation.JsonPropertyOrder;
-import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
-import io.fabric8.kubernetes.api.builder.Editable;
-import io.fabric8.kubernetes.api.model.Affinity;
-import io.fabric8.kubernetes.api.model.Container;
-import io.fabric8.kubernetes.api.model.ContainerPort;
-import io.fabric8.kubernetes.api.model.HostAlias;
-import io.fabric8.kubernetes.api.model.IntOrString;
-import io.fabric8.kubernetes.api.model.KubernetesResource;
-import io.fabric8.kubernetes.api.model.LabelSelector;
-import io.fabric8.kubernetes.api.model.ObjectMeta;
-import io.fabric8.kubernetes.api.model.ObjectReference;
-import io.fabric8.kubernetes.api.model.PersistentVolumeClaim;
-import io.fabric8.kubernetes.api.model.PodDNSConfig;
-import io.fabric8.kubernetes.api.model.PodSecurityContext;
-import io.fabric8.kubernetes.api.model.PodTemplateSpec;
-import io.fabric8.kubernetes.api.model.ResourceRequirements;
-import io.fabric8.kubernetes.api.model.Toleration;
-import io.fabric8.kubernetes.api.model.TopologySpreadConstraint;
-import io.fabric8.kubernetes.api.model.VolumeMount;
-import io.sundr.builder.annotations.Buildable;
-import io.sundr.builder.annotations.BuildableReference;
-import lombok.EqualsAndHashCode;
-import lombok.ToString;
-import lombok.experimental.Accessors;
-
-@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
-@JsonInclude(JsonInclude.Include.NON_NULL)
-@JsonPropertyOrder({
- "affinity",
- "automountServiceAccountToken",
- "dnsConfig",
- "dnsPolicy",
- "enableServiceLinks",
- "env",
- "hostAliases",
- "hostNetwork",
- "imagePullSecrets",
- "nodeSelector",
- "priorityClassName",
- "runtimeClassName",
- "schedulerName",
- "securityContext",
- "tolerations",
- "topologySpreadConstraints",
- "volumes"
-})
-@ToString
-@EqualsAndHashCode
-@Accessors(prefix = {
- "_",
- ""
-})
-@Buildable(editableEnabled = false, validationEnabled = false, generateBuilderPackage = false, lazyCollectionInitEnabled = false, builderPackage = "io.fabric8.kubernetes.api.builder", refs = {
- @BuildableReference(ObjectMeta.class),
- @BuildableReference(LabelSelector.class),
- @BuildableReference(Container.class),
- @BuildableReference(PodTemplateSpec.class),
- @BuildableReference(ResourceRequirements.class),
- @BuildableReference(IntOrString.class),
- @BuildableReference(ObjectReference.class),
- @BuildableReference(io.fabric8.kubernetes.api.model.LocalObjectReference.class),
- @BuildableReference(PersistentVolumeClaim.class),
- @BuildableReference(io.fabric8.kubernetes.api.model.EnvVar.class),
- @BuildableReference(ContainerPort.class),
- @BuildableReference(io.fabric8.kubernetes.api.model.Volume.class),
- @BuildableReference(VolumeMount.class)
-})
-@Generated("jsonschema2pojo")
-public class Template implements Editable , KubernetesResource
-{
-
- @JsonProperty("affinity")
- private Affinity affinity;
- @JsonProperty("automountServiceAccountToken")
- private Boolean automountServiceAccountToken;
- @JsonProperty("dnsConfig")
- private PodDNSConfig dnsConfig;
- @JsonProperty("dnsPolicy")
- private String dnsPolicy;
- @JsonProperty("enableServiceLinks")
- private Boolean enableServiceLinks;
- @JsonProperty("env")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- private List env = new ArrayList<>();
- @JsonProperty("hostAliases")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- private List hostAliases = new ArrayList<>();
- @JsonProperty("hostNetwork")
- private java.lang.Boolean hostNetwork;
- @JsonProperty("imagePullSecrets")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- private List imagePullSecrets = new ArrayList<>();
- @JsonProperty("nodeSelector")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- private Map nodeSelector = new LinkedHashMap<>();
- @JsonProperty("priorityClassName")
- private String priorityClassName;
- @JsonProperty("runtimeClassName")
- private String runtimeClassName;
- @JsonProperty("schedulerName")
- private java.lang.String schedulerName;
- @JsonProperty("securityContext")
- private PodSecurityContext securityContext;
- @JsonProperty("tolerations")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- private List tolerations = new ArrayList<>();
- @JsonProperty("topologySpreadConstraints")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- private List topologySpreadConstraints = new ArrayList<>();
- @JsonProperty("volumes")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- private List volumes = new ArrayList<>();
- @JsonIgnore
- private Map additionalProperties = new LinkedHashMap();
-
- /**
- * No args constructor for use in serialization
- *
- */
- public Template() {
- }
-
- public Template(Affinity affinity, Boolean automountServiceAccountToken, PodDNSConfig dnsConfig, String dnsPolicy, Boolean enableServiceLinks, List env, List hostAliases, java.lang.Boolean hostNetwork, List imagePullSecrets, Map nodeSelector, String priorityClassName, String runtimeClassName, java.lang.String schedulerName, PodSecurityContext securityContext, List tolerations, List topologySpreadConstraints, List volumes) {
- super();
- this.affinity = affinity;
- this.automountServiceAccountToken = automountServiceAccountToken;
- this.dnsConfig = dnsConfig;
- this.dnsPolicy = dnsPolicy;
- this.enableServiceLinks = enableServiceLinks;
- this.env = env;
- this.hostAliases = hostAliases;
- this.hostNetwork = hostNetwork;
- this.imagePullSecrets = imagePullSecrets;
- this.nodeSelector = nodeSelector;
- this.priorityClassName = priorityClassName;
- this.runtimeClassName = runtimeClassName;
- this.schedulerName = schedulerName;
- this.securityContext = securityContext;
- this.tolerations = tolerations;
- this.topologySpreadConstraints = topologySpreadConstraints;
- this.volumes = volumes;
- }
-
- @JsonProperty("affinity")
- public Affinity getAffinity() {
- return affinity;
- }
-
- @JsonProperty("affinity")
- public void setAffinity(Affinity affinity) {
- this.affinity = affinity;
- }
-
- @JsonProperty("automountServiceAccountToken")
- public Boolean getAutomountServiceAccountToken() {
- return automountServiceAccountToken;
- }
-
- @JsonProperty("automountServiceAccountToken")
- public void setAutomountServiceAccountToken(Boolean automountServiceAccountToken) {
- this.automountServiceAccountToken = automountServiceAccountToken;
- }
-
- @JsonProperty("dnsConfig")
- public PodDNSConfig getDnsConfig() {
- return dnsConfig;
- }
-
- @JsonProperty("dnsConfig")
- public void setDnsConfig(PodDNSConfig dnsConfig) {
- this.dnsConfig = dnsConfig;
- }
-
- @JsonProperty("dnsPolicy")
- public String getDnsPolicy() {
- return dnsPolicy;
- }
-
- @JsonProperty("dnsPolicy")
- public void setDnsPolicy(String dnsPolicy) {
- this.dnsPolicy = dnsPolicy;
- }
-
- @JsonProperty("enableServiceLinks")
- public Boolean getEnableServiceLinks() {
- return enableServiceLinks;
- }
-
- @JsonProperty("enableServiceLinks")
- public void setEnableServiceLinks(Boolean enableServiceLinks) {
- this.enableServiceLinks = enableServiceLinks;
- }
-
- @JsonProperty("env")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- public List getEnv() {
- return env;
- }
-
- @JsonProperty("env")
- public void setEnv(List env) {
- this.env = env;
- }
-
- @JsonProperty("hostAliases")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- public List getHostAliases() {
- return hostAliases;
- }
-
- @JsonProperty("hostAliases")
- public void setHostAliases(List hostAliases) {
- this.hostAliases = hostAliases;
- }
-
- @JsonProperty("hostNetwork")
- public java.lang.Boolean getHostNetwork() {
- return hostNetwork;
- }
-
- @JsonProperty("hostNetwork")
- public void setHostNetwork(java.lang.Boolean hostNetwork) {
- this.hostNetwork = hostNetwork;
- }
-
- @JsonProperty("imagePullSecrets")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- public List getImagePullSecrets() {
- return imagePullSecrets;
- }
-
- @JsonProperty("imagePullSecrets")
- public void setImagePullSecrets(List imagePullSecrets) {
- this.imagePullSecrets = imagePullSecrets;
- }
-
- @JsonProperty("nodeSelector")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- public Map getNodeSelector() {
- return nodeSelector;
- }
-
- @JsonProperty("nodeSelector")
- public void setNodeSelector(Map nodeSelector) {
- this.nodeSelector = nodeSelector;
- }
-
- @JsonProperty("priorityClassName")
- public String getPriorityClassName() {
- return priorityClassName;
- }
-
- @JsonProperty("priorityClassName")
- public void setPriorityClassName(String priorityClassName) {
- this.priorityClassName = priorityClassName;
- }
-
- @JsonProperty("runtimeClassName")
- public String getRuntimeClassName() {
- return runtimeClassName;
- }
-
- @JsonProperty("runtimeClassName")
- public void setRuntimeClassName(String runtimeClassName) {
- this.runtimeClassName = runtimeClassName;
- }
-
- @JsonProperty("schedulerName")
- public java.lang.String getSchedulerName() {
- return schedulerName;
- }
-
- @JsonProperty("schedulerName")
- public void setSchedulerName(java.lang.String schedulerName) {
- this.schedulerName = schedulerName;
- }
-
- @JsonProperty("securityContext")
- public PodSecurityContext getSecurityContext() {
- return securityContext;
- }
-
- @JsonProperty("securityContext")
- public void setSecurityContext(PodSecurityContext securityContext) {
- this.securityContext = securityContext;
- }
-
- @JsonProperty("tolerations")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- public List getTolerations() {
- return tolerations;
- }
-
- @JsonProperty("tolerations")
- public void setTolerations(List tolerations) {
- this.tolerations = tolerations;
- }
-
- @JsonProperty("topologySpreadConstraints")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- public List getTopologySpreadConstraints() {
- return topologySpreadConstraints;
- }
-
- @JsonProperty("topologySpreadConstraints")
- public void setTopologySpreadConstraints(List topologySpreadConstraints) {
- this.topologySpreadConstraints = topologySpreadConstraints;
- }
-
- @JsonProperty("volumes")
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
- public List getVolumes() {
- return volumes;
- }
-
- @JsonProperty("volumes")
- public void setVolumes(List volumes) {
- this.volumes = volumes;
- }
-
- @JsonIgnore
- public TemplateBuilder edit() {
- return new TemplateBuilder(this);
- }
-
- @JsonIgnore
- public TemplateBuilder toBuilder() {
- return edit();
- }
-
- @JsonAnyGetter
- public Map getAdditionalProperties() {
- return this.additionalProperties;
- }
-
- @JsonAnySetter
- public void setAdditionalProperty(java.lang.String name, Object value) {
- this.additionalProperties.put(name, value);
- }
-
- public void setAdditionalProperties(Map additionalProperties) {
- this.additionalProperties = additionalProperties;
- }
-
-}
diff --git a/extensions/tekton/model-v1beta1/src/main/resources/schema/tekton-schema-v1beta1.json b/extensions/tekton/model-v1beta1/src/main/resources/schema/tekton-schema-v1beta1.json
deleted file mode 100644
index fd666f5461a..00000000000
--- a/extensions/tekton/model-v1beta1/src/main/resources/schema/tekton-schema-v1beta1.json
+++ /dev/null
@@ -1,3080 +0,0 @@
-{
- "id": "http://fabric8.io/tekton/v1beta1/TektonSchema#",
- "$schema": "http://json-schema.org/draft-07/schema#",
- "definitions": {
- "github_com_tektoncd_pipeline_pkg_apis_config_FeatureFlags": {
- "type": "object",
- "properties": {
- "AwaitSidecarReadiness": {
- "type": "boolean"
- },
- "DisableAffinityAssistant": {
- "type": "boolean"
- },
- "DisableCredsInit": {
- "type": "boolean"
- },
- "EnableAPIFields": {
- "type": "string"
- },
- "EnableProvenanceInStatus": {
- "type": "boolean"
- },
- "EnableTektonOCIBundles": {
- "type": "boolean"
- },
- "EnforceNonfalsifiability": {
- "type": "string"
- },
- "MaxResultSize": {
- "type": "integer"
- },
- "RequireGitSSHSecretKnownHosts": {
- "type": "boolean"
- },
- "ResultExtractionMethod": {
- "type": "string"
- },
- "RunningInEnvWithInjectedSidecars": {
- "type": "boolean"
- },
- "ScopeWhenExpressionsToTask": {
- "type": "boolean"
- },
- "SendCloudEventsForRuns": {
- "type": "boolean"
- },
- "VerificationNoMatchPolicy": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.config.FeatureFlags",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_pod_Template": {
- "type": "object",
- "properties": {
- "affinity": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Affinity"
- },
- "automountServiceAccountToken": {
- "type": "boolean",
- "existingJavaType": "Boolean"
- },
- "dnsConfig": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.PodDNSConfig"
- },
- "dnsPolicy": {
- "type": "string",
- "existingJavaType": "String"
- },
- "enableServiceLinks": {
- "type": "boolean",
- "existingJavaType": "Boolean"
- },
- "env": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.EnvVar"
- }
- },
- "hostAliases": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.HostAlias"
- }
- },
- "hostNetwork": {
- "type": "boolean"
- },
- "imagePullSecrets": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference"
- }
- },
- "nodeSelector": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "priorityClassName": {
- "type": "string",
- "existingJavaType": "String"
- },
- "runtimeClassName": {
- "type": "string",
- "existingJavaType": "String"
- },
- "schedulerName": {
- "type": "string"
- },
- "securityContext": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.PodSecurityContext"
- },
- "tolerations": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Toleration"
- }
- },
- "topologySpreadConstraints": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.TopologySpreadConstraint"
- }
- },
- "volumes": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Volume"
- }
- }
- },
- "javaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.pipeline.pod.Template",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ChildStatusReference": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string"
- },
- "kind": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "pipelineTaskName": {
- "type": "string"
- },
- "whenExpressions": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WhenExpression",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WhenExpression"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.ChildStatusReference",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CloudEventDelivery": {
- "type": "object",
- "properties": {
- "status": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CloudEventDeliveryState",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.CloudEventDeliveryState"
- },
- "target": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.CloudEventDelivery",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CloudEventDeliveryState": {
- "type": "object",
- "properties": {
- "condition": {
- "type": "string"
- },
- "message": {
- "type": "string"
- },
- "retryCount": {
- "type": "integer"
- },
- "sentAt": {
- "existingJavaType": "java.lang.String"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.CloudEventDeliveryState",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ClusterTask": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1beta1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "ClusterTask",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskSpec"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.ClusterTask",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ClusterTaskList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1beta1",
- "required": true
- },
- "items": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ClusterTask",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ClusterTask"
- }
- },
- "kind": {
- "type": "string",
- "default": "ClusterTaskList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.ClusterTaskList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.pipeline.v1beta1.ClusterTask\u003e"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ConfigSource": {
- "type": "object",
- "properties": {
- "digest": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "entryPoint": {
- "type": "string"
- },
- "uri": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.ConfigSource",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CustomRun": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1beta1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "CustomRun",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CustomRunSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.CustomRunSpec"
- },
- "status": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_run_v1beta1_CustomRunStatus",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.run.v1beta1.CustomRunStatus"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.CustomRun",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata",
- "io.fabric8.kubernetes.api.model.Namespaced"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CustomRunList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1beta1",
- "required": true
- },
- "items": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CustomRun",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.CustomRun"
- }
- },
- "kind": {
- "type": "string",
- "default": "CustomRunList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.CustomRunList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.pipeline.v1beta1.CustomRun\u003e"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CustomRunSpec": {
- "type": "object",
- "properties": {
- "customRef": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRef",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRef"
- },
- "customSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_EmbeddedCustomRunSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.EmbeddedCustomRunSpec"
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Param"
- }
- },
- "retries": {
- "type": "integer"
- },
- "serviceAccountName": {
- "type": "string"
- },
- "status": {
- "type": "string"
- },
- "statusMessage": {
- "type": "string"
- },
- "timeout": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Duration"
- },
- "workspaces": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceBinding",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspaceBinding"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.CustomRunSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_EmbeddedCustomRunSpec": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string"
- },
- "kind": {
- "type": "string"
- },
- "metadata": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskMetadata",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTaskMetadata"
- },
- "spec": {
- "existingJavaType": "java.util.Map\u003cString, Object\u003e"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.EmbeddedCustomRunSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_EmbeddedTask": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string"
- },
- "description": {
- "type": "string"
- },
- "displayName": {
- "type": "string"
- },
- "kind": {
- "type": "string"
- },
- "metadata": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskMetadata",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTaskMetadata"
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ParamSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ParamSpec"
- }
- },
- "resources": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResources",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskResources"
- },
- "results": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResult",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskResult"
- }
- },
- "sidecars": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Sidecar",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Sidecar"
- }
- },
- "spec": {
- "existingJavaType": "java.util.Map\u003cString, Object\u003e"
- },
- "stepTemplate": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_StepTemplate",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.StepTemplate"
- },
- "steps": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Step",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Step"
- }
- },
- "volumes": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Volume"
- }
- },
- "workspaces": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceDeclaration",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspaceDeclaration"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.EmbeddedTask",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_IncludeParams": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Param"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.IncludeParams",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Matrix": {
- "type": "object",
- "properties": {
- "include": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_IncludeParams",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.IncludeParams"
- }
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Param"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.Matrix",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "value": {
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ParamValue"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.Param",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ParamSpec": {
- "type": "object",
- "properties": {
- "default": {
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ParamValue"
- },
- "description": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "properties": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,io.fabric8.tekton.pipeline.v1beta1.PropertySpec\u003e"
- },
- "type": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.ParamSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Pipeline": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1beta1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "Pipeline",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineSpec"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.Pipeline",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata",
- "io.fabric8.kubernetes.api.model.Namespaced"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineDeclaredResource": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "optional": {
- "type": "boolean"
- },
- "type": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineDeclaredResource",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1beta1",
- "required": true
- },
- "items": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Pipeline",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Pipeline"
- }
- },
- "kind": {
- "type": "string",
- "default": "PipelineList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.pipeline.v1beta1.Pipeline\u003e"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRef": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string"
- },
- "bundle": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Param"
- }
- },
- "resolver": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRef",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineResourceBinding": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "resourceRef": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineResourceRef",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineResourceRef"
- },
- "resourceSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_resource_v1alpha1_PipelineResourceSpec",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.resource.v1alpha1.PipelineResourceSpec"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineResourceBinding",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineResourceRef": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string"
- },
- "name": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineResourceRef",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineResult": {
- "type": "object",
- "properties": {
- "description": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "type": {
- "type": "string"
- },
- "value": {
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ParamValue"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineResult",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRun": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1beta1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "PipelineRun",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunSpec"
- },
- "status": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunStatus",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunStatus"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRun",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata",
- "io.fabric8.kubernetes.api.model.Namespaced"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1beta1",
- "required": true
- },
- "items": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRun",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRun"
- }
- },
- "kind": {
- "type": "string",
- "default": "PipelineRunList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.pipeline.v1beta1.PipelineRun\u003e"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunResult": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "value": {
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ParamValue"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunResult",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunRunStatus": {
- "type": "object",
- "properties": {
- "pipelineTaskName": {
- "type": "string"
- },
- "status": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_run_v1beta1_CustomRunStatus",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.run.v1beta1.CustomRunStatus"
- },
- "whenExpressions": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WhenExpression",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WhenExpression"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunRunStatus",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunSpec": {
- "type": "object",
- "properties": {
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Param"
- }
- },
- "pipelineRef": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRef",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRef"
- },
- "pipelineSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineSpec"
- },
- "podTemplate": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_pod_Template",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.pipeline.pod.Template"
- },
- "resources": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineResourceBinding",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineResourceBinding"
- }
- },
- "serviceAccountName": {
- "type": "string"
- },
- "status": {
- "type": "string"
- },
- "taskRunSpecs": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskRunSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTaskRunSpec"
- }
- },
- "timeout": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Duration"
- },
- "timeouts": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TimeoutFields",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TimeoutFields"
- },
- "workspaces": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceBinding",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspaceBinding"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunStatus": {
- "type": "object",
- "properties": {
- "annotations": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "childReferences": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ChildStatusReference",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ChildStatusReference"
- }
- },
- "completionTime": {
- "existingJavaType": "java.lang.String"
- },
- "conditions": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.knative.pkg.apis.Condition"
- }
- },
- "finallyStartTime": {
- "existingJavaType": "java.lang.String"
- },
- "observedGeneration": {
- "type": "integer",
- "existingJavaType": "Long"
- },
- "pipelineResults": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunResult",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunResult"
- }
- },
- "pipelineSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineSpec"
- },
- "provenance": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Provenance",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Provenance"
- },
- "runs": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,io.fabric8.tekton.pipeline.v1beta1.PipelineRunRunStatus\u003e"
- },
- "skippedTasks": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_SkippedTask",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.SkippedTask"
- }
- },
- "spanContext": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "startTime": {
- "existingJavaType": "java.lang.String"
- },
- "taskRuns": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,io.fabric8.tekton.pipeline.v1beta1.PipelineRunTaskRunStatus\u003e"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunStatus",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunTaskRunStatus": {
- "type": "object",
- "properties": {
- "pipelineTaskName": {
- "type": "string"
- },
- "status": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunStatus",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunStatus"
- },
- "whenExpressions": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WhenExpression",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WhenExpression"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunTaskRunStatus",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineSpec": {
- "type": "object",
- "properties": {
- "description": {
- "type": "string"
- },
- "displayName": {
- "type": "string"
- },
- "finally": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTask",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTask"
- }
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ParamSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ParamSpec"
- }
- },
- "resources": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineDeclaredResource",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineDeclaredResource"
- }
- },
- "results": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineResult",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineResult"
- }
- },
- "tasks": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTask",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTask"
- }
- },
- "workspaces": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineWorkspaceDeclaration",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineWorkspaceDeclaration"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTask": {
- "type": "object",
- "properties": {
- "description": {
- "type": "string"
- },
- "displayName": {
- "type": "string"
- },
- "matrix": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Matrix",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Matrix"
- },
- "name": {
- "type": "string"
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Param"
- }
- },
- "resources": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskResources",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTaskResources"
- },
- "retries": {
- "type": "integer"
- },
- "runAfter": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- },
- "taskRef": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRef",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRef"
- },
- "taskSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_EmbeddedTask",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.EmbeddedTask"
- },
- "timeout": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Duration"
- },
- "when": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WhenExpression",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WhenExpression"
- }
- },
- "workspaces": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspacePipelineTaskBinding",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspacePipelineTaskBinding"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTask",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskInputResource": {
- "type": "object",
- "properties": {
- "from": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- },
- "name": {
- "type": "string"
- },
- "resource": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTaskInputResource",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskMetadata": {
- "type": "object",
- "properties": {
- "annotations": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "labels": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTaskMetadata",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskOutputResource": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "resource": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTaskOutputResource",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskResources": {
- "type": "object",
- "properties": {
- "inputs": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskInputResource",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTaskInputResource"
- }
- },
- "outputs": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskOutputResource",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTaskOutputResource"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTaskResources",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskRunSpec": {
- "type": "object",
- "properties": {
- "computeResources": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements"
- },
- "metadata": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskMetadata",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTaskMetadata"
- },
- "pipelineTaskName": {
- "type": "string"
- },
- "sidecarOverrides": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunSidecarOverride",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunSidecarOverride"
- }
- },
- "stepOverrides": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunStepOverride",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunStepOverride"
- }
- },
- "taskPodTemplate": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_pod_Template",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.pipeline.pod.Template"
- },
- "taskServiceAccountName": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTaskRunSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineWorkspaceDeclaration": {
- "type": "object",
- "properties": {
- "description": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "optional": {
- "type": "boolean"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineWorkspaceDeclaration",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PropertySpec": {
- "type": "object",
- "properties": {
- "type": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.PropertySpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Provenance": {
- "type": "object",
- "properties": {
- "configSource": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ConfigSource",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ConfigSource"
- },
- "featureFlags": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_config_FeatureFlags",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.config.FeatureFlags"
- },
- "refSource": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_RefSource",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.RefSource"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.Provenance",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_RefSource": {
- "type": "object",
- "properties": {
- "digest": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "entryPoint": {
- "type": "string"
- },
- "uri": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.RefSource",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Sidecar": {
- "type": "object",
- "properties": {
- "args": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- },
- "command": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- },
- "env": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.EnvVar"
- }
- },
- "envFrom": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.EnvFromSource"
- }
- },
- "image": {
- "type": "string"
- },
- "imagePullPolicy": {
- "type": "string"
- },
- "lifecycle": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Lifecycle"
- },
- "livenessProbe": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Probe"
- },
- "name": {
- "type": "string"
- },
- "ports": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerPort"
- }
- },
- "readinessProbe": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Probe"
- },
- "resources": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements"
- },
- "script": {
- "type": "string"
- },
- "securityContext": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.SecurityContext"
- },
- "startupProbe": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Probe"
- },
- "stdin": {
- "type": "boolean"
- },
- "stdinOnce": {
- "type": "boolean"
- },
- "terminationMessagePath": {
- "type": "string"
- },
- "terminationMessagePolicy": {
- "type": "string"
- },
- "tty": {
- "type": "boolean"
- },
- "volumeDevices": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeDevice"
- }
- },
- "volumeMounts": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeMount"
- }
- },
- "workingDir": {
- "type": "string"
- },
- "workspaces": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceUsage",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspaceUsage"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.Sidecar",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_SidecarState": {
- "type": "object",
- "properties": {
- "container": {
- "type": "string"
- },
- "imageID": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "running": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerStateRunning"
- },
- "terminated": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerStateTerminated"
- },
- "waiting": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerStateWaiting"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.SidecarState",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_SkippedTask": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "reason": {
- "type": "string"
- },
- "whenExpressions": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WhenExpression",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WhenExpression"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.SkippedTask",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Step": {
- "type": "object",
- "properties": {
- "args": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- },
- "command": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- },
- "env": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.EnvVar"
- }
- },
- "envFrom": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.EnvFromSource"
- }
- },
- "image": {
- "type": "string"
- },
- "imagePullPolicy": {
- "type": "string"
- },
- "lifecycle": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Lifecycle"
- },
- "livenessProbe": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Probe"
- },
- "name": {
- "type": "string",
- "maxLength": 63,
- "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$"
- },
- "onError": {
- "type": "string"
- },
- "ports": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerPort"
- }
- },
- "readinessProbe": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Probe"
- },
- "resources": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements"
- },
- "script": {
- "type": "string"
- },
- "securityContext": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.SecurityContext"
- },
- "startupProbe": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Probe"
- },
- "stderrConfig": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_StepOutputConfig",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.StepOutputConfig"
- },
- "stdin": {
- "type": "boolean"
- },
- "stdinOnce": {
- "type": "boolean"
- },
- "stdoutConfig": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_StepOutputConfig",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.StepOutputConfig"
- },
- "terminationMessagePath": {
- "type": "string"
- },
- "terminationMessagePolicy": {
- "type": "string"
- },
- "timeout": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Duration"
- },
- "tty": {
- "type": "boolean"
- },
- "volumeDevices": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeDevice"
- }
- },
- "volumeMounts": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeMount"
- }
- },
- "workingDir": {
- "type": "string"
- },
- "workspaces": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceUsage",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspaceUsage"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.Step",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_StepOutputConfig": {
- "type": "object",
- "properties": {
- "path": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.StepOutputConfig",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_StepState": {
- "type": "object",
- "properties": {
- "container": {
- "type": "string"
- },
- "imageID": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "running": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerStateRunning"
- },
- "terminated": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerStateTerminated"
- },
- "waiting": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerStateWaiting"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.StepState",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_StepTemplate": {
- "type": "object",
- "properties": {
- "args": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- },
- "command": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- },
- "env": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.EnvVar"
- }
- },
- "envFrom": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.EnvFromSource"
- }
- },
- "image": {
- "type": "string"
- },
- "imagePullPolicy": {
- "type": "string"
- },
- "lifecycle": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Lifecycle"
- },
- "livenessProbe": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Probe"
- },
- "name": {
- "type": "string"
- },
- "ports": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerPort"
- }
- },
- "readinessProbe": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Probe"
- },
- "resources": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements"
- },
- "securityContext": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.SecurityContext"
- },
- "startupProbe": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Probe"
- },
- "stdin": {
- "type": "boolean"
- },
- "stdinOnce": {
- "type": "boolean"
- },
- "terminationMessagePath": {
- "type": "string"
- },
- "terminationMessagePolicy": {
- "type": "string"
- },
- "tty": {
- "type": "boolean"
- },
- "volumeDevices": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeDevice"
- }
- },
- "volumeMounts": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeMount"
- }
- },
- "workingDir": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.StepTemplate",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Task": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1beta1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "Task",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskSpec"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.Task",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata",
- "io.fabric8.kubernetes.api.model.Namespaced"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1beta1",
- "required": true
- },
- "items": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Task",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Task"
- }
- },
- "kind": {
- "type": "string",
- "default": "TaskList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.pipeline.v1beta1.Task\u003e"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRef": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string"
- },
- "bundle": {
- "type": "string"
- },
- "kind": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Param"
- }
- },
- "resolver": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRef",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResource": {
- "type": "object",
- "properties": {
- "description": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "optional": {
- "type": "boolean"
- },
- "targetPath": {
- "type": "string"
- },
- "type": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskResource",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResourceBinding": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "paths": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- },
- "resourceRef": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineResourceRef",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineResourceRef"
- },
- "resourceSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_resource_v1alpha1_PipelineResourceSpec",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.resource.v1alpha1.PipelineResourceSpec"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskResourceBinding",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResources": {
- "type": "object",
- "properties": {
- "inputs": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResource",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskResource"
- }
- },
- "outputs": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResource",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskResource"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskResources",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResult": {
- "type": "object",
- "properties": {
- "description": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "properties": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,io.fabric8.tekton.pipeline.v1beta1.PropertySpec\u003e"
- },
- "type": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskResult",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRun": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1beta1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "TaskRun",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunSpec"
- },
- "status": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunStatus",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunStatus"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRun",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata",
- "io.fabric8.kubernetes.api.model.Namespaced"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunDebug": {
- "type": "object",
- "properties": {
- "breakpoint": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "type": "string"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunDebug",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "tekton.dev/v1beta1",
- "required": true
- },
- "items": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRun",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRun"
- }
- },
- "kind": {
- "type": "string",
- "default": "TaskRunList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.pipeline.v1beta1.TaskRun\u003e"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunResources": {
- "type": "object",
- "properties": {
- "inputs": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResourceBinding",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskResourceBinding"
- }
- },
- "outputs": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResourceBinding",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskResourceBinding"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunResources",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunResult": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "type": {
- "type": "string"
- },
- "value": {
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ParamValue"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunResult",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunSidecarOverride": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "resources": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunSidecarOverride",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunSpec": {
- "type": "object",
- "properties": {
- "computeResources": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements"
- },
- "debug": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunDebug",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunDebug"
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Param"
- }
- },
- "podTemplate": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_pod_Template",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.pipeline.pod.Template"
- },
- "resources": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunResources",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunResources"
- },
- "retries": {
- "type": "integer"
- },
- "serviceAccountName": {
- "type": "string"
- },
- "sidecarOverrides": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunSidecarOverride",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunSidecarOverride"
- }
- },
- "status": {
- "type": "string"
- },
- "statusMessage": {
- "type": "string"
- },
- "stepOverrides": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunStepOverride",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunStepOverride"
- }
- },
- "taskRef": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRef",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRef"
- },
- "taskSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskSpec"
- },
- "timeout": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Duration"
- },
- "workspaces": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceBinding",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspaceBinding"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunStatus": {
- "type": "object",
- "properties": {
- "annotations": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "cloudEvents": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CloudEventDelivery",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.CloudEventDelivery"
- }
- },
- "completionTime": {
- "existingJavaType": "java.lang.String"
- },
- "conditions": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.knative.pkg.apis.Condition"
- }
- },
- "observedGeneration": {
- "type": "integer",
- "existingJavaType": "Long"
- },
- "podName": {
- "type": "string"
- },
- "provenance": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Provenance",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Provenance"
- },
- "resourcesResult": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_result_RunResult",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.result.RunResult"
- }
- },
- "retriesStatus": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunStatus",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunStatus"
- }
- },
- "sidecars": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_SidecarState",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.SidecarState"
- }
- },
- "spanContext": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "startTime": {
- "existingJavaType": "java.lang.String"
- },
- "steps": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_StepState",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.StepState"
- }
- },
- "taskResults": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunResult",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunResult"
- }
- },
- "taskSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskSpec"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunStatus",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunStepOverride": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "resources": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunStepOverride",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskSpec": {
- "type": "object",
- "properties": {
- "description": {
- "type": "string"
- },
- "displayName": {
- "type": "string"
- },
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ParamSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ParamSpec"
- }
- },
- "resources": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResources",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskResources"
- },
- "results": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResult",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskResult"
- }
- },
- "sidecars": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Sidecar",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Sidecar"
- }
- },
- "stepTemplate": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_StepTemplate",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.StepTemplate"
- },
- "steps": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Step",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Step"
- }
- },
- "volumes": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Volume"
- }
- },
- "workspaces": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceDeclaration",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspaceDeclaration"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TimeoutFields": {
- "type": "object",
- "properties": {
- "finally": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Duration"
- },
- "pipeline": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Duration"
- },
- "tasks": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.Duration"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.TimeoutFields",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WhenExpression": {
- "type": "object",
- "properties": {
- "input": {
- "type": "string"
- },
- "operator": {
- "type": "string"
- },
- "values": {
- "type": "array",
- "items": {
- "type": "string"
- }
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.WhenExpression",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceBinding": {
- "type": "object",
- "properties": {
- "configMap": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMapVolumeSource"
- },
- "csi": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.CSIVolumeSource"
- },
- "emptyDir": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.EmptyDirVolumeSource"
- },
- "name": {
- "type": "string"
- },
- "persistentVolumeClaim": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.PersistentVolumeClaimVolumeSource"
- },
- "projected": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ProjectedVolumeSource"
- },
- "secret": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.SecretVolumeSource"
- },
- "subPath": {
- "type": "string"
- },
- "volumeClaimTemplate": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.PersistentVolumeClaim"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspaceBinding",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceDeclaration": {
- "type": "object",
- "properties": {
- "description": {
- "type": "string"
- },
- "mountPath": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "optional": {
- "type": "boolean"
- },
- "readOnly": {
- "type": "boolean"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspaceDeclaration",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspacePipelineTaskBinding": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "subPath": {
- "type": "string"
- },
- "workspace": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspacePipelineTaskBinding",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceUsage": {
- "type": "object",
- "properties": {
- "mountPath": {
- "type": "string"
- },
- "name": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspaceUsage",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_resolution_v1beta1_ResolutionRequest": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "resolution.tekton.dev/v1beta1",
- "required": true
- },
- "kind": {
- "type": "string",
- "default": "ResolutionRequest",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta"
- },
- "spec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_resolution_v1beta1_ResolutionRequestSpec",
- "existingJavaType": "io.fabric8.tekton.resolution.v1beta1.ResolutionRequestSpec"
- },
- "status": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_resolution_v1beta1_ResolutionRequestStatus",
- "existingJavaType": "io.fabric8.tekton.resolution.v1beta1.ResolutionRequestStatus"
- }
- },
- "javaType": "io.fabric8.tekton.resolution.v1beta1.ResolutionRequest",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.HasMetadata",
- "io.fabric8.kubernetes.api.model.Namespaced"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_resolution_v1beta1_ResolutionRequestList": {
- "type": "object",
- "properties": {
- "apiVersion": {
- "type": "string",
- "default": "resolution.tekton.dev/v1beta1",
- "required": true
- },
- "items": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_resolution_v1beta1_ResolutionRequest",
- "existingJavaType": "io.fabric8.tekton.resolution.v1beta1.ResolutionRequest"
- }
- },
- "kind": {
- "type": "string",
- "default": "ResolutionRequestList",
- "required": true
- },
- "metadata": {
- "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta"
- }
- },
- "javaType": "io.fabric8.tekton.resolution.v1beta1.ResolutionRequestList",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource",
- "io.fabric8.kubernetes.api.model.KubernetesResourceList\u003cio.fabric8.tekton.resolution.v1beta1.ResolutionRequest\u003e"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_resolution_v1beta1_ResolutionRequestSpec": {
- "type": "object",
- "properties": {
- "params": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Param"
- }
- }
- },
- "javaType": "io.fabric8.tekton.resolution.v1beta1.ResolutionRequestSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_resolution_v1beta1_ResolutionRequestStatus": {
- "type": "object",
- "properties": {
- "annotations": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "conditions": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.knative.pkg.apis.Condition"
- }
- },
- "data": {
- "type": "string"
- },
- "observedGeneration": {
- "type": "integer",
- "existingJavaType": "Long"
- },
- "refSource": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_RefSource",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.RefSource"
- },
- "source": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ConfigSource",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ConfigSource"
- }
- },
- "javaType": "io.fabric8.tekton.resolution.v1beta1.ResolutionRequestStatus",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_resource_v1alpha1_PipelineResourceSpec": {
- "type": "object",
- "properties": {
- "description": {
- "type": "string"
- },
- "params": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_resource_v1alpha1_ResourceParam",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.resource.v1alpha1.ResourceParam"
- }
- },
- "secrets": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_resource_v1alpha1_SecretParam",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.resource.v1alpha1.SecretParam"
- }
- },
- "type": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.resource.v1alpha1.PipelineResourceSpec",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_resource_v1alpha1_ResourceParam": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "value": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.resource.v1alpha1.ResourceParam",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_resource_v1alpha1_SecretParam": {
- "type": "object",
- "properties": {
- "fieldName": {
- "type": "string"
- },
- "secretKey": {
- "type": "string"
- },
- "secretName": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.resource.v1alpha1.SecretParam",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_run_v1beta1_CustomRunResult": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "value": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.run.v1beta1.CustomRunResult",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_apis_run_v1beta1_CustomRunStatus": {
- "type": "object",
- "properties": {
- "annotations": {
- "type": "object",
- "existingJavaType": "java.util.Map\u003cString,String\u003e"
- },
- "completionTime": {
- "existingJavaType": "java.lang.String"
- },
- "conditions": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "existingJavaType": "io.fabric8.knative.pkg.apis.Condition"
- }
- },
- "extraFields": {
- "existingJavaType": "java.util.Map\u003cString, Object\u003e"
- },
- "observedGeneration": {
- "type": "integer",
- "existingJavaType": "Long"
- },
- "results": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_run_v1beta1_CustomRunResult",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.run.v1beta1.CustomRunResult"
- }
- },
- "retriesStatus": {
- "type": "array",
- "javaOmitEmpty": true,
- "items": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_run_v1beta1_CustomRunStatus",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.run.v1beta1.CustomRunStatus"
- }
- },
- "startTime": {
- "existingJavaType": "java.lang.String"
- }
- },
- "javaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.run.v1beta1.CustomRunStatus",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- },
- "github_com_tektoncd_pipeline_pkg_result_RunResult": {
- "type": "object",
- "properties": {
- "key": {
- "type": "string"
- },
- "resourceName": {
- "type": "string"
- },
- "type": {
- "type": "integer"
- },
- "value": {
- "type": "string"
- }
- },
- "javaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.result.RunResult",
- "javaInterfaces": [
- "io.fabric8.kubernetes.api.model.KubernetesResource"
- ]
- }
- },
- "type": "object",
- "properties": {
- "github_com_tektoncd_pipeline_pkg_apis_config_FeatureFlags": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_config_FeatureFlags",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.config.FeatureFlags"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_pod_Template": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_pod_Template",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.pipeline.pod.Template"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ChildStatusReference": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ChildStatusReference",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ChildStatusReference"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CloudEventDelivery": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CloudEventDelivery",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.CloudEventDelivery"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CloudEventDeliveryState": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CloudEventDeliveryState",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.CloudEventDeliveryState"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ClusterTask": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ClusterTask",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ClusterTask"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ClusterTaskList": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ClusterTaskList",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ClusterTaskList"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ConfigSource": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ConfigSource",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ConfigSource"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CustomRun": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CustomRun",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.CustomRun"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CustomRunList": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CustomRunList",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.CustomRunList"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CustomRunSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CustomRunSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.CustomRunSpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_EmbeddedCustomRunSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_EmbeddedCustomRunSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.EmbeddedCustomRunSpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_EmbeddedTask": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_EmbeddedTask",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.EmbeddedTask"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_IncludeParams": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_IncludeParams",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.IncludeParams"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Matrix": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Matrix",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Matrix"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Param"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ParamSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ParamSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ParamSpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Pipeline": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Pipeline",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Pipeline"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineDeclaredResource": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineDeclaredResource",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineDeclaredResource"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineList": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineList",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineList"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRef": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRef",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRef"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineResourceBinding": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineResourceBinding",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineResourceBinding"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineResourceRef": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineResourceRef",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineResourceRef"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineResult": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineResult",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineResult"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRun": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRun",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRun"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunList": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunList",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunList"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunResult": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunResult",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunResult"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunRunStatus": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunRunStatus",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunRunStatus"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunSpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunStatus": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunStatus",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunStatus"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunTaskRunStatus": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunTaskRunStatus",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunTaskRunStatus"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineSpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTask": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTask",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTask"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskInputResource": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskInputResource",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTaskInputResource"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskMetadata": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskMetadata",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTaskMetadata"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskOutputResource": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskOutputResource",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTaskOutputResource"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskResources": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskResources",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTaskResources"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskRunSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskRunSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTaskRunSpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineWorkspaceDeclaration": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineWorkspaceDeclaration",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineWorkspaceDeclaration"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PropertySpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PropertySpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PropertySpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Provenance": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Provenance",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Provenance"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_RefSource": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_RefSource",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.RefSource"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Sidecar": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Sidecar",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Sidecar"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_SidecarState": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_SidecarState",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.SidecarState"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_SkippedTask": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_SkippedTask",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.SkippedTask"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Step": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Step",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Step"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_StepOutputConfig": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_StepOutputConfig",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.StepOutputConfig"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_StepState": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_StepState",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.StepState"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_StepTemplate": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_StepTemplate",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.StepTemplate"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Task": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Task",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Task"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskList": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskList",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskList"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRef": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRef",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRef"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResource": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResource",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskResource"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResourceBinding": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResourceBinding",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskResourceBinding"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResources": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResources",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskResources"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResult": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResult",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskResult"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRun": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRun",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRun"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunDebug": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunDebug",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunDebug"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunList": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunList",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunList"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunResources": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunResources",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunResources"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunResult": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunResult",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunResult"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunSidecarOverride": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunSidecarOverride",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunSidecarOverride"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunSpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunStatus": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunStatus",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunStatus"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunStepOverride": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunStepOverride",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunStepOverride"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskSpec",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskSpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TimeoutFields": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TimeoutFields",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TimeoutFields"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WhenExpression": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WhenExpression",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WhenExpression"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceBinding": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceBinding",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspaceBinding"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceDeclaration": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceDeclaration",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspaceDeclaration"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspacePipelineTaskBinding": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspacePipelineTaskBinding",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspacePipelineTaskBinding"
- },
- "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceUsage": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceUsage",
- "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspaceUsage"
- },
- "github_com_tektoncd_pipeline_pkg_apis_resolution_v1beta1_ResolutionRequest": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_resolution_v1beta1_ResolutionRequest",
- "existingJavaType": "io.fabric8.tekton.resolution.v1beta1.ResolutionRequest"
- },
- "github_com_tektoncd_pipeline_pkg_apis_resolution_v1beta1_ResolutionRequestList": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_resolution_v1beta1_ResolutionRequestList",
- "existingJavaType": "io.fabric8.tekton.resolution.v1beta1.ResolutionRequestList"
- },
- "github_com_tektoncd_pipeline_pkg_apis_resolution_v1beta1_ResolutionRequestSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_resolution_v1beta1_ResolutionRequestSpec",
- "existingJavaType": "io.fabric8.tekton.resolution.v1beta1.ResolutionRequestSpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_resolution_v1beta1_ResolutionRequestStatus": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_resolution_v1beta1_ResolutionRequestStatus",
- "existingJavaType": "io.fabric8.tekton.resolution.v1beta1.ResolutionRequestStatus"
- },
- "github_com_tektoncd_pipeline_pkg_apis_resource_v1alpha1_PipelineResourceSpec": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_resource_v1alpha1_PipelineResourceSpec",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.resource.v1alpha1.PipelineResourceSpec"
- },
- "github_com_tektoncd_pipeline_pkg_apis_resource_v1alpha1_ResourceParam": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_resource_v1alpha1_ResourceParam",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.resource.v1alpha1.ResourceParam"
- },
- "github_com_tektoncd_pipeline_pkg_apis_resource_v1alpha1_SecretParam": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_resource_v1alpha1_SecretParam",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.resource.v1alpha1.SecretParam"
- },
- "github_com_tektoncd_pipeline_pkg_apis_run_v1beta1_CustomRunResult": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_run_v1beta1_CustomRunResult",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.run.v1beta1.CustomRunResult"
- },
- "github_com_tektoncd_pipeline_pkg_apis_run_v1beta1_CustomRunStatus": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_run_v1beta1_CustomRunStatus",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.run.v1beta1.CustomRunStatus"
- },
- "github_com_tektoncd_pipeline_pkg_result_RunResult": {
- "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_result_RunResult",
- "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.result.RunResult"
- }
- },
- "additionalProperties": false
-}
diff --git a/extensions/tekton/model-v1beta1/pom.xml b/extensions/tekton/model/pom.xml
similarity index 51%
rename from extensions/tekton/model-v1beta1/pom.xml
rename to extensions/tekton/model/pom.xml
index 222a73db160..2e319e002bf 100644
--- a/extensions/tekton/model-v1beta1/pom.xml
+++ b/extensions/tekton/model/pom.xml
@@ -26,9 +26,9 @@
7.0-SNAPSHOT
- tekton-model-v1beta1
+ tekton-model
bundle
- Fabric8 :: Tekton :: Model v1beta1
+ Fabric8 :: Tekton :: Model
@@ -37,24 +37,11 @@
*
- io.fabric8.tekton.*
+ io.fabric8.tekton.*,
-
- io.sundr
- builder-annotations
- provided
-
-
- io.sundr
- transform-annotations
-
-
- io.sundr
- sundr-codegen-velocity-nodeps
-
io.fabric8
kubernetes-model-core
@@ -63,45 +50,34 @@
io.fabric8
knative-model
-
- org.junit.jupiter
- junit-jupiter-engine
- test
-
-
- org.projectlombok
- lombok
- provided
-
-
+
generate
- org.jsonschema2pojo
- jsonschema2pojo-maven-plugin
-
-
- maven-antrun-plugin
-
-
- generate-sources
-
-
-
-
-
-
-
- run
-
-
-
+ io.fabric8
+ openapi-model-generator-maven-plugin
+
+
+
+ ${openapi.schema.dev.tekton}
+
+
+ ^dev\.tekton\..*$
+ ^com\.github\.tektoncd\.pipeline\.pkg\.apis\.config\.FeatureFlags$
+ ^com\.github\.tektoncd\.pipeline\.pkg\.result\.RunResult$
+
+
+
+
+
+
+
+
+
diff --git a/extensions/tekton/model-v1/src/generated/java/io/fabric8/tekton/v1/internal/pipeline/pkg/apis/config/FeatureFlags.java b/extensions/tekton/model/src/generated/java/io/fabric8/tekton/pipeline/pkg/apis/config/FeatureFlags.java
similarity index 62%
rename from extensions/tekton/model-v1/src/generated/java/io/fabric8/tekton/v1/internal/pipeline/pkg/apis/config/FeatureFlags.java
rename to extensions/tekton/model/src/generated/java/io/fabric8/tekton/pipeline/pkg/apis/config/FeatureFlags.java
index a4b838f84c0..2b004509d1a 100644
--- a/extensions/tekton/model-v1/src/generated/java/io/fabric8/tekton/v1/internal/pipeline/pkg/apis/config/FeatureFlags.java
+++ b/extensions/tekton/model/src/generated/java/io/fabric8/tekton/pipeline/pkg/apis/config/FeatureFlags.java
@@ -1,5 +1,5 @@
-package io.fabric8.tekton.v1.internal.pipeline.pkg.apis.config;
+package io.fabric8.tekton.pipeline.pkg.apis.config;
import java.util.LinkedHashMap;
import java.util.Map;
@@ -13,8 +13,6 @@
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import io.fabric8.kubernetes.api.builder.Editable;
import io.fabric8.kubernetes.api.model.Container;
-import io.fabric8.kubernetes.api.model.ContainerPort;
-import io.fabric8.kubernetes.api.model.EnvVar;
import io.fabric8.kubernetes.api.model.IntOrString;
import io.fabric8.kubernetes.api.model.KubernetesResource;
import io.fabric8.kubernetes.api.model.LabelSelector;
@@ -24,8 +22,6 @@
import io.fabric8.kubernetes.api.model.PersistentVolumeClaim;
import io.fabric8.kubernetes.api.model.PodTemplateSpec;
import io.fabric8.kubernetes.api.model.ResourceRequirements;
-import io.fabric8.kubernetes.api.model.Volume;
-import io.fabric8.kubernetes.api.model.VolumeMount;
import io.sundr.builder.annotations.Buildable;
import io.sundr.builder.annotations.BuildableReference;
import lombok.EqualsAndHashCode;
@@ -36,18 +32,26 @@
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"AwaitSidecarReadiness",
+ "Coschedule",
"DisableAffinityAssistant",
"DisableCredsInit",
+ "DisableInlineSpec",
"EnableAPIFields",
+ "EnableArtifacts",
+ "EnableCELInWhenExpression",
+ "EnableConciseResolverSyntax",
+ "EnableKeepPodOnCancel",
+ "EnableKubernetesSidecar",
+ "EnableParamEnum",
"EnableProvenanceInStatus",
- "EnableTektonOCIBundles",
+ "EnableStepActions",
"EnforceNonfalsifiability",
"MaxResultSize",
"RequireGitSSHSecretKnownHosts",
"ResultExtractionMethod",
"RunningInEnvWithInjectedSidecars",
- "ScopeWhenExpressionsToTask",
"SendCloudEventsForRuns",
+ "SetSecurityContext",
"VerificationNoMatchPolicy"
})
@ToString
@@ -65,11 +69,7 @@
@BuildableReference(IntOrString.class),
@BuildableReference(ObjectReference.class),
@BuildableReference(LocalObjectReference.class),
- @BuildableReference(PersistentVolumeClaim.class),
- @BuildableReference(EnvVar.class),
- @BuildableReference(ContainerPort.class),
- @BuildableReference(Volume.class),
- @BuildableReference(VolumeMount.class)
+ @BuildableReference(PersistentVolumeClaim.class)
})
@Generated("jsonschema2pojo")
public class FeatureFlags implements Editable , KubernetesResource
@@ -77,16 +77,32 @@ public class FeatureFlags implements Editable , KubernetesR
@JsonProperty("AwaitSidecarReadiness")
private Boolean awaitSidecarReadiness;
+ @JsonProperty("Coschedule")
+ private String coschedule;
@JsonProperty("DisableAffinityAssistant")
private Boolean disableAffinityAssistant;
@JsonProperty("DisableCredsInit")
private Boolean disableCredsInit;
+ @JsonProperty("DisableInlineSpec")
+ private String disableInlineSpec;
@JsonProperty("EnableAPIFields")
private String enableAPIFields;
+ @JsonProperty("EnableArtifacts")
+ private Boolean enableArtifacts;
+ @JsonProperty("EnableCELInWhenExpression")
+ private Boolean enableCELInWhenExpression;
+ @JsonProperty("EnableConciseResolverSyntax")
+ private Boolean enableConciseResolverSyntax;
+ @JsonProperty("EnableKeepPodOnCancel")
+ private Boolean enableKeepPodOnCancel;
+ @JsonProperty("EnableKubernetesSidecar")
+ private Boolean enableKubernetesSidecar;
+ @JsonProperty("EnableParamEnum")
+ private Boolean enableParamEnum;
@JsonProperty("EnableProvenanceInStatus")
private Boolean enableProvenanceInStatus;
- @JsonProperty("EnableTektonOCIBundles")
- private Boolean enableTektonOCIBundles;
+ @JsonProperty("EnableStepActions")
+ private Boolean enableStepActions;
@JsonProperty("EnforceNonfalsifiability")
private String enforceNonfalsifiability;
@JsonProperty("MaxResultSize")
@@ -97,10 +113,10 @@ public class FeatureFlags implements Editable , KubernetesR
private String resultExtractionMethod;
@JsonProperty("RunningInEnvWithInjectedSidecars")
private Boolean runningInEnvWithInjectedSidecars;
- @JsonProperty("ScopeWhenExpressionsToTask")
- private Boolean scopeWhenExpressionsToTask;
@JsonProperty("SendCloudEventsForRuns")
private Boolean sendCloudEventsForRuns;
+ @JsonProperty("SetSecurityContext")
+ private Boolean setSecurityContext;
@JsonProperty("VerificationNoMatchPolicy")
private String verificationNoMatchPolicy;
@JsonIgnore
@@ -113,21 +129,29 @@ public class FeatureFlags implements Editable , KubernetesR
public FeatureFlags() {
}
- public FeatureFlags(Boolean awaitSidecarReadiness, Boolean disableAffinityAssistant, Boolean disableCredsInit, String enableAPIFields, Boolean enableProvenanceInStatus, Boolean enableTektonOCIBundles, String enforceNonfalsifiability, Integer maxResultSize, Boolean requireGitSSHSecretKnownHosts, String resultExtractionMethod, Boolean runningInEnvWithInjectedSidecars, Boolean scopeWhenExpressionsToTask, Boolean sendCloudEventsForRuns, String verificationNoMatchPolicy) {
+ public FeatureFlags(Boolean awaitSidecarReadiness, String coschedule, Boolean disableAffinityAssistant, Boolean disableCredsInit, String disableInlineSpec, String enableAPIFields, Boolean enableArtifacts, Boolean enableCELInWhenExpression, Boolean enableConciseResolverSyntax, Boolean enableKeepPodOnCancel, Boolean enableKubernetesSidecar, Boolean enableParamEnum, Boolean enableProvenanceInStatus, Boolean enableStepActions, String enforceNonfalsifiability, Integer maxResultSize, Boolean requireGitSSHSecretKnownHosts, String resultExtractionMethod, Boolean runningInEnvWithInjectedSidecars, Boolean sendCloudEventsForRuns, Boolean setSecurityContext, String verificationNoMatchPolicy) {
super();
this.awaitSidecarReadiness = awaitSidecarReadiness;
+ this.coschedule = coschedule;
this.disableAffinityAssistant = disableAffinityAssistant;
this.disableCredsInit = disableCredsInit;
+ this.disableInlineSpec = disableInlineSpec;
this.enableAPIFields = enableAPIFields;
+ this.enableArtifacts = enableArtifacts;
+ this.enableCELInWhenExpression = enableCELInWhenExpression;
+ this.enableConciseResolverSyntax = enableConciseResolverSyntax;
+ this.enableKeepPodOnCancel = enableKeepPodOnCancel;
+ this.enableKubernetesSidecar = enableKubernetesSidecar;
+ this.enableParamEnum = enableParamEnum;
this.enableProvenanceInStatus = enableProvenanceInStatus;
- this.enableTektonOCIBundles = enableTektonOCIBundles;
+ this.enableStepActions = enableStepActions;
this.enforceNonfalsifiability = enforceNonfalsifiability;
this.maxResultSize = maxResultSize;
this.requireGitSSHSecretKnownHosts = requireGitSSHSecretKnownHosts;
this.resultExtractionMethod = resultExtractionMethod;
this.runningInEnvWithInjectedSidecars = runningInEnvWithInjectedSidecars;
- this.scopeWhenExpressionsToTask = scopeWhenExpressionsToTask;
this.sendCloudEventsForRuns = sendCloudEventsForRuns;
+ this.setSecurityContext = setSecurityContext;
this.verificationNoMatchPolicy = verificationNoMatchPolicy;
}
@@ -141,6 +165,16 @@ public void setAwaitSidecarReadiness(Boolean awaitSidecarReadiness) {
this.awaitSidecarReadiness = awaitSidecarReadiness;
}
+ @JsonProperty("Coschedule")
+ public String getCoschedule() {
+ return coschedule;
+ }
+
+ @JsonProperty("Coschedule")
+ public void setCoschedule(String coschedule) {
+ this.coschedule = coschedule;
+ }
+
@JsonProperty("DisableAffinityAssistant")
public Boolean getDisableAffinityAssistant() {
return disableAffinityAssistant;
@@ -161,6 +195,16 @@ public void setDisableCredsInit(Boolean disableCredsInit) {
this.disableCredsInit = disableCredsInit;
}
+ @JsonProperty("DisableInlineSpec")
+ public String getDisableInlineSpec() {
+ return disableInlineSpec;
+ }
+
+ @JsonProperty("DisableInlineSpec")
+ public void setDisableInlineSpec(String disableInlineSpec) {
+ this.disableInlineSpec = disableInlineSpec;
+ }
+
@JsonProperty("EnableAPIFields")
public String getEnableAPIFields() {
return enableAPIFields;
@@ -171,6 +215,66 @@ public void setEnableAPIFields(String enableAPIFields) {
this.enableAPIFields = enableAPIFields;
}
+ @JsonProperty("EnableArtifacts")
+ public Boolean getEnableArtifacts() {
+ return enableArtifacts;
+ }
+
+ @JsonProperty("EnableArtifacts")
+ public void setEnableArtifacts(Boolean enableArtifacts) {
+ this.enableArtifacts = enableArtifacts;
+ }
+
+ @JsonProperty("EnableCELInWhenExpression")
+ public Boolean getEnableCELInWhenExpression() {
+ return enableCELInWhenExpression;
+ }
+
+ @JsonProperty("EnableCELInWhenExpression")
+ public void setEnableCELInWhenExpression(Boolean enableCELInWhenExpression) {
+ this.enableCELInWhenExpression = enableCELInWhenExpression;
+ }
+
+ @JsonProperty("EnableConciseResolverSyntax")
+ public Boolean getEnableConciseResolverSyntax() {
+ return enableConciseResolverSyntax;
+ }
+
+ @JsonProperty("EnableConciseResolverSyntax")
+ public void setEnableConciseResolverSyntax(Boolean enableConciseResolverSyntax) {
+ this.enableConciseResolverSyntax = enableConciseResolverSyntax;
+ }
+
+ @JsonProperty("EnableKeepPodOnCancel")
+ public Boolean getEnableKeepPodOnCancel() {
+ return enableKeepPodOnCancel;
+ }
+
+ @JsonProperty("EnableKeepPodOnCancel")
+ public void setEnableKeepPodOnCancel(Boolean enableKeepPodOnCancel) {
+ this.enableKeepPodOnCancel = enableKeepPodOnCancel;
+ }
+
+ @JsonProperty("EnableKubernetesSidecar")
+ public Boolean getEnableKubernetesSidecar() {
+ return enableKubernetesSidecar;
+ }
+
+ @JsonProperty("EnableKubernetesSidecar")
+ public void setEnableKubernetesSidecar(Boolean enableKubernetesSidecar) {
+ this.enableKubernetesSidecar = enableKubernetesSidecar;
+ }
+
+ @JsonProperty("EnableParamEnum")
+ public Boolean getEnableParamEnum() {
+ return enableParamEnum;
+ }
+
+ @JsonProperty("EnableParamEnum")
+ public void setEnableParamEnum(Boolean enableParamEnum) {
+ this.enableParamEnum = enableParamEnum;
+ }
+
@JsonProperty("EnableProvenanceInStatus")
public Boolean getEnableProvenanceInStatus() {
return enableProvenanceInStatus;
@@ -181,14 +285,14 @@ public void setEnableProvenanceInStatus(Boolean enableProvenanceInStatus) {
this.enableProvenanceInStatus = enableProvenanceInStatus;
}
- @JsonProperty("EnableTektonOCIBundles")
- public Boolean getEnableTektonOCIBundles() {
- return enableTektonOCIBundles;
+ @JsonProperty("EnableStepActions")
+ public Boolean getEnableStepActions() {
+ return enableStepActions;
}
- @JsonProperty("EnableTektonOCIBundles")
- public void setEnableTektonOCIBundles(Boolean enableTektonOCIBundles) {
- this.enableTektonOCIBundles = enableTektonOCIBundles;
+ @JsonProperty("EnableStepActions")
+ public void setEnableStepActions(Boolean enableStepActions) {
+ this.enableStepActions = enableStepActions;
}
@JsonProperty("EnforceNonfalsifiability")
@@ -241,16 +345,6 @@ public void setRunningInEnvWithInjectedSidecars(Boolean runningInEnvWithInjected
this.runningInEnvWithInjectedSidecars = runningInEnvWithInjectedSidecars;
}
- @JsonProperty("ScopeWhenExpressionsToTask")
- public Boolean getScopeWhenExpressionsToTask() {
- return scopeWhenExpressionsToTask;
- }
-
- @JsonProperty("ScopeWhenExpressionsToTask")
- public void setScopeWhenExpressionsToTask(Boolean scopeWhenExpressionsToTask) {
- this.scopeWhenExpressionsToTask = scopeWhenExpressionsToTask;
- }
-
@JsonProperty("SendCloudEventsForRuns")
public Boolean getSendCloudEventsForRuns() {
return sendCloudEventsForRuns;
@@ -261,6 +355,16 @@ public void setSendCloudEventsForRuns(Boolean sendCloudEventsForRuns) {
this.sendCloudEventsForRuns = sendCloudEventsForRuns;
}
+ @JsonProperty("SetSecurityContext")
+ public Boolean getSetSecurityContext() {
+ return setSecurityContext;
+ }
+
+ @JsonProperty("SetSecurityContext")
+ public void setSetSecurityContext(Boolean setSecurityContext) {
+ this.setSecurityContext = setSecurityContext;
+ }
+
@JsonProperty("VerificationNoMatchPolicy")
public String getVerificationNoMatchPolicy() {
return verificationNoMatchPolicy;
diff --git a/extensions/tekton/model-v1beta1/src/generated/java/io/fabric8/tekton/v1beta1/internal/pipeline/pkg/result/RunResult.java b/extensions/tekton/model/src/generated/java/io/fabric8/tekton/pipeline/pkg/result/RunResult.java
similarity index 89%
rename from extensions/tekton/model-v1beta1/src/generated/java/io/fabric8/tekton/v1beta1/internal/pipeline/pkg/result/RunResult.java
rename to extensions/tekton/model/src/generated/java/io/fabric8/tekton/pipeline/pkg/result/RunResult.java
index e4277c7069b..ac73f7f5067 100644
--- a/extensions/tekton/model-v1beta1/src/generated/java/io/fabric8/tekton/v1beta1/internal/pipeline/pkg/result/RunResult.java
+++ b/extensions/tekton/model/src/generated/java/io/fabric8/tekton/pipeline/pkg/result/RunResult.java
@@ -1,5 +1,5 @@
-package io.fabric8.tekton.v1beta1.internal.pipeline.pkg.result;
+package io.fabric8.tekton.pipeline.pkg.result;
import java.util.LinkedHashMap;
import java.util.Map;
@@ -13,8 +13,6 @@
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import io.fabric8.kubernetes.api.builder.Editable;
import io.fabric8.kubernetes.api.model.Container;
-import io.fabric8.kubernetes.api.model.ContainerPort;
-import io.fabric8.kubernetes.api.model.EnvVar;
import io.fabric8.kubernetes.api.model.IntOrString;
import io.fabric8.kubernetes.api.model.KubernetesResource;
import io.fabric8.kubernetes.api.model.LabelSelector;
@@ -24,8 +22,6 @@
import io.fabric8.kubernetes.api.model.PersistentVolumeClaim;
import io.fabric8.kubernetes.api.model.PodTemplateSpec;
import io.fabric8.kubernetes.api.model.ResourceRequirements;
-import io.fabric8.kubernetes.api.model.Volume;
-import io.fabric8.kubernetes.api.model.VolumeMount;
import io.sundr.builder.annotations.Buildable;
import io.sundr.builder.annotations.BuildableReference;
import lombok.EqualsAndHashCode;
@@ -55,11 +51,7 @@
@BuildableReference(IntOrString.class),
@BuildableReference(ObjectReference.class),
@BuildableReference(LocalObjectReference.class),
- @BuildableReference(PersistentVolumeClaim.class),
- @BuildableReference(EnvVar.class),
- @BuildableReference(ContainerPort.class),
- @BuildableReference(Volume.class),
- @BuildableReference(VolumeMount.class)
+ @BuildableReference(PersistentVolumeClaim.class)
})
@Generated("jsonschema2pojo")
public class RunResult implements Editable , KubernetesResource
diff --git a/extensions/tekton/model/src/generated/java/io/fabric8/tekton/pod/AffinityAssistantTemplate.java b/extensions/tekton/model/src/generated/java/io/fabric8/tekton/pod/AffinityAssistantTemplate.java
new file mode 100644
index 00000000000..795abe72440
--- /dev/null
+++ b/extensions/tekton/model/src/generated/java/io/fabric8/tekton/pod/AffinityAssistantTemplate.java
@@ -0,0 +1,160 @@
+
+package io.fabric8.tekton.pod;
+
+import java.util.ArrayList;
+import java.util.LinkedHashMap;
+import java.util.List;
+import java.util.Map;
+import javax.annotation.Generated;
+import com.fasterxml.jackson.annotation.JsonAnyGetter;
+import com.fasterxml.jackson.annotation.JsonAnySetter;
+import com.fasterxml.jackson.annotation.JsonIgnore;
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import com.fasterxml.jackson.annotation.JsonPropertyOrder;
+import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
+import io.fabric8.kubernetes.api.builder.Editable;
+import io.fabric8.kubernetes.api.model.Container;
+import io.fabric8.kubernetes.api.model.IntOrString;
+import io.fabric8.kubernetes.api.model.KubernetesResource;
+import io.fabric8.kubernetes.api.model.LabelSelector;
+import io.fabric8.kubernetes.api.model.LocalObjectReference;
+import io.fabric8.kubernetes.api.model.ObjectMeta;
+import io.fabric8.kubernetes.api.model.ObjectReference;
+import io.fabric8.kubernetes.api.model.PersistentVolumeClaim;
+import io.fabric8.kubernetes.api.model.PodSecurityContext;
+import io.fabric8.kubernetes.api.model.PodTemplateSpec;
+import io.fabric8.kubernetes.api.model.ResourceRequirements;
+import io.fabric8.kubernetes.api.model.Toleration;
+import io.sundr.builder.annotations.Buildable;
+import io.sundr.builder.annotations.BuildableReference;
+import lombok.EqualsAndHashCode;
+import lombok.ToString;
+import lombok.experimental.Accessors;
+
+@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
+@JsonInclude(JsonInclude.Include.NON_NULL)
+@JsonPropertyOrder({
+ "imagePullSecrets",
+ "nodeSelector",
+ "securityContext",
+ "tolerations"
+})
+@ToString
+@EqualsAndHashCode
+@Accessors(prefix = {
+ "_",
+ ""
+})
+@Buildable(editableEnabled = false, validationEnabled = false, generateBuilderPackage = false, lazyCollectionInitEnabled = false, builderPackage = "io.fabric8.kubernetes.api.builder", refs = {
+ @BuildableReference(ObjectMeta.class),
+ @BuildableReference(LabelSelector.class),
+ @BuildableReference(Container.class),
+ @BuildableReference(PodTemplateSpec.class),
+ @BuildableReference(ResourceRequirements.class),
+ @BuildableReference(IntOrString.class),
+ @BuildableReference(ObjectReference.class),
+ @BuildableReference(LocalObjectReference.class),
+ @BuildableReference(PersistentVolumeClaim.class)
+})
+@Generated("jsonschema2pojo")
+public class AffinityAssistantTemplate implements Editable , KubernetesResource
+{
+
+ @JsonProperty("imagePullSecrets")
+ @JsonInclude(JsonInclude.Include.NON_EMPTY)
+ private List imagePullSecrets = new ArrayList<>();
+ @JsonProperty("nodeSelector")
+ @JsonInclude(JsonInclude.Include.NON_EMPTY)
+ private Map nodeSelector = new LinkedHashMap<>();
+ @JsonProperty("securityContext")
+ private PodSecurityContext securityContext;
+ @JsonProperty("tolerations")
+ @JsonInclude(JsonInclude.Include.NON_EMPTY)
+ private List tolerations = new ArrayList<>();
+ @JsonIgnore
+ private Map additionalProperties = new LinkedHashMap();
+
+ /**
+ * No args constructor for use in serialization
+ *
+ */
+ public AffinityAssistantTemplate() {
+ }
+
+ public AffinityAssistantTemplate(List imagePullSecrets, Map nodeSelector, PodSecurityContext securityContext, List tolerations) {
+ super();
+ this.imagePullSecrets = imagePullSecrets;
+ this.nodeSelector = nodeSelector;
+ this.securityContext = securityContext;
+ this.tolerations = tolerations;
+ }
+
+ @JsonProperty("imagePullSecrets")
+ @JsonInclude(JsonInclude.Include.NON_EMPTY)
+ public List getImagePullSecrets() {
+ return imagePullSecrets;
+ }
+
+ @JsonProperty("imagePullSecrets")
+ public void setImagePullSecrets(List imagePullSecrets) {
+ this.imagePullSecrets = imagePullSecrets;
+ }
+
+ @JsonProperty("nodeSelector")
+ @JsonInclude(JsonInclude.Include.NON_EMPTY)
+ public Map getNodeSelector() {
+ return nodeSelector;
+ }
+
+ @JsonProperty("nodeSelector")
+ public void setNodeSelector(Map nodeSelector) {
+ this.nodeSelector = nodeSelector;
+ }
+
+ @JsonProperty("securityContext")
+ public PodSecurityContext getSecurityContext() {
+ return securityContext;
+ }
+
+ @JsonProperty("securityContext")
+ public void setSecurityContext(PodSecurityContext securityContext) {
+ this.securityContext = securityContext;
+ }
+
+ @JsonProperty("tolerations")
+ @JsonInclude(JsonInclude.Include.NON_EMPTY)
+ public List getTolerations() {
+ return tolerations;
+ }
+
+ @JsonProperty("tolerations")
+ public void setTolerations(List tolerations) {
+ this.tolerations = tolerations;
+ }
+
+ @JsonIgnore
+ public AffinityAssistantTemplateBuilder edit() {
+ return new AffinityAssistantTemplateBuilder(this);
+ }
+
+ @JsonIgnore
+ public AffinityAssistantTemplateBuilder toBuilder() {
+ return edit();
+ }
+
+ @JsonAnyGetter
+ public Map getAdditionalProperties() {
+ return this.additionalProperties;
+ }
+
+ @JsonAnySetter
+ public void setAdditionalProperty(String name, Object value) {
+ this.additionalProperties.put(name, value);
+ }
+
+ public void setAdditionalProperties(Map additionalProperties) {
+ this.additionalProperties = additionalProperties;
+ }
+
+}
diff --git a/extensions/tekton/model-v1/src/generated/java/io/fabric8/tekton/v1/internal/pipeline/pkg/apis/pipeline/pod/Template.java b/extensions/tekton/model/src/generated/java/io/fabric8/tekton/pod/Template.java
similarity index 80%
rename from extensions/tekton/model-v1/src/generated/java/io/fabric8/tekton/v1/internal/pipeline/pkg/apis/pipeline/pod/Template.java
rename to extensions/tekton/model/src/generated/java/io/fabric8/tekton/pod/Template.java
index 692112ddc50..6de0f3995e8 100644
--- a/extensions/tekton/model-v1/src/generated/java/io/fabric8/tekton/v1/internal/pipeline/pkg/apis/pipeline/pod/Template.java
+++ b/extensions/tekton/model/src/generated/java/io/fabric8/tekton/pod/Template.java
@@ -1,5 +1,5 @@
-package io.fabric8.tekton.v1.internal.pipeline.pkg.apis.pipeline.pod;
+package io.fabric8.tekton.pod;
import java.util.ArrayList;
import java.util.LinkedHashMap;
@@ -16,11 +16,12 @@
import io.fabric8.kubernetes.api.builder.Editable;
import io.fabric8.kubernetes.api.model.Affinity;
import io.fabric8.kubernetes.api.model.Container;
-import io.fabric8.kubernetes.api.model.ContainerPort;
+import io.fabric8.kubernetes.api.model.EnvVar;
import io.fabric8.kubernetes.api.model.HostAlias;
import io.fabric8.kubernetes.api.model.IntOrString;
import io.fabric8.kubernetes.api.model.KubernetesResource;
import io.fabric8.kubernetes.api.model.LabelSelector;
+import io.fabric8.kubernetes.api.model.LocalObjectReference;
import io.fabric8.kubernetes.api.model.ObjectMeta;
import io.fabric8.kubernetes.api.model.ObjectReference;
import io.fabric8.kubernetes.api.model.PersistentVolumeClaim;
@@ -30,7 +31,7 @@
import io.fabric8.kubernetes.api.model.ResourceRequirements;
import io.fabric8.kubernetes.api.model.Toleration;
import io.fabric8.kubernetes.api.model.TopologySpreadConstraint;
-import io.fabric8.kubernetes.api.model.VolumeMount;
+import io.fabric8.kubernetes.api.model.Volume;
import io.sundr.builder.annotations.Buildable;
import io.sundr.builder.annotations.BuildableReference;
import lombok.EqualsAndHashCode;
@@ -72,12 +73,8 @@
@BuildableReference(ResourceRequirements.class),
@BuildableReference(IntOrString.class),
@BuildableReference(ObjectReference.class),
- @BuildableReference(io.fabric8.kubernetes.api.model.LocalObjectReference.class),
- @BuildableReference(PersistentVolumeClaim.class),
- @BuildableReference(io.fabric8.kubernetes.api.model.EnvVar.class),
- @BuildableReference(ContainerPort.class),
- @BuildableReference(io.fabric8.kubernetes.api.model.Volume.class),
- @BuildableReference(VolumeMount.class)
+ @BuildableReference(LocalObjectReference.class),
+ @BuildableReference(PersistentVolumeClaim.class)
})
@Generated("jsonschema2pojo")
public class Template implements Editable , KubernetesResource
@@ -95,15 +92,15 @@ public class Template implements Editable , KubernetesResource
private Boolean enableServiceLinks;
@JsonProperty("env")
@JsonInclude(JsonInclude.Include.NON_EMPTY)
- private List env = new ArrayList<>();
+ private List env = new ArrayList<>();
@JsonProperty("hostAliases")
@JsonInclude(JsonInclude.Include.NON_EMPTY)
private List hostAliases = new ArrayList<>();
@JsonProperty("hostNetwork")
- private java.lang.Boolean hostNetwork;
+ private Boolean hostNetwork;
@JsonProperty("imagePullSecrets")
@JsonInclude(JsonInclude.Include.NON_EMPTY)
- private List imagePullSecrets = new ArrayList<>();
+ private List imagePullSecrets = new ArrayList<>();
@JsonProperty("nodeSelector")
@JsonInclude(JsonInclude.Include.NON_EMPTY)
private Map nodeSelector = new LinkedHashMap<>();
@@ -112,7 +109,7 @@ public class Template implements Editable , KubernetesResource
@JsonProperty("runtimeClassName")
private String runtimeClassName;
@JsonProperty("schedulerName")
- private java.lang.String schedulerName;
+ private String schedulerName;
@JsonProperty("securityContext")
private PodSecurityContext securityContext;
@JsonProperty("tolerations")
@@ -123,9 +120,9 @@ public class Template implements Editable , KubernetesResource
private List topologySpreadConstraints = new ArrayList<>();
@JsonProperty("volumes")
@JsonInclude(JsonInclude.Include.NON_EMPTY)
- private List volumes = new ArrayList<>();
+ private List volumes = new ArrayList<>();
@JsonIgnore
- private Map additionalProperties = new LinkedHashMap();
+ private Map additionalProperties = new LinkedHashMap();
/**
* No args constructor for use in serialization
@@ -134,7 +131,7 @@ public class Template implements Editable , KubernetesResource
public Template() {
}
- public Template(Affinity affinity, Boolean automountServiceAccountToken, PodDNSConfig dnsConfig, String dnsPolicy, Boolean enableServiceLinks, List env, List hostAliases, java.lang.Boolean hostNetwork, List imagePullSecrets, Map nodeSelector, String priorityClassName, String runtimeClassName, java.lang.String schedulerName, PodSecurityContext securityContext, List tolerations, List topologySpreadConstraints, List volumes) {
+ public Template(Affinity affinity, Boolean automountServiceAccountToken, PodDNSConfig dnsConfig, String dnsPolicy, Boolean enableServiceLinks, List env, List hostAliases, Boolean hostNetwork, List imagePullSecrets, Map nodeSelector, String priorityClassName, String runtimeClassName, String schedulerName, PodSecurityContext securityContext, List tolerations, List topologySpreadConstraints, List volumes) {
super();
this.affinity = affinity;
this.automountServiceAccountToken = automountServiceAccountToken;
@@ -207,12 +204,12 @@ public void setEnableServiceLinks(Boolean enableServiceLinks) {
@JsonProperty("env")
@JsonInclude(JsonInclude.Include.NON_EMPTY)
- public List getEnv() {
+ public List getEnv() {
return env;
}
@JsonProperty("env")
- public void setEnv(List env) {
+ public void setEnv(List env) {
this.env = env;
}
@@ -228,23 +225,23 @@ public void setHostAliases(List hostAliases) {
}
@JsonProperty("hostNetwork")
- public java.lang.Boolean getHostNetwork() {
+ public Boolean getHostNetwork() {
return hostNetwork;
}
@JsonProperty("hostNetwork")
- public void setHostNetwork(java.lang.Boolean hostNetwork) {
+ public void setHostNetwork(Boolean hostNetwork) {
this.hostNetwork = hostNetwork;
}
@JsonProperty("imagePullSecrets")
@JsonInclude(JsonInclude.Include.NON_EMPTY)
- public List getImagePullSecrets() {
+ public List getImagePullSecrets() {
return imagePullSecrets;
}
@JsonProperty("imagePullSecrets")
- public void setImagePullSecrets(List imagePullSecrets) {
+ public void setImagePullSecrets(List imagePullSecrets) {
this.imagePullSecrets = imagePullSecrets;
}
@@ -280,12 +277,12 @@ public void setRuntimeClassName(String runtimeClassName) {
}
@JsonProperty("schedulerName")
- public java.lang.String getSchedulerName() {
+ public String getSchedulerName() {
return schedulerName;
}
@JsonProperty("schedulerName")
- public void setSchedulerName(java.lang.String schedulerName) {
+ public void setSchedulerName(String schedulerName) {
this.schedulerName = schedulerName;
}
@@ -323,12 +320,12 @@ public void setTopologySpreadConstraints(List topology
@JsonProperty("volumes")
@JsonInclude(JsonInclude.Include.NON_EMPTY)
- public List getVolumes() {
+ public List getVolumes() {
return volumes;
}
@JsonProperty("volumes")
- public void setVolumes(List volumes) {
+ public void setVolumes(List volumes) {
this.volumes = volumes;
}
@@ -343,16 +340,16 @@ public TemplateBuilder toBuilder() {
}
@JsonAnyGetter
- public Map getAdditionalProperties() {
+ public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
- public void setAdditionalProperty(java.lang.String name, Object value) {
+ public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
- public void setAdditionalProperties(Map additionalProperties) {
+ public void setAdditionalProperties(Map additionalProperties) {
this.additionalProperties = additionalProperties;
}
diff --git a/extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/resolution/v1alpha1/ResolutionRequest.java b/extensions/tekton/model/src/generated/java/io/fabric8/tekton/resolution/v1alpha1/ResolutionRequest.java
similarity index 85%
rename from extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/resolution/v1alpha1/ResolutionRequest.java
rename to extensions/tekton/model/src/generated/java/io/fabric8/tekton/resolution/v1alpha1/ResolutionRequest.java
index 3a8db2d8375..103ad9572a7 100644
--- a/extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/resolution/v1alpha1/ResolutionRequest.java
+++ b/extensions/tekton/model/src/generated/java/io/fabric8/tekton/resolution/v1alpha1/ResolutionRequest.java
@@ -13,19 +13,16 @@
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import io.fabric8.kubernetes.api.builder.Editable;
import io.fabric8.kubernetes.api.model.Container;
-import io.fabric8.kubernetes.api.model.ContainerPort;
-import io.fabric8.kubernetes.api.model.EnvVar;
import io.fabric8.kubernetes.api.model.HasMetadata;
import io.fabric8.kubernetes.api.model.IntOrString;
import io.fabric8.kubernetes.api.model.LabelSelector;
import io.fabric8.kubernetes.api.model.LocalObjectReference;
import io.fabric8.kubernetes.api.model.Namespaced;
+import io.fabric8.kubernetes.api.model.ObjectMeta;
import io.fabric8.kubernetes.api.model.ObjectReference;
import io.fabric8.kubernetes.api.model.PersistentVolumeClaim;
import io.fabric8.kubernetes.api.model.PodTemplateSpec;
import io.fabric8.kubernetes.api.model.ResourceRequirements;
-import io.fabric8.kubernetes.api.model.Volume;
-import io.fabric8.kubernetes.api.model.VolumeMount;
import io.fabric8.kubernetes.model.annotation.Group;
import io.fabric8.kubernetes.model.annotation.Version;
import io.sundr.builder.annotations.Buildable;
@@ -52,7 +49,7 @@
""
})
@Buildable(editableEnabled = false, validationEnabled = false, generateBuilderPackage = false, lazyCollectionInitEnabled = false, builderPackage = "io.fabric8.kubernetes.api.builder", refs = {
- @BuildableReference(io.fabric8.kubernetes.api.model.ObjectMeta.class),
+ @BuildableReference(ObjectMeta.class),
@BuildableReference(LabelSelector.class),
@BuildableReference(Container.class),
@BuildableReference(PodTemplateSpec.class),
@@ -60,11 +57,7 @@
@BuildableReference(IntOrString.class),
@BuildableReference(ObjectReference.class),
@BuildableReference(LocalObjectReference.class),
- @BuildableReference(PersistentVolumeClaim.class),
- @BuildableReference(EnvVar.class),
- @BuildableReference(ContainerPort.class),
- @BuildableReference(Volume.class),
- @BuildableReference(VolumeMount.class)
+ @BuildableReference(PersistentVolumeClaim.class)
})
@TemplateTransformations({
@TemplateTransformation(value = "/manifest.vm", outputPath = "META-INF/services/io.fabric8.kubernetes.api.model.KubernetesResource", gather = true)
@@ -90,7 +83,7 @@ public class ResolutionRequest implements Editable , H
@JsonProperty("kind")
private String kind = "ResolutionRequest";
@JsonProperty("metadata")
- private io.fabric8.kubernetes.api.model.ObjectMeta metadata;
+ private ObjectMeta metadata;
@JsonProperty("spec")
private ResolutionRequestSpec spec;
@JsonProperty("status")
@@ -105,7 +98,7 @@ public class ResolutionRequest implements Editable , H
public ResolutionRequest() {
}
- public ResolutionRequest(String apiVersion, String kind, io.fabric8.kubernetes.api.model.ObjectMeta metadata, ResolutionRequestSpec spec, ResolutionRequestStatus status) {
+ public ResolutionRequest(String apiVersion, String kind, ObjectMeta metadata, ResolutionRequestSpec spec, ResolutionRequestStatus status) {
super();
this.apiVersion = apiVersion;
this.kind = kind;
@@ -155,12 +148,12 @@ public void setKind(String kind) {
}
@JsonProperty("metadata")
- public io.fabric8.kubernetes.api.model.ObjectMeta getMetadata() {
+ public ObjectMeta getMetadata() {
return metadata;
}
@JsonProperty("metadata")
- public void setMetadata(io.fabric8.kubernetes.api.model.ObjectMeta metadata) {
+ public void setMetadata(ObjectMeta metadata) {
this.metadata = metadata;
}
diff --git a/extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/resolution/v1alpha1/ResolutionRequestList.java b/extensions/tekton/model/src/generated/java/io/fabric8/tekton/resolution/v1alpha1/ResolutionRequestList.java
similarity index 93%
rename from extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/resolution/v1alpha1/ResolutionRequestList.java
rename to extensions/tekton/model/src/generated/java/io/fabric8/tekton/resolution/v1alpha1/ResolutionRequestList.java
index 89174c7312f..e544ec8aa14 100644
--- a/extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/resolution/v1alpha1/ResolutionRequestList.java
+++ b/extensions/tekton/model/src/generated/java/io/fabric8/tekton/resolution/v1alpha1/ResolutionRequestList.java
@@ -15,8 +15,6 @@
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import io.fabric8.kubernetes.api.builder.Editable;
import io.fabric8.kubernetes.api.model.Container;
-import io.fabric8.kubernetes.api.model.ContainerPort;
-import io.fabric8.kubernetes.api.model.EnvVar;
import io.fabric8.kubernetes.api.model.IntOrString;
import io.fabric8.kubernetes.api.model.KubernetesResource;
import io.fabric8.kubernetes.api.model.KubernetesResourceList;
@@ -28,8 +26,6 @@
import io.fabric8.kubernetes.api.model.PersistentVolumeClaim;
import io.fabric8.kubernetes.api.model.PodTemplateSpec;
import io.fabric8.kubernetes.api.model.ResourceRequirements;
-import io.fabric8.kubernetes.api.model.Volume;
-import io.fabric8.kubernetes.api.model.VolumeMount;
import io.fabric8.kubernetes.model.annotation.Group;
import io.fabric8.kubernetes.model.annotation.Version;
import io.sundr.builder.annotations.Buildable;
@@ -63,11 +59,7 @@
@BuildableReference(IntOrString.class),
@BuildableReference(ObjectReference.class),
@BuildableReference(LocalObjectReference.class),
- @BuildableReference(PersistentVolumeClaim.class),
- @BuildableReference(EnvVar.class),
- @BuildableReference(ContainerPort.class),
- @BuildableReference(Volume.class),
- @BuildableReference(VolumeMount.class)
+ @BuildableReference(PersistentVolumeClaim.class)
})
@TemplateTransformations({
@TemplateTransformation(value = "/manifest.vm", outputPath = "META-INF/services/io.fabric8.kubernetes.api.model.KubernetesResource", gather = true)
diff --git a/extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/resolution/v1alpha1/ResolutionRequestSpec.java b/extensions/tekton/model/src/generated/java/io/fabric8/tekton/resolution/v1alpha1/ResolutionRequestSpec.java
similarity index 81%
rename from extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/resolution/v1alpha1/ResolutionRequestSpec.java
rename to extensions/tekton/model/src/generated/java/io/fabric8/tekton/resolution/v1alpha1/ResolutionRequestSpec.java
index 32fd101e1a2..2f8776f8a26 100644
--- a/extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/resolution/v1alpha1/ResolutionRequestSpec.java
+++ b/extensions/tekton/model/src/generated/java/io/fabric8/tekton/resolution/v1alpha1/ResolutionRequestSpec.java
@@ -13,8 +13,6 @@
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import io.fabric8.kubernetes.api.builder.Editable;
import io.fabric8.kubernetes.api.model.Container;
-import io.fabric8.kubernetes.api.model.ContainerPort;
-import io.fabric8.kubernetes.api.model.EnvVar;
import io.fabric8.kubernetes.api.model.IntOrString;
import io.fabric8.kubernetes.api.model.KubernetesResource;
import io.fabric8.kubernetes.api.model.LabelSelector;
@@ -24,8 +22,6 @@
import io.fabric8.kubernetes.api.model.PersistentVolumeClaim;
import io.fabric8.kubernetes.api.model.PodTemplateSpec;
import io.fabric8.kubernetes.api.model.ResourceRequirements;
-import io.fabric8.kubernetes.api.model.Volume;
-import io.fabric8.kubernetes.api.model.VolumeMount;
import io.sundr.builder.annotations.Buildable;
import io.sundr.builder.annotations.BuildableReference;
import lombok.EqualsAndHashCode;
@@ -52,11 +48,7 @@
@BuildableReference(IntOrString.class),
@BuildableReference(ObjectReference.class),
@BuildableReference(LocalObjectReference.class),
- @BuildableReference(PersistentVolumeClaim.class),
- @BuildableReference(EnvVar.class),
- @BuildableReference(ContainerPort.class),
- @BuildableReference(Volume.class),
- @BuildableReference(VolumeMount.class)
+ @BuildableReference(PersistentVolumeClaim.class)
})
@Generated("jsonschema2pojo")
public class ResolutionRequestSpec implements Editable , KubernetesResource
@@ -66,7 +58,7 @@ public class ResolutionRequestSpec implements Editable params = new LinkedHashMap<>();
@JsonIgnore
- private Map additionalProperties = new LinkedHashMap();
+ private Map additionalProperties = new LinkedHashMap();
/**
* No args constructor for use in serialization
@@ -102,16 +94,16 @@ public ResolutionRequestSpecBuilder toBuilder() {
}
@JsonAnyGetter
- public Map getAdditionalProperties() {
+ public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
- public void setAdditionalProperty(java.lang.String name, Object value) {
+ public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
- public void setAdditionalProperties(Map additionalProperties) {
+ public void setAdditionalProperties(Map additionalProperties) {
this.additionalProperties = additionalProperties;
}
diff --git a/extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/resolution/v1alpha1/ResolutionRequestStatus.java b/extensions/tekton/model/src/generated/java/io/fabric8/tekton/resolution/v1alpha1/ResolutionRequestStatus.java
similarity index 82%
rename from extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/resolution/v1alpha1/ResolutionRequestStatus.java
rename to extensions/tekton/model/src/generated/java/io/fabric8/tekton/resolution/v1alpha1/ResolutionRequestStatus.java
index 771c34e4946..d7b8030b77f 100644
--- a/extensions/tekton/model-v1alpha1/src/generated/java/io/fabric8/tekton/resolution/v1alpha1/ResolutionRequestStatus.java
+++ b/extensions/tekton/model/src/generated/java/io/fabric8/tekton/resolution/v1alpha1/ResolutionRequestStatus.java
@@ -16,8 +16,6 @@
import io.fabric8.knative.pkg.apis.Condition;
import io.fabric8.kubernetes.api.builder.Editable;
import io.fabric8.kubernetes.api.model.Container;
-import io.fabric8.kubernetes.api.model.ContainerPort;
-import io.fabric8.kubernetes.api.model.EnvVar;
import io.fabric8.kubernetes.api.model.IntOrString;
import io.fabric8.kubernetes.api.model.KubernetesResource;
import io.fabric8.kubernetes.api.model.LabelSelector;
@@ -27,9 +25,7 @@
import io.fabric8.kubernetes.api.model.PersistentVolumeClaim;
import io.fabric8.kubernetes.api.model.PodTemplateSpec;
import io.fabric8.kubernetes.api.model.ResourceRequirements;
-import io.fabric8.kubernetes.api.model.Volume;
-import io.fabric8.kubernetes.api.model.VolumeMount;
-import io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1beta1.RefSource;
+import io.fabric8.tekton.v1.RefSource;
import io.sundr.builder.annotations.Buildable;
import io.sundr.builder.annotations.BuildableReference;
import lombok.EqualsAndHashCode;
@@ -60,11 +56,7 @@
@BuildableReference(IntOrString.class),
@BuildableReference(ObjectReference.class),
@BuildableReference(LocalObjectReference.class),
- @BuildableReference(PersistentVolumeClaim.class),
- @BuildableReference(EnvVar.class),
- @BuildableReference(ContainerPort.class),
- @BuildableReference(Volume.class),
- @BuildableReference(VolumeMount.class)
+ @BuildableReference(PersistentVolumeClaim.class)
})
@Generated("jsonschema2pojo")
public class ResolutionRequestStatus implements Editable , KubernetesResource
@@ -77,13 +69,13 @@ public class ResolutionRequestStatus implements Editable conditions = new ArrayList<>();
@JsonProperty("data")
- private java.lang.String data;
+ private String data;
@JsonProperty("observedGeneration")
private Long observedGeneration;
@JsonProperty("refSource")
private RefSource refSource;
@JsonIgnore
- private Map